/* =========================================================
   STARTUP SOLUTIONS — Premium B2B Consultancy Stylesheet
   Brand-aligned design system
   ========================================================= */

/* ---------- CSS Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette (from logo) */
  --teal-900: #063649;
  --teal-800: #0B4D63;
  --teal-700: #0F5A73;      /* PRIMARY */
  --teal-600: #157089;
  --teal-500: #1E88A3;
  --teal-50:  #EAF4F7;

  --plum-900: #2A1320;
  --plum-800: #3D1F2E;      /* SECONDARY */
  --plum-700: #4A2638;
  --plum-50:  #F4ECEF;

  --rose-600: #B8818F;
  --rose-500: #D4A5B4;      /* ACCENT */
  --rose-100: #F5E6EB;

  /* Neutrals */
  --ink-900: #13100E;
  --ink-700: #2A2520;
  --ink-500: #6B6460;
  --ink-300: #B3ACA6;
  --cream:   #FAF7F2;       /* BG */
  --cream-2: #F3EEE6;
  --white:   #FFFFFF;
  --line:    #E7E1D8;

  /* Typography */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(19, 16, 14, 0.04), 0 1px 3px rgba(19, 16, 14, 0.06);
  --shadow:    0 4px 12px rgba(19, 16, 14, 0.06), 0 2px 4px rgba(19, 16, 14, 0.04);
  --shadow-lg: 0 20px 40px -12px rgba(19, 16, 14, 0.14), 0 8px 16px -8px rgba(19, 16, 14, 0.08);
  --shadow-teal: 0 14px 30px -10px rgba(15, 90, 115, 0.35);

  /* Containers */
  --container: 1200px;
  --container-wide: 1320px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base Typography ---------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-900);
  background: var(--cream);
  font-feature-settings: "ss01", "cv11";
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-900);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--ink-700); }
.lead { font-size: 1.18rem; color: var(--ink-500); line-height: 1.65; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--teal-700);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 50px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-800); transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(15,90,115,.45); }

.btn-secondary {
  background: var(--plum-800);
  color: var(--white);
}
.btn-secondary:hover { background: var(--plum-900); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-900);
}
.btn-ghost:hover { background: var(--ink-900); color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--teal-800);
  border: 1.5px solid var(--white);
}
.btn-light:hover { background: transparent; color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: var(--white); color: var(--teal-800); border-color: var(--white); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(250, 247, 242, 0.95); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo img { height: 44px; width: auto; }

.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: color .2s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--teal-700); }
.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--teal-700);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-900);
}
.phone-link svg { width: 16px; height: 16px; color: var(--teal-700); }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--white);
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .nav, .phone-link, .header-cta .btn { display: none; }
  .menu-btn { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .5s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-900);
}
.mobile-menu-footer { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-footer .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 100px;
  overflow: hidden;
}
.hero-decor {
  position: absolute;
  top: 10%; right: -200px;
  width: 640px; height: 640px;
  background: radial-gradient(circle at 40% 40%, rgba(15,90,115,0.12), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-decor-2 {
  position: absolute;
  bottom: -200px; left: -200px;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 50% 50%, rgba(61,31,46,0.08), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  z-index: 1;
}
.hero-title {
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-700);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--ink-500);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 560px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--teal-700);
  letter-spacing: -0.02em;
}
.hero-trust-label { font-size: 0.82rem; color: var(--ink-500); }

/* Hero visual card */
.hero-visual {
  position: relative;
  height: 520px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  transition: transform .4s var(--ease);
}
.hero-card-main {
  top: 0; right: 0;
  width: 85%;
  height: 360px;
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  overflow: hidden;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(212,165,180,0.25), transparent 70%);
  border-radius: 50%;
}
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.14);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.hero-card-badge span { width: 6px; height: 6px; background: #7CD3A8; border-radius: 50%; box-shadow: 0 0 0 4px rgba(124,211,168,0.25); }
.hero-card-title { font-family: var(--font-display); font-size: 1.75rem; line-height: 1.15; margin-top: 16px; }
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}
.hero-card-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; }
.hero-card-stat-lbl { font-size: 0.78rem; opacity: 0.7; }

