/* ==========================================================
   SUMMIT US SERVICES LLC — Stylesheet
   ========================================================== */

/* 1. Variables & Reset
/* ---------------------------------------------------------- */
:root {
  --red:        #E8192C;
  --orange:     #F5420A;
  --flame:      #FF6B00;
  --cyan:       #00C5D7;
  --cyan-light: #1AD6E8;

  --grad-brand: linear-gradient(135deg, #E8192C 0%, #F5420A 50%, #FF6B00 100%);
  --grad-hero:  linear-gradient(145deg, #080B18 0%, #0D1224 60%, #111830 100%);
  --grad-card:  linear-gradient(145deg, #0D1224 0%, #121A2E 100%);

  --dark:        #080B18;
  --dark-2:      #0D1224;
  --dark-3:      #111A2E;
  --dark-text:   #111827;
  --body-text:   #374151;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --bg-light:    #F9FAFB;
  --white:       #FFFFFF;

  --font-display: 'Bebas Neue', cursive;
  --font-body:    'Poppins', sans-serif;

  --section-py: clamp(64px, 10vw, 120px);
  --max-w:      1280px;
  --pad-x:      clamp(20px, 5vw, 48px);

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);
  --shadow-glow: 0 8px 32px rgba(232,25,44,.30);
  --shadow-cyan: 0 8px 32px rgba(0,197,215,.18);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-full: 9999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .3s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }


/* 2. Utilities
/* ---------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.section-label::before { content: '— '; }
.section-label::after  { content: ' —'; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  letter-spacing: .03em;
  line-height: 1.05;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .40s; }


/* 3. Buttons
/* ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 17px 38px; font-size: 16px; }
.btn svg { transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-brand);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,25,44,.40);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}
.btn-ghost-dark:hover {
  color: var(--dark-text);
  border-color: var(--dark-text);
  transform: translateY(-2px);
}


/* 4. Header & Nav
/* ---------------------------------------------------------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--t), padding var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8,11,24,.94);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-color: rgba(255,255,255,.07);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo-img {
  height: 70px;
  width: auto;
  display: block;
  flex-shrink: 0;
  /* keep the logo from inflating the header height */
  margin-top: -8px;
  margin-bottom: -8px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav__link--cta {
  background: var(--grad-brand) !important;
  color: var(--white) !important;
  margin-left: 8px;
  padding: 8px 22px;
}
.nav__link--cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.nav__toggle:hover { background: rgba(255,255,255,.08); }

.nav__toggle-bar {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}
.nav__toggle.open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open .nav__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--t);
}
.nav__overlay.visible { opacity: 1; }


