/* Aurora Borealis — Base CSS */
/* Template: celestial-dark, iridescent green-to-purple gradients on dark navy, cosmic depth */
/* Colors overridden by variants/{color}/colors.css */

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

:root {
  --color-primary: #00D68F;
  --color-secondary: #0F1225;
  --color-accent: #8B5CF6;
  --color-cyan: #06B6D4;
  --color-text: #E0E4F0;
  --color-text-light: #8B90A8;
  --color-bg: #0B0E1A;
  --color-bg-alt: #070A14;
  --color-border: #1A1F35;
  --color-muted: #0F1225;

  --font-heading: 'Syne', sans-serif;
  --font-body: 'Public Sans', sans-serif;
  --fs-hero: clamp(2.75rem, 6vw, 5.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.75rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --lh-heading: 1.1;
  --lh-body: 1.7;

  --space-section: 6rem;
  --space-component: 2.5rem;
  --space-element: 1rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 0 40px color-mix(in srgb, var(--color-primary) 20%, transparent), 0 0 80px color-mix(in srgb, var(--color-accent) 10%, transparent);
  --shadow-glow-primary: 0 0 25px color-mix(in srgb, var(--color-primary) 35%, transparent), 0 0 50px color-mix(in srgb, var(--color-primary) 12%, transparent);
  --shadow-glow-accent: 0 0 25px color-mix(in srgb, var(--color-accent) 35%, transparent), 0 0 50px color-mix(in srgb, var(--color-accent) 12%, transparent);
  --shadow-glow-cyan: 0 0 25px color-mix(in srgb, var(--color-cyan) 35%, transparent), 0 0 50px color-mix(in srgb, var(--color-cyan) 12%, transparent);
  --shadow-elevated: 0 8px 50px rgba(0, 0, 0, 0.7);

  --max-width: 1200px;
  --container-padding: 1.5rem;

  --aurora-green: var(--color-primary);
  --aurora-purple: var(--color-accent);
  --aurora-cyan: var(--color-cyan);
  --gradient-aurora: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-cyan) 100%);
  --gradient-aurora-h: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-cyan) 100%);
  --gradient-aurora-soft: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 15%, transparent) 0%, color-mix(in srgb, var(--color-accent) 10%, transparent) 50%, color-mix(in srgb, var(--color-cyan) 15%, transparent) 100%);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
body > * { position: relative; z-index: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-cyan); }

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--color-text);
  letter-spacing: -0.03em;
}
h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--color-text);
  letter-spacing: -0.02em;
}
h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: var(--lh-heading);
  color: var(--color-text);
}
h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--lh-heading);
  color: var(--color-text);
}
p { color: var(--color-text-light); }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-section) 0;
  position: relative;
}
.section--muted { background: var(--color-muted); }
.section--dark { background: var(--color-bg-alt); }
.section--primary {
  background: var(--color-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-component);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section__subtitle {
  color: var(--color-text-light);
  font-size: clamp(1rem, 1.75vw, 1.15rem);
  margin-top: 0.75rem;
  line-height: var(--lh-body);
}

/* ===== AURORA ANIMATIONS ===== */
@keyframes aurora-shift {
  0% { background-position: 0% 50%; }
  33% { background-position: 50% 100%; }
  66% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes aurora-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

@keyframes aurora-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.01); }
}

