/* ─── Google Fonts ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Sora:wght@300;400;600;700;800&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: #f4f2ff;
  color: #1a0e3a;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── CSS Variables ────────────────────────────────────────────────────── */
:root {
  --bg: #f4f2ff;
  --bg-dark: #2d1b69;
  --bg-card: #ffffff;
  --bg-secondary: #ede9ff;
  --fg: #1a0e3a;
  --fg-muted: #5c4d8a;
  --fg-light: #8b7db8;
  --primary: #2d1b69;
  --primary-hover: #3d2a85;
  --primary-fg: #ffffff;
  --border: #d0c8f0;
  --gold: #f5c518;
  --gold-dark: #d4a800;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(45,27,105,0.12);
  --shadow-hover: 0 12px 40px rgba(45,27,105,0.22);
  --max-w: 1200px;
}

/* ─── Typography ───────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: 'Sora', system-ui, sans-serif; line-height: 1.15; letter-spacing: -0.02em; color: var(--fg); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }
p { font-family: 'Space Grotesk', sans-serif; }

/* ─── Layout ───────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .grid-4 { grid-template-columns: 1fr 1fr; } }

/* ─── Utilities ────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--fg-muted); }
.text-gold { background: linear-gradient(135deg, #f5c518, #d4a800); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.label-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.label-line { height: 1px; width: 2.5rem; background: var(--gold); flex-shrink: 0; }
.label-row-center { justify-content: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

/* ─── Geo Patterns ─────────────────────────────────────────────────────── */
.geo-pattern {
  background-image: linear-gradient(45deg, rgba(45,27,105,0.15) 25%, transparent 25%), linear-gradient(-45deg, rgba(45,27,105,0.15) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(45,27,105,0.15) 75%), linear-gradient(-45deg, transparent 75%, rgba(45,27,105,0.15) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
}
.geo-pattern-hero {
  background-image: repeating-linear-gradient(45deg, rgba(245,197,24,0.06) 0px, rgba(245,197,24,0.06) 1px, transparent 1px, transparent 20px);
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: var(--radius); font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.2s ease; border: 1.5px solid transparent; text-decoration: none; }
.btn-primary { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--primary-fg); }
.btn-outline-light { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; color: #ffffff; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ─── Cards ────────────────────────────────────────────────────────────── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.card-icon { width: 2.75rem; height: 2.75rem; background: rgba(45,27,105,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card-icon svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── Badges ───────────────────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 0.35rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; padding: 0.25rem 0.65rem; border-radius: var(--radius); background: var(--bg-secondary); color: var(--fg-muted); }
.badge-primary { background: rgba(45,27,105,0.12); color: var(--primary); }
.badge-dark { background: rgba(42,26,10,0.7); color: var(--border); }

/* ─── Check List ───────────────────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; color: var(--fg-muted); }
.check-list li::before { content: ''; display: block; width: 1rem; height: 1rem; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d1b69' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; flex-shrink: 0; margin-top: 0.1rem; }

/* ─── Trust Badges ─────────────────────────────────────────────────────── */
.trust-badges { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.trust-badge { display: flex; align-items: center; gap: 0.4rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.trust-badge svg { width: 1rem; height: 1rem; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ─── Navbar ───────────────────────────────────────────────────────────── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.3s ease; background: transparent; }
.navbar.scrolled { background: rgba(244,242,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(45,27,105,0.06); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
.nav-logo-icon { width: 2.5rem; height: 2.5rem; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.nav-logo-text .name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.9rem; color: #ffffff; }
.nav-logo-text .sub { font-family: 'Space Grotesk', sans-serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.navbar.scrolled .nav-logo-text .name { color: var(--fg); }
.navbar.scrolled .nav-logo-text .sub { color: var(--fg-muted); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85); padding: 0.5rem 0.75rem; border-radius: var(--radius); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.navbar.scrolled .nav-links a { color: rgba(26,14,58,0.75); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone { display: flex; align-items: center; gap: 0.4rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.nav-phone svg { width: 0.9rem; height: 0.9rem; stroke: rgba(255,255,255,0.85); fill: none; stroke-width: 2; }
.navbar.scrolled .nav-phone { color: var(--fg-muted); }
.navbar.scrolled .nav-phone svg { stroke: var(--primary); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.hamburger svg { width: 1.5rem; height: 1.5rem; stroke: #ffffff; fill: none; stroke-width: 2; stroke-linecap: round; }
.navbar.scrolled .hamburger svg { stroke: var(--fg); }
.mobile-menu { display: none; position: fixed; top: 4.5rem; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; z-index: 99; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; font-weight: 500; color: var(--fg-muted); padding: 0.65rem 0.75rem; border-radius: var(--radius); transition: all 0.2s; }
.mobile-menu a:hover { color: var(--primary); background: rgba(45,27,105,0.06); }
.mobile-menu-footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.75rem; }
@media (max-width: 900px) { .nav-links, .nav-right { display: none; } .hamburger { display: block; } }

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--bg-dark); }
.hero-bg { position: absolute; inset: 0; }
.hero-geo { position: absolute; inset: 0; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to right, var(--bg-dark) 0%, var(--bg-dark) 45%, rgba(45,27,105,0.5) 70%, transparent 100%); }
.hero-diamond { position: absolute; border: 1px solid rgba(45,27,105,0.12); transform: rotate(45deg); border-radius: 2px; }
.hero-content { position: relative; z-index: 2; padding: 5rem 0; }
.hero-label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-label .line { height: 1px; width: 2.5rem; background: var(--gold); }
.hero h1 { margin-bottom: 1.5rem; max-width: 700px; color: #ffffff; }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

/* ─── Stats Bar ────────────────────────────────────────────────────────── */
.stats-bar { background: var(--bg-dark); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-value { font-family: 'Sora', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ─── Section ──────────────────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-secondary); }
.section-dark { background: var(--bg-dark); position: relative; overflow: hidden; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #ffffff; }
.section-dark p, .section-dark .text-muted { color: rgba(255,255,255,0.8); }
.section-dark .section-label { color: var(--gold); }
.section-dark .label-line { background: var(--gold); }
.section-header { max-width: 700px; margin: 0 auto 4rem; }

/* ─── Process Steps ────────────────────────────────────────────────────── */
.process-step { display: grid; grid-template-columns: 5rem 1fr 1fr; gap: 2rem; align-items: start; margin-bottom: 3rem; }
.step-num { font-family: 'Sora', sans-serif; font-size: 3rem; font-weight: 700; color: rgba(45,27,105,0.2); line-height: 1; }
@media (max-width: 768px) { .process-step { grid-template-columns: 1fr; } .step-num { font-size: 2rem; } }

/* ─── Timeline ─────────────────────────────────────────────────────────── */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item { display: flex; gap: 2rem; padding-bottom: 2rem; }
.timeline-year { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--primary); width: 4rem; flex-shrink: 0; text-align: right; padding-top: 0.15rem; }
.timeline-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 0.2rem; }
.timeline-body h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.timeline-body p { font-size: 0.875rem; color: var(--fg-muted); }

/* ─── FAQ Accordion ────────────────────────────────────────────────────── */
.faq-section { margin-bottom: 2.5rem; }
.faq-category { font-size: 1.25rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.faq-category::before { content: ''; display: block; height: 1px; width: 2rem; background: var(--primary); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Sora', sans-serif; font-size: 0.95rem; font-weight: 500; color: var(--fg); }
.faq-question:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; width: 1.25rem; height: 1.25rem; stroke: var(--fg-muted); fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.2s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; color: var(--fg-muted); line-height: 1.75; padding-bottom: 1.25rem; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── Contact Form ─────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-block { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 2.25rem; height: 2.25rem; background: rgba(45,27,105,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 1rem; height: 1rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); margin-bottom: 0.15rem; }
.contact-info-value { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; color: var(--fg); }
.contact-info-value a:hover { color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label { font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.75rem 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; color: var(--fg); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--fg-light); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,27,105,0.1); }
.form-textarea { resize: none; min-height: 140px; }
.form-note { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.25rem; }
.form-success { text-align: center; padding: 3rem 2rem; }
.form-success .check-circle { width: 4rem; height: 4rem; background: rgba(45,27,105,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success .check-circle svg { width: 2rem; height: 2rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── Portfolio Grid ───────────────────────────────────────────────────── */
.portfolio-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.portfolio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.portfolio-visual { height: 12rem; display: flex; align-items: center; justify-content: center; position: relative; }
.portfolio-category-badge { position: absolute; top: 1rem; right: 1rem; }
.portfolio-content { padding: 1.75rem; }
.portfolio-highlights { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.portfolio-tech { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem; }

/* ─── Blog Cards ───────────────────────────────────────────────────────── */
.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.blog-visual { height: 10rem; background: var(--bg-secondary); display: flex; align-items: flex-end; padding: 1.25rem; }
.blog-content { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.75rem; }

/* ─── Info Box ─────────────────────────────────────────────────────────── */
.info-box { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 1.25rem; background: rgba(45,27,105,0.08); border: 1px solid rgba(45,27,105,0.2); border-radius: var(--radius); }
.info-box svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.1rem; }
.info-box p { font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; color: var(--fg); }

/* ─── Dark CTA Box ─────────────────────────────────────────────────────── */
.cta-box { background: var(--bg-dark); border-radius: var(--radius); padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; }
.cta-box h2 { color: #ffffff; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── Hours Table ──────────────────────────────────────────────────────── */
.hours-row { display: flex; justify-content: space-between; font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,0.6); }
.hours-time { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ─── Promise Box ──────────────────────────────────────────────────────── */
.promise-box { padding: 1.25rem; background: rgba(45,27,105,0.08); border: 1px solid rgba(45,27,105,0.2); border-radius: var(--radius); display: flex; gap: 0.75rem; }
.promise-box svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.15rem; }
.promise-box strong { font-family: 'Sora', sans-serif; font-size: 0.95rem; color: var(--fg); display: block; margin-bottom: 0.25rem; }
.promise-box p { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; color: var(--fg-muted); }

/* ─── Footer ───────────────────────────────────────────────────────────── */
footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding: 5rem 0 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.85rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-item a, .footer-contact-item span { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 0.9rem; color: #ffffff; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.25rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; }
.footer-bottom span { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ─── Page Hero ────────────────────────────────────────────────────────── */
.page-hero { position: relative; padding: 8rem 0 5rem; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--bg-dark), rgba(45,27,105,0.95)); }
.page-hero-content { position: relative; z-index: 2; max-width: 750px; }
.page-hero h1 { margin-bottom: 1.5rem; color: #ffffff; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.75; }
.page-hero .section-label { color: var(--gold); }
.page-hero .label-line { background: var(--gold); }

/* ─── Principles Bar ───────────────────────────────────────────────────── */
.principles-bar { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 0; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .principles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .principles-grid { grid-template-columns: 1fr; } }
.principle-item { display: flex; gap: 0.75rem; }
.principle-item svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 0.1rem; }
.principle-item strong { font-family: 'Sora', sans-serif; font-size: 0.9rem; color: var(--fg); display: block; margin-bottom: 0.2rem; }
.principle-item p { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; color: var(--fg-muted); }

/* ─── Notification Toast ───────────────────────────────────────────────── */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--fg); color: var(--bg); padding: 1rem 1.5rem; border-radius: var(--radius); font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; box-shadow: 0 8px 32px rgba(0,0,0,0.2); z-index: 9999; transform: translateY(100px); opacity: 0; transition: all 0.3s ease; max-width: 320px; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-content { padding: 7rem 0 4rem; }
  .section { padding: 4rem 0; }
  .cta-box { padding: 3rem 1.5rem; }
  .footer-grid { padding: 3rem 0 2rem; }
}
