/* ============================================================
   NexMark Digital — Master Stylesheet
   File: /assets/main.css
   One file. All styles. No external dependencies.
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --navy:        #1a3a5c;
  --navy-deep:   #0f1e2e;
  --gold:        #c8a04a;
  --gold-light:  #e8c97a;
  --warm-white:  #f5f3ef;
  --steel:       #6b7a8d;
  --steel-light: #a0b0c0;
  --white:       #ffffff;
  --text-dark:   #0f1e2e;
  --text-body:   #3a4a5c;
  --border:      rgba(26,58,92,0.12);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --max-w:       1160px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: var(--font-body); }

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

/* ── TYPOGRAPHY UTILITIES ── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.3px;
}
.section-heading em { font-style: normal; color: var(--navy); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-deep);
  padding: 14px 28px; border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 13px 28px; border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none;
  border: 1.5px solid var(--navy); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4); cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ── ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-left.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
#nm-topbar {
  background: var(--navy); padding: 8px 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  position: relative;
}
#nm-topbar span { font-size: 12px; color: rgba(255,255,255,0.8); }
#nm-topbar a { color: var(--gold); font-weight: 600; text-decoration: none; font-size: 12px; }
.nm-topbar-close { position: absolute; right: 16px; background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 18px; line-height: 1; padding: 0; }

#nm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 40px; width: auto; display: block; }
.footer-logo-img { height: 36px; width: auto; display: block; }
.nav-logo-icon { width: 46px; height: 46px; flex-shrink: 0; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-wordmark-main { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.5px; line-height: 1; }
.nav-wordmark-main .nex { color: var(--navy); }
.nav-wordmark-main .mark { color: var(--gold); }
.nav-wordmark-sub { font-size: 8px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--steel); margin-top: 5px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500; color: var(--text-body);
  text-decoration: none; padding: 8px 12px; border-radius: 6px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--navy); background: rgba(26,58,92,0.04); }
.nav-links > li > a.nav-active { color: var(--navy); font-weight: 600; }
.nav-links > li > a.nav-active::after {
  content: ''; position: absolute; bottom: 2px; left: 12px; right: 12px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.dropdown-arrow { font-size: 10px; opacity: 0.5; transition: transform 0.2s; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px; min-width: 230px;
  box-shadow: 0 8px 32px rgba(26,58,92,0.12);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s; z-index: 100;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 500; color: var(--text-body);
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--warm-white); color: var(--navy); }
.dm-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1px; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; white-space: nowrap; }
.nav-phone:hover { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--navy-deep);
  padding: 10px 20px; border-radius: 4px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  white-space: nowrap; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav-mobile {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); padding: 16px 24px 32px;
  z-index: 999; overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nm-mob-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); padding: 12px 0 6px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.nav-mobile a { display: block; padding: 11px 0; font-size: 15px; font-weight: 500; color: var(--text-body); text-decoration: none; border-bottom: 1px solid rgba(26,58,92,0.05); }
.nav-mobile a:hover, .nav-mobile a.nav-active { color: var(--gold); font-weight: 600; }
.nm-mob-cta { display: flex; gap: 12px; margin-top: 20px; }
.nm-mob-cta a { flex: 1; text-align: center; padding: 13px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; }
.nm-cta-wa { background: #25D366; color: white; }
.nm-cta-audit { background: var(--gold); color: var(--navy-deep); }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
#nm-footer { background: var(--navy-deep); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.footer-wordmark { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.footer-wordmark .nex { color: #f5f3ef; }
.footer-wordmark .mark { color: var(--gold); }
.footer-wordmark-sub { font-size: 7px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--steel); margin-top: 2px; }
.footer-tagline { font-size: 13px; color: var(--steel); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-social { display: flex; gap: 8px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.social-btn.wa { background: #25D366; color: white; }
.social-btn.wa:hover { background: #1ea855; transform: translateY(-2px); }
.social-btn.li { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.social-btn.li:hover { background: #0077b5; color: white; transform: translateY(-2px); }
.social-btn.ig { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }
.social-btn.ig:hover { background: #e4405f; color: white; transform: translateY(-2px); }
.footer-col-heading { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-light); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--steel); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--steel); margin-bottom: 10px; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--steel); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-hours { margin-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 12px; }
.hours-item { display: flex; justify-content: space-between; font-size: 12px; padding: 4px 0; }
.hours-item span:first-child { color: var(--steel); }
.hours-item span:last-child { color: rgba(255,255,255,0.6); font-weight: 500; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 12px; color: var(--steel); }
.footer-keywords { font-size: 11px; color: rgba(107,122,141,0.6); }

/* Floating WhatsApp */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float-label {
  position: absolute; right: 68px; background: var(--navy-deep);
  color: white; font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: 6px; white-space: nowrap;
  opacity: 0; transform: translateX(8px); transition: all 0.2s; pointer-events: none;
}
.wa-float-label::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--navy-deep); border-right: none;
}
.wa-float:hover .wa-float-label { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════
   PAGE HEROES (shared base)
   ══════════════════════════════════════════ */
.page-hero, .service-hero, .about-hero, .case-hero {
  padding: 140px 0 80px;
  background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.page-hero::before, .service-hero::before, .about-hero::before, .case-hero::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 60px,rgba(200,160,74,1) 60px,rgba(200,160,74,1) 61px),
    repeating-linear-gradient(90deg,transparent,transparent 60px,rgba(200,160,74,1) 60px,rgba(200,160,74,1) 61px);
}
.hero-gold-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { font-size: 12px; color: var(--steel-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { font-size: 12px; color: var(--steel); }
.breadcrumb-current { font-size: 12px; color: var(--gold); font-weight: 500; }

/* ══════════════════════════════════════════
   HOMEPAGE
   ══════════════════════════════════════════ */
/* Hero */
.hero-section {
  min-height: 100vh; background: var(--navy-deep);
  display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 60px,rgba(200,160,74,1) 60px,rgba(200,160,74,1) 61px),
    repeating-linear-gradient(90deg,transparent,transparent 60px,rgba(200,160,74,1) 60px,rgba(200,160,74,1) 61px);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(200,160,74,0.12); border: 1px solid rgba(200,160,74,0.3); padding: 8px 16px; border-radius: 100px; margin-bottom: 28px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero-badge span { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-h1 { font-family: var(--font-display); font-size: clamp(27px,3.8vw,54px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.3px; }
.hero-h1 em { font-style: normal; color: var(--gold); border-bottom: 2px solid rgba(200,160,74,0.4); }
.hero-tagline { font-size: 15px; font-weight: 400; color: var(--steel-light); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.hero-desc { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 520px; }
.hero-desc strong { color: var(--gold); font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-credentials { display: flex; gap: 10px; flex-wrap: wrap; }
.cred-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 6px 12px; border-radius: 100px; }
.cred-pill span { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.03em; white-space: nowrap; }
/* Hero right card */
.hero-stats-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 32px; backdrop-filter: blur(10px); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; margin-bottom: 24px; }
.stat-box { background: rgba(15,30,46,0.8); padding: 24px 20px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--steel-light); letter-spacing: 0.05em; line-height: 1.4; }
.hero-result-strip { display: flex; flex-direction: column; gap: 12px; }
.result-item { display: flex; align-items: flex-start; gap: 12px; background: rgba(200,160,74,0.08); border: 1px solid rgba(200,160,74,0.2); border-radius: 8px; padding: 14px 16px; }
.result-icon { width: 32px; height: 32px; border-radius: 6px; background: rgba(200,160,74,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.result-client { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.result-desc { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.4; }
/* Clients strip */
.clients-strip { background: var(--warm-white); padding: 28px 0; border-bottom: 1px solid var(--border); }
.clients-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.clients-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); white-space: nowrap; }
.client-names { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.client-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy); opacity: 0.55; transition: opacity 0.2s; white-space: nowrap; }
.client-name:hover { opacity: 1; }
.client-divider { width: 1px; height: 20px; background: var(--border); }
/* Why section */
.why-section { padding: 100px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.founder-quote { border-left: 3px solid var(--gold); padding: 16px 20px; background: var(--warm-white); border-radius: 0 8px 8px 0; margin-bottom: 32px; }
.founder-quote p { font-family: var(--font-display); font-size: 17px; color: var(--navy); line-height: 1.6; font-style: italic; }
.founder-quote cite { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }
.why-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--border); border-radius: 8px; transition: all 0.3s; }
.pillar:hover { border-color: var(--gold); background: var(--warm-white); transform: translateX(4px); }
.pillar-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pillar-text h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.pillar-text p { font-size: 13px; color: var(--steel); line-height: 1.6; }
/* Services section */
.services-section { padding: 100px 0; background: var(--navy-deep); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-heading { font-family: var(--font-display); font-size: clamp(26px,3.5vw,44px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.services-heading em { font-style: normal; color: var(--gold); }
.services-subhead { font-size: 16px; color: var(--steel-light); max-width: 560px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }
.service-card { background: rgba(15,30,46,0.7); padding: 36px 28px; transition: background 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.service-card:hover { background: rgba(26,58,92,0.5); }
.service-card:hover::before { transform: scaleX(1); }
.service-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(200,160,74,0.12); line-height: 1; margin-bottom: 16px; }
.service-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(200,160,74,0.1); border: 1px solid rgba(200,160,74,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; line-height: 1.25; }
.service-tag-small { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: rgba(200,160,74,0.1); padding: 3px 10px; border-radius: 100px; margin-bottom: 14px; }
.service-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.service-proof { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12px; color: var(--gold); font-weight: 500; }
/* Results section */
.results-section { padding: 100px 0; background: var(--warm-white); }
.results-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.result-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 36px; transition: all 0.3s; position: relative; overflow: hidden; }
.result-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.result-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(26,58,92,0.1); }
.result-card:hover::after { transform: scaleX(1); }
.result-card-client { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.result-card-client::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.result-metric { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px; }
.result-metric span { color: var(--gold); }
.result-context { font-size: 15px; color: var(--text-body); line-height: 1.6; margin-bottom: 16px; }
.result-timeframe { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.result-timeframe::before { content: ''; display: block; width: 12px; height: 1px; background: var(--gold); }
/* Founder section */
.founder-section { padding: 100px 0; background: var(--white); }
.founder-grid { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; }
.founder-photo-wrap { position: relative; }
.founder-photo-placeholder { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg,var(--navy) 0%,var(--navy-deep) 100%); border-radius: 12px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; position: relative; }
.founder-photo-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.founder-photo-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(15,30,46,0.9)); padding: 32px 24px 24px; }
.founder-name-card { background: var(--gold); padding: 16px 20px; border-radius: 8px; display: inline-block; }
.founder-name-card .fn { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy-deep); line-height: 1; }
.founder-name-card .ft { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(15,30,46,0.7); margin-top: 3px; }
.founder-cred-badges { position: absolute; top: 20px; right: -20px; display: flex; flex-direction: column; gap: 8px; }
.cred-badge { background: var(--white); border: 1px solid var(--border); padding: 8px 14px; border-radius: 6px; box-shadow: 0 4px 12px rgba(26,58,92,0.1); white-space: nowrap; }
.cred-badge .cb-label { font-size: 10px; color: var(--steel); letter-spacing: 0.05em; text-transform: uppercase; }
.cred-badge .cb-value { font-size: 13px; font-weight: 600; color: var(--navy); }
.founder-story { font-size: 17px; line-height: 1.85; color: var(--text-body); margin-bottom: 28px; }
.founder-story strong { color: var(--navy); font-weight: 600; }
.founder-milestones { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.milestone { background: var(--warm-white); border-radius: 8px; padding: 20px; border-left: 3px solid var(--gold); }
.milestone-year { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.milestone-text { font-size: 14px; color: var(--text-dark); font-weight: 500; line-height: 1.4; }
/* Team */
.team-section { padding: 100px 0; background: var(--warm-white); }
.team-header { text-align: center; margin-bottom: 60px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 20px; text-align: center; transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(26,58,92,0.08); border-color: var(--gold); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--navy); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold); }
.team-name { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--steel); letter-spacing: 0.04em; margin-bottom: 12px; }
.team-exp { font-size: 11px; font-weight: 600; color: var(--gold); background: rgba(200,160,74,0.1); padding: 4px 12px; border-radius: 100px; display: inline-block; }
/* CTA section */
.cta-section { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.cta-section::before, .cta-strip::before { content: ''; position: absolute; inset: 0; opacity: 0.03; background-image: repeating-linear-gradient(45deg,rgba(200,160,74,1) 0,rgba(200,160,74,1) 1px,transparent 0,transparent 50%); background-size: 24px 24px; }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-heading { font-family: var(--font-display); font-size: clamp(28px,3vw,40px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.cta-heading em { font-style: normal; color: var(--gold); }
.cta-sub { font-size: 16px; color: var(--steel-light); }
.cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.cta-contact-block { text-align: right; }
.cta-contact-label { font-size: 11px; color: var(--steel-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.cta-contact-number { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); text-decoration: none; display: block; }
.cta-contact-email { font-size: 13px; color: var(--steel-light); }

/* ══════════════════════════════════════════
   SERVICE PAGES
   ══════════════════════════════════════════ */
.service-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.service-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,160,74,0.12); border: 1px solid rgba(200,160,74,0.3); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.service-hero-tag span { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.service-hero h1 { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 700; color: var(--white); line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.5px; }
.service-hero h1 em { font-style: normal; color: var(--gold); }
.service-hero-desc { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.72); margin-bottom: 32px; max-width: 560px; }
.service-hero-desc strong { color: var(--gold); font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
/* Inline lead form */
.hero-form-card { background: var(--white); border-radius: 12px; padding: 32px; }
.hero-form-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.hero-form-card > p { font-size: 13px; color: var(--steel); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 6px; font-family: var(--font-body); font-size: 14px; color: var(--text-dark); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a8d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { width: 100%; padding: 14px; background: var(--gold); color: var(--navy-deep); border: none; border-radius: 6px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s; letter-spacing: 0.04em; }
.form-submit:hover { background: var(--gold-light); }
.form-note { font-size: 11px; color: var(--steel); text-align: center; margin-top: 10px; }
.form-hidden { display: none !important; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* Proof bar */
.proof-bar { background: var(--warm-white); padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-bar-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.proof-stat { text-align: center; }
.proof-stat-number { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; }
.proof-stat-number em { font-style: normal; color: var(--gold); }
.proof-stat-label { font-size: 12px; color: var(--steel); margin-top: 4px; letter-spacing: 0.04em; }
/* Content sections */
.content-section { padding: 80px 0; }
.content-section.bg-warm { background: var(--warm-white); }
.content-section.bg-navy { background: var(--navy-deep); }
.content-section.bg-navy p { color: rgba(255,255,255,0.7); }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.three-col-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
/* Feature cards */
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: all 0.3s; }
.feature-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,58,92,0.08); }
.feature-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(26,58,92,0.06); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--steel); line-height: 1.7; }
/* Result proof box */
.result-proof { background: var(--navy); border-radius: 12px; padding: 32px; }
.result-proof-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.result-proof-label { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.result-proof-client { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
/* Process steps */
.process-steps { display: flex; flex-direction: column; }
.process-step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.step-number { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-content h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: var(--steel); line-height: 1.7; }
/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pricing-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 32px; transition: all 0.3s; position: relative; }
.pricing-card.featured { border-color: var(--gold); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(26,58,92,0.1); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-deep); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.pricing-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.pricing-tagline { font-size: 13px; color: var(--steel); margin-bottom: 20px; }
.pricing-price { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 14px; color: var(--steel); font-family: var(--font-body); font-weight: 400; }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-body); line-height: 1.5; }
.pricing-features li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: rgba(200,160,74,0.15); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23c8a04a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.pricing-cta { width: 100%; padding: 13px; text-align: center; border-radius: 6px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none; display: block; letter-spacing: 0.04em; }
.pricing-cta-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.pricing-cta-outline:hover { background: var(--navy); color: var(--white); }
.pricing-cta-filled { border: none; background: var(--gold); color: var(--navy-deep); }
.pricing-cta-filled:hover { background: var(--gold-light); }
/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; gap: 16px; user-select: none; }
.faq-q-text { font-size: 16px; font-weight: 500; color: var(--text-dark); line-height: 1.4; }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--warm-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--steel); line-height: 1.8; padding-bottom: 20px; display: none; }
.faq-item.open .faq-a { display: block; }
/* CTA strip */
.cta-strip { padding: 80px 0; background: var(--navy); position: relative; overflow: hidden; }
.cta-strip-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-strip-inner h2 { font-family: var(--font-display); font-size: clamp(26px,3vw,38px); font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.cta-strip-inner h2 em { font-style: normal; color: var(--gold); }
.cta-strip-inner p { font-size: 16px; color: var(--steel-light); margin-bottom: 32px; }
.cta-strip-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* Story para */
.story-para { font-size: 17px; line-height: 1.9; color: var(--text-body); margin-bottom: 24px; }
.story-para strong { color: var(--navy); font-weight: 600; }
.story-para em { font-style: italic; }
.pull-quote { border-left: 3px solid var(--gold); padding: 16px 20px; background: var(--warm-white); border-radius: 0 8px 8px 0; margin-bottom: 32px; }
.pull-quote p { font-family: var(--font-display); font-size: 17px; color: var(--navy); line-height: 1.6; font-style: italic; }
.pull-quote cite { display: block; margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-style: normal; }

/* ══════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════ */
.about-hero { padding: 120px 0 0; }
.about-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 460px; gap: 0; align-items: end; }
.about-hero-left { padding: 60px 60px 0 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(200,160,74,0.12); border: 1px solid rgba(200,160,74,0.3); padding: 7px 16px; border-radius: 100px; margin-bottom: 24px; }
.hero-eyebrow span { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.about-h1 { font-family: var(--font-display); font-size: clamp(36px,4vw,56px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px; }
.about-h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 500px; }
.hero-sub strong { color: var(--gold); font-weight: 600; }
.hero-creds { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.cred-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 8px 14px; border-radius: 4px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.03em; }
.about-hero-photo { position: relative; align-self: end; }
.about-hero-photo img { width: 100%; max-height: 520px; object-fit: cover; object-position: top center; display: block; }
.about-photo-gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(transparent, var(--navy-deep)); }
.hero-stat-pills { position: absolute; left: -40px; top: 40px; display: flex; flex-direction: column; gap: 10px; }
.stat-pill { background: var(--white); border-radius: 8px; padding: 12px 16px; box-shadow: 0 8px 24px rgba(15,30,46,0.2); min-width: 160px; }
.stat-pill-number { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-pill-number em { font-style: normal; color: var(--gold); }
.stat-pill-label { font-size: 11px; color: var(--steel); margin-top: 2px; line-height: 1.3; }
/* About story section */
.story-section { padding: 100px 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), rgba(200,160,74,0.2)); }
.timeline-item { display: flex; gap: 20px; margin-bottom: 40px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.tl-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.tl-year { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.tl-title { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; font-family: var(--font-display); }
.tl-desc { font-size: 13px; color: var(--steel); line-height: 1.6; }
/* Milestones strip */
.milestones-strip { background: var(--navy); padding: 56px 0; }
.milestones-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; }
.milestone-box { background: rgba(15,30,46,0.6); padding: 32px 24px; text-align: center; }
.milestone-number { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.milestone-label { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
/* Life + Family section */
.life-section { padding: 100px 0; background: var(--warm-white); }
.life-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.life-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.life-card-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.life-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; line-height: 1.2; }
.life-card p { font-size: 15px; color: var(--text-body); line-height: 1.85; }
.life-card p strong { color: var(--navy); font-weight: 600; }
.life-card p em { font-style: italic; }
/* Personal interests */
.personal-strip { padding: 80px 0; background: var(--white); }
.personal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.personal-card { background: var(--warm-white); border-radius: 12px; padding: 28px; border-bottom: 3px solid var(--gold); }
.personal-card-icon { font-size: 28px; margin-bottom: 14px; }
.personal-card h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.personal-card p { font-size: 13px; color: var(--steel); line-height: 1.7; }
/* About team section */
.about-team-section { padding: 100px 0; background: var(--navy-deep); }
.about-team-header { text-align: center; margin-bottom: 64px; }
.about-team-heading { font-family: var(--font-display); font-size: clamp(28px,3.5vw,42px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.about-team-heading em { font-style: normal; color: var(--gold); }
.founder-featured { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; margin-bottom: 32px; display: grid; grid-template-columns: 320px 1fr; }
.founder-featured-photo { position: relative; background: var(--navy); }
.founder-featured-photo img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; object-position: top; display: block; }
.founder-featured-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent,rgba(15,30,46,0.95)); padding: 24px 20px 20px; }
.founder-featured-content { padding: 48px 40px; }
.ff-name { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.ff-title { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.ff-bio { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.85; margin-bottom: 28px; }
.ff-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.ff-tag { background: rgba(200,160,74,0.1); border: 1px solid rgba(200,160,74,0.25); color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; padding: 5px 12px; border-radius: 100px; }
.ff-achievements { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ff-achievement { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 14px 16px; }
.ff-achievement-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; }
.ff-achievement-lbl { font-size: 11px; color: var(--steel-light); margin-top: 3px; line-height: 1.4; }
.about-team-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.about-team-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 24px 16px; text-align: center; transition: all 0.3s; }
.about-team-card:hover { border-color: rgba(200,160,74,0.4); background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.about-team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--navy); border: 2px solid rgba(200,160,74,0.3); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); }
.about-team-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.about-team-role { font-size: 11px; color: var(--steel-light); letter-spacing: 0.04em; margin-bottom: 12px; line-height: 1.4; }
.about-team-strength { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.about-team-exp { display: inline-block; font-size: 10px; font-weight: 600; color: var(--gold); background: rgba(200,160,74,0.1); padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; }
/* Values */
.values-section { padding: 100px 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.value-card { padding: 36px 28px; border: 1px solid var(--border); border-radius: 12px; transition: all 0.3s; position: relative; overflow: hidden; }
.value-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.value-card:hover { border-color: var(--gold); }
.value-card:hover::after { transform: scaleX(1); }
.value-number { font-family: var(--font-display); font-size: 64px; font-weight: 700; color: rgba(26,58,92,0.06); line-height: 1; margin-bottom: 12px; }
.value-title { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; font-family: var(--font-display); }
.value-desc { font-size: 14px; color: var(--steel); line-height: 1.75; }
/* About CTA */
.about-cta { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.about-cta::before { content: ''; position: absolute; inset: 0; opacity: 0.03; background-image: repeating-linear-gradient(45deg,rgba(200,160,74,1) 0,rgba(200,160,74,1) 1px,transparent 0,transparent 50%); background-size: 24px 24px; }
.about-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }

/* ══════════════════════════════════════════
   CASE STUDIES
   ══════════════════════════════════════════ */
.cases-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.cases-page-h1 { font-family: var(--font-display); font-size: clamp(36px,4.5vw,58px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px; }
.cases-page-h1 em { font-style: normal; color: var(--gold); }
.stats-bar { background: var(--gold); padding: 28px 0; }
.stats-bar-inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; }
.stat-item-number { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--navy-deep); line-height: 1; }
.stat-item-label { font-size: 12px; color: rgba(15,30,46,0.7); margin-top: 3px; font-weight: 500; }
.cases-section { padding: 100px 0; background: var(--white); }
.cases-grid { display: grid; gap: 32px; }
.case-card { display: grid; grid-template-columns: 1fr 380px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.case-card:hover { box-shadow: 0 20px 48px rgba(26,58,92,0.1); transform: translateY(-3px); }
.case-card.reverse { grid-template-columns: 380px 1fr; }
.case-card-visual { background: var(--navy-deep); padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.case-card-visual::before { content: ''; position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(200,160,74,0.06); }
.case-industry { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.case-brand { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.1; }
.case-tagline { font-size: 14px; color: var(--steel-light); line-height: 1.6; margin-bottom: 32px; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 14px 16px; }
.metric-number { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; }
.metric-label { font-size: 11px; color: var(--steel-light); margin-top: 3px; line-height: 1.3; }
.case-card-content { padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between; }
.case-services { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.service-chip { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; background: rgba(26,58,92,0.06); color: var(--navy); padding: 5px 12px; border-radius: 100px; }
.case-challenge-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.case-challenge { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; }
.case-result-highlight { background: var(--warm-white); border-left: 3px solid var(--gold); padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 28px; }
.case-result-highlight p { font-family: var(--font-display); font-size: 16px; color: var(--navy); font-style: italic; line-height: 1.5; }
.case-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; transition: gap 0.2s, color 0.2s; }
.case-read-more:hover { gap: 14px; color: var(--gold); }
/* Secondary results */
.secondary-section { padding: 80px 0; background: var(--warm-white); }
.secondary-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.secondary-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: all 0.3s; }
.secondary-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,58,92,0.08); }
.sc-industry { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.sc-industry::before { content: ''; display: block; width: 16px; height: 1px; background: var(--gold); }
.sc-brand { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.sc-metrics { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.sc-metric { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: var(--warm-white); border-radius: 6px; }
.sc-metric-value { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); }
.sc-metric-label { font-size: 12px; color: var(--steel); }
.sc-services { font-size: 12px; color: var(--steel); font-weight: 500; }
/* Clients pill strip */
.clients-section { padding: 72px 0; background: var(--navy); }
.clients-label-text { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel-light); text-align: center; margin-bottom: 32px; }
.clients-pill-row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.client-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 6px; font-family: var(--font-display); font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 600; transition: all 0.2s; }
.client-pill:hover { background: rgba(200,160,74,0.1); border-color: rgba(200,160,74,0.3); color: var(--gold); }
/* Individual case study */
.case-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: start; }
.case-industry-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,160,74,0.12); border: 1px solid rgba(200,160,74,0.3); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.case-industry-tag span { font-size: 11px; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.case-hero h1 { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 700; color: var(--white); line-height: 1.12; margin-bottom: 20px; letter-spacing: -0.5px; }
.case-hero h1 em { font-style: normal; color: var(--gold); }
.case-hero-desc { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 580px; margin-bottom: 28px; }
.case-hero-desc strong { color: var(--gold); font-weight: 600; }
.services-used { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); padding: 6px 14px; border-radius: 100px; }
.hero-metrics-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 28px; min-width: 260px; flex-shrink: 0; }
.hero-metrics-card h3 { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.metric-list { display: flex; flex-direction: column; gap: 12px; }
.metric-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(15,30,46,0.5); border-radius: 8px; }
.metric-val { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gold); }
.metric-lbl { font-size: 12px; color: var(--steel-light); text-align: right; max-width: 120px; line-height: 1.3; }
.key-results-strip { background: var(--gold); padding: 48px 0; }
.kr-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(15,30,46,0.15); border-radius: 8px; overflow: hidden; }
.kr-box { background: var(--gold); padding: 28px 20px; text-align: center; }
.kr-number { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--navy-deep); line-height: 1; margin-bottom: 6px; }
.kr-label { font-size: 12px; color: rgba(15,30,46,0.7); font-weight: 500; line-height: 1.4; }
.cs-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cs-three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.timeline-steps { display: flex; flex-direction: column; }
.tstep { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.tstep:last-child { border-bottom: none; }
.tstep-num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tstep h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.tstep p { font-size: 14px; color: var(--steel); line-height: 1.7; }
.result-boxes { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.result-box { background: var(--navy); border-radius: 12px; padding: 28px; text-align: center; }
.result-box-number { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.result-box-label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; }
.next-cases { padding: 72px 0; background: var(--warm-white); }
.next-cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.next-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; text-decoration: none; transition: all 0.3s; display: block; }
.next-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,58,92,0.08); }
.next-card-industry { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.next-card-brand { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.next-card-result { font-size: 13px; color: var(--steel); line-height: 1.6; margin-bottom: 16px; }
.next-card-link { font-size: 13px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 6px; }

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.contact-section { padding: 80px 0 100px; background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.form-card { background: var(--white); border-radius: 16px; padding: 48px 40px; box-shadow: 0 4px 24px rgba(26,58,92,0.08); border: 1px solid var(--border); }
.form-card h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--steel); margin-bottom: 32px; line-height: 1.6; }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.checkbox-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--navy); }
.checkbox-group label { font-size: 13px; color: var(--steel); line-height: 1.5; }
.error-msg { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; display: none; }
.success-state { display: none; text-align: center; padding: 40px 20px; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(200,160,74,0.1); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--white); border-radius: 12px; padding: 28px; border: 1px solid var(--border); }
.sidebar-card.dark { background: var(--navy); border-color: var(--navy); }
.founder-contact { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.founder-photo-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid var(--gold); flex-shrink: 0; }
.founder-info h3 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.founder-info > p { font-size: 12px; color: var(--steel); }
.founder-info .founder-badge { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); background: rgba(200,160,74,0.1); padding: 3px 10px; border-radius: 100px; display: inline-block; margin-top: 4px; }
.contact-method { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-method:last-child { border-bottom: none; padding-bottom: 0; }
.contact-method-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(26,58,92,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-label { font-size: 11px; color: var(--steel); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.contact-method-value { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.contact-method-value a { color: var(--navy); text-decoration: none; }
.contact-method-value a:hover { color: var(--gold); }
.whatsapp-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; background: #25D366; color: white; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; margin-top: 16px; }
.whatsapp-btn:hover { background: #1ea855; transform: translateY(-1px); }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--steel-light); }
.hours-time { color: var(--white); font-weight: 500; }
.why-card { background: var(--warm-white); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.why-card h4 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; }
.why-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.why-item:last-child { margin-bottom: 0; }
.why-check { color: var(--gold); font-weight: 700; font-size: 16px; flex-shrink: 0; }
.why-text { font-size: 13px; color: var(--text-body); line-height: 1.5; }
.hero-trust-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.trust-chip { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 100px; }
.trust-chip span { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.8); }
.map-section { background: var(--white); padding: 60px 0; }
.map-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.map-embed { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.map-address { background: var(--warm-white); border-radius: 8px; padding: 20px; border-left: 3px solid var(--gold); }
.map-address p { font-size: 14px; color: var(--text-body); line-height: 1.8; margin: 0; }
.map-address strong { color: var(--navy); display: block; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.contact-faq { padding: 80px 0; background: var(--warm-white); }
.contact-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.faq-box { background: var(--white); border-radius: 10px; padding: 24px; border: 1px solid var(--border); }
.faq-box-q { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.faq-box-a { font-size: 14px; color: var(--steel); line-height: 1.75; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links > li > a { padding: 8px 8px; font-size: 13px; }
  .nav-links { gap: 0; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid > div:last-child { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-cred-badges { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
  .three-col-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-left { padding: 60px 0 40px; }
  .about-hero-photo { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .milestones-inner { grid-template-columns: 1fr 1fr; }
  .life-grid { grid-template-columns: 1fr; }
  .personal-grid { grid-template-columns: 1fr 1fr; }
  .founder-featured { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .case-card, .case-card.reverse { grid-template-columns: 1fr; }
  .case-card.reverse .case-card-visual { order: -1; }
  .secondary-grid { grid-template-columns: 1fr; }
  .case-hero-inner { grid-template-columns: 1fr; }
  .hero-metrics-card { min-width: auto; width: 100%; }
  .kr-inner { grid-template-columns: 1fr 1fr; }
  .cs-two-col { grid-template-columns: 1fr; gap: 40px; }
  .cs-three-col { grid-template-columns: 1fr; }
  .result-boxes { grid-template-columns: 1fr 1fr; }
  .next-cases-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { order: -1; }
  .form-row { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; }
  .contact-faq-grid { grid-template-columns: 1fr; }
  .ff-achievements { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-team-grid { grid-template-columns: 1fr 1fr; }
  .personal-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-credentials { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .hero-trust-row { flex-direction: column; align-items: center; }
  .founder-milestones { grid-template-columns: 1fr; }
  .milestones-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .nav-cta { display: none; }
  .case-card-visual, .case-card-content { padding: 28px 20px; }
  .wa-float { bottom: 20px; right: 20px; width: 48px; height: 48px; }
  .hero-tagline { font-size: 12px; letter-spacing: 0.08em; }
}