@keyframes aurora-breathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes shimmer-sweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes mesh-drift {
  0% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -20px) rotate(120deg); }
  66% { transform: translate(-20px, 10px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reveal-scale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 20%, transparent);
}
.btn--primary:hover {
  box-shadow: var(--shadow-glow-primary);
  color: var(--color-bg);
  transform: translateY(-2px);
  filter: brightness(1.15);
}
.btn--accent {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: 0 0 15px color-mix(in srgb, var(--color-accent) 20%, transparent);
}
.btn--accent:hover {
  box-shadow: var(--shadow-glow-accent);
  color: var(--color-text);
  transform: translateY(-2px);
  filter: brightness(1.15);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 12%, transparent);
}
.btn--ghost {
  background: color-mix(in srgb, var(--color-primary) 6%, transparent);
  color: var(--color-primary);
  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  color: var(--color-text);
  border-color: var(--color-primary);
  box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.btn--gradient {
  background: var(--gradient-aurora);
  background-size: 200% 200%;
  animation: aurora-shift 4s ease infinite;
  color: var(--color-bg);
  font-weight: 700;
  border: none;
}
.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px color-mix(in srgb, var(--color-primary) 25%, transparent), 0 0 25px color-mix(in srgb, var(--color-accent) 20%, transparent), 0 0 25px color-mix(in srgb, var(--color-cyan) 15%, transparent);
  color: var(--color-bg);
}
.btn--lg { padding: 1.1rem 2.75rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--fs-small); }

/* ===== GRID ===== */
.grid { display: grid; gap: var(--space-component); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  :root { --space-section: 4rem; --container-padding: 1rem; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CARDS ===== */
.card {
  background: var(--color-muted);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-component);
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s ease;
  pointer-events: none;
}
.card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card:hover::before {
  background: var(--gradient-aurora);
}
.card img {
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card h3 { margin-bottom: 0.5rem; color: var(--color-text); }
.card p { color: var(--color-text-light); }

/* Card variant: aurora glow */
.card--aurora {
  background: color-mix(in srgb, var(--color-primary) 3%, transparent);
  border-color: color-mix(in srgb, var(--color-primary) 10%, transparent);
}
.card--aurora:hover {
  box-shadow: var(--shadow-glow-primary);
  border-color: var(--color-primary);
}

/* Card variant: accent glow */
.card--accent-glow:hover {
  box-shadow: var(--shadow-glow-accent);
}
.card--accent-glow:hover::before {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-cyan) 100%);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--space-section) * 2) 0 var(--space-section);
}
/* Full-screen animated aurora gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-primary) 15%, transparent) 0%,
    color-mix(in srgb, var(--color-accent) 10%, transparent) 25%,
    color-mix(in srgb, var(--color-cyan) 12%, transparent) 50%,
    color-mix(in srgb, var(--color-accent) 8%, transparent) 75%,
    color-mix(in srgb, var(--color-primary) 15%, transparent) 100%
  );
  background-size: 400% 400%;
  animation: aurora-shift 10s ease infinite;
  pointer-events: none;
  z-index: 0;
}
/* Gradient mesh orb 1 - green */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--color-primary) 12%, transparent) 0%,
    color-mix(in srgb, var(--color-primary) 4%, transparent) 40%,
    transparent 70%
  );
  animation: aurora-breathe 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

/* Floating content panel */
.hero__panel {
  background: rgba(15, 18, 37, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid color-mix(in srgb, var(--color-primary) 10%, transparent);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.hero__panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: var(--gradient-aurora);
  opacity: 0.15;
  z-index: -1;
  animation: aurora-shift 6s ease infinite;
  background-size: 300% 300%;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-light);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: var(--lh-body);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__image {
  border-radius: var(--radius-lg);
  margin-top: 3rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--color-border);
}

