*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

:root {
  --brand: #0d6e7c;
  --brand-dark: #094f5a;
  --brand-deep: #062f36;
  --accent: #f4a847;
  --accent2: #e8773a;
  --bg: #f7f9f8;
  --surface: #ffffff;
  --text: #0f1c1e;
  --muted: #5a7070;
  --border: #d8e8ea;
  --nav-h: 70px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(6, 47, 54, 0.07);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: #e6f4f6;
  color: var(--brand);
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.1s;
}
.nav-cta:hover {
  background: var(--brand-dark);
}

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 2px;
  padding: 1rem;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.12s, color 0.12s;
}
.mobile-menu a:hover {
  background: #e6f4f6;
  color: var(--brand);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 5% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(13, 110, 124, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(244, 168, 71, 0.07) 0%, transparent 60%);
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hs1 {
  width: 320px; height: 320px;
  background: rgba(13, 110, 124, 0.06);
  top: -60px; right: 10%;
  animation: float1 8s ease-in-out infinite;
}
.hs2 {
  width: 180px; height: 180px;
  background: rgba(244, 168, 71, 0.09);
  bottom: 10%; right: 20%;
  animation: float2 6s ease-in-out infinite;
}
.hs3 {
  width: 80px; height: 80px;
  background: rgba(13, 110, 124, 0.12);
  top: 30%; left: 5%;
  animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6f4f6;
  border: 1px solid rgba(13, 110, 124, 0.2);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--brand-deep);
  margin-bottom: 0.6rem;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--brand);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  padding: 0.75rem 2rem;
  background: var(--brand);
  color: #fff;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(13, 110, 124, 0.3);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13, 110, 124, 0.4);
}

.btn-secondary {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #e6f4f6;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 400px;
}

.label-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(6, 47, 54, 0.18);
}

.lc-main {
  width: 260px; height: 320px;
  background: var(--brand-deep);
  top: 40px; left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: float1 7s ease-in-out infinite;
}

.lc-main-inner {
  width: 200px; height: 240px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.lc-logo-box {
  width: 70px; height: 70px;
  background: rgba(244, 168, 71, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lc-logo-box img {
  width: 48px; height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.lc-text { text-align: center; }
.lc-text span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
.lc-text small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
}

.lc-float {
  width: 130px; height: 90px;
  background: #fff;
  top: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: float2 6s ease-in-out infinite;
}
.lc-float-bar { width: 80px; height: 8px; background: var(--accent); border-radius: 4px; }
.lc-float-bar2 { width: 60px; height: 6px; background: var(--border); border-radius: 4px; }
.lc-float-bar3 { width: 50px; height: 6px; background: var(--border); border-radius: 4px; }

.lc-accent {
  width: 100px; height: 70px;
  background: var(--accent);
  bottom: 20px; right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float3 8s ease-in-out infinite;
}
.lc-accent svg {
  width: 36px; height: 36px;
  fill: var(--brand-deep);
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-deep);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ══════════════════════════════════
   SECTION COMMON
══════════════════════════════════ */
section {
  padding: 5rem 5%;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

/* ══════════════════════════════════
   TRUST BAR
══════════════════════════════════ */
.trust-bar {
  background: var(--brand-deep);
  padding: 1rem 0;
  overflow: hidden;
  position: sticky;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 90;
}
.trust-track {
  display: flex;
  gap: 3rem;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.trust-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
.trust-track span.dot {
  color: var(--accent);
  font-size: 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services {
  background: var(--surface);
  overflow: hidden;
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

/* ── Services Marquee Wrapper ── */
.services-section-wrap {
  overflow: hidden;
  position: relative;
  padding: 1rem 0 2rem;
}

.services-section-wrap::before,
.services-section-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.services-section-wrap::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.services-section-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* ── Services Grid (marquee track) ── */
.services-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.2rem;
  width: max-content;
  animation: servicesScroll 30s linear infinite;
  cursor: grab;
  user-select: none;
}

.services-grid:active {
  cursor: grabbing;
}

.services-section-wrap:hover .services-grid {
  animation-play-state: paused;
}

@keyframes servicesScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Service Card ── */
.service-card {
  flex-shrink: 0;
  width: 260px;
  background: var(--surface);
  border-radius: 18px;
  border: 1.5px solid var(--border);
  padding: 1.6rem 1.4rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6, 47, 54, 0.12);
  border-color: rgba(13, 110, 124, 0.35);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: var(--brand-deep);
  border-color: transparent;
}
.service-card.featured::before {
  background: var(--accent);
}
.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
}
.service-card.featured .service-icon svg {
  stroke: rgba(255, 255, 255, 0.9);
}
.service-card.featured .service-name {
  color: #fff;
}
.service-card.featured .service-desc {
  color: rgba(255, 255, 255, 0.6);
}

.service-icon {
  width: 46px; height: 46px;
  background: #e6f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 2;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: var(--brand-deep);
  overflow: hidden;
  position: relative;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px);
}

.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about-big-logo {
  width: 100px; height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.about-label-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 2rem;
}

.label-pill {
  padding: 0.3rem 0.9rem;
  background: rgba(244, 168, 71, 0.15);
  border: 1px solid rgba(244, 168, 71, 0.3);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(244, 168, 71, 0.4);
}
.about-badge-float strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--brand-deep);
}
.about-badge-float span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-deep);
  opacity: 0.75;
}

