/* =========================================
   WINMARK INDIA — MAIN STYLESHEET
   Political Strategy & Election Architecture
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #102040;
  --navy-light: #1a3a5c;
  --slate:      #2d3f55;
  --slate-mid:  #4a607a;
  --gold:       #c9a84c;
  --gold-light: #e8c77a;
  --gold-dark:  #a07832;
  --white:      #ffffff;
  --off-white:  #f4f6f9;
  --text-grey:  #a8b5c4;
  --text-light: #cdd7e3;
  --danger:     #e74c3c;
  --success:    #27ae60;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-heading: 'Montserrat', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-gold:  0 4px 30px rgba(201, 168, 76, 0.25);
  --shadow-card:  0 8px 40px rgba(0, 0, 0, 0.35);
  --shadow-nav:   0 2px 30px rgba(0, 0, 0, 0.6);

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--ff-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility Classes ── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-pad { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title span { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-grey);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.8;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto;
  border-radius: 2px;
}

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-ring {
  width: 64px; height: 64px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  width: 44px; height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: #fff;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
}
.brand-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--ff-heading);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--navy) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold) !important;
  background: rgba(201, 168, 76, 0.1) !important;
  color: var(--gold) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.65) 50%,
    rgba(16, 32, 64, 0.8) 100%
  );
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.4s both;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #fff4c2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--ff-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeInUp 0.9s ease 0.5s both;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-grey);
  max-width: 580px;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s ease 0.6s both;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.7s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.5);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeInUp 0.9s ease 0.9s both;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-top: 6px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeInUp 1s ease 1.2s both;
}
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}


/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
#about {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.about-visual {
  position: relative;
}
.about-card-main {
  background: linear-gradient(135deg, var(--navy-light), var(--slate));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.about-card-main::before {
  content: '"W"';
  font-family: var(--ff-display);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.04);
  position: absolute;
  top: -40px; right: -20px;
  line-height: 1;
  pointer-events: none;
}
.about-logo-img {
  width: 80px; height: 80px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(201, 168, 76, 0.4);
  margin-bottom: 24px;
  object-fit: cover;
}
.about-card-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.about-card-text {
  color: var(--text-grey);
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
}

.about-float-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 130px;
}
.about-float-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  display: block;
}
.about-float-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-mid);
  margin-top: 4px;
}

.about-content { display: flex; flex-direction: column; gap: 32px; }
.about-text-block .label { font-family: var(--ff-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.about-text-block h3 { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 700; line-height: 1.3; margin-bottom: 16px; }
.about-text-block p { color: var(--text-grey); line-height: 1.85; font-size: 0.98rem; margin-bottom: 12px; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--transition), background var(--transition);
}
.pillar:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}
.pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.pillar h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pillar p  { font-size: 0.78rem; color: var(--text-grey); line-height: 1.6; }


/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
#services {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
#services::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: linear-gradient(145deg, rgba(26, 58, 92, 0.5), rgba(10, 22, 40, 0.8));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-gold);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.15), rgba(26, 58, 92, 0.6));
  border-color: rgba(201, 168, 76, 0.3);
  grid-column: span 1;
}
.service-featured-label {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.service-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: background var(--transition), transform var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(201, 168, 76, 0.2);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-grey);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Last 2 cards span wider in bottom row */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
  grid-column: span 1;
}