/* ===== NAVBAR ===== */
.nav-bar {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav-bar.scrolled {
  background: rgba(11, 14, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--color-border);
  box-shadow: 0 0 30px color-mix(in srgb, var(--color-primary) 5%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--container-padding);
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 25%, transparent);
}
.nav__logo:hover {
  color: var(--color-primary);
  text-shadow: 0 0 25px color-mix(in srgb, var(--color-primary) 45%, transparent);
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-aurora-h);
  transition: width 0.3s ease;
}
.nav__links a:hover {
  color: var(--color-text);
  text-shadow: 0 0 10px color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.nav__links a:hover::after {
  width: 100%;
}
.nav__cta { margin-left: 1.5rem; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
  box-shadow: 0 0 6px color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 14, 26, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav__mobile-menu.active {
  display: flex;
}
.nav__mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.nav__mobile-menu a:hover {
  color: var(--color-primary);
  text-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 45%, transparent);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 1rem var(--container-padding); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-muted);
  color: var(--color-text-light);
  padding: var(--space-section) 0 var(--space-component);
  border-top: 1px solid var(--color-border);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-aurora-h);
  opacity: 0.35;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: var(--space-component);
}
.footer h3, .footer h4 {
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer__brand-desc {
  color: var(--color-text-light);
  margin-top: 0.75rem;
  line-height: var(--lh-body);
}
.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-primary) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-primary) 12%, transparent);
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer__social a:hover {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--color-primary) 25%, transparent);
  color: var(--color-text);
  transform: translateY(-2px);
}
.footer__bottom {
  margin-top: var(--space-component);
  padding-top: var(--space-element);
  text-align: center;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  position: relative;
}
.footer__bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-aurora-h);
  opacity: 0.15;
}
.footer a { color: var(--color-text-light); }
.footer a:hover { color: var(--color-primary); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }

@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ===== FORMS ===== */
.form__group { margin-bottom: var(--space-element); }
.form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  font-size: var(--fs-small);
  color: var(--color-text-light);
  font-family: var(--font-heading);
}
.form__input, .form__textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  font-family: var(--font-body);
  background: color-mix(in srgb, var(--color-primary) 2%, transparent);
  color: var(--color-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 10%, transparent), 0 0 15px color-mix(in srgb, var(--color-primary) 8%, transparent);
  background: color-mix(in srgb, var(--color-primary) 4%, transparent);
}
.form__textarea { min-height: 130px; resize: vertical; }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: var(--fs-small);
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  background: color-mix(in srgb, var(--color-primary) 8%, transparent);
  color: var(--color-primary);
  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.badge--accent {
  background: color-mix(in srgb, var(--color-accent) 8%, transparent);
  color: var(--color-accent);
  border-color: color-mix(in srgb, var(--color-accent) 15%, transparent);
}
.badge--cyan {
  background: color-mix(in srgb, var(--color-cyan) 8%, transparent);
  color: var(--color-cyan);
  border-color: color-mix(in srgb, var(--color-cyan) 15%, transparent);
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-component) 0;
}
.divider--aurora {
  height: 2px;
  background: var(--gradient-aurora-h);
  margin: var(--space-component) 0;
  border: none;
  opacity: 0.4;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-light { color: var(--color-text-light); }
.mb-1 { margin-bottom: var(--space-element); }
.mb-2 { margin-bottom: var(--space-component); }
.mt-2 { margin-top: var(--space-component); }

/* ===== AURORA BOREALIS SPECIFIC CLASSES ===== */

/* Aurora glow: primary color glow on element */
.aurora-glow {
  box-shadow: var(--shadow-glow-primary);
}
.aurora-glow--accent {
  box-shadow: var(--shadow-glow-accent);
}
.aurora-glow--cyan {
  box-shadow: var(--shadow-glow-cyan);
}

/* Gradient mesh background — decorative blobs that simulate aurora light */
.mesh-bg {
  position: relative;
  overflow: hidden;
}
.mesh-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--color-primary) 8%, transparent) 0%, transparent 70%);
  animation: mesh-drift 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.mesh-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--color-accent) 6%, transparent) 0%, transparent 70%);
  animation: mesh-drift 25s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}
.mesh-bg > * { position: relative; z-index: 1; }

/* Parallax background attachment */
.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .parallax-bg { background-attachment: scroll; }
}