/* 5. Hero
/* ---------------------------------------------------------- */
.hero {
  min-height: 100svh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Dot grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

/* Ambient glows */
.hero__glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,197,215,.12) 0%, transparent 70%);
  top: -100px; right: -50px;
  pointer-events: none;
}
.hero__glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,25,44,.08) 0%, transparent 70%);
  bottom: 0; left: -80px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,197,215,.1);
  border: 1px solid rgba(0,197,215,.22);
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  letter-spacing: .02em;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: badge-pulse 2.2s infinite;
  flex-shrink: 0;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(68px, 9vw, 130px);
  line-height: .95;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,.60);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.hero__trust-check {
  width: 18px; height: 18px;
  background: rgba(0,197,215,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__mountain-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero__mountain-svg {
  width: 100%;
  filter: drop-shadow(0 0 48px rgba(0,197,215,.20));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.stat-float {
  position: absolute;
  background: rgba(13,18,36,.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  animation: float-subtle 5s ease-in-out infinite;
}
.stat-float--1 { top: 8%;  left: -6%; animation-delay: -.5s; }
.stat-float--2 { bottom: 14%; right: -4%; animation-delay: -2.5s; }

@keyframes float-subtle {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.stat-float__icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.stat-float__num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  line-height: 1;
  letter-spacing: .03em;
}
.stat-float__lbl {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  display: block;
}


/* 6. Trust Bar
/* ---------------------------------------------------------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 36px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body-text);
}
.trust-item__icon {
  color: var(--cyan);
  flex-shrink: 0;
}

.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}


/* 7. Services
/* ---------------------------------------------------------- */
.services { background: var(--bg-light); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Featured card */
.service-card--featured {
  background: var(--grad-card);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.service-card--featured .service-card__title { color: var(--white); }
.service-card--featured .service-card__desc,
.service-card--featured .service-card__list li { color: rgba(255,255,255,.65); }
.service-card--featured .service-card__list li { border-color: rgba(255,255,255,.08); }

/* Coming soon card */
.service-card--soon {
  border-style: dashed;
  background: var(--bg-light);
}
.service-card--soon .service-card__title,
.service-card--soon .service-card__desc,
.service-card--soon .service-card__list li { opacity: .55; }

.service-card__soon-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--dark-2);
  color: var(--cyan-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(0,197,215,.30);
}

.service-card__popular {
  display: inline-block;
  background: var(--grad-brand);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}

.service-card__icon {
  width: 56px; height: 56px;
  background: rgba(0,197,215,.10);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 24px;
}
.service-card--featured .service-card__icon { background: rgba(0,197,215,.15); }

.service-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: .03em;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-card__list {
  margin-bottom: 32px;
}
.service-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body-text);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.service-card__list li:last-child { border-bottom: none; }

.check-icon {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
}
.service-card--featured .check-icon { color: var(--cyan); }


/* 8. Why Summit
/* ---------------------------------------------------------- */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
  transition: var(--t);
}
.why-card:hover {
  border-color: rgba(0,197,215,.4);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-5px);
}
.why-card:hover .why-card__icon { background: var(--grad-brand); color: var(--white); }

.why-card__icon {
  width: 64px; height: 64px;
  background: rgba(0,197,215,.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--cyan);
  transition: var(--t);
}

.why-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.why-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}


/* 9. How It Works
/* ---------------------------------------------------------- */
.how-it-works { background: var(--bg-light); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--flame));
  opacity: .25;
}

.step {
  text-align: center;
  padding: 40px 24px;
}

.step__num {
  width: 80px; height: 80px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--white);
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-glow);
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.step__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}


/* 10. Testimonials
/* ---------------------------------------------------------- */
.testimonials { background: var(--dark); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-label { color: var(--cyan); }
.testimonials .section-sub   { color: rgba(255,255,255,.5); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.t-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 40px;
  transition: var(--t);
}
.t-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,197,215,.22);
  transform: translateY(-4px);
}

.t-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.t-card__star { color: var(--orange); font-size: 18px; }

.t-card__quote {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 28px;
}

.t-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.t-card__name {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}
.t-card__role {
  font-size: 13px;
  color: rgba(255,255,255,.38);
}


/* 11. FAQ
/* ---------------------------------------------------------- */
.faq { background: var(--white); }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-item__btn {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark-text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color .2s;
}
.faq-item__btn:hover { color: var(--red); }
.faq-item.open .faq-item__btn { color: var(--red); }

.faq-item__icon {
  width: 28px; height: 28px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
  color: var(--muted);
}
.faq-item.open .faq-item__icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.faq-item.open .faq-item__body { max-height: 500px; }

.faq-item__answer {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
}


/* 12. CTA Banner
/* ---------------------------------------------------------- */
.cta-banner {
  background: var(--grad-brand);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 90px);
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 12px;
  position: relative;
}
.cta-banner__sub {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  margin-bottom: 40px;
  position: relative;
}


/* 13. Contact
/* ---------------------------------------------------------- */
.contact { background: var(--dark-2); }
.contact .section-title { color: var(--white); }
.contact .section-label { color: var(--cyan); }
.contact .section-sub   { color: rgba(255,255,255,.50); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact__info-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 58px);
  color: var(--white);
  letter-spacing: .03em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.contact__info-sub {
  color: rgba(255,255,255,.50);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail__icon {
  width: 44px; height: 44px;
  background: rgba(0,197,215,.10);
  border: 1px solid rgba(0,197,215,.20);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.contact-detail__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.32);
  margin-bottom: 4px;
}
.contact-detail__value {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.contact-detail__value a { color: var(--white); transition: color .2s; }
.contact-detail__value a:hover { color: var(--cyan); }

.contact__hours-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
  margin-bottom: 12px;
  font-weight: 600;
}
.contact__hours-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  gap: 24px;
}
.contact__hours-list li strong {
  color: rgba(255,255,255,.82);
  font-weight: 500;
}

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 48px;
}

