/* ─────────────────────────────────────────────
   KARMAN — Corporate Services Singapore
   styles.css
───────────────────────────────────────────── */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* === CSS CUSTOM PROPERTIES === */
:root {
  --navy:       #0A2540;
  --navy-mid:   #163758;
  --blue:       #1A6BCC;
  --blue-light: #EBF3FD;
  --accent:     #FF5C35;
  --accent-hover: #e04a25;
  --teal:       #00C9A7;
  --amber:      #F5A623;
  --gray-50:    #F8F9FB;
  --gray-100:   #F0F2F5;
  --gray-200:   #E1E4EA;
  --gray-400:   #9AA5B4;
  --gray-600:   #6B7280;
  --gray-800:   #374151;
  --white:      #FFFFFF;
  --shadow-sm:  0 1px 3px rgba(10,37,64,.06), 0 1px 2px rgba(10,37,64,.04);
  --shadow-md:  0 4px 16px rgba(10,37,64,.10);
  --shadow-lg:  0 12px 40px rgba(10,37,64,.14);
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --container:  1180px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

.gradient-text {
  background: linear-gradient(135deg, #1A6BCC 0%, #00C9A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,92,53,.3);
}

.btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn--ghost {
  color: var(--navy);
}
.btn--ghost:hover { color: var(--blue); }

.btn--white {
  background: #fff;
  color: var(--navy);
}
.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.btn--ghost-white {
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
}
.btn--ghost-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

/* === NAVIGATION === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.scrolled {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 16px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
}
.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--blue); background: var(--blue-light); }
.chevron { font-size: 16px; transition: transform .2s; }
.has-dropdown:hover .chevron { transform: rotate(90deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  pointer-events: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown__link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: background .15s;
}
.dropdown__link:hover { background: var(--gray-50); }
.dropdown__icon { font-size: 20px; margin-top: 1px; }
.dropdown__link strong { display: block; font-size: 14px; color: var(--navy); }
.dropdown__link p { font-size: 13px; color: var(--gray-600); margin-top: 1px; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #F0F6FF 0%, #EBF3FD 40%, #F0FFF9 100%);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,107,204,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,204,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,201,167,.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,201,167,0); }
}

.hero__heading {
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.hero__subtext {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  box-shadow: var(--shadow-md);
  max-width: 480px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}
.stat {
  flex: 1;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.stat span {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  margin: 0 24px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-indicator span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  margin: 0 auto;
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* === TRUST BAR === */
.trust-bar {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  padding: 28px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-bar__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-logo {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 6px 16px;
}

/* === SERVICES === */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--blue-light));
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-color: transparent;
}
.service-card--featured h3,
.service-card--featured p { color: #fff; }
.service-card--featured .service-list li { color: rgba(255,255,255,.85); }
.service-card--featured .service-link { color: var(--teal); }
.service-card--featured::before { background: linear-gradient(135deg, transparent 60%, rgba(255,255,255,.05)); }

.service-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-list {
  margin-bottom: 24px;
}
.service-list li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 11px;
}
.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: color .2s, gap .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: var(--accent); }

/* === WHY KARMAN === */
.why { background: var(--gray-50); }

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__content .section-heading {
  text-align: left;
}
.why__content .section-subtext {
  text-align: left;
  margin-bottom: 40px;
}

.why__points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-point__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.why-point h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.why-point p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Compliance Card Stack */
.why__visual {
  position: relative;
}
.why__card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compliance-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s;
}
.compliance-card:hover { transform: translateX(4px); }
.compliance-card--upcoming {
  border-color: var(--amber);
  background: #FFFBF0;
}
.compliance-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.compliance-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.compliance-dot.green { background: var(--teal); }
.compliance-dot.amber { background: var(--amber); }
.compliance-dot.blue { background: var(--blue); }
.compliance-status {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0,201,167,.1);
  padding: 2px 8px;
  border-radius: 100px;
}
.compliance-status.upcoming {
  color: #92740A;
  background: rgba(245,166,35,.15);
}
.compliance-status.processing {
  color: var(--blue);
  background: var(--blue-light);
}
.compliance-card__date {
  font-size: 12px;
  color: var(--gray-600);
  padding-left: 16px;
}
.why__card-caption {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 16px;
}