.hero-card-sub {
  bottom: 0; left: 0;
  width: 78%;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}
.hero-card-sub-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--plum-50);
  color: var(--plum-800);
  display: flex; align-items: center; justify-content: center;
}
.hero-card-sub-text strong { display: block; font-weight: 600; font-size: 0.95rem; }
.hero-card-sub-text span { font-size: 0.82rem; color: var(--ink-500); }

.hero-card-float {
  top: 40%; right: -20px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  animation: float 6s ease-in-out infinite;
}
.hero-card-float span { display: inline-flex; width: 10px; height: 10px; background: var(--teal-500); border-radius: 50%; box-shadow: 0 0 0 4px rgba(30,136,163,0.2); }
.hero-card-float strong { font-size: 0.85rem; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 440px; max-width: 500px; margin: 0 auto; width: 100%; }
}
@media (max-width: 560px) {
  .hero-visual { height: 380px; }
  .hero-card-main { width: 92%; height: 300px; padding: 24px; }
  .hero-card-title { font-size: 1.4rem; }
  .hero-card-sub { width: 84%; }
  .hero-card-float { right: 0; }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  padding: 40px 0;
  background: var(--white);
  border-block: 1px solid var(--line);
}
.trust-bar-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 24px;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.trust-item svg { width: 22px; height: 22px; color: var(--teal-700); }

/* ---------- Section Heading ---------- */
.section-head { max-width: 780px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 1.1rem; color: var(--ink-500); }

/* ---------- Services Grid ---------- */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--teal-700), var(--plum-800), var(--rose-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--teal-700);
  color: var(--white);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: var(--ink-500); margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-700);
}
.service-link svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.service-link:hover svg { transform: translateX(4px); }

/* Alternating service card accents */
.service-card:nth-child(2) .service-icon { background: var(--plum-50); color: var(--plum-800); }
.service-card:nth-child(2):hover .service-icon { background: var(--plum-800); color: var(--white); }
.service-card:nth-child(5) .service-icon { background: var(--rose-100); color: var(--plum-800); }
.service-card:nth-child(5):hover .service-icon { background: var(--plum-800); color: var(--white); }
.service-card:nth-child(8) .service-icon { background: var(--plum-50); color: var(--plum-800); }
.service-card:nth-child(8):hover .service-icon { background: var(--plum-800); color: var(--white); }
.service-card:nth-child(11) .service-icon { background: var(--rose-100); color: var(--plum-800); }
.service-card:nth-child(11):hover .service-icon { background: var(--plum-800); color: var(--white); }

/* ---------- Why Us Section ---------- */
.why-section { background: var(--cream-2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-features { display: grid; gap: 28px; }
.why-item { display: flex; gap: 20px; }
.why-item-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.why-item h3 { font-size: 1.25rem; margin-bottom: 6px; }
.why-item p { font-size: 0.98rem; color: var(--ink-500); }

.why-visual {
  position: relative;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.why-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.why-visual-header h4 { font-family: var(--font-display); font-size: 1.2rem; }
.why-visual-header span { font-size: 0.85rem; color: var(--ink-500); }
.why-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.why-metric:not(:last-child) { border-bottom: 1px dashed var(--line); }
.why-metric-label { font-size: 0.95rem; color: var(--ink-700); }
.why-metric-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--teal-700);
}
.why-metric-value.plum { color: var(--plum-800); }

@media (max-width: 960px) { .why-grid { grid-template-columns: 1fr; gap: 56px; } }

/* ---------- Process Section ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ink-300) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--teal-700);
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  transition: all .3s var(--ease);
}
.process-step:hover .process-num { background: var(--teal-700); color: var(--white); transform: scale(1.05); }
.process-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--ink-500); }

@media (max-width: 800px) {
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* ---------- Industries Section ---------- */
.industries-section { background: var(--ink-900); color: var(--white); position: relative; overflow: hidden; }
.industries-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(15,90,115,0.3), transparent 60%);
  pointer-events: none;
}
.industries-section h2, .industries-section .section-head p { color: var(--white); }
.industries-section .eyebrow { color: var(--rose-500); }
.industries-section .eyebrow::before { background: var(--rose-500); }
.industries-section .section-head p { color: rgba(255,255,255,0.7); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.industry-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.industry-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.industry-card svg { width: 32px; height: 32px; color: var(--rose-500); margin-bottom: 16px; }
.industry-card h4 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.industry-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

@media (max-width: 800px) { .industries-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .industries-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--cream); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .6s var(--ease);
}
.testimonial {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) { .testimonial { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 600px) { .testimonial { flex: 0 0 100%; } }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-900);
  margin-bottom: 28px;
  flex-grow: 1;
}
.testimonial-quote::before {
  content: '"';
  display: block;
  font-size: 3.5rem;
  line-height: 0.7;
  color: var(--rose-500);
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
}
.testimonial-author-info strong { display: block; font-weight: 600; font-size: 0.95rem; }
.testimonial-author-info span { font-size: 0.85rem; color: var(--ink-500); }

