:root{
  /* Target feel:
     ~75% black/grey foundation, ~20% white surfaces, ~10% accent.
     (We achieve this by lifting surfaces + borders + section alt + footer,
      while keeping hero + overall background dark.) */

  /* Foundation (still dark, but less “pitch black”) */
  --bg: #0b0c0f;                 /* was #050505 */
  --bg2: #101216;                /* subtle second tone */

  /* “White” surfaces (used on cards/sections) */
  --surface: rgba(255,255,255,0.08);
  --surface2: rgba(255,255,255,0.12);
  --surface3: rgba(255,255,255,0.16);

  /* Cards (lifted) */
  --card: rgba(255,255,255,0.08);  /* was #0c0c0c */
  --card2: rgba(255,255,255,0.12); /* was 0.04 */

  /* Text */
  --text: #ffffff;
  --muted: rgba(255,255,255,0.82);   /* slightly brighter */
  --muted2: rgba(255,255,255,0.62);
  --darkText: #1d1d1f;

  /* Accent */
  --accent: #f5a623;
  --accentHover: #e09515;

  /* Type + layout */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1120px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Borders + shadows (brighter borders, softer shadow) */
  --border: 1px solid rgba(255,255,255,0.16); /* was 0.08 */
  --shadow: 0 14px 44px rgba(0,0,0,0.30);     /* was heavier */

  /* Spacing */
  --s1: 0.5rem;
  --s2: 0.75rem;
  --s3: 1rem;
  --s4: 1.5rem;
  --s5: 2rem;
  --s6: 3rem;
  --s7: 4.5rem;
  --s8: 6rem;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font);
  /* subtle lifted gradient so it feels less heavy */
  background: radial-gradient(1200px 700px at 50% -10%, rgba(255,255,255,0.06), transparent 55%),
              linear-gradient(to bottom, var(--bg), #07080b);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s5);
}

/* Accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:1rem;
  background:#fff;
  color:#000;
  padding:0.75rem 1rem;
  border-radius: var(--r-sm);
  z-index:9999;
}
.skip-link:focus{ left:1rem; }

:focus{ outline:none; }
:focus-visible{
  outline: 3px solid rgba(245,166,35,0.95);
  outline-offset: 3px;
  border-radius: 12px;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; animation:none !important; }
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  /* brighter glass so header reads “cleaner” */
  background: rgba(18,20,25,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
  gap: var(--s4);
}
.logo img{ height:28px; width:auto; }

.nav{
  display:flex;
  align-items:center;
  gap: var(--s4);
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-link{
  font-size:0.92rem;
  color: var(--muted2);
  padding:0.25rem 0.1rem;
}
.nav-link:hover{ color: rgba(255,255,255,0.92); }

.nav-cta{
  padding:0.55rem 0.9rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(245,166,35,0.30);
  /* slightly brighter CTA background */
  background: rgba(245,166,35,0.14);
  color: var(--text);
}
.nav-cta:hover{
  background: rgba(245,166,35,0.20);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: var(--s1);
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor:pointer;
  transition: transform 120ms ease, background 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background: var(--accent);
  color: #0a0a0a;
}
.btn-primary:hover{ background: var(--accentHover); }

/* Brighter “secondary” so you feel more white */
.btn-secondary{
  background: rgba(255,255,255,0.14);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-secondary:hover{
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
}

.btn-outline{
  background: rgba(255,255,255,0.06); /* subtle surface instead of empty */
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.32);
}
.btn-outline:hover{
  background: rgba(255,255,255,0.10);
}

/* Apple-ish pill CTAs */
.btn-pill{
  border-radius: var(--r-pill);
  min-width: 160px;
  padding: 0.78rem 1.25rem;
}
.btn-light{
  background: rgba(255,255,255,0.96);
  color: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.65);
}
.btn-light:hover{ background:#fff; }

/* Keep dark pill but slightly less heavy */
.btn-dark{
  background: rgba(0,0,0,0.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-dark:hover{ background: rgba(0,0,0,0.34); }

/* HERO — Apple-style image */
.hero.hero-image{
  position: relative;
  min-height: 92vh;
  display:grid;
  place-items:center;
  text-align:center;
  overflow:hidden;
  padding: var(--s8) 0;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:-2;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}

/* LIGHTEN overlay so image and whites show more */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(1200px 620px at 50% 35%, rgba(0,0,0,0.18), rgba(0,0,0,0.62) 72%),
    linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.54));
}
.hero-content{
  max-width: 900px;
}
.hero-headline{
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--s3);
  text-shadow: 0 12px 44px rgba(0,0,0,0.38);
}
.hero-subheadline{
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.90);
  max-width: 56ch;
  margin: 0 auto var(--s5);
  text-shadow: 0 10px 30px rgba(0,0,0,0.28);
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap: var(--s3);
  flex-wrap:wrap;
}
.hero-services{
  margin-top: var(--s4);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.74);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Sections */
.section{
  padding: var(--s7) 0;
}

/* Make alt sections “whiter” */
.section.alt{
  background: rgba(255,255,255,0.06);
  border-top: var(--border);
  border-bottom: var(--border);
}

