/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Modern Color System */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-900: #1e3a8a;
  
  /* Neutral System */
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;
  --neutral-950: #020617;
  
  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(20px);
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Animation System */
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, var(--neutral-950) 0%, var(--neutral-900) 50%, var(--neutral-800) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3b82f6;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__title {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  font-size: var(--text-base);
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  z-index: -1;
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: white;
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.btn--primary::before {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    var(--shadow-xl),
    0 0 0 1px rgba(59, 130, 246, 0.3),
    0 0 30px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: var(--glass-bg);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md);
}

.btn--secondary::before {
  background: rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--primary-500);
  border: 2px solid var(--primary-500);
  backdrop-filter: none;
}

.btn--outline::before {
  background: var(--primary-500);
}

.btn--outline:hover {
  color: white;
  border-color: var(--primary-400);
  transform: translateY(-2px);
}

/* Button Sizes */
.btn--sm {
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--text-sm);
}

.btn--lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
  border-radius: var(--radius-xl);
}

/* Button with Icon */
.btn__icon {
  width: 1.25em;
  height: 1.25em;
  transition: transform var(--duration-normal) var(--ease-out);
}

.btn:hover .btn__icon {
  transform: translateX(2px);
}

/* ===== NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.nav__brand img {
  height: 40px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.1) brightness(1.05);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: #60a5fa;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #60a5fa;
  border-radius: 1px;
}

/* Mobile Navigation */
.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__bar {
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}

.nav__menu {
  display: none;
}

/* Removed mobile navigation breakpoint to maintain desktop layout */

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(var(--space-md), 4vw, var(--space-xl));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero__content {
  animation: slideInLeft 0.8s var(--ease-out) forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.hero__title {
  font-size: clamp(var(--text-4xl), 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  background: linear-gradient(
    135deg, 
    #ffffff 0%, 
    #e2e8f0 30%, 
    #cbd5e1 60%, 
    #94a3b8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  line-height: 1.6;
  color: #e2e8f0;
}

.hero__actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.8s var(--ease-out) 0.2s forwards;
  opacity: 0;
  transform: translateX(30px);
}

.hero__stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-2xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform var(--duration-slow) var(--ease-out);
}

.hero__stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: var(--radius-2xl);
  pointer-events: none;
}

.hero__stats:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-5px);
}

.stat {
  position: relative;
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--duration-normal) var(--ease-out);
}

.stat:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.stat__number {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Manrope', sans-serif;
  margin-bottom: var(--space-xs);
  display: block;
}

.stat__label {
  font-size: var(--text-sm);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #cbd5e1;
}

/* Floating Elements */
.hero__floating {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__floating--1 {
  top: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.1));
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero__floating--2 {
  top: 60%;
  right: 15%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.1));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero__floating--3 {
  bottom: 30%;
  left: 20%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.1));
  border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Removed responsive breakpoints to maintain desktop layout on all devices */

