/* ===== VYBRAND Dark Theme ===== */
:root {
  --orange: #ff6b00;
  --orange-hover: #e85f00;
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #141414;
  --bg-footer: #0d0d0d;
  --text: #ffffff;
  --text-muted: #8a8a8a;
  --text-dim: #5a5a5a;
  --border: #222222;
  --border-light: #2a2a2a;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --header-h: 72px;
  --shadow-glow: 0 0 80px rgba(255, 107, 0, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  margin-top: 20px;
  transition: gap 0.2s;
}
.link-arrow:hover { gap: 12px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-hover); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: var(--orange); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--dark { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; }
.logo__img { height: 28px; width: auto; }

.nav { justify-self: center; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 0;
  transition: color 0.2s;
}

.nav__link:hover { color: var(--text); }

.nav__link--active {
  color: var(--text);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== Hero ===== */
.hero {
  padding: 48px 0 32px;
  overflow: hidden;
  scroll-margin-top: 88px;
}

#work,
#services {
  scroll-margin-top: 88px;
}

.hero > .container {
  max-width: 1320px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(360px, 0.54fr);
  gap: 24px 40px;
  align-items: center;
}

.hero__content {
  min-width: 0;
  padding-right: 8px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title-accent { color: var(--orange); }

.hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: clamp(360px, 38vw, 540px);
  overflow: visible;
}

.hero__visual-fx {
  position: absolute;
  inset: -8% -12% -8% -8%;
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  top: 18%;
  right: 8%;
  width: min(55%, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.45) 0%, rgba(255, 107, 0, 0.12) 45%, transparent 72%);
  filter: blur(28px);
}

.hero__arc {
  position: absolute;
  top: -5%;
  right: -5%;
  width: 95%;
  height: 95%;
  pointer-events: none;
}

.hero__arc--2 {
  top: 5%;
  right: 2%;
  width: 80%;
  height: 80%;
  opacity: 0.7;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 118%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
  margin-right: -6%;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
}

/* Hero devices mockup */
.hero-devices {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 380px;
}

.hero-devices__glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.35) 0%, transparent 70%);
  filter: blur(20px);
}

.hero-devices__arc {
  position: absolute;
  pointer-events: none;
}
.hero-devices__arc--1 { top: -20px; right: -30px; width: 180px; height: 180px; }
.hero-devices__arc--2 { bottom: 20px; left: -40px; width: 140px; height: 140px; }

.hero-devices__laptop {
  position: absolute;
  left: 0;
  top: 20px;
  width: 78%;
  z-index: 2;
}

.hero-devices__laptop-screen {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 12px 12px 0 0;
  padding: 16px;
  aspect-ratio: 16/10;
}

.hero-devices__screen-inner {
  height: 100%;
  background: #0f0f0f;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.hero-devices__screen-graphic {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
}

.hero-devices__orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--orange), #fff 40%, var(--orange));
  opacity: 0.9;
}

.hero-devices__screen-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  max-width: 70%;
}

.hero-devices__laptop-base {
  height: 8px;
  background: linear-gradient(180deg, #333, #222);
  border-radius: 0 0 8px 8px;
  margin: 0 8%;
}

.hero-devices__phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28%;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 20px;
  padding: 28px 12px 16px;
  z-index: 3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero-devices__phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.hero-devices__phone-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-devices__phone-list li {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 8px;
  background: #0f0f0f;
  border-radius: 6px;
  border-left: 2px solid var(--orange);
}

@media (min-width: 1100px) {
  .hero__grid {
    grid-template-columns: minmax(300px, 0.44fr) minmax(400px, 0.56fr);
    gap: 32px 56px;
  }
  .hero__image {
    width: 128%;
    max-width: 780px;
    margin-right: -8%;
  }
}

/* ===== Logo bar ===== */
.logo-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.logo-bar__text {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}

.logo-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
  width: 100%;
}

