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

/* ===== CSS VARIABLES ===== */
:root {
  --brand-orange: hsl(35, 100%, 58%);
  --brand-coral: hsl(352, 85%, 64%);
  --brand-blue: hsl(215, 100%, 50%);
  --brand-cyan: hsl(187, 100%, 65%);

  --background: hsl(222, 47%, 6%);
  --foreground: hsl(210, 40%, 98%);
  --card: hsl(222, 47%, 8%);
  --card-foreground: hsl(210, 40%, 98%);
  --muted: hsl(222, 47%, 12%);
  --muted-foreground: hsl(215, 20%, 55%);
  --secondary: hsl(222, 47%, 14%);
  --border: hsl(222, 47%, 16%);
  --radius: 0.75rem;

  --gradient-brand: linear-gradient(135deg, hsl(35,100%,58%), hsl(352,85%,64%), hsl(215,100%,50%), hsl(187,100%,65%));
  --gradient-cta: linear-gradient(90deg, hsl(215,100%,50%), hsl(187,100%,65%));
  --gradient-warm: linear-gradient(135deg, hsl(35,100%,58%), hsl(352,85%,64%));
  --gradient-cool: linear-gradient(135deg, hsl(215,100%,50%), hsl(187,100%,65%));
  --gradient-hero: linear-gradient(135deg, hsl(352,85%,64%), hsl(215,100%,50%));

  --shadow-glow: 0 0 60px -10px hsl(215 100% 50% / 0.4);
  --glass-bg: hsl(222 47% 10% / 0.7);
  --glass-border: hsl(222 47% 20% / 0.5);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 2rem; }

/* ===== UTILITY CLASSES ===== */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-text-cta {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.gradient-text-hero {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.bg-grid {
  background-image:
    linear-gradient(to right, hsl(222 47% 16% / 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, hsl(222 47% 16% / 0.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-radial-glow {
  background: radial-gradient(ellipse 80% 50% at 50% -20%, hsl(215 100% 50% / 0.15), transparent);
}
.text-muted { color: var(--muted-foreground); }
.text-cyan { color: var(--brand-cyan); }
.text-orange { color: var(--brand-orange); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-hero {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 4px 14px -2px hsl(215 100% 50% / 0.4);
}
.btn-hero:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px -2px hsl(215 100% 50% / 0.5); }
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--brand-blue); color: var(--brand-cyan); }
.btn-warm {
  background: var(--gradient-warm);
  color: #fff;
}
.btn-warm:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
}
header.scrolled {
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 36px; width: auto; }
nav.desktop { display: flex; align-items: center; gap: 2rem; }
nav.desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
nav.desktop a:hover, nav.desktop a.active { color: var(--brand-cyan); }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  padding: 0.5rem;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--brand-cyan); }
.mobile-menu .border-top { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.5rem; }
@media (max-width: 1023px) { nav.desktop, .header-cta { display: none; } .mobile-toggle { display: block; } }

/* ===== FOOTER ===== */
footer { background: var(--card); border-top: 1px solid var(--border); }
.footer-inner { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.5rem; }
.footer-brand p { color: var(--muted-foreground); max-width: 280px; font-size: 0.875rem; }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 1rem; font-size: 0.9375rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--brand-cyan); }
.footer-col .contact-item { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--muted-foreground); font-size: 0.875rem; }
.footer-col .contact-item svg { width: 16px; height: 16px; margin-top: 2px; color: var(--brand-cyan); flex-shrink: 0; }
.footer-col .contact-item a { color: var(--muted-foreground); transition: color 0.2s; }
.footer-col .contact-item a:hover { color: var(--brand-cyan); }
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--muted-foreground); font-size: 0.875rem; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--brand-cyan); }
@media (max-width: 1023px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(222 47% 6% / 0.8), hsl(222 47% 6% / 0.6), hsl(222 47% 6%));
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 8rem 1rem 5rem;
  width: 100%;
}
.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsl(215 100% 50% / 0.1);
  color: var(--brand-cyan);
  border: 1px solid hsl(215 100% 50% / 0.2);
  margin-bottom: 1.5rem;
}
.badge-warm {
  background: hsl(352 85% 64% / 0.1);
  color: var(--brand-orange);
  border-color: hsl(352 85% 64% / 0.2);
}
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-dot {
  width: 24px; height: 40px;
  border-radius: 9999px;
  border: 2px solid hsl(215 20% 55% / 0.3);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-cyan);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ===== STATS BAR ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 5rem auto 0;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.875rem; color: var(--muted-foreground); }
