/* =============================================
   100GO - Investment Advisory Brand
   Inspired by Carson Wealth design language
   ============================================= */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #D4A843;
  margin-bottom: 12px;
}

/* ---- Colors & Utilities ---- */
:root {
  --navy: #0B1A33;
  --navy-light: #132847;
  --gold: #D4A843;
  --gold-light: #E8CF8A;
  --gold-dark: #B8922E;
  --cream: #F5F0E8;
  --light-bg: #F7F8FA;
  --text-dark: #1a1a2e;
  --text-medium: #4a4a5a;
  --text-light: #8a8a9a;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(11,26,51,0.08);
  --shadow-lg: 0 12px 40px rgba(11,26,51,0.12);
  --radius: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11,26,51,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(11,26,51,0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.navbar .logo {
  display: flex;
  align-items: center;
}
.navbar .logo img {
  display: block;
  height: 32px;
  width: auto;
}
  width: 28px;
  height: 28px;
  margin-right: 6px;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  margin-left: 8px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(135deg, #0B1A33 0%, #0D2142 40%, #1a0f2e 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { padding: 60px 0; }
.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.12);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(212,168,67,0.2);
}
.hero-content h1 {
  font-size: 3.6rem;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
  font-weight: 400;
}

/* Hero Visual - Chart/Cards mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-card-mockup {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
}
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mockup-header h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.mockup-header span {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}
.mockup-chart {
  height: 160px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(212,168,67,0.3), rgba(212,168,67,0.6));
  min-height: 30px;
  transition: height 0.6s ease;
}
.mockup-bar:nth-child(1) { height: 40%; background: linear-gradient(to top, rgba(59,130,246,0.3), rgba(59,130,246,0.6)); }
.mockup-bar:nth-child(2) { height: 65%; }
.mockup-bar:nth-child(3) { height: 45%; background: linear-gradient(to top, rgba(59,130,246,0.3), rgba(59,130,246,0.6)); }
.mockup-bar:nth-child(4) { height: 80%; }
.mockup-bar:nth-child(5) { height: 55%; background: linear-gradient(to top, rgba(59,130,246,0.3), rgba(59,130,246,0.6)); }
.mockup-bar:nth-child(6) { height: 90%; }
.mockup-bar:nth-child(7) { height: 70%; background: linear-gradient(to top, rgba(59,130,246,0.3), rgba(59,130,246,0.6)); }
.mockup-bar:nth-child(8) { height: 50%; }
.mockup-assets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mockup-asset-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}
.mockup-asset-item .label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.mockup-asset-item .value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.green { color: #34D399 !important; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-gold { background: var(--gold); }
.dot-blue { background: #3B82F6; }

/* ---- Section Common ---- */
section { padding: 96px 0; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: 2.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ---- Services Strip ---- */
.services-strip {
  background: var(--cream);
  padding: 80px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid rgba(11,26,51,0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,168,67,0.15);
}
.service-card .icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,67,0.1);
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card .learn-more {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .learn-more:hover { color: var(--navy); }

/* ---- Philosophy / How We Work ---- */
.philosophy {
  background: var(--white);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.philosophy-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  color: var(--white);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.philosophy-visual h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--gold);
}
.philosophy-visual p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.8;
}
.philosophy-steps { display: flex; flex-direction: column; gap: 28px; }
.philosophy-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.philosophy-step .step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.philosophy-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}
.philosophy-step p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---- Market Focus ---- */
.market-focus {
  background: var(--light-bg);
}
.market-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.market-tab {
  padding: 12px 28px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid rgba(11,26,51,0.08);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-medium);
}
.market-tab.active, .market-tab:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.market-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.market-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,26,51,0.04);
}
.market-item .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.tag-stock { background: rgba(59,130,246,0.1); color: #2563EB; }
.tag-crypto { background: rgba(212,168,67,0.12); color: #B8922E; }
.tag-etf { background: rgba(16,185,129,0.1); color: #059669; }
.market-item h4 { font-size: 1.1rem; margin-bottom: 8px; }
.market-item p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.7; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(212,168,67,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ---- Footer ---- */
.site-footer {
  background: #060F1F;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  color: rgba(255,255,255,0.5);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom .social { display: flex; gap: 16px; }
.footer-bottom .social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}
.footer-bottom .social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.disclaimer {
  margin-top: 24px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ---- Subpage Hero ---- */
.subpage-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.subpage-hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.subpage-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- About Page ---- */
.about-mission {
  background: var(--white);
}
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-mission-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-mission-content p { color: var(--text-medium); margin-bottom: 16px; }
.about-mission-visual {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px;
}
.values-list { margin-top: 24px; }
.value-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11,26,51,0.06);
}
.value-item:last-child { border-bottom: none; }
.value-item .v-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(212,168,67,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.value-item h4 { font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; color: var(--text-medium); }

/* ---- Team Section ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,26,51,0.04);
}
.team-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--navy);
  border: 3px solid var(--gold);
}
.team-card h4 { font-family: 'Inter', sans-serif; font-weight: 600; }
.team-card .role { color: var(--gold-dark); font-size: 0.85rem; font-weight: 500; margin: 4px 0 12px; }
.team-card p { font-size: 0.88rem; color: var(--text-medium); }

/* ---- Services Page ---- */
.services-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.services-page-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,26,51,0.04);
  transition: all 0.4s ease;
}
.services-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.services-page-card .sp-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.services-page-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.services-page-card p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.7; }
.services-page-card ul { margin-top: 16px; }
.services-page-card ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-page-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ---- Insights/Blog Page ---- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.insight-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 1px solid rgba(11,26,51,0.04);
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.insight-card .img-placeholder {
  height: 200px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.insight-card .body { padding: 24px; }
.insight-card .meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.insight-card .meta .cat {
  color: var(--gold-dark);
  font-weight: 600;
}
.insight-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.insight-card p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.6; }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-medium); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail .cd-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(212,168,67,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-detail h4 { font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 2px; }
.contact-detail p { font-size: 0.9rem; margin-bottom: 0; }
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11,26,51,0.04);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(11,26,51,0.12);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { padding: 40px 0 0; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
  .market-content { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(11,26,51,0.98);
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 1rem; }
  .nav-links .btn { text-align: center; margin-left: 0; margin-top: 8px; }
  .menu-toggle { display: flex; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .section-header h2 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .market-content { grid-template-columns: 1fr; }
  .market-tabs { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .subpage-hero h1 { font-size: 2.2rem; }
  .team-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}