/* Gradient text */
.gradient-text {
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text--animated {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 33%, var(--color-cyan) 66%, var(--color-primary) 100%);
  background-size: 300% 300%;
  animation: aurora-shift 5s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Aurora text glow */
.text-glow {
  text-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 40%, transparent), 0 0 40px color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.text-glow--accent {
  text-shadow: 0 0 20px color-mix(in srgb, var(--color-accent) 40%, transparent), 0 0 40px color-mix(in srgb, var(--color-accent) 15%, transparent);
}
.text-glow--cyan {
  text-shadow: 0 0 20px color-mix(in srgb, var(--color-cyan) 40%, transparent), 0 0 40px color-mix(in srgb, var(--color-cyan) 15%, transparent);
}

/* Eyebrow label */
.eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: inline-block;
  text-shadow: 0 0 10px color-mix(in srgb, var(--color-primary) 25%, transparent);
}

/* Glass panel */
.glass {
  background: rgba(15, 18, 37, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--color-primary) 6%, transparent);
  border-radius: var(--radius-lg);
}

/* Icon box with aurora tint */
.icon-box {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-primary) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--color-primary);
}
.icon-box:hover,
.card:hover .icon-box {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 25%, transparent);
}

/* Feature number (01, 02, etc.) */
.feature-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  margin-bottom: 1rem;
  display: block;
}

/* Stat counter */
.stat {
  text-align: center;
  padding: var(--space-component);
}
.stat__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  text-shadow: 0 0 25px color-mix(in srgb, var(--color-primary) 35%, transparent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
}

/* Pricing card */
.pricing-card {
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.pricing-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow-primary);
  background: color-mix(in srgb, var(--color-primary) 3%, transparent);
}
.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-aurora-h);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}
.pricing-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 25%, transparent);
}
.pricing-card__features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}
.pricing-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
  font-size: var(--fs-small);
}
.pricing-card__features li::before {
  content: '\2713';
  margin-right: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
}

/* Testimonial card */
.testimonial-card {
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-size: 3.5rem;
  line-height: 1;
  font-family: var(--font-heading);
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}
.testimonial-card:hover {
  border-color: color-mix(in srgb, var(--color-primary) 25%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 8%, transparent);
}
.testimonial-card__quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  font-style: italic;
}
.testimonial-card__author {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--fs-body);
}
.testimonial-card__role {
  font-size: var(--fs-small);
  color: var(--color-primary);
  margin-top: 0.2rem;
}

/* Team member card */
.team-card {
  text-align: center;
  padding: var(--space-component);
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}
.team-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.team-card__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--color-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover .team-card__image {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 20%, transparent), 0 0 40px color-mix(in srgb, var(--color-accent) 10%, transparent);
}
.team-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-size: var(--fs-small);
  color: var(--color-primary);
}

/* Process / timeline step */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: var(--space-component);
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
}
.process-step:hover {
  border-color: color-mix(in srgb, var(--color-primary) 25%, transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--color-primary) 8%, transparent);
}
.process-step__number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-bg);
  background: var(--gradient-aurora);
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-step__content h3 { margin-bottom: 0.5rem; }
.process-step__content p { color: var(--color-text-light); }

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-muted);
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.faq-item.active {
  border-color: color-mix(in srgb, var(--color-primary) 25%, transparent);
  box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 6%, transparent);
}
.faq-item__question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.05rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s ease;
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq-item__answer p {
  color: var(--color-text-light);
  line-height: var(--lh-body);
}

/* Blog card */
.blog-card {
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card__body {
  padding: 1.5rem;
}
.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  font-size: var(--fs-h3);
}
.blog-card__excerpt {
  color: var(--color-text-light);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* Portfolio card */
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
}
.portfolio-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}
.portfolio-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-card__image {
  transform: scale(1.05);
}
.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 14, 26, 0.92) 0%,
    rgba(11, 14, 26, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}