/* ===== SERVICES SECTION ===== */
.services {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

/* Removed responsive breakpoint to maintain 2x2 grid on all devices */

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card--featured {
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(96, 165, 250, 0.3);
}

.service-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card__title {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-card__description {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card__features {
  list-style: none;
  padding: 0;
}

.service-card__features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.9;
  font-size: 0.9rem;
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: bold;
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: 6rem 0;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-family: 'Manrope', sans-serif;
}

.process-step__title {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.process-step__description {
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== VALUES SECTION ===== */
.values {
  padding: 6rem 0;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.value-card__title {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.value-card__description {
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
  text-align: center;
}

.cta__title {
  margin-bottom: 1rem;
}

.cta__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  height: 64px;
  width: auto;
  margin-bottom: var(--space-lg);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.1) brightness(1.05);
  object-fit: contain;
  max-width: 200px;
}

.footer__tagline {
  opacity: 0.8;
  font-size: 0.875rem;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer__heading {
  color: #60a5fa;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #60a5fa;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  opacity: 0.6;
  font-size: 0.875rem;
}

/* Removed footer responsive breakpoint to maintain desktop layout */

/* ---------- DESIGN TOKENS ---------- */
:root{
  --container-max: 1200px;
  --container-pad: clamp(16px, 3vw, 32px);

  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: clamp(16px, 2.5vw, 24px);
  --gap-lg: clamp(24px, 3.5vw, 48px);

  --fs-hero: clamp(32px, 6vw, 60px);
  --fs-body: clamp(16px, 1.6vw, 18px);

  --hero-logo-max: 160px;
  --kpi-max: 420px;
}

/* ---------- GLOBAL GUARDS ---------- */
html { font-size: 100%; }
body { font-size: var(--fs-body); line-height: 1.5; }

/* Never let media overflow */
img, svg, video, canvas { max-width: 100%; height: auto; display: block; }

/* Kill inline width/height for Phoenix image if any slipped in */
img[alt*="Phoenix Link"],
img[alt*="Phoenix"] {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
}

/* Layout container */
.container{
  max-width: var(--container-max);
  padding-inline: var(--container-pad);
  margin-inline: auto;
}

/* ---------- HEADER / NAV ---------- */
.header{ position: sticky; top:0; z-index: 50; }
.nav{
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--gap-md);
  padding-block: 14px;
}

.nav__brand { display:flex; align-items:center; gap:10px; }
.nav__brand img{ width: 28px; height: 28px; }

.nav__menu{
  display: flex; align-items:center; gap: clamp(16px, 2vw, 28px);
}
.nav__toggle{
  display:none; cursor:pointer; border:0; background:transparent; font-size: 0;
}

/* Mobile nav */
@media (max-width: 900px){
  .nav__toggle{ display:block; }
  .nav__menu{
    position: absolute; inset: 64px 0 auto 0;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(6px);
    display: none; flex-direction: column; padding: 16px;
  }
  .nav__menu.is-open{ display:flex; }
}

/* ---------- HERO (unified across pages) ---------- */
.hero { padding-block: clamp(40px, 8vw, 100px); }
.hero__grid{
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(280px, .9fr);
  gap: var(--gap-lg);
  align-items: center;
}

/* Title + body */
.hero__title{ font-size: var(--fs-hero); line-height: 1.05; margin: 0 0 14px; }
.hero__lead{ margin: 0 0 22px; max-width: 60ch; }

/* CTA row */
.hero__ctas{ display: flex; gap: var(--gap-md); flex-wrap: wrap; }

/* Right side KPI card */
.hero__aside{ width: min(var(--kpi-max), 40vw); margin-left: auto; }

/* Phoenix hero logo (only if used in hero) */
.hero__logo{
  width: clamp(96px, 12vw, var(--hero-logo-max));
  height: auto;
}

/* Stack on tablets/phones */
@media (max-width: 1024px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__aside{ width: min(380px, 90vw); margin: 0; }
}

/* ===== EMERGENCY: kill any full-screen fixed overlay inside hero ===== */
/* Anything inside .hero that was mistakenly fixed to the viewport gets reset */
section.hero [style*="position:fixed"],
.hero [style*="position:fixed"],
.hero .overlay,
.hero .cover,
.hero .pane,
.hero .hero__image--fixed,
.hero .brand-lockup--fixed {
  position: static !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  z-index: 1 !important;
  pointer-events: auto !important;
}

/* Make sure page layers stack above any leftover artifacts */
header, main, footer { position: relative; z-index: 10; }

/* Cap any Phoenix logo image used in hero */
.hero img[alt*="Phoenix"],
.hero .hero__logo,
.hero .brand-lockup img {
  width: clamp(96px, 12vw, 160px) !important;
  height: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
}

/* Prevent hero images from filling the viewport */
.hero img, .hero picture, .hero svg, .hero canvas {
  max-width: 100%;
  height: auto;
}

/* Hide any duplicate menu rendered inside the hero */
/* (Header nav still shows as normal) */
.hero nav, .hero .nav__menu, section.hero nav {
  display: none !important;
}

/* Keep KPIs from stretching too wide */
.hero .kpi-card, .hero .kpis, .hero__aside {
  width: min(420px, 40vw);
  margin-left: auto;
}

/* Mobile stack remains clean */
@media (max-width: 1024px){
  .hero .kpi-card, .hero .kpis, .hero__aside {
    width: min(380px, 90vw);
    margin: 0;
  }
}

/* ===== Header brand lockup: size + positioning guard ===== */

/* Keep the logo small in the navbar */
.header .nav__brand img,
.nav .nav__brand img,
.nav__brand img[alt*="Phoenix"] {
  width: clamp(32px, 4.5vw, 56px) !important;
  height: auto !important;
  max-height: 56px !important;
  object-fit: contain !important;

  /* neutralize any rogue positioning that would overlay the page */
  position: static !important;
  inset: auto !important;
  transform: none !important;
  z-index: 2 !important;
  pointer-events: auto !important;
  display: inline-block !important;
}

/* Make sure header layout is sane */
.header .nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Keep the hero background floaters behind content */
.hero__floating {
  pointer-events: none;
  z-index: 0;
}
.hero, .hero *:not(.hero__floating) {
  position: relative;
  z-index: 1;
}

/* Optional: cap the hero heading on very large screens to avoid overflows */
.hero .hero__title {
  max-width: 22ch;
}

/* Mobile menu reliability */
.nav__menu {
  display: none;
}
.nav__menu.is-open {
  display: block;
}

/* MOBILE NAV: off by default */
@media (max-width: 1024px){
  .nav__menu { display: none; }
  .nav--open .nav__menu { display: flex; }
}

/* === EMERGENCY PATCH: neutralize overlay + duplicated nav === */

/* 1) Kill any hero background/logo overlays */
.hero__floating,
.hero__floating--1,
.hero__floating--2,
.hero__floating--3,
.hero::before,
.hero::after,
section.hero::before,
section.hero::after {
  display: none !important;
  background: none !important;
  content: none !important;
  pointer-events: none !important;
}

/* Keep hero content above backgrounds/canvas */
.hero, .hero * {
  position: relative;
  z-index: 1;
}

/* 2) Cap the header brand logo and neutralize any rogue positioning */
.header .nav__brand,
.nav .nav__brand {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
}

.header .nav__brand img,
.nav .nav__brand img,
.nav__brand img[alt*="Phoenix"] {
  width: clamp(32px, 4.5vw, 56px) !important;
  max-height: 56px !important;
  height: auto !important;
  object-fit: contain !important;
  position: static !important;
  inset: auto !important;
  transform: none !important;
  z-index: 2 !important;
  display: inline-block !important;
}

/* 3) Only the header nav should be visible; hide any nav lists inside hero or leaked into the flow */
.hero .nav,
.hero nav,
.hero .nav__links,
.hero .nav__menu,
main > .nav__links,
main > nav,
body > .nav__links,
body > nav {
  display: none !important;
}

/* Show the real, header nav */
.header .nav__links {
  display: flex !important;
  gap: clamp(12px, 2vw, 24px) !important;
}

/* Mobile menu off by default; JS toggles an "is-open" class */
.nav__menu {
  display: none !important;
}
.nav__menu.is-open {
  display: block !important;
}

/* 4) Keep hero readable & constrained */
.hero .hero__title,
.hero__title {
  max-width: 22ch;
}

/* 5) Prevent stray horizontal scroll that can make layers look offset */
html, body {
  overflow-x: hidden;
}

/* ============ Accessible Theme & Mobile Polish ============ */

/* Color-blind friendly, WCAG-AA compliant palette (no red/green dependency) */
:root{
  /* Base surfaces */
  --bg-0: #0A0B14;         /* page background */
  --bg-1: #121427;         /* section background */
  --bg-2: #1A1D34;         /* cards / headers */

  /* Text colors */
  --tx-0: #FFFFFF;         /* primary text */
  --tx-1: #D5D8E4;         /* secondary text */
  --tx-2: #9AA3B2;         /* muted text */

  /* Brand & accents (color-blind safe) */
  --brand: #0EA5E9;        /* cyan-blue (primary) */
  --accent: #A855F7;       /* violet (secondary) */
  --ok: #00C48C;           /* teal (status OK) */
  --warn: #FFB020;         /* amber (warnings) */

  /* Borders & shadows */
  --bd: rgba(255,255,255,.08);
  --shadow-1: 0 8px 24px rgba(0,0,0,.35);

  /* Typography scaling */
  --fs-hero: clamp(28px, 6vw, 56px);
  --fs-h2: clamp(20px, 3.5vw, 32px);
  --fs-h3: clamp(18px, 3vw, 24px);
  --fs-body: clamp(15px, 1.9vw, 18px);
  --fs-small: clamp(13px, 1.6vw, 15px);

  /* Spacing */
  --g-xs: 8px;
  --g-sm: 12px;
  --g-md: 16px;
  --g-lg: clamp(20px, 4vw, 36px);
  --g-xl: clamp(28px, 6vw, 56px);

  /* Radius */
  --r-md: 14px;
  --r-lg: 18px;

  /* Focus ring */
  --focus: 0 0 0 3px rgba(14,165,233,.35), 0 0 0 1.5px rgba(14,165,233,.9);
}

/* Global background/text normalization */
body{
  background: radial-gradient(1200px 600px at 70% -10%, rgba(14,165,233,.08), transparent 60%) , var(--bg-0);
  color: var(--tx-1);
  font-size: var(--fs-body);
}

/* Headings */
.hero__title{ font-size: var(--fs-hero); color: var(--tx-0); letter-spacing: -0.01em; }
.section__title{ font-size: var(--fs-h2); color: var(--tx-0); }
.service-card__title, .value-card__title{ font-size: var(--fs-h3); color: var(--tx-0); }

/* Paragraphs / muted text */
.hero__lead, .section__subtitle, .service-card__description, .value-card__description{
  color: var(--tx-1);
}

/* Cards */
.service-card, .value-card, .kpi-card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--bd);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
}

/* Buttons (keep existing classes; improve contrast & size for mobile) */
.btn{
  border-radius: var(--r-md);
  padding: 12px 18px;
  font-weight: 600;
  letter-spacing: .2px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:focus-visible{ outline: none; box-shadow: var(--focus); }
.btn--large{ padding: 14px 20px; }

.btn--primary{
  background: linear-gradient(135deg, var(--brand), #27B0FF);
  color: #001018;
}
.btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 10px 24px rgba(14,165,233,.28); }

.btn--secondary{
  background: #0F1221;
  border: 1px solid var(--bd);
  color: var(--tx-0);
}
.btn--secondary:hover{ background: #151939; }

/* Links */
a{ color: var(--brand); }
a:hover{ color: #53c7ff; }

/* Navigation: increase tap targets + contrast */
.nav__links a{
  color: var(--tx-1);
  padding: 10px 8px;
  border-radius: 10px;
}
.nav__links a:hover,
.nav__links .nav__link--active{ color: var(--tx-0); background: rgba(255,255,255,.06); }
.nav__toggle .nav__bar{ background: var(--tx-0); }

/* Footer links contrast */
.footer__link{ color: var(--tx-1); }
.footer__link:hover{ color: var(--tx-0); }

/* Sections spacing refined for mobile */
.hero{ padding-block: var(--g-xl); }
.services, .values, .cta{ padding-block: var(--g-xl); }
.container{ padding-inline: clamp(16px, 4vw, 32px); }

/* Service & value grids: proper wrap on small screens */
.services__grid, .values__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--g-lg);
}

/* KPI card width guards (prevents odd stretching) */
.kpi-card{ max-width: 420px; }

/* Focus visibility everywhere (keyboard users) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

/* Improve contrast of subtle borders */
.section__header, .footer, .header{ border-color: var(--bd); }

/* ============ Micro-animations (respect reduced motion) ============ */
@media (prefers-reduced-motion: no-preference){
  .fade-in{ opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
  .fade-in.is-visible{ opacity: 1; transform: translateY(0); }

  .service-card:hover, .value-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,.35);
  }

  .btn:active{ transform: translateY(0); }
}

/* Disable big decorative floaters on small devices (cleaner, less busy) */
@media (max-width: 640px){
  .hero__floating{ display: none; }
}

/* Tighten hero layout on phones */
@media (max-width: 768px){
  .hero__ctas{ gap: var(--g-sm); }
  .btn{ width: 100%; text-align: center; } /* easy tapping */
}

/* Ensure images never overflow */
img{ max-width: 100%; height: auto; }

/* ===== ABOUT: Our Story mobile layout ===== */
/* Base grid if not already present */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* text | image on desktop */
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
}

/* Keep story text readable */
.about__story {
  max-width: 68ch;
}

.about__story h2 {
  font-size: var(--fs-h2, clamp(20px, 3.5vw, 32px));
  color: var(--tx-0, #fff);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.about__story p {
  color: var(--tx-1, #d5d8e4);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Image side */
.about__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__media img {
  max-width: 100%;
  height: auto;
  border-radius: var(--r-lg, 18px);
  box-shadow: var(--shadow-1, 0 8px 24px rgba(0,0,0,.35));
}

/* Mobile stack & spacing */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__story {
    max-width: 75ch;
  }
  .about__section {
    padding-block: clamp(24px, 7vw, 48px);
  }
}

/* Tighten paragraph line-length on very small phones */
@media (max-width: 480px) {
  .about__story {
    max-width: 60ch;
  }
}

/* Add gentle fade-in if you're using the IntersectionObserver */
.about__section .fade-in { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.about__section .fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ===== CONTACT: ensure form is fully visible & usable on mobile ===== */
.contact__section {
  padding-block: clamp(28px, 7vw, 56px);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr; /* form | info on desktop */
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
}

/* Form wrapper: center on mobile, no clipping */
.contact__form-wrap {
  max-width: 640px;
  width: 100%;
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--bd, rgba(255,255,255,.08));
  border-radius: var(--r-lg, 18px);
  box-shadow: var(--shadow-1, 0 8px 24px rgba(0,0,0,.35));
  padding: clamp(16px, 4vw, 28px);
}

/* Make sure no ancestor clips the form */
.contact__section, .contact__grid, .contact__form-wrap {
  overflow: visible !important;
}

/* Inputs full width + accessible sizing */
.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form textarea,
.contact__form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--bd, rgba(255,255,255,.12));
  background: #0f1221;
  color: var(--tx-0, #fff);
  outline: none;
  transition: box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.contact__form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Labels readable & spaced */
.contact__form label {
  display: block;
  font-size: var(--fs-small, clamp(13px,1.6vw,15px));
  color: var(--tx-1, #d5d8e4);
  margin-bottom: 6px;
}

/* Field spacing */
.contact__form .field { margin-bottom: 14px; }

/* Focus ring */
.contact__form input:focus-visible,
.contact__form textarea:focus-visible,
.contact__form select:focus-visible {
  box-shadow: var(--focus, 0 0 0 3px rgba(14,165,233,.35), 0 0 0 1.5px rgba(14,165,233,.9));
  border-color: rgba(14,165,233,.55);
}

/* Submit button full-width on mobile for easy tap */
@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;  /* stack form above info */
  }
  .contact__form .btn {
    width: 100%;
    text-align: center;
  }
}

/* Prevent mobile keyboard from cropping the form (no fixed heights) */
.contact__form-wrap, .contact__section {
  min-height: auto; /* ensure no fixed small height */
}

/* If an anchor jumps to #contact, avoid hiding under sticky header */
#contact, #contact-form { scroll-margin-top: 84px; }

/* Legacy contact grid - neutralized in favor of contact__stack */
.contact__grid {
  display: none; /* disabled - using contact__stack instead */
}

/* Form wrapper consistent with other cards */
.contact__form-wrap{
  max-width: 680px;
  width: 100%;
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--bd, rgba(255,255,255,.08));
  border-radius: var(--r-lg, 18px);
  box-shadow: var(--shadow-1, 0 8px 24px rgba(0,0,0,.35));
  padding: clamp(16px, 4vw, 28px);
}

/* Inputs full width */
.contact__form .field{ margin-bottom: 14px; }
.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form textarea{
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--bd, rgba(255,255,255,.12));
  background: #0f1221;
  color: var(--tx-0, #fff);
}
.contact__form textarea{ min-height: 140px; resize: vertical; }

/* Button wide on mobile for easier tapping */
@media (max-width: 768px){
  .contact__form .btn{ width: 100%; text-align: center; }
}

/* Prevent any clipping on mobile keyboards */
.contact__section, .contact__grid, .contact__form-wrap{ overflow: visible !important; }

/* ===== Contact page: stacked layout ===== */
.contact .container.contact__stack {
  max-width: 980px;          /* keep in line with site rhythm */
  margin-inline: auto;
  display: flex;
  flex-direction: column;    /* always stack: form first, info second */
  gap: clamp(20px, 3vw, 28px);
}

/* form card keeps existing look */
.contact__form.card {
  width: 100%;
}

/* Contact info sits below with a subtle divider */
.contact__info {
  width: 100%;
  padding-top: clamp(14px, 2.2vw, 20px);
  border-top: 1px solid rgba(255,255,255,0.08); /* subtle divider */
}

/* Titles and list spacing */
.contact__info-title {
  font-size: clamp(18px, 2.2vw, 22px);
  margin: 0 0 12px 0;
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact__list a {
  color: var(--brand-300, #39a5ff);
  text-decoration: none;
}

.contact__list a:hover {
  text-decoration: underline;
}

/* Optional: center content a bit tighter on very large screens */
@media (min-width: 1280px) {
  .contact .container.contact__stack {
    max-width: 860px;
  }
}

/* ===== PRODUCTS PAGE STYLES ===== */
.products {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 3rem;
}

.product-card {
  position: relative;
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.product-card__badge--popular {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
}

.product-card__badge--new {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
}

.product-card__badge--sale {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
}

.product-card__pricing {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card__price {
  margin-bottom: 1rem;
  text-align: center;
}

.product-card__price .msrp {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.product-card__price .msrp s {
  text-decoration: line-through;
}

.product-card__price .current-price {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-500);
}

.product-card__price .loading-price {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0.8;
}

/* Flash animation for early bird badge */
.flash {
  animation: flash 1.2s infinite;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.product-card__purchase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card__purchase .field {
  margin-bottom: 0;
}

.product-card__purchase input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.875rem;
}

.product-card__purchase input[type="email"]:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.product-card__purchase .btn {
  width: 100%;
  justify-content: center;
}

.products__info {
  text-align: center;
  margin-top: 3rem;
}

.products__microcopy {
  font-size: 0.875rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* API Banner */
.api-banner {
  background: rgba(251, 146, 60, 0.1);
  border-bottom: 1px solid rgba(251, 146, 60, 0.3);
  padding: 1rem 0;
  text-align: center;
}

.api-banner__content {
  color: #fb923c;
  font-weight: 500;
  font-size: 0.875rem;
}

/* FAQ Grid */
.faq {
  padding-block: clamp(3rem, 8vw, 6rem);
  background: rgba(255, 255, 255, 0.02);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
}

.faq__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.faq__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

.faq__question {
  color: var(--primary-500);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.faq__answer {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.value-card {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

.value-card:nth-child(2) { animation-delay: 0.1s; }
.value-card:nth-child(3) { animation-delay: 0.2s; }
.value-card:nth-child(4) { animation-delay: 0.3s; }

/* ===== STORY SECTION ===== */
.story {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.1);
}

.story__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story__text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.story__card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  padding: 2rem;
}

.story__card h3 {
  color: #60a5fa;
  margin-bottom: 1rem;
}

/* Removed story section responsive breakpoint to maintain desktop layout */

/* ===== APPROACH SECTION ===== */
.approach {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.approach__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.approach__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.approach__icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.approach__text h3 {
  color: #60a5fa;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.approach__text p {
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 6rem 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact__description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.contact__text h4 {
  color: #60a5fa;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact__text p {
  opacity: 0.9;
  margin: 0;
}

/* ===== FORM STYLES ===== */
.form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  margin-bottom: 0.5rem;
  color: #60a5fa;
  font-weight: 500;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__submit {
  width: 100%;
  margin-top: 1rem;
}

/* Removed contact section responsive breakpoint to maintain desktop layout */

/* ===== FAQ SECTION ===== */
.faq {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.1);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

.faq__question {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.faq__answer {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}
