/* =============================================
   BIZFINANCE OFFICE — APPLE INDIA STYLE v3
   Light, premium, minimal, trustworthy
   ============================================= */

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

:root {
  --white: #ffffff;
  --bg: #f5f5f7;
  --bg-2: #fbfbfd;
  --text: #1d1d1f;
  --text-2: #424245;
  --text-3: #6e6e73;
  --text-4: #86868b;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --blue-light: #e8f0fe;
  --border: rgba(0,0,0,0.08);
  --border-2: rgba(0,0,0,0.12);
  --nav-h: 44px;
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(0,113,227,0.2); color: var(--text); }

/* ---- DEFAULT SYSTEM CURSOR ---- */
* { cursor: auto; }
a, button, [role="button"], label, select { cursor: pointer; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.25); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   NAVBAR — APPLE STYLE
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
}

.nav-logo {
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 0 14px;
  height: var(--nav-h);
  line-height: var(--nav-h);
  color: var(--text-2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.1px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--text);
}

/* ---- MEGA DROPDOWN (APPLE HOVER MENU) ---- */
.nav-dropdown {
  position: absolute;
  top: calc(var(--nav-h) - 1px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.98);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-4px);
  z-index: 2000;
}

.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown a:hover {
  background: var(--bg);
  color: var(--text);
}

.nav-dropdown a .dd-icon {
  width: 32px;
  height: 32px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.nav-dropdown a:hover .dd-icon {
  background: var(--blue-light);
}

.nav-dropdown .dd-label { font-weight: 500; color: var(--text); font-size: 13px; }
.nav-dropdown .dd-sub { font-size: 11px; color: var(--text-4); }
.nav-dropdown a .dd-text { display: flex; flex-direction: column; gap: 1px; }

.nav-dropdown-sep {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.nav-cta {
  color: var(--blue);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.1px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.nav-cta:hover { color: var(--blue-hover); text-decoration: underline; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-3);
  line-height: 1;
}
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin: 16px 0; }
.mobile-menu a {
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--blue); }

/* ============================================
   HERO — APPLE STYLE (LARGE BOLD HEADLINE)
   ============================================ */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  z-index: 1;
}

/* Subtle animated gradient bg */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(0,113,227,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,113,227,0.03) 0%, transparent 60%);
  z-index: 0;
  animation: bgShift 12s ease-in-out infinite alternate;
}
@keyframes bgShift {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,113,227,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(0,113,227,0); }
}

.hero-title {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero-title .blue { color: var(--blue); }
.hero-title .light { font-weight: 300; }

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  color: var(--text-3);
  max-width: 600px;
  line-height: 1.55;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Apple-style buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  border-radius: 980px;
  letter-spacing: -0.2px;
  transition: background 0.25s ease, transform 0.2s ease;
  border: none;
}
.btn-primary:hover { background: var(--blue-hover); transform: scale(1.02); }
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: transparent;
  color: var(--blue);
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  border-radius: 980px;
  border: 1px solid rgba(0,113,227,0.3);
  letter-spacing: -0.2px;
  transition: all 0.25s ease;
}
.btn-ghost:hover { background: var(--blue-light); border-color: var(--blue); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  transition: gap 0.2s;
}
.btn-text:hover { gap: 8px; }
.btn-text::after { content: '›'; font-size: 20px; line-height: 1; }

/* ---- TRUST STATS BAR ---- */
.hero-stats {
  width: 100%;
  background: var(--bg);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-num .accent { color: var(--blue); }
.hero-stat-label {
  font-size: 13px;
  color: var(--text-4);
  font-weight: 400;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  overflow: hidden;
  background: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-4);
  padding: 0 28px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.marquee-track span.dot { color: var(--blue); padding: 0 4px; opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS — APPLE GRID STYLE
   ============================================ */
section { padding: 100px 0; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.07;
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--text-3);
  font-weight: 300;
}

.section-sub {
  font-size: 17px;
  color: var(--text-3);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 60px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 64px;
}
.section-header-centered .section-sub {
  margin: 0 auto 60px;
}

/* ============================================
   FEATURES GRID — APPLE STYLE CARDS
   ============================================ */
.features-section {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 52px 44px;
  transition: background 0.3s;
}

.feature-card:hover {
  background: #f9f9fb;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.08); }

.feature-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-link {
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.feature-link:hover { gap: 8px; }
.feature-link::after { content: '›'; font-size: 17px; line-height: 1; }

/* ============================================
   RATE HIGHLIGHT SECTION
   ============================================ */
.rate-section {
  background: var(--text);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}

.rate-section .section-eyebrow {
  color: rgba(0,113,227,0.9);
}

.rate-headline {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}

.rate-headline .accent { color: #2997ff; }

.rate-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 300;
}

.rate-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.rate-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: center;
  min-width: 200px;
  transition: background 0.3s, border-color 0.3s;
}
.rate-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.rate-card .rate-big {
  font-size: 48px;
  font-weight: 700;
  color: #2997ff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.rate-card .rate-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.rate-card .rate-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}

/* ============================================
   WHO WE SERVE
   ============================================ */
.serve-section { background: var(--white); }

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

.serve-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
  border: 1px solid transparent;
}
.serve-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--white);
  border-color: var(--border);
}
.serve-card .serve-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}
.serve-card h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  color: var(--text);
}
.serve-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
}

