/* =========================================================
   GCCIndia – styles.css
   Design System: Alegreya (headings) + Manrope (body)
   Primary: #0856a9
   ========================================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: #f9fafb;
  color: #1a2133;
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── CSS Variables ── */
:root {
  --primary: #0856a9;
  --primary-light: #e8f1fb;
  --primary-dark: #064292;
  --accent: #1a7bde;
  --text: #1a2133;
  --text-muted: #5a6478;
  --border: #e0e7ef;
  --bg: #f9fafb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(8,86,169,.10);
  --shadow-lg: 0 12px 48px rgba(8,86,169,.16);
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Section Padding ── */
.section-pad { padding: 96px 0; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-heading {
  font-family: 'Alegreya', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Eyebrow ── */
.section-eyebrow, .hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-header .section-eyebrow { justify-content: center; }
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(8,86,169,.28);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(8,86,169,.36);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px rgba(8,86,169,.14);
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(249,250,251,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 24px rgba(8,86,169,.10);
  background: rgba(255,255,255,.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 4px; }
.logo-img {
  height: 67px;   /* adjust based on your design */
  width: auto;
  display: block;
}
/* .logo-mark {
  background: var(--primary);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 8px;
  letter-spacing: 0.02em;
} */
/* .logo-name {
  font-family: 'Alegreya', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
} */
.logo-light .logo-name { color: #fff; }
/* .logo-light .logo-mark { background: #fff; color: var(--primary); } */

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--primary); background: var(--primary-light); }
.nav-cta { padding: 10px 22px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
  transform-origin: center;
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 900;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.mobile-overlay.active { opacity: 1; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 140px 0 96px;
  background: linear-gradient(135deg, #eef5ff 0%, #f9fafb 60%, #e8f4fd 100%);
  overflow: hidden;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hshape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .45;
}
.hshape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(8,86,169,.12) 0%, transparent 70%);
  top: -120px; right: -100px;
}
.hshape-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(26,123,222,.10) 0%, transparent 70%);
  bottom: -80px; left: 10%;
}
.hshape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(8,86,169,.08) 0%, transparent 70%);
  top: 40%; left: 40%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-heading {
  font-family: 'Alegreya', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-heading em {
  font-style: normal;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  width: fit-content;
}
.hstat { text-align: center; }
.hstat-num {
  display: block;
  font-family: 'Alegreya', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hstat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}
.hstat-sep { width: 1px; height: 40px; background: var(--border); }

/* Hero Image */
.hero-img-wrap {
  position: relative;
}
.hero-img-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.hero-badge-icon { font-size: 1.05rem; color: #0856a9; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.about-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 130px;
}
.afc-num {
  display: block;
  font-family: 'Alegreya', serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.afc-label {
  display: block;
  font-size: 0.78rem;
  opacity: .85;
  margin-top: 6px;
  line-height: 1.4;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-body {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-pillars { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-icon i { font-size: 1rem; color: var(--primary); }
.pillar-text strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 2px; }
.pillar-text p { font-size: 0.85rem; color: var(--text-muted); }

/* =========================================================
   OPPORTUNITY
   ========================================================= */
.opportunity {
  background: linear-gradient(180deg, #f0f6ff 0%, #f9fafb 100%);
}
.opp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 64px;
}
.opp-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.opp-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.opp-badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opp-badge i { font-size: 1.15rem; }
.opp-badge-red { background: #fef2f2; }
.opp-badge-green { background: #f0fdf4; }
.opp-card-head h3 {
  font-family: 'Alegreya', serif;
  font-size: 1.3rem;
  font-weight: 700;
}
.opp-challenge .opp-card-head h3 { color: #b91c1c; }
.opp-solution .opp-card-head h3 { color: #15803d; }

.opp-list { display: flex; flex-direction: column; gap: 20px; }
.opp-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.opp-x, .opp-check {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}
.opp-x { color: #dc2626; background: #fef2f2; font-size: 0.75rem; }
.opp-check { color: #16a34a; background: #f0fdf4; font-size: 0.75rem; }
.opp-list strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 3px; }
.opp-list p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* Chart */
.chart-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.chart-block-head { text-align: center; margin-bottom: 36px; }
.chart-title {
  font-family: 'Alegreya', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.chart-sub { font-size: 0.95rem; color: var(--text-muted); }
.chart-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 8px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8,86,169,.2);
}
.svc-icon {
  width: 60px; height: 60px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background var(--transition);
}
.svc-card:hover .svc-icon { background: rgba(8,86,169,.15); }
.svc-card h3 {
  font-family: 'Alegreya', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.svc-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.svc-list { display: flex; flex-direction: column; gap: 8px; }
.svc-list li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  font-weight: 500;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  background: linear-gradient(180deg, #eef5ff 0%, #f9fafb 100%);
}

/* Horizontal (Desktop) */
.timeline-h { position: relative; padding-top: 20px; overflow: hidden; }
.tl-track {
  position: absolute;
  top: 46px; left: 8%; right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.tl-track-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.tl-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.tl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 10px;
}
.tl-dot {
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Alegreya', serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(8,86,169,.32);
  border: 4px solid var(--bg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tl-step:hover .tl-dot {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(8,86,169,.4);
}
.tl-content h4 {
  font-family: 'Alegreya', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.tl-content p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* Vertical (Mobile) */
.timeline-v { display: none; }
.tv-item { display: flex; gap: 20px; align-items: flex-start; }
.tv-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tv-dot {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Alegreya', serif;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(8,86,169,.28);
}
.tv-line { width: 2px; flex: 1; background: var(--border); margin: 8px 0; min-height: 40px; }
.tv-right { padding-bottom: 32px; }
.tv-right h4 {
  font-family: 'Alegreya', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.tv-right p { font-size: 0.87rem; color: var(--text-muted); }

/* =========================================================
   CASE STUDY
   ========================================================= */
.case-study { background: var(--white); }
.cs-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.cs-img-col { overflow: hidden; }
.cs-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.cs-card:hover .cs-img { transform: scale(1.04); }
.cs-content-col {
  padding: 48px 44px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cs-metrics {
  display: flex;
  gap: 28px;
}
.cs-metric { text-align: center; }
.cs-num {
  display: block;
  font-family: 'Alegreya', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.cs-lbl {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.testimonial {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 28px;
  border-left: 4px solid var(--primary);
  position: relative;
}
.q-icon { position: absolute; top: 16px; right: 20px; }
.testimonial p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.t-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  border: 3px solid var(--primary-light);
}

.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}
.t-footer strong { display: block; font-size: 0.9rem; color: var(--text); }
.t-footer span { font-size: 0.8rem; color: var(--text-muted); }




/* =========================================================
   TEAM
   ========================================================= */
.team {
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 0;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrap {
  background: #f0f7ff;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-content {
  padding: 14px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 105px;
}

.team-card h4 {
  font-family: 'Alegreya', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.35;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.57rem;
}

.team-role {
  font-size: 0.6rem;
  line-height: 1rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  border: 2px solid var(--primary-light);
  transition: all var(--transition);
  margin-top: auto;
}

.linkedin-link i {
  font-size: 0.85rem;
}

.linkedin-link:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 640px;
  }

  .team-img-wrap {
    height: 260px;
  }

  .team-card h4 {
    font-size: 1.2rem;
    min-height: 3.24rem;
  }

  .team-role {
    font-size: 0.68rem;
    min-height: 2rem;
  }

  .team-content {
    padding: 18px 16px 20px;
    min-height: 125px;
  }

  .linkedin-link {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .team-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    text-align: left;
  }

  .team-img-wrap {
    width: 42%;
    height: auto;
    min-height: 170px;
    border-radius: var(--radius) 0 0 var(--radius);
    flex-shrink: 0;
    background: #f0f7ff;
  }

  .team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .team-content {
    flex: 1;
    padding: 18px 16px;
    min-height: unset;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  .team-card h4 {
    font-size: 1.05rem;
    min-height: unset;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    text-align: left;
    margin-bottom: 4px;
  }

  .team-role {
    font-size: 0.62rem;
    min-height: unset;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    text-align: left;
    margin-bottom: 14px;
  }

  .linkedin-link {
    font-size: 0.78rem;
    padding: 6px 13px;
    margin-top: 0;
  }

  .team-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }

  .team-card:hover .team-img {
    transform: none;
  }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--white); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: rgba(8,86,169,.25); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--primary); }
.faq-chevron {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.28s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.4,0,.2,1), padding 0.28s ease;
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background: linear-gradient(135deg, #eef5ff 0%, #f0f8ff 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.75;
}
.contact-perks { display: flex; flex-direction: column; gap: 14px; }
.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.form-group:not(.form-row .form-group) { margin-bottom: 20px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%235a6478' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8,86,169,.12);
  background: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-err {
  font-size: 0.78rem;
  color: #dc2626;
  font-weight: 500;
  min-height: 16px;
}
.form-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.93rem;
  color: #15803d;
  font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #0d1829; color: rgba(255,255,255,.8); }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 72px;
  padding: 72px 24px 60px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 24px;
  opacity: .75;
}
.footer-social { display: flex; gap: 12px; }
.fsoc {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.fsoc:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fcol h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.fcol ul { display: flex; flex-direction: column; gap: 10px; }
.fcol a, .fcol span {
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.fcol a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}

.f-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.f-icon {
  color: rgba(255,255,255,.6);
  flex-shrink: 0;
  margin-top: 2px;
}
.f-icon i { font-size: 0.9rem; }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; opacity: .5; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; opacity: .5; transition: opacity var(--transition); }
.footer-legal a:hover { opacity: 1; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.4,0,.2,1), transform 0.65s cubic-bezier(.4,0,.2,1);
}
.reveal-right {
  transform: translateY(32px) translateX(20px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIVE – Tablet (max 960px)
   ========================================================= */
@media (max-width: 960px) {
  .section-pad { padding: 72px 0; }

  /* Header */
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 90px 28px 40px;
    box-shadow: -8px 0 40px rgba(0,0,0,.12);
    transition: right 0.28s cubic-bezier(.4,0,.2,1);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav.open { right: 0; }
  .mobile-overlay { display: block; pointer-events: none; }
  .mobile-overlay.active { pointer-events: auto; }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    margin-bottom: 24px;
  }
  .nav-link {
    font-size: 1rem;
    padding: 10px 12px;
    width: 100%;
    display: block;
  }
  .nav-cta { width: 100%; justify-content: center; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin: 0 auto; flex-wrap: wrap; justify-content: center; }
  .br-desktop { display: none; }
  .hero-img { height: 340px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img { height: 360px; }
  .about-float-card { right: 12px; bottom: -20px; }

  /* Opportunity */
  .opp-cards { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Process */
  .timeline-h { display: none; }
  .timeline-v { display: block; }

  /* Case Study */
  .cs-card {
    grid-template-columns: 1fr;
  }
  .cs-img { min-height: 260px; height: 260px; }
  .cs-content-col { padding: 32px 28px; }

  /* Team */
  .team-grid { grid-template-columns:repeat(2, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   RESPONSIVE – Mobile (max 600px)
   ========================================================= */
@media (max-width: 600px) {
  .section-pad { padding: 56px 0; }
  .section-heading { font-size: 1.75rem; }
  .section-header { margin-bottom: 40px; }

  /* Hero */
  .hero { padding: 110px 0 64px; }
  .hero-heading { font-size: 1.9rem; }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 16px;
  }
  .hstat-sep { display: none; }
  .hero-img { height: 240px; }

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

  /* CS metrics */
  .cs-metrics { flex-wrap: wrap; gap: 18px; }

  /* Footer */
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Chart */
  .chart-block { padding: 28px 16px; }

  /* About float card */
  .about-float-card { position: static; margin-top: 16px; text-align: center; border-radius: var(--radius-sm); }
  .about-img-wrap { overflow: visible; }

  /* Opp cards */
  .opp-card { padding: 24px 20px; }

  /* Team grid */
  .team-grid { grid-template-columns: 1fr; }

  /* Hero actions */
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .footer-links { grid-template-columns: 1fr; }
}

/* =========================================================
   OPPORTUNITY – India Stats Strip
   ========================================================= */
.india-stats {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  padding: 40px 48px;
  margin-bottom: 64px;
  box-shadow: 0 8px 32px rgba(8,86,169,.28);
}
.india-stat { flex: 1; text-align: center; padding: 0 12px; }
.india-stat-num {
  display: block;
  font-family: 'Alegreya', serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.india-stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  line-height: 1.4;
}
.india-stat-sep {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}

/* US Comparison Sub-Header */
.us-comparison-header {
  text-align: center;
  margin-bottom: 36px;
}
.us-comparison-title {
  font-family: 'Alegreya', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.us-comparison-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Redesigned Challenge/Solution Cards */
.opp-challenge { border-top: 4px solid #dc2626; }
.opp-solution {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(8,86,169,.28);
}
.opp-solution .opp-card-head { border-bottom-color: rgba(255,255,255,.15); }
.opp-solution .opp-card-head h3 { color: #fff; }
.opp-badge-white { background: rgba(255,255,255,.18); }
.opp-solution .opp-check { background: rgba(255,255,255,.2); color: #fff; }
.opp-solution .opp-list strong { color: #fff; }
.opp-solution .opp-list p { color: rgba(255,255,255,.8); }

/* =========================================================
   SERVICES – Tab Interface
   ========================================================= */
.svc-tabs {
  display: flex;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 32px;
}
.svc-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: none;
}
.svc-tab:hover { color: var(--primary); background: rgba(8,86,169,.06); }
.svc-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 2px 12px rgba(8,86,169,.14);
}
.svc-tab-icon { display: flex; align-items: center; flex-shrink: 0; }

.svc-panel { display: none; }
.svc-panel.active { display: block; animation: panelIn 0.3s ease; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.svc-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.svc-item-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-item-icon i { font-size: 1.05rem; color: var(--primary); }
.svc-tab-icon i { font-size: 1rem; color: currentColor; }
.svc-item-card h4 {
  font-family: 'Alegreya', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}
.svc-subtitle {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

/* =========================================================
   ENGAGEMENT MODELS – Premium Cards
   ========================================================= */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.model-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.model-card-accent { height: 5px; width: 100%; }
.model-accent-1 { background: linear-gradient(90deg, #0856a9, #1a7bde); }
.model-accent-2 { background: linear-gradient(90deg, #0856a9, #1a7bde); }
.model-accent-3 { background: linear-gradient(90deg, #0891b2, #06b6d4); }
.model-card-body { padding: 32px 28px; flex: 1; }
.model-num-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.model-num-featured { background: var(--primary-light); color: var(--primary); }
.model-num-3 { background: #ecfdf5; color: #0369a1; }
.model-card h4 {
  font-family: 'Alegreya', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.model-tagline {
  font-size: 0.87rem;
  font-weight: 500;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.5;
}
.model-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.model-delivers-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.model-check-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}
.model-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}
.model-check-list li svg { flex-shrink: 0; margin-top: 1px; }
.model-outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 28px;
  background: var(--primary-light);
  border-top: 1px solid var(--border);
}
.model-outcome svg { flex-shrink: 0; margin-top: 2px; }
.model-check-list li i { font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.model-outcome-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 3px;
}
.model-outcome-text {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

/* Featured badge on white card (Model 02) */
.model-featured-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

/* =========================================================
   RESPONSIVE – Redesigned Sections
   ========================================================= */
/* Model 02 outcome – same as regular */
.model-outcome-featured {
  background: var(--primary-light);
  border-top-color: var(--border);
}
.model-outcome-featured .model-outcome-label { color: var(--primary); }
.model-outcome-featured .model-outcome-text { color: var(--text); }

/* Engagement models background block */
.engagement-models {
  background: linear-gradient(135deg, #eef5ff 0%, #e8f4fd 100%);
  border-radius: 24px;
  padding: 72px 48px 80px;
  margin-top: 64px;
}

@media (max-width: 960px) {
  .india-stats { flex-wrap: wrap; justify-content: center; gap: 24px; padding: 32px 28px; }
  .india-stat-sep { display: none; }
  .india-stat { flex: 0 0 calc(50% - 24px); }
  .svc-tabs { flex-direction: column; gap: 6px; }
  .svc-tab { justify-content: flex-start; }
  .svc-panel-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: 1fr; }
  .engagement-models { padding: 52px 28px 60px; border-radius: 16px; }
}
@media (max-width: 600px) {
  .india-stats { padding: 24px 20px; gap: 18px; }
  .india-stat { flex: 0 0 100%; }
  .india-stat-num { font-size: 2.1rem; }
  .svc-tab span { font-size: 0.84rem; }
  .model-card-body { padding: 24px 20px; }
  .model-outcome { padding: 16px 20px; }
  .us-comparison-title { font-size: 1.25rem; }
}

/* =========================================================
   MODELS CTA (inside Engagement Models block)
   ========================================================= */
.models-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(8,86,169,.15);
}
.models-cta-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 24px;
}
.models-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   CTA BANNER SECTION
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, #0856a9 0%, #053e8a 55%, #0a3d8a 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  bottom: -150px; left: 5%;
  pointer-events: none;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner-heading {
  font-family: 'Alegreya', serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-banner-heading em {
  font-style: normal;
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 5px;
}
.cta-banner-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}
.cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cta-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cta-proof-stat {
  text-align: center;
  padding: 18px 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.cta-proof-num {
  display: block;
  font-family: 'Alegreya', serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.cta-proof-label {
  display: block;
  font-size: 0.74rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  line-height: 1.4;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  justify-content: center;
  font-weight: 700;
}
.cta-btn-white:hover {
  background: #f0f6ff;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.24);
}
.cta-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.38);
  justify-content: center;
  font-weight: 600;
}
.cta-btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive – Container & CTA */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 44px; }
  .cta-banner-actions { flex-direction: row; flex-wrap: wrap; }
  .cta-btn-white, .cta-btn-ghost { flex: 1; min-width: 200px; }
}
@media (max-width: 600px) {
  .cta-banner { padding: 64px 0; }
  .cta-banner-actions { flex-direction: column; }
  .cta-btn-white, .cta-btn-ghost { flex: unset; }
  .models-cta-actions { flex-direction: column; align-items: center; }
  .models-cta-actions .btn { width: 100%; justify-content: center; }
}