.logo-bar__logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.logo-bar__logo:hover { opacity: 1; color: var(--text-muted); }

/* ===== Featured Work ===== */
.work {
  padding: 100px 0;
}

.work__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.work__header { position: sticky; top: calc(var(--header-h) + 32px); }

.work__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work__grid--page {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  max-width: 100%;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
}

.work-card__link,
.work-card__inner {
  display: block;
  color: inherit;
}

.work-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1a1a;
}

.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.work-card:hover .work-card__image img { transform: scale(1.05); }

.work-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #252525);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}

.work-card__meta {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.work-card__meta strong { font-size: 15px; font-weight: 600; }
.work-card__meta span { font-size: 12px; color: var(--text-muted); }

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.testimonials__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.testimonials__header { position: sticky; top: calc(var(--header-h) + 32px); }

.testimonials__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  overflow: hidden;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-card__quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.testimonial-card__author strong { font-size: 13px; font-weight: 600; }
.testimonial-card__author span { font-size: 12px; color: var(--text-dim); }

/* ===== Services ===== */
.services {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.services__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.service-card:hover { border-color: var(--orange); }
.service-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__about {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}
.footer__social-link:hover { color: var(--orange); border-color: var(--orange); }

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--orange); }

.footer__copy {
  font-size: 13px;
  color: var(--text-dim);
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ===== Inner pages ===== */
.page-hero {
  padding: 80px 0 48px;
  text-align: center;
}
.page-hero--compact { padding: 60px 0 40px; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero h1 .dot { color: var(--orange); }
.page-hero__text {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Portfolio page */
.portfolio--page { padding: 0 0 80px; }
.portfolio__empty { color: var(--text-muted); text-align: center; padding: 40px 0; }
.portfolio__empty a { color: var(--orange); }

/* CTA compact */
.cta { padding: 80px 0; }
.cta--compact { padding: 60px 0; }
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.cta__text h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.cta__text p { color: var(--text-muted); font-size: 15px; }

/* About */
.about { padding: 0 0 80px; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about__content h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 20px; }
.about__content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.stat-card strong { display: block; font-size: 2rem; font-weight: 800; color: var(--orange); margin-bottom: 4px; }
.stat-card span { font-size: 13px; color: var(--text-muted); }

.values { padding: 80px 0; border-top: 1px solid var(--border); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.value-card__icon { color: var(--orange); margin-bottom: 16px; }
.value-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* FAQ */
.faq { padding: 0 0 80px; }
.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq__chevron { flex-shrink: 0; transition: transform 0.2s; color: var(--text-muted); }
.faq__item--open .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item--open .faq__answer { max-height: 300px; }
.faq__answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Contact */
.contact { padding: 0 0 80px; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-note { font-size: 12px; color: var(--text-dim); }
.form-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fca5a5;
  font-size: 14px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.contact__success {
  text-align: center;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact__success-icon { margin-bottom: 20px; }
.sidebar-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}
.sidebar-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.sidebar-card--price { border-color: var(--orange); }
.sidebar-card__label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.sidebar-card__price { font-size: 1.75rem; font-weight: 800; margin: 8px 0; }
.sidebar-card__price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.sidebar-card__sub { font-size: 13px; color: var(--text-dim); }
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.checklist li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .work__layout,
  .testimonials__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .work__header,
  .testimonials__header { position: static; }
  .work__grid,
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header__inner { grid-template-columns: 1fr auto; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav__link { padding: 12px 0; width: 100%; }
  .nav-toggle { display: flex; }

  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual {
    order: -1;
    justify-content: center;
    min-height: 280px;
    margin: 0 auto;
    max-width: 520px;
  }
  .hero__image {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }
  .hero__visual-fx { inset: -5%; }

  .work__grid,
  .testimonials__grid { grid-template-columns: 1fr; }
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .logo-bar__logos { gap: 24px 32px; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 0 40px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn--ghost { padding-left: 0; }
}