.contact-form { display: grid; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255,255,255,.45);
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.form-control::placeholder { color: rgba(255,255,255,.22); }
.form-control:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0,197,215,.05);
}

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control option { background: var(--dark-3); color: var(--white); }

.form-note {
  font-size: 13px;
  color: rgba(255,255,255,.30);
  text-align: center;
}
.form-note a { color: var(--cyan); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(0,197,215,.08);
  border: 1px solid rgba(0,197,215,.22);
  border-radius: var(--r-md);
  color: var(--cyan-light);
  font-size: 16px;
  font-weight: 500;
}


/* 14. Footer
/* ---------------------------------------------------------- */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 72px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo { height: 63px; width: auto; margin-bottom: 18px; }

.footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 24px;
}

.footer__socials { display: flex; gap: 10px; }

.footer__social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: var(--t);
}
.footer__social:hover {
  background: var(--grad-brand);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  transition: color .2s;
}
.footer__links a:hover { color: var(--cyan); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,.25);
  transition: color .2s;
}
.footer__legal a:hover { color: var(--white); }

/* Disclaimer */
.footer__disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.18);
  line-height: 1.6;
  max-width: 700px;
}


/* 15. Apps Preview (home section)
/* ---------------------------------------------------------- */
.apps-preview { background: var(--bg-light); }

.apps-preview__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
  align-items: start;
}

.app-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--t);
  box-shadow: var(--shadow-sm);
}
.app-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.app-card--dark {
  background: var(--dark-2);
  border-color: transparent;
  position: relative;
}
.app-card--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1.5px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.app-card__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px;
  height: 100%;
}

.app-card__icon-wrap {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
  color: var(--white);
}
.app-card--light .app-card__icon-wrap {
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--orange);
  box-shadow: none;
}

.app-card__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,197,215,.12); color: var(--cyan);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: var(--r-full);
  letter-spacing: .06em; text-transform: uppercase;
}
.app-card__badge::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--cyan); display: block;
}
.app-card__badge--soon {
  background: rgba(245,66,10,.10); color: var(--orange);
}
.app-card__badge--soon::before { background: var(--orange); }

.app-card__name {
  font-family: var(--font-display);
  font-size: 30px; letter-spacing: .02em; line-height: 1.1;
  color: var(--white);
}
.app-card--light .app-card__name { color: var(--dark-text); }

.app-card__desc {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,.58);
}
.app-card--light .app-card__desc { color: var(--muted); }

.app-card__features {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
}
.app-card__features li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: rgba(255,255,255,.68);
}
.app-card__features li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--cyan); flex-shrink: 0;
}
.app-card--light .app-card__features li { color: var(--body-text); }
.app-card--light .app-card__features li::before { background: var(--orange); }

/* App Store badge */
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #000; color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; padding: 10px 20px;
  transition: var(--t); text-decoration: none;
}
.store-badge:hover { background: #1a1a1a; border-color: rgba(255,255,255,.35); }
.store-badge__text { display: flex; flex-direction: column; }
.store-badge__sub { font-size: 10px; color: rgba(255,255,255,.6); line-height: 1; margin-bottom: 1px; }
.store-badge__main { font-size: 15px; font-weight: 700; line-height: 1; }

/* Right side: stacked smaller cards */
.apps-preview__side { display: flex; flex-direction: column; gap: 20px; }

.app-card--small {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px; border-radius: var(--r-md);
}
.app-card--small .app-card__icon-wrap { width: 52px; height: 52px; border-radius: 14px; }
.app-card--small .app-card__name { font-size: 17px; margin-bottom: 4px; }
.app-card--small .app-card__desc { font-size: 13px; margin-top: 4px; }

.apps-preview__cta { text-align: center; }


/* 16. Page Hero (shared for subpages)
/* ---------------------------------------------------------- */
.page-hero {
  background: var(--grad-hero);
  padding: clamp(90px, 14vw, 150px) 0 clamp(64px, 10vw, 100px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,197,215,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__label {
  display: inline-block;
  color: var(--cyan); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  color: var(--white); line-height: 1.0; letter-spacing: .02em; margin-bottom: 20px;
}
.page-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.5); max-width: 520px; line-height: 1.7;
}


/* 17. About Page
/* ---------------------------------------------------------- */
.about-profile { padding: clamp(64px, 10vw, 120px) 0; }

.about-profile__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px; align-items: start;
}