/* ============================================
   TRUST / WHY US SECTION — APPLE DARK STRIP
   ============================================ */
.trust-section {
  background: var(--bg);
  padding: 100px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
}

.trust-item {
  background: var(--white);
  padding: 52px 48px;
  transition: background 0.3s;
}
.trust-item:hover { background: #f9f9fb; }

.trust-num {
  font-size: 56px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.2;
}

.trust-item h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--text);
}

.trust-item p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.7;
}

/* ============================================
   SOCIAL PROOF / REPEAT CLIENTS
   ============================================ */
.proof-section {
  background: var(--white);
  text-align: center;
}

.proof-big-stat {
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 0.9;
  margin-bottom: 16px;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.proof-big-stat.visible { opacity: 1; }

.proof-big-stat .pct { color: var(--blue); }

.proof-sub-text {
  font-size: 21px;
  color: var(--text-3);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.proof-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.proof-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg);
  border-radius: 980px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  border: 1px solid var(--border);
}

.proof-badge .badge-icon { font-size: 18px; }

/* ============================================
   LEGACY TIMELINE
   ============================================ */
.legacy-section {
  background: var(--bg);
}

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

.legacy-text .section-title { margin-bottom: 16px; }
.legacy-text p {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 36px;
}

.legacy-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lt-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
}

.lt-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 39px;
  top: 44px;
  bottom: -20px;
  width: 2px;
  background: var(--border-2);
}

.lt-year-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 40px;
}

.lt-dot {
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 50%;
  margin-bottom: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.lt-year {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.lt-content {
  padding: 8px 0 40px 24px;
}

.lt-content h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.lt-content p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
  background: var(--text);
  color: var(--white);
}

.how-section .section-eyebrow { color: rgba(41,151,255,0.9); }
.how-section .section-title { color: var(--white); }
.how-section .section-title em { color: rgba(255,255,255,0.4); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 64px;
}

.how-step {
  background: rgba(255,255,255,0.03);
  padding: 48px 36px;
  transition: background 0.3s;
}
.how-step:hover { background: rgba(255,255,255,0.06); }

.how-step-num {
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.how-step h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.how-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--blue);
  text-align: center;
  padding: 100px 24px;
}

.cta-band h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.cta-band p {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.6;
}

.cta-band .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 980px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 0 8px;
}
.cta-band .btn-white:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

.cta-band .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  border-radius: 980px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
  margin: 0 8px;
}
.cta-band .btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 24px 80px;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero-title em { font-style: normal; color: var(--blue); }

.page-hero-sub {
  font-size: 19px;
  color: var(--text-3);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================
   SERVICES DETAIL (services.html)
   ============================================ */
.services-detail { background: var(--white); }

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }

.service-row-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--bg);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  border-radius: 980px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.service-row h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 640px;
}

.service-list {
  list-style: none;
  margin-bottom: 28px;
}

.service-list li {
  font-size: 15px;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: 1px solid rgba(0,113,227,0.4);
  color: var(--blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 980px;
  transition: all 0.25s;
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.story-section { background: var(--white); }
.story-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.story-year-badge {
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.15;
  text-align: right;
  padding-top: 8px;
}

.story-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.story-lead {
  font-size: 19px;
  color: var(--blue);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.5;
}

.story-content p {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.8;
  margin-bottom: 16px;
}

.generation-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  margin: 48px 0;
}

.gen-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.04em;
  opacity: 0.25;
  white-space: nowrap;
}

.gen-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.gen-role {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.gen-info p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 16px;
}

.gen-era {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-4);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--bg); }

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

.contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-info .section-eyebrow { margin-bottom: 14px; }

.contact-info p {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.contact-method:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 11px;
  color: var(--text-4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-method-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.contact-form-card > p {
  font-size: 14px;
  color: var(--text-4);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font);
  transition: background 0.25s, transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--blue-hover); transform: scale(1.01); }

.loc-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--blue-light);
  border-radius: 980px;
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
}
.loc-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

/* ============================================
   FOOTER — APPLE STYLE
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo {
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-4);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: var(--text-4);
}

/* ============================================
   CALL POPUP (after form submit)
   ============================================ */
.call-popup {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  z-index: 9999;
  text-align: center;
  min-width: 240px;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.call-popup.popup-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.popup-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none; border: none;
  font-size: 16px; color: var(--text-4);
  line-height: 1;
}
.popup-close:hover { color: var(--text); }
.popup-icon { font-size: 32px; margin-bottom: 10px; }
.popup-title {
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.popup-sub {
  font-size: 13px; color: var(--text-4);
  margin-bottom: 16px;
}
.popup-cta {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 15px; font-weight: 600;
  padding: 10px 22px;
  border-radius: 980px;
  transition: background 0.2s;
}
.popup-cta:hover { background: var(--blue-hover); }

/* ============================================
   DISCLAIMER BANNER
   ============================================ */
.disclaimer-bar {
  background: #fff8e7;
  border-bottom: 1px solid rgba(255,180,0,0.2);
  padding: 10px 24px;
  text-align: center;
  font-size: 12px;
  color: #7a5c00;
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .legacy-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .story-block { grid-template-columns: 1fr; gap: 24px; }
  .story-year-badge { text-align: left; font-size: 32px; }
  .service-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
  .contact-form-card { padding: 28px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .rate-cards { flex-direction: column; align-items: center; }
}