.testimonial-nav { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.testimonial-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-900);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.testimonial-nav button:hover { background: var(--teal-700); color: var(--white); border-color: var(--teal-700); }
.testimonial-nav button svg { width: 18px; height: 18px; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-item.open { border-color: var(--teal-700); }
.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-900);
}
.faq-question-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.faq-item.open .faq-question-icon {
  background: var(--teal-700);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-answer-inner { padding: 0 24px 22px; color: var(--ink-500); font-size: 0.95rem; line-height: 1.65; }

@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--plum-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,165,180,0.2), transparent 60%);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section .lead { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-section .eyebrow { color: var(--rose-500); }
.cta-section .eyebrow::before { background: var(--rose-500); }
.cta-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-meta { display: flex; flex-direction: column; gap: 16px; }
.cta-meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.cta-meta-item svg { width: 22px; height: 22px; color: var(--rose-500); flex-shrink: 0; }
.cta-meta-item-text strong { display: block; font-size: 0.82rem; opacity: 0.7; margin-bottom: 2px; letter-spacing: 0.05em; text-transform: uppercase; }
.cta-meta-item-text span { font-size: 1rem; font-weight: 500; }

@media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 52px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.65; max-width: 320px; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--rose-500); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.7); }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--rose-500); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a:hover { color: var(--rose-500); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all .2s var(--ease);
}
.footer-socials a:hover { background: var(--rose-500); color: var(--ink-900); }
.footer-socials svg { width: 16px; height: 16px; }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 90;
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform .25s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: 72px 0 80px;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15,90,115,0.08), transparent 60%);
  border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--ink-500); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 20px; }
.page-hero .lead { font-size: 1.15rem; max-width: 680px; }

/* ---------- Services Page ---------- */
.services-detail-section { padding: 80px 0; }
.services-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--teal-700); color: var(--teal-700); }
.filter-btn.active { background: var(--teal-700); color: var(--white); border-color: var(--teal-700); }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { grid-template-columns: 1.2fr 1fr; }
.service-detail:nth-child(even) .service-detail-visual { order: 2; }

.service-detail-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.service-detail-meta .service-icon { margin-bottom: 0; }
.service-detail-tag { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-700); }
.service-detail h2 { font-size: 2.1rem; margin-bottom: 16px; }
.service-detail p { font-size: 1.02rem; color: var(--ink-500); margin-bottom: 20px; line-height: 1.7; }
.service-detail h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-900); margin-bottom: 14px; margin-top: 8px; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 28px; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-700);
}
.service-features svg {
  width: 18px; height: 18px;
  color: var(--teal-700);
  flex-shrink: 0;
  margin-top: 3px;
}
.service-detail-visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}
.service-detail-visual.dark {
  background: linear-gradient(135deg, var(--teal-800), var(--plum-800));
  color: var(--white);
  border-color: transparent;
}
.service-detail-visual h4 { color: var(--white); border: none; }
.service-detail-visual.dark .service-features li { color: rgba(255,255,255,0.9); }
.service-detail-visual.dark .service-features svg { color: var(--rose-500); }