.portfolio-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--fs-h3);
  margin-bottom: 0.25rem;
}
.portfolio-card__category {
  font-size: var(--fs-small);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CTA section */
.cta-section {
  position: relative;
  padding: calc(var(--space-section) * 1.25) 0;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--color-primary) 5%, transparent) 0%,
    color-mix(in srgb, var(--color-accent) 5%, transparent) 33%,
    color-mix(in srgb, var(--color-cyan) 5%, transparent) 66%,
    color-mix(in srgb, var(--color-primary) 5%, transparent) 100%
  );
  background-size: 300% 300%;
  animation: aurora-shift 8s ease infinite;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.cta-section__subtitle {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 1.75vw, 1.15rem);
}

/* Contact info boxes */
.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}
.contact-box:hover {
  border-color: color-mix(in srgb, var(--color-primary) 25%, transparent);
  box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 8%, transparent);
}
.contact-box__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-primary) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-box__text h4 { color: var(--color-text); margin-bottom: 0.25rem; }
.contact-box__text p { color: var(--color-text-light); font-size: var(--fs-small); }

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: var(--color-muted);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    color-mix(in srgb, var(--color-primary) 2%, transparent) 40px,
    color-mix(in srgb, var(--color-primary) 2%, transparent) 41px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    color-mix(in srgb, var(--color-primary) 2%, transparent) 40px,
    color-mix(in srgb, var(--color-primary) 2%, transparent) 41px
  );
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-component);
  align-items: center;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* About section image */
.about-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-elevated);
  position: relative;
}

/* Aurora line decoration */
.aurora-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-aurora-h);
  margin-bottom: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 0 8px color-mix(in srgb, var(--color-primary) 25%, transparent);
}
.aurora-line--center {
  margin-left: auto;
  margin-right: auto;
}
.aurora-line--long {
  width: 100px;
}

/* Pulse dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 8px color-mix(in srgb, var(--color-primary) 50%, transparent);
  animation: aurora-pulse 2s ease-in-out infinite;
  display: inline-block;
}

/* Aurora orb — decorative floating gradient blobs */
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.aurora-orb--green {
  background: color-mix(in srgb, var(--color-primary) 12%, transparent);
  animation: aurora-breathe 8s ease-in-out infinite;
}
.aurora-orb--purple {
  background: color-mix(in srgb, var(--color-accent) 10%, transparent);
  animation: aurora-breathe 10s ease-in-out infinite 2s;
}
.aurora-orb--cyan {
  background: color-mix(in srgb, var(--color-cyan) 10%, transparent);
  animation: aurora-breathe 12s ease-in-out infinite 4s;
}

/* Floating content panels (centered panels on full-bleed sections) */
.floating-panel {
  background: rgba(15, 18, 37, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid color-mix(in srgb, var(--color-primary) 8%, transparent);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}
.floating-panel::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient-aurora);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.floating-panel:hover::after {
  opacity: 0.1;
}