.about-profile__photo-wrap { position: sticky; top: 100px; }

.about-profile__photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-light); border: 1px solid var(--border);
  position: relative;
}
.about-profile__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.photo-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; gap: 12px; padding: 24px; text-align: center;
}
.photo-placeholder__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
}
.photo-placeholder__text { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 180px; }
.photo-placeholder__hint {
  font-size: 11px; color: rgba(107,114,128,.55);
  font-style: italic; margin-top: 4px;
}

.about-profile__caption { text-align: center; margin-top: 18px; }
.about-profile__name {
  font-family: var(--font-display); font-size: 24px; letter-spacing: .04em; color: var(--dark-text);
}
.about-profile__title-tag { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 3px; }

/* Bio copy */
.about-profile__bio h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  color: var(--dark-text); line-height: 1.05;
  letter-spacing: .02em; margin-bottom: 24px;
}
.about-profile__bio .lead {
  font-size: 18px; line-height: 1.75;
  color: var(--body-text); margin-bottom: 20px; font-weight: 500;
}
.about-profile__bio p { font-size: 15px; line-height: 1.8; color: var(--body-text); margin-bottom: 18px; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 36px 0; padding: 28px;
  background: var(--bg-light); border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.about-stat__num {
  display: block;
  font-family: var(--font-display); font-size: 38px; letter-spacing: .02em;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-stat__label { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 4px; line-height: 1.4; }

/* Credentials strip */
.credentials-strip { background: var(--dark); padding: clamp(48px, 8vw, 88px) 0; }
.credentials__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.credential-item {
  text-align: center; padding: 32px 20px;
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md);
  background: rgba(255,255,255,.03); transition: var(--t);
}
.credential-item:hover { border-color: rgba(0,197,215,.28); background: rgba(0,197,215,.04); }
.credential-item__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(0,197,215,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--cyan);
}
.credential-item__title { font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 6px; }
.credential-item__sub { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.5; }

/* Mission/Values */
.about-mission { background: var(--bg-light); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 36px 28px; border: 1px solid var(--border); transition: var(--t);
}
.mission-card:hover { border-color: rgba(232,25,44,.18); box-shadow: var(--shadow-md); }
.mission-card__num {
  font-family: var(--font-display); font-size: 52px; letter-spacing: .02em;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 12px;
}
.mission-card__title { font-size: 19px; font-weight: 700; color: var(--dark-text); margin-bottom: 10px; }
.mission-card__desc { font-size: 14px; color: var(--muted); line-height: 1.7; }


/* 18. Blog
/* ---------------------------------------------------------- */
.blog-filters {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.blog-filter-btn {
  padding: 8px 22px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 500; font-family: var(--font-body);
  color: var(--muted); background: var(--bg-light);
  border: 1px solid var(--border); cursor: pointer; transition: var(--t);
}
.blog-filter-btn:hover, .blog-filter-btn.active {
  background: var(--grad-brand); color: var(--white); border-color: transparent;
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.post-card {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--t); display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,25,44,.12); }

.post-card__cover {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--dark-2); position: relative;
}
.post-card__cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.post-card:hover .post-card__cover img { transform: scale(1.05); }

.post-card__cover-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}

.post-card__category {
  position: absolute; top: 12px; left: 12px;
  background: var(--grad-brand); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: var(--r-full);
}

.post-card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }

.post-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted); margin-bottom: 10px;
}
.post-card__meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

.post-card__title {
  font-size: 17px; font-weight: 700;
  color: var(--dark-text); line-height: 1.4;
  margin-bottom: 8px;
}

.post-card__excerpt {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.post-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto;
}
.post-card__author { display: flex; align-items: center; gap: 8px; }
.post-card__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--white);
}
.post-card__author-name { font-size: 12px; font-weight: 600; color: var(--dark-text); }