/* ═══════════════════════════════════════
   STRATEGIC FRAMEWORK
═══════════════════════════════════════ */
#framework {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.framework-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}
.framework-track::before {
  content: '';
  position: absolute;
  top: 60px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.framework-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num-wrap {
  width: 80px; height: 80px;
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.framework-step:hover .step-num-wrap {
  background: var(--gold);
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
}
.step-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  transition: color var(--transition);
}
.framework-step:hover .step-num { color: var(--navy); }

.step-icon {
  position: absolute;
  top: -8px; right: -8px;
  width: 26px; height: 26px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.step-title {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.83rem;
  color: var(--text-grey);
  line-height: 1.7;
}
.step-sub {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}
.step-sub span {
  font-size: 0.72rem;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Framework bottom CTA */
.framework-cta {
  margin-top: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(26,58,92,0.4));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.framework-cta-text h3 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.framework-cta-text p {
  color: var(--text-grey);
  font-size: 0.95rem;
}


/* ═══════════════════════════════════════
   CLIENTS / REACH SECTION
═══════════════════════════════════════ */
#clients {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 80px;
  border: 1px solid rgba(201,168,76,0.15);
}
.stat-block {
  background: linear-gradient(135deg, rgba(26,58,92,0.4), rgba(10,22,40,0.6));
  padding: 50px 40px;
  text-align: center;
  position: relative;
}
.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-suffix {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold-light);
}
.stat-label {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-top: 10px;
  display: block;
}

/* Client Carousel */
.clients-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.clients-header-row h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.carousel-controls { display: flex; gap: 12px; }
.carousel-btn {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(201,168,76,0.3);
  background: transparent;
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1.1rem;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.clients-track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.clients-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.client-card {
  flex: 0 0 calc(33.333% - 14px);
  background: linear-gradient(145deg, rgba(26,58,92,0.5), rgba(10,22,40,0.7));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.client-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}
.client-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}
.client-name {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.client-role {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.client-state {
  font-size: 0.75rem;
  color: var(--text-grey);
}

/* States Ticker */
.states-ticker {
  margin-top: 64px;
  overflow: hidden;
}
.states-ticker-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-grey);
  text-align: center;
  margin-bottom: 20px;
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker 20s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-grey);
}
.ticker-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════ */
#contact {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.contact-info p {
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item-text span { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* Contact Form */
.contact-form-wrap {
  background: linear-gradient(145deg, rgba(26,58,92,0.4), rgba(10,22,40,0.6));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}
.form-title {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  padding: 13px 16px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control::placeholder { color: rgba(255,255,255,0.2); }
.form-control:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  padding: 13px 16px;
  transition: border-color var(--transition);
  outline: none;
  cursor: pointer;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--navy-mid); }

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 20px;
  display: none;
}
.form-alert.success { background: rgba(39,174,96,0.15); border: 1px solid rgba(39,174,96,0.3); color: #6dd98d; display: block; }
.form-alert.error   { background: rgba(231,76,60,0.15);  border: 1px solid rgba(231,76,60,0.3); color: #f1948a; display: block; }

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-grey);
  text-align: center;
  margin-top: 14px;
}
.form-privacy a { color: var(--gold); text-decoration: underline; }


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #080f1e;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-tagline { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-grey); line-height: 1.8; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-grey);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-grey);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-grey); }
.footer-copy span { color: var(--gold); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: var(--text-grey); transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--gold); }

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); }


/* ═══════════════════════════════════════
   MOBILE NAVIGATION OVERLAY
═══════════════════════════════════════ */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-fast);
}
.nav-mobile a:hover { color: var(--gold); }


/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .framework-track   { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .framework-track::before { display: none; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (Samsung S24 & up)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-actions { gap: 12px; }
  .btn-primary, .btn-outline { padding: 14px 26px; font-size: 0.82rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.8rem; }

  /* About */
  .about-float-card { position: static; margin-top: 24px; display: inline-block; }
  .about-pillars { grid-template-columns: 1fr; }

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

  /* Framework */
  .framework-track { grid-template-columns: 1fr; gap: 48px; }
  .framework-step { align-items: flex-start; text-align: left; flex-direction: row; gap: 20px; }
  .step-num-wrap { flex-shrink: 0; }

  /* Clients */
  .stats-row { grid-template-columns: 1fr; }
  .client-card { flex: 0 0 85vw; }
  .clients-header-row { flex-direction: column; align-items: flex-start; }

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

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Framework CTA */
  .framework-cta { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stat-num { font-size: 1.5rem; }
  .section-title { font-size: 1.8rem; }
  #backToTop { bottom: 20px; right: 20px; }
  .contact-form-wrap { padding: 24px 16px; }
}