@media (max-width: 639px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== SECTION GENERAL ===== */
section { padding: 6rem 0; }
.section-bg-card { background: var(--card); }
.section-bg-dark { background: var(--background); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-header p { color: var(--muted-foreground); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.absolute-fill { position: absolute; inset: 0; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1023px) { .cards-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .cards-grid-2, .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 1023px) { .cards-grid-3 { grid-template-columns: repeat(2, 1fr); } }

.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--background);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.card:hover { border-color: hsl(215 100% 50% / 0.5); }
.card-link { display: block; height: 100%; }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon-blue { background: linear-gradient(135deg, hsl(215 100% 50% / 0.2), hsl(187 100% 65% / 0.2)); }
.card-icon-warm { background: linear-gradient(135deg, hsl(352 85% 64% / 0.2), hsl(35 100% 58% / 0.2)); }
.card-icon svg { width: 24px; height: 24px; color: var(--brand-cyan); }
.card-icon-warm svg { color: var(--brand-orange); }
.card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.card:hover h3 { color: var(--brand-cyan); }
.card p { color: var(--muted-foreground); font-size: 0.875rem; }
.card-group:hover .card h3 { color: var(--brand-cyan); }

.feature-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 0.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-warm { background: linear-gradient(135deg, hsl(352 85% 64% / 0.2), hsl(35 100% 58% / 0.2)); }
.feature-icon-warm svg { width: 24px; height: 24px; color: var(--brand-orange); }
.feature-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { color: var(--muted-foreground); font-size: 0.875rem; }

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-section h2 {
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p { color: var(--muted-foreground); font-size: 1.125rem; max-width: 640px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--background);
}
.page-hero-content { text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.page-hero p { font-size: 1.125rem; color: var(--muted-foreground); }

/* ===== ANIMATIONS ===== */
.fade-in { animation: fadeIn 0.8s ease-out forwards; }
.fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll-triggered animations */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
}
.pricing-card.popular {
  background: linear-gradient(to bottom, hsl(215 100% 50% / 0.1), hsl(187 100% 65% / 0.05));
  border-color: hsl(215 100% 50% / 0.3);
}
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gradient-cta);
  color: #fff;
  white-space: nowrap;
}
.pricing-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-desc { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 1.5rem; }
.pricing-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.pricing-price .currency { font-size: 1.25rem; color: var(--muted-foreground); vertical-align: super; }
.pricing-price .period { font-size: 1rem; color: var(--muted-foreground); font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.pricing-features li svg { width: 16px; height: 16px; color: var(--brand-cyan); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 1023px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; } }

/* ===== CALCULATOR ===== */
.calculator-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.calc-label { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.5rem; }
.calc-label span:last-child { color: var(--brand-cyan); font-weight: 600; }
.range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  margin-bottom: 1.5rem;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px hsl(187 100% 65% / 0.4);
}
.calc-total {
  text-align: center;
  padding: 1.5rem;
  background: hsl(215 100% 50% / 0.1);
  border-radius: var(--radius);
  border: 1px solid hsl(215 100% 50% / 0.2);
}
.calc-total .total-label { color: var(--muted-foreground); font-size: 0.875rem; margin-bottom: 0.5rem; }
.calc-total .total-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 500;
  gap: 1rem;
}
.faq-question:hover { color: var(--brand-cyan); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--muted-foreground); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--brand-cyan); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding-bottom: 1.5rem; color: var(--muted-foreground); line-height: 1.7; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(222 47% 14%);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--brand-blue); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-input.error, .form-textarea.error { border-color: hsl(0 84% 60%); }
.error-msg { color: hsl(0 84% 60%); font-size: 0.8125rem; margin-top: 0.25rem; }
.form-success {
  text-align: center;
  padding: 3rem;
}
.success-icon { width: 64px; height: 64px; margin: 0 auto 1.5rem; color: var(--brand-cyan); }
@media (max-width: 639px) { .form-row { grid-template-columns: 1fr; } }

/* ===== CONTACT INFO ===== */
.contact-info-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: hsl(222 47% 14%);
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px; border-radius: 0.5rem; flex-shrink: 0;
  background: hsl(215 100% 50% / 0.1);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--brand-cyan); }