/* Celestial star decoration — tiny dots */
.celestial-dots {
  position: relative;
}
.celestial-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1px 1px at 10% 15%, color-mix(in srgb, var(--color-primary) 30%, transparent) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 45%, color-mix(in srgb, var(--color-accent) 25%, transparent) 50%, transparent 50%),
    radial-gradient(1px 1px at 60% 20%, color-mix(in srgb, var(--color-cyan) 30%, transparent) 50%, transparent 50%),
    radial-gradient(1px 1px at 80% 60%, color-mix(in srgb, var(--color-primary) 20%, transparent) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 80%, color-mix(in srgb, var(--color-accent) 35%, transparent) 50%, transparent 50%),
    radial-gradient(1px 1px at 90% 30%, color-mix(in srgb, var(--color-cyan) 20%, transparent) 50%, transparent 50%),
    radial-gradient(1px 1px at 15% 70%, color-mix(in srgb, var(--color-primary) 25%, transparent) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 70% 90%, color-mix(in srgb, var(--color-cyan) 30%, transparent) 50%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== SCROLL REVEAL SCRIPT PLACEHOLDER ===== */
/* JS added via header.html script tag */

/* Auto-generated dark color variant: red-orange */
/* Dark-based template — surface tokens preserved from base.css, only
   accent/primary/secondary rotate across variants. */
:root {
  --color-primary: #EF4444;
  --color-accent: #F97316;
  --color-secondary: #FFD700;
  --color-text: #E0E4F0;
  --color-text-light: #8B90A8;
  --color-bg: #0B0E1A;
  --color-bg-alt: #070A14;
  --color-border: #1A1F35;
  --color-muted: #0F1225;
}

/* SitePilot: skip link */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.sr-only:focus{position:static;width:auto;height:auto;padding:8px 16px;margin:0;overflow:visible;clip:auto;white-space:normal;background:#fff;color:#000;z-index:10000}
/* SitePilot: mobile nav toggle */
nav.nav{position:relative;z-index:1000}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;color:inherit}
.nav__links{list-style:none;padding:0;margin:0}
.nav__links li{display:inline}
@media(max-width:768px){
  .nav-toggle{display:block}
  .nav__cta{display:none}
  .nav__links{flex-direction:column;position:absolute;top:100%;left:0;right:0;z-index:999;background:rgba(255,255,255,0.98);backdrop-filter:blur(10px);padding:16px 24px;box-shadow:0 4px 12px rgba(0,0,0,0.1);gap:12px}
  .nav__links li{display:block}
  .nav__links a{color:#1f2937!important}
}
/* SitePilot: language flags */
.sp-lang-flags{display:flex;align-items:center;gap:4px;margin-left:auto}
.sp-lang-flags button{background:none;border:none;cursor:pointer;font-size:20px;opacity:0.35;transition:opacity 0.15s;padding:2px;line-height:1}
.sp-lang-flags button.active{opacity:1}
/* SitePilot: nav brand spacing */
.nav__brand,.nav__logo{margin-right:32px;flex-shrink:0;white-space:nowrap}
/* SitePilot: CF7 form styling */
.wpcf7 .wpcf7-form p{margin-bottom:16px}
.wpcf7 .wpcf7-form label{display:block;font-weight:500;margin-bottom:4px;font-size:0.95rem}
.wpcf7 .wpcf7-form-control:not(.wpcf7-submit){width:100%;padding:12px 16px;border:1px solid rgba(255,255,255,0.15);border-radius:8px;background:rgba(255,255,255,0.06);color:inherit;font-size:1rem;transition:border-color 0.2s,box-shadow 0.2s;box-sizing:border-box}
.wpcf7 .wpcf7-form-control:not(.wpcf7-submit):focus{outline:none;border-color:var(--color-primary,#3b82f6);box-shadow:0 0 0 3px rgba(59,130,246,0.15)}
.wpcf7 textarea.wpcf7-form-control{min-height:140px;resize:vertical}
.wpcf7 .wpcf7-submit{display:inline-block;padding:12px 32px;background:var(--color-primary,#3b82f6);color:#fff;border:none;border-radius:8px;font-size:1rem;font-weight:600;cursor:pointer;transition:background 0.2s,transform 0.1s}
.wpcf7 .wpcf7-submit:hover{background:var(--color-primary-dark,#2563eb);transform:translateY(-1px)}
.wpcf7 .wpcf7-submit:active{transform:translateY(0)}
.wpcf7 .wpcf7-spinner{display:inline-block;margin-left:8px}
.wpcf7 .wpcf7-response-output{margin:16px 0;padding:12px 16px;border-radius:8px;font-size:0.9rem}
/* SitePilot: Google Maps embed */
.contact-map iframe{width:100%;height:350px;border:none;border-radius:12px;margin-top:8px}
.contact-map{margin-bottom:24px}
/* SitePilot: prevent mobile horizontal overflow — html element (body already covered; html needed for documentElement.scrollWidth) */
html{overflow-x:hidden}