.section-header{
  max-width: 820px;
  margin: 0 auto var(--s6);
  text-align:center;
}
.section-title{
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--s2);
}
.section-subtitle{
  color: var(--muted);
  font-size: 1.05rem;
}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  align-items: stretch;
}
.pricing-card{
  background: var(--card);
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  position:relative;
  /* subtle “white lift” */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pricing-card.featured{
  border-color: rgba(245,166,35,0.42);
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(245,166,35,0.14), transparent 60%),
    var(--card);
}
.badge{
  position:absolute;
  top: var(--s4);
  right: var(--s4);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: var(--r-pill);
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.34);
}
.pricing-title{
  font-size: 1.25rem;
  margin-bottom: var(--s2);
}
.pricing-use{
  color: var(--muted);
  margin-bottom: var(--s4);
}
.pricing-list{
  color: var(--muted);
  padding-left: 1.15rem;
  margin-bottom: var(--s5);
}
.pricing-list li{ margin: 0.45rem 0; }
.pricing-cta{
  margin-top:auto;
  display:flex;
  gap: var(--s2);
  flex-wrap:wrap;
}

/* Note card */
.note-card{
  margin-top: var(--s5);
  border-radius: var(--r-lg);
  border: var(--border);
  padding: var(--s5);
  /* much brighter */
  background: rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--s4);
  flex-wrap:wrap;
}
.note-card p{
  margin:0;
  color: var(--muted);
}
.note-actions{
  display:flex;
  gap: var(--s2);
  flex-wrap:wrap;
}

/* Steps */
.steps{
  list-style:none;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.step{
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  background: rgba(255,255,255,0.10);
}
.step-title{
  margin-bottom: var(--s2);
  font-size: 1.1rem;
}
.step-text{ color: var(--muted); }

/* Proof */
.proof-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.proof-card{
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  background: rgba(255,255,255,0.10);
}
.proof-title{ margin-bottom: var(--s2); }
.proof-text{ color: var(--muted); }

/* Services */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.service-card{
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  background: rgba(255,255,255,0.10);
  text-align:center;
}
.service-icon{
  width: 68px;
  height: 68px;
  margin: 0 auto var(--s3);
  border-radius: var(--r-md);
  display:grid;
  place-items:center;
  color: var(--accent);
  /* a bit brighter so it reads “premium” */
  background: rgba(245,166,35,0.14);
  border: 1px solid rgba(245,166,35,0.22);
}
.service-title{ margin-bottom: var(--s2); }
.service-desc{ color: var(--muted); }

/* FAQ */
.faq{
  max-width: 860px;
  margin: 0 auto;
  display:grid;
  gap: var(--s3);
}
.faq-item{
  border: var(--border);
  border-radius: var(--r-lg);
  padding: var(--s4);
  background: rgba(255,255,255,0.10);
}
.faq-item summary{
  cursor:pointer;
  font-weight:800;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item p{
  margin-top: var(--s3);
  color: var(--muted);
}

/* About (light section) */
.about{
  padding: var(--s7) 0;
  background: #f2f3f5; /* was #e8e8ea */
  color: var(--darkText);
}
.about-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s6);
  align-items:center;
}
.about-headline{
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: var(--s3);
}
.about-text{
  color: #4b4b50;
  margin-bottom: var(--s4);
}
.about-actions{
  display:flex;
  gap: var(--s2);
  flex-wrap:wrap;
}
.about .btn-primary{
  background:#111;
  color:#fff;
}
.about .btn-primary:hover{ background:#000; }
.about .btn-secondary{
  background: rgba(0,0,0,0.06);
  color:#111;
  border: 1px solid rgba(0,0,0,0.12);
}
.about .btn-outline{
  color:#111;
  border: 1px solid rgba(0,0,0,0.22);
}
.about .btn-outline:hover{
  background: rgba(0,0,0,0.06);
}

.about-badge{
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: var(--r-pill);
  padding: 1.25rem 1.5rem;
  text-align:center;
}
.about-badge-title{
  display:block;
  font-weight:900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.about-badge-sub{
  display:block;
  margin-top: 0.4rem;
  color: rgba(0,0,0,0.65);
  font-weight:700;
}

/* Footer */
.footer{
  padding: var(--s7) 0 var(--s6);
  border-top: var(--border);
  /* lift footer slightly so the page ends “cleaner” */
  background: rgba(255,255,255,0.04);
}
.footer-inner{ text-align:center; }
.footer-tagline{
  margin: 0 0 var(--s5);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 900;
}
.footer-nav{
  display:flex;
  justify-content:center;
  gap: var(--s5);
  flex-wrap:wrap;
  margin-bottom: var(--s5);
}
.footer-link{ color: rgba(255,255,255,0.70); }
.footer-link:hover{ color: rgba(255,255,255,0.96); }

.footer-brand{
  border-top: var(--border);
  padding-top: var(--s4);
}
.footer-logo img{
  height: 24px;
  margin: 0 auto;
  opacity: 0.92;
}
.footer-copyright{
  margin-top: var(--s2);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* Responsive */
@media (max-width: 980px){
  .pricing-grid, .services-grid, .proof-grid, .steps{
    grid-template-columns: 1fr;
  }
  .about-grid{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .about-actions{ justify-content:center; }
  .btn-pill{ width: 100%; max-width: 340px; }
  .note-card{ justify-content:center; text-align:center; }
  .note-actions{ justify-content:center; }
}

@media (max-width: 760px){
  .container{ padding: 0 var(--s4); }
  .header-inner{
    height:auto;
    padding: var(--s3) 0;
    flex-direction:column;
    align-items:flex-start;
  }
  .nav{ justify-content:flex-start; }
}