.contact-info-title { font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-detail { color: var(--muted-foreground); font-size: 0.875rem; }
.contact-info-detail a { color: var(--muted-foreground); transition: color 0.2s; }
.contact-info-detail a:hover { color: var(--brand-cyan); }

/* ===== ABOUT PAGE ===== */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; position: relative; }
.timeline-dot {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content { padding-top: 0.75rem; }
.timeline-content h3 { font-weight: 600; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--muted-foreground); font-size: 0.9375rem; }

/* ===== SERVICES PAGE ===== */
.service-section { padding: 6rem 0; }
.service-layout { display: flex; gap: 3rem; align-items: flex-start; }
.service-left { width: 33%; }
.service-right { width: 67%; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-icon-lg {
  width: 64px; height: 64px; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon-lg svg { width: 32px; height: 32px; color: #fff; }
.service-icon-blue { background: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan)); }
.service-icon-warm { background: linear-gradient(135deg, var(--brand-coral), var(--brand-orange)); }
.service-icon-cyan { background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue)); }
.service-icon-orange { background: linear-gradient(135deg, var(--brand-orange), var(--brand-coral)); }
.service-benefit {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; margin-bottom: 0.75rem;
}
.service-benefit svg { width: 16px; height: 16px; color: var(--brand-cyan); flex-shrink: 0; }
.service-feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: hsl(222 47% 14% / 0.5);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.service-feature-card:hover { border-color: hsl(215 100% 50% / 0.3); }
.service-feature-card svg { width: 32px; height: 32px; color: var(--brand-cyan); margin-bottom: 1rem; }
.service-feature-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 0.5rem; }
.service-feature-card p { color: var(--muted-foreground); font-size: 0.875rem; }
@media (max-width: 1023px) { .service-layout { flex-direction: column; } .service-left, .service-right { width: 100%; } .service-right { grid-template-columns: 1fr 1fr; } }
@media (max-width: 639px) { .service-right { grid-template-columns: 1fr; } }

/* ===== SOLUTIONS PAGE ===== */
.solutions-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.solution-card {
  padding: 2rem; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.3s;
}
.solution-card:hover { border-color: hsl(215 100% 50% / 0.4); }
.solution-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.solution-card p { color: var(--muted-foreground); font-size: 0.9375rem; margin-bottom: 1rem; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: hsl(215 100% 50% / 0.1);
  color: var(--brand-cyan);
  border: 1px solid hsl(215 100% 50% / 0.2);
}
@media (max-width: 767px) { .solutions-grid { grid-template-columns: 1fr; } }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--foreground);
}
.legal-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--foreground);
}
.legal-content p { color: var(--muted-foreground); margin-bottom: 1rem; line-height: 1.8; }
.legal-content ul { margin: 1rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--muted-foreground); margin-bottom: 0.5rem; line-height: 1.7; }
.legal-intro {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* ===== BLOG PAGE ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--background); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s; }
.blog-card:hover { border-color: hsl(215 100% 50% / 0.4); }
.blog-img { height: 200px; background: linear-gradient(135deg, hsl(215 100% 50% / 0.3), hsl(187 100% 65% / 0.3)); display: flex; align-items: center; justify-content: center; }
.blog-img svg { width: 48px; height: 48px; color: var(--brand-cyan); opacity: 0.5; }
.blog-body { padding: 1.5rem; }
.blog-meta { font-size: 0.8125rem; color: var(--muted-foreground); margin-bottom: 0.75rem; display: flex; gap: 1rem; }
.blog-tag { color: var(--brand-cyan); font-weight: 500; }
.blog-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; transition: color 0.2s; }
.blog-card:hover h3 { color: var(--brand-cyan); }
.blog-card p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.7; }
@media (max-width: 1023px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== VALUES GRID ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 1023px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-align: center;
}
.value-icon {
  width: 56px; height: 56px; border-radius: 0.75rem;
  background: var(--gradient-cta);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-icon svg { width: 24px; height: 24px; color: #fff; }
.value-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; margin-bottom: 0.75rem; }
.value-card p { color: var(--muted-foreground); font-size: 0.875rem; }

/* ===== MISC ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 1023px) { .two-col { grid-template-columns: 1fr; gap: 3rem; } }
.gradient-border-card {
  position: relative;
  background: hsl(222 47% 8%);
  border-radius: var(--radius);
  padding: 2rem;
}
.gradient-border-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: var(--gradient-brand);
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-12 { margin-top: 3rem; }
.mt-6 { margin-top: 1.5rem; }
.max-w-2xl { max-width: 672px; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 900px; margin-left: auto; margin-right: auto; }
.flex-center { display: flex; justify-content: center; }