.post-card__read {
  font-size: 12px; font-weight: 700; color: var(--red);
  display: flex; align-items: center; gap: 4px; transition: gap .2s;
}
.post-card:hover .post-card__read { gap: 7px; }

.blog-empty {
  grid-column: 1/-1; text-align: center;
  padding: 64px 24px; color: var(--muted); display: none;
}
.blog-empty.show { display: block; }

/* Blog CTA / subscribe teaser */
.blog-subscribe {
  margin-top: 72px; background: var(--dark);
  border-radius: var(--r-lg); padding: 56px 48px;
  text-align: center;
}
.blog-subscribe__title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  color: var(--white); letter-spacing: .03em; margin-bottom: 12px;
}
.blog-subscribe__sub { color: rgba(255,255,255,.48); font-size: 16px; margin-bottom: 32px; }


/* 19. Apps Page
/* ---------------------------------------------------------- */
.apps-hero-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}

.apps-featured { background: var(--bg-light); }
.apps-featured__inner {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: center;
}

.apps-featured__kicker {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.apps-featured__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  color: var(--dark-text); line-height: 1.05; letter-spacing: .02em; margin-bottom: 18px;
}
.apps-featured__desc { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }

.apps-featured__list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px;
}
.apps-featured__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--body-text); }
.feat-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,197,215,.12); color: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

.apps-featured__mockup {
  background: var(--dark-2); border-radius: 40px;
  border: 8px solid var(--dark-3);
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
  aspect-ratio: 9/19.5; overflow: hidden;
  display: flex; flex-direction: column; max-width: 280px; margin: 0 auto;
  position: relative;
}
.mockup-notch {
  width: 100px; height: 24px; border-radius: 0 0 16px 16px;
  background: var(--dark); margin: 0 auto; flex-shrink: 0;
}
.mockup-screen {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; padding: 24px;
  text-align: center;
}
.mockup-app-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--grad-brand); display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: var(--shadow-glow);
}
.mockup-title { font-family: var(--font-display); font-size: 18px; color: var(--white); letter-spacing: .04em; }
.mockup-sub { font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.5; }
.mockup-bar {
  width: 100%; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.06); position: relative; overflow: hidden;
}
.mockup-bar::after {
  content: ''; position: absolute; inset: 0;
  width: 60%; background: var(--grad-brand);
}

/* Coming soon apps grid */
.apps-coming { background: var(--white); }
.apps-coming__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.coming-card {
  background: var(--bg-light); border-radius: var(--r-md);
  padding: 36px 28px; border: 1px solid var(--border);
  text-align: center; transition: var(--t);
}
.coming-card:hover { border-color: rgba(245,66,10,.22); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.coming-card__icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--orange);
}
.coming-card__title { font-size: 18px; font-weight: 700; color: var(--dark-text); margin-bottom: 8px; }
.coming-card__desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.coming-card__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,66,10,.08); color: var(--orange);
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--r-full); letter-spacing: .06em; text-transform: uppercase;
}


/* 20. Blog Write Tool
/* ---------------------------------------------------------- */
.write-tool { padding: clamp(40px, 8vw, 80px) 0; background: var(--bg-light); }

.instructions-box {
  background: var(--dark-2); border-radius: var(--r-md);
  padding: 28px 32px; margin-bottom: 40px;
}
.instructions-box__title {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.instructions-box__list {
  list-style: decimal; padding-left: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.instructions-box__list li { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.65; }
.instructions-box code {
  background: rgba(0,197,215,.15); color: var(--cyan);
  padding: 1px 6px; border-radius: 4px;
  font-family: 'Courier New', monospace; font-size: 12px;
}

.write-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.write-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column;
}
.write-panel__head {
  padding: 14px 24px; background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 700; color: var(--dark-text);
}
.write-panel__body { padding: 24px; display: flex; flex-direction: column; gap: 18px; }

.write-toolbar {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding: 10px 16px; background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}
.toolbar-btn {
  width: 32px; height: 32px; border-radius: 6px;
  background: none; border: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--body-text);
  cursor: pointer; transition: var(--t); font-family: var(--font-body);
}
.toolbar-btn:hover { background: var(--white); border-color: var(--border); }