/* === PROCESS === */
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
}
.process-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-sm);
}
.process-step__number {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.process-step__arrow {
  font-size: 28px;
  color: var(--gray-200);
  margin-top: 60px;
  flex-shrink: 0;
}

/* === PRICING === */
.pricing { background: var(--gray-50); }

.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 4px;
  margin: 0 auto 48px;
  max-width: fit-content;
}
.pricing-tab {
  padding: 10px 24px;
  border-radius: calc(var(--radius) - 4px);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: all .2s;
}
.pricing-tab.active {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.pricing-tab:hover:not(.active) { color: var(--blue); }

.pricing__plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing__plans.hidden { display: none; }

.plan-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.plan-card--popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}
.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-card__header h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.plan-card__header p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.plan-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}
.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -.03em;
}
.price-period {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.plan-features {
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 14px;
  color: var(--gray-800);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.plan-features li.text-muted { color: var(--gray-400); }
.plan-features li.text-muted::before { color: var(--gray-200); }

.pricing__note {
  text-align: center;
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 32px;
}
.pricing__note a { color: var(--blue); font-weight: 500; }
.pricing__note a:hover { text-decoration: underline; }

/* === TESTIMONIALS === */
.testimonials { background: #fff; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-card--accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-color: transparent;
}
.testimonial-card--accent p { color: rgba(255,255,255,.9); }

.testimonial-card__stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}
.testimonial-card--accent .testimonial-card__author strong { color: #fff; }
.testimonial-card__author span {
  font-size: 12px;
  color: var(--gray-600);
}
.testimonial-card--accent .testimonial-card__author span { color: rgba(255,255,255,.6); }

/* === FAQ === */
.faq { background: var(--gray-50); }

.faq__grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .15s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--blue);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
}
.faq-answer.open { display: block; }
.faq-answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 50%, #163758 100%);
  padding: 80px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__content h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #fff;
  margin-bottom: 8px;
}
.cta-banner__content p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
}
.cta-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* === CONTACT === */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}
.contact__info .section-heading { text-align: left; }
.contact__info > p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail__icon { font-size: 22px; }
.contact-detail strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.contact-detail p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.contact-detail a { color: var(--blue); }
.contact-detail a:hover { text-decoration: underline; }

/* Form */
.form {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,107,204,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236B7280' d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 12px;
  line-height: 1.5;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand .logo-text { color: #fff; }
.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15);
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer__bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp .7s ease forwards;
}
.fade-in:nth-child(2) { animation-delay: .1s; }
.fade-in:nth-child(3) { animation-delay: .2s; }
.fade-in:nth-child(4) { animation-delay: .3s; }
.fade-in:nth-child(5) { animation-delay: .4s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .service-card--featured { grid-column: span 1; }
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__content .section-heading,
  .why__content .section-subtext { text-align: center; }
  .why__points { max-width: 500px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav__menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s, opacity .3s;
    gap: 4px;
    z-index: 999;
  }
  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .dropdown { display: none; }
  .chevron { display: none; }

  .hero__stats {
    padding: 16px 20px;
    gap: 0;
  }
  .stat strong { font-size: 22px; }
  .stat-divider { margin: 0 16px; }

  .hero__ctas { flex-direction: column; align-items: center; }

  .services__grid { grid-template-columns: 1fr; }
  .pricing__plans { grid-template-columns: 1fr; max-width: 400px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .process__steps { flex-direction: column; align-items: center; }
  .process-step__arrow { transform: rotate(90deg); margin: -8px 0; }
  .process-step { max-width: 100%; }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
  .form { padding: 28px 20px; }

  .trust-bar__inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .hero__heading { font-size: 38px; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 100%; height: 1px; margin: 0; }
  .pricing__tabs { flex-direction: column; max-width: 100%; }
  .footer__links { grid-template-columns: 1fr; }
}