@media (max-width: 900px) {
  .service-detail, .service-detail:nth-child(even) { grid-template-columns: 1fr; gap: 36px; }
  .service-detail:nth-child(even) .service-detail-visual { order: 0; }
  .service-features { grid-template-columns: 1fr; }
}

/* ---------- About Page ---------- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-intro-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(212,165,180,0.25), transparent 50%), radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08), transparent 40%);
}
.about-intro-visual-content {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}
.about-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}
.about-intro-visual h3 { color: var(--white); font-size: 2rem; line-height: 1.15; }
.about-intro-visual h3 em { font-style: italic; font-weight: 300; color: var(--rose-500); }
.about-intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.about-intro-stat strong { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; }
.about-intro-stat span { font-size: 0.85rem; opacity: 0.75; }

@media (max-width: 900px) { .about-intro-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Values */
.values-section { background: var(--cream-2); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease);
}
.value-card:hover { transform: translateY(-4px); }
.value-card svg { width: 36px; height: 36px; color: var(--teal-700); margin-bottom: 20px; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.value-card p { font-size: 0.95rem; color: var(--ink-500); }
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.contact-info-block {
  padding: 40px;
  background: linear-gradient(160deg, var(--teal-800), var(--plum-800));
  border-radius: var(--radius-xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,165,180,0.3), transparent 60%);
  border-radius: 50%;
}
.contact-info-block h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 12px; position: relative; z-index: 1; }
.contact-info-block p { color: rgba(255,255,255,0.8); margin-bottom: 32px; position: relative; z-index: 1; }
.contact-list { display: flex; flex-direction: column; gap: 22px; position: relative; z-index: 1; }
.contact-list-item { display: flex; gap: 16px; }
.contact-list-item-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list-item-icon svg { width: 20px; height: 20px; color: var(--rose-500); }
.contact-list-item-text strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-bottom: 4px; }
.contact-list-item-text span, .contact-list-item-text a { font-size: 1rem; font-weight: 500; color: var(--white); }
.contact-list-item-text a:hover { color: var(--rose-500); }

.contact-form-block {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form-block h3 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-block > p { color: var(--ink-500); margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--ink-900); }
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-900);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--teal-700);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-500); margin-top: 16px; }
.form-note a { color: var(--teal-700); font-weight: 600; }
.form-submit { width: 100%; margin-top: 20px; }
.form-success {
  display: none;
  padding: 16px 20px;
  background: var(--teal-50);
  border-left: 3px solid var(--teal-700);
  border-radius: var(--radius-sm);
  color: var(--teal-800);
  font-size: 0.95rem;
  margin-top: 16px;
}
.form-success.show { display: block; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } .form-grid { grid-template-columns: 1fr; } }

/* Map embed */
.map-section { padding-bottom: 96px; }
.map-wrap {
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Reveal animation on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-6 { margin-top: 2.5rem; }

/* Prevent layout shift for menu-open state */
body.menu-open { overflow: hidden; }

/* Focus visible for accessibility */
:focus-visible { outline: 2px solid var(--teal-700); outline-offset: 3px; border-radius: 4px; }

/* Selection */
::selection { background: var(--teal-700); color: var(--white); }

/* ---------- Contact page extras ---------- */
.map-intro { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.map-intro .eyebrow { justify-content: center; }
.map-intro h2 { margin-bottom: 16px; }

.form-submit { width: 100%; justify-content: center; margin-top: 24px; padding: 16px 28px; font-size: 1rem; }

/* Ensure form fields render well within form-grid */
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 42px;
}


/* Fix: Hide phone call text on medium screens to prevent header wrapping */
@media (max-width: 1200px) { .phone-link { display: none; } }