.write-content-area {
  width: 100%; min-height: 300px; border: none; resize: vertical;
  font-family: var(--font-body); font-size: 14px; line-height: 1.7;
  color: var(--body-text); padding: 16px; outline: none;
}

.preview-output {
  flex: 1; padding: 24px; min-height: 300px;
  font-size: 15px; line-height: 1.8; color: var(--body-text);
  overflow-y: auto;
}
.preview-output h1,.preview-output h2,.preview-output h3 {
  font-family: var(--font-display); letter-spacing: .02em;
  color: var(--dark-text); margin: 20px 0 10px;
}
.preview-output h1 { font-size: 36px; }
.preview-output h2 { font-size: 26px; }
.preview-output h3 { font-size: 20px; }
.preview-output p { margin-bottom: 14px; }
.preview-output ul,.preview-output ol { padding-left: 22px; margin-bottom: 14px; }

.write-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.write-form-group { display: flex; flex-direction: column; gap: 6px; }
.write-form-group label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.write-input {
  width: 100%; border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 10px 14px;
  font-family: var(--font-body); font-size: 14px; color: var(--dark-text);
  background: var(--white); transition: border-color .2s; outline: none;
}
.write-input:focus { border-color: var(--cyan); }

.write-actions { display: flex; gap: 12px; flex-wrap: wrap; padding: 16px 24px; border-top: 1px solid var(--border); }

.snippet-box {
  background: var(--dark-2); border-radius: var(--r-sm); padding: 14px 16px;
  font-family: 'Courier New', monospace; font-size: 12px; line-height: 1.6;
  color: rgba(255,255,255,.65); white-space: pre-wrap; word-break: break-all;
  border: 1px solid rgba(255,255,255,.08); margin-top: 12px; display: none;
}
.snippet-box.show { display: block; }


/* Apps — "Why We Build" two-column grid */
.apps-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .apps-why-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
  .apps-why-grid { gap: 32px; }
}

/* 21. Responsive (new pages)
/* ---------------------------------------------------------- */
@media (max-width: 1100px) {
  .about-profile__grid { grid-template-columns: 280px 1fr; gap: 48px; }
  .apps-featured__inner { gap: 48px; }
  .credentials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .about-profile__grid { grid-template-columns: 1fr; }
  .about-profile__photo-wrap { position: static; max-width: 300px; margin: 0 auto; }
  .apps-preview__grid { grid-template-columns: 1fr; }
  .apps-preview__side { display: grid; grid-template-columns: 1fr 1fr; }
  .apps-featured__inner { grid-template-columns: 1fr; }
  .apps-featured__mockup { display: none; }
  .write-layout { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .apps-coming__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .apps-preview__side { grid-template-columns: 1fr; }
  .write-meta-grid { grid-template-columns: 1fr; }
  .blog-subscribe { padding: 36px 24px; }
}

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .apps-coming__grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .apps-featured__list { grid-template-columns: 1fr; }
}


/* 22. Responsive
/* ---------------------------------------------------------- */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { display: none; }
  .hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust  { justify-content: center; }
  .hero__badge  { justify-content: center; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__list {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 32px;
    transition: right .35s var(--ease);
    box-shadow: -24px 0 64px rgba(0,0,0,.5);
    z-index: 999;
    gap: 4px;
  }
  .nav__list.open { right: 0; }
  .nav__overlay { display: block; }

  .nav__link { color: rgba(255,255,255,.8); width: 100%; }
  .nav__link--cta { margin-left: 0; width: 100%; justify-content: center; margin-top: 12px; }

  .nav__toggle { display: flex; }

  .services__grid      { grid-template-columns: 1fr; }
  .steps               { grid-template-columns: 1fr; }
  .steps::before       { display: none; }
  .testimonials__grid  { grid-template-columns: 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .trust-bar__inner    { gap: 0; }
  .trust-sep           { display: none; }
  .trust-item          { flex: 1; min-width: 140px; justify-content: center; }
  .contact-form-wrap   { padding: 28px 20px; }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; }
}