.about-content .section-desc { margin-bottom: 2rem; }

.about-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.about-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.check-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-dot svg {
  width: 12px; height: 12px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

/* ══════════════════════════════════
   TESTIMONIAL
══════════════════════════════════ */
.testimonial-section {
  background: var(--brand-deep);
  padding: 5rem 5%;
  text-align: center;
}
.testimonial-section .section-label { color: var(--accent); }
.testimonial-section .section-title {
  color: #fff;
  margin: 0 auto 3rem;
  max-width: 500px;
}

.testimonial-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  position: relative;
}

.tq-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: -10px; left: 2rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brand-deep);
}
.author-info strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.author-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.cta-section {
  background: var(--bg);
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.cta-card {
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-card.light {
  background: var(--surface);
  border: 1px solid var(--border);
}
.cta-card.dark { background: var(--brand-deep); }

.cta-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta-card.light .cta-card-icon { background: #e6f4f6; }
.cta-card.dark .cta-card-icon { background: rgba(255, 255, 255, 0.1); }
.cta-card-icon svg {
  width: 28px; height: 28px;
  stroke-width: 1.8;
  fill: none;
}
.cta-card.light .cta-card-icon svg { stroke: var(--brand); }
.cta-card.dark .cta-card-icon svg { stroke: rgba(255, 255, 255, 0.9); }

.cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cta-card.light .cta-label { color: var(--brand); }
.cta-card.dark .cta-label { color: var(--accent); }

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.cta-card.light .cta-title { color: var(--brand-deep); }
.cta-card.dark .cta-title { color: #fff; }

.cta-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-card.light .cta-desc { color: var(--muted); }
.cta-card.dark .cta-desc { color: rgba(255, 255, 255, 0.55); }

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  background: var(--accent);
  color: var(--brand-deep);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
}
.btn-accent:hover {
  background: #e09830;
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.8rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--brand-deep);
  padding: 3rem 5% 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  width: 38px; height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.social-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.social-btn svg {
  width: 15px; height: 15px;
  fill: currentColor;
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about {
    grid-template-columns: 1fr;
    padding: 4rem 5%;
  }
  .about-visual { display: none; }
  .cta-section { grid-template-columns: 1fr; }
  .services-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links,
  .nav-cta { display: none; }
  .nav-ham { display: flex; }
}

@media (max-width: 600px) {
  .hero {
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 3rem;
  }
  section { padding: 3.5rem 5%; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .cta-card { padding: 2rem; }
  .service-card { width: 220px; }
}