/* CoinFlow — WARE ALLINONE LLC */
:root {
  --navy-950: #0a1628;
  --navy-900: #0f2340;
  --navy-800: #1a3a5c;
  --navy-700: #234a72;
  --navy-600: #2d5a8a;
  --gold-400: #d4a853;
  --gold-500: #c9972e;
  --gold-600: #b8860b;
  --emerald: #1a6b4a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'DM Sans', 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--navy-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-500); }

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy-900);
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 20px; height: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
}

.nav-links a.active,
.nav-links a:hover { color: var(--navy-900); }

.nav-links a.active { position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold-500);
  border-radius: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201, 151, 46, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 151, 46, 0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border: 2px solid var(--navy-800);
}

.btn-outline:hover {
  background: var(--navy-800);
  color: var(--white);
}

.btn-sm { padding: 8px 20px; font-size: 0.875rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 58, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 58, 92, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(26, 58, 92, 0.15);
  top: -100px; right: -100px;
}

.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(201, 151, 46, 0.12);
  bottom: 0; left: -80px;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(26, 107, 74, 0.08);
  border: 1px solid rgba(26, 107, 74, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
}

.security-badge svg { flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy-950);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.15s forwards;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin: 24px 0 36px;
  max-width: 480px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.45s forwards;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Chart Card ── */
.chart-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  opacity: 0;
  animation: fadeSlideUp 1s ease 0.5s forwards, cardFloat 6s ease-in-out 1.5s infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.chart-header h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.chart-stats {
  display: flex;
  gap: 24px;
}

.stat-item label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.stat-item .value {
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
}

.stat-item .value.positive { color: var(--emerald); }
.stat-item .value.negative { color: #c0392b; }

.chart-svg { width: 100%; height: auto; }

.chart-line-income {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s ease 1s forwards;
}

.chart-line-expense {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s ease 1.3s forwards;
}

.chart-area-income {
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.chart-legend {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

/* ── Sections ── */
section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-600);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-950);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 560px;
}

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 151, 46, 0.3);
}

.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { width: 24px; height: 24px; stroke: var(--gold-400); }

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy-900);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-block .number {
  font-family: var(--mono);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-block .label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  color: var(--white);
  margin: 0 auto;
  max-width: 900px;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.cta-section p {
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Product Page ── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Dashboard Mockup */
.dashboard-showcase {
  padding: 60px 0 100px;
}

.dashboard-frame {
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.dashboard-topbar span {
  margin-left: 12px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 480px;
}

.dashboard-sidebar {
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 16px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.sidebar-item.active {
  background: rgba(201, 151, 46, 0.15);
  color: var(--gold-400);
}

.sidebar-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.6;
}

.dashboard-main { padding: 28px; }

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dash-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 18px;
}

.dash-card label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
}

.dash-card .amount {
  font-family: var(--mono);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 6px;
}

.dash-card .change {
  font-family: var(--mono);
  font-size: 0.75rem;
  margin-top: 4px;
}

.dash-card .change.up { color: #4ade80; }
.dash-card .change.down { color: #f87171; }

.dash-chart-area {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 20px;
}

.dash-chart-area h4 {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

/* Feature List */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-list-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.feature-list-item .check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(26, 107, 74, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-weight: 700;
}

.feature-list-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.feature-list-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-image-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 40px;
}

.about-image-content .icon-large {
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-image-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.compliance-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.compliance-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.compliance-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.compliance-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.compliance-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ── Privacy Page ── */
.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 0 100px;
}

.privacy-content h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy-950);
  margin-bottom: 12px;
}

.privacy-meta {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.privacy-content h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 40px 0 16px;
}

.privacy-content p,
.privacy-content li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.7;
}

.privacy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-alert {
  background: rgba(26, 58, 92, 0.06);
  border-left: 4px solid var(--navy-700);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.privacy-alert strong { color: var(--navy-900); }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 140px 0 100px;
}

.contact-info h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy-950);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(26, 58, 92, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-700);
}

.contact-detail h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
  font-size: 0.9375rem;
  color: var(--navy-900);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-form-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: rgba(26, 107, 74, 0.1);
  border: 1px solid rgba(26, 107, 74, 0.2);
  color: var(--emerald);
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 0.9375rem;
  text-align: center;
}

.form-success.show { display: block; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Counter Animation ── */
.counter { display: inline-block; }

/* ── Responsive ── */
@media (max-width: 968px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .compliance-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-body { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .dash-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-toggle { display: block; }
  .hero { padding: 120px 0 60px; }
  section { padding: 60px 0; }
  .cta-section { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
