/* =====================================================
   GNG Roofing & Construction
   Clean light theme · no scroll animations · fast
   ===================================================== */

:root {
  --bg:        #f4ecda;       /* warm beige paper */
  --bg-2:      #ece1c5;       /* deeper beige */
  --cream:     #fef3eb;       /* peach-tinted hero */
  --surface:   #ffffff;
  --ink:       #14110d;
  --ink-2:     #4a4338;
  --muted:     #79705f;
  --line:      #e1d6b9;
  --line-2:    #d2c399;
  --accent:    #c2410c;       /* brand rust/orange */
  --accent-2:  #9a3309;
  --accent-3:  #f5b88f;       /* soft orange */
  --maxw:      1200px;
  --radius:    14px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

::selection { background: var(--accent); color: #fff; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin: 0 0 16px;
  text-transform: none;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-title {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: var(--accent); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); }
.btn--lg { padding: 14px 24px; font-size: 15px; }

/* ============ Pill ============ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.pill__dot {
  width: 8px; height: 8px;
  background: #2bb673;
  border-radius: 50%;
  display: inline-block;
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 246, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 28px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand__mark {
  font-size: 22px;
  color: var(--accent);
  font-weight: 800;
}
.brand__name {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.nav__links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { padding: 9px 16px; font-size: 13px; }

/* ============ Hero ============ */
.hero {
  padding: 96px 0 72px;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(194, 65, 12, 0.18), transparent 70%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero__inner { max-width: 880px; margin: 0 auto; }
.hero__title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__media {
  margin: 0 auto;
  max-width: 1100px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 30px 60px -30px rgba(15, 17, 18, 0.18);
}
.hero__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* ============ Trust strip ============ */
.trust {
  background: var(--bg);
  border-block: 1px solid var(--line);
  padding: 28px 0;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 32px;
}
.trust__item {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.3;
}
.trust__item strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trust__item span {
  font-size: 13px;
  color: var(--muted);
}

/* ============ Generic grids ============ */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============ Cards ============ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.card__media {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 4px 0 0;
  color: var(--ink);
}
.card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ============ Sections ============ */
.services, .work, .about, .reviews, .contact { padding: 96px 0; position: relative; }
.stats { padding: 56px 0; background: var(--surface); }

/* Section rhythm: alternating backgrounds */
.services { background: var(--surface); }
.work     { background: var(--bg); }
.about    { background: var(--surface); }
.reviews  { background: var(--bg-2); }
.contact  { background: var(--bg); }

.services .card { background: var(--surface); }
.about .about__media { box-shadow: 0 1px 0 var(--line); }

/* ============ Wavy section dividers ============ */
/* SVG wave applied as a mask, filled with the previous section's color. */
.section-wave::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 1;
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'><path d='M0,0 H1440 V30 C1080,68 720,-4 360,30 C180,48 0,30 0,30 Z' fill='black'/></svg>") top / 100% 100% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 64' preserveAspectRatio='none'><path d='M0,0 H1440 V30 C1080,68 720,-4 360,30 C180,48 0,30 0,30 Z' fill='black'/></svg>") top / 100% 100% no-repeat;
}
.section-scallop::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 56px;
  z-index: 1;
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'><path d='M0,0 H1440 V20 Q1380,56 1320,20 T1200,20 T1080,20 T960,20 T840,20 T720,20 T600,20 T480,20 T360,20 T240,20 T120,20 T0,20 Z' fill='black'/></svg>") top / 100% 100% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 56' preserveAspectRatio='none'><path d='M0,0 H1440 V20 Q1380,56 1320,20 T1200,20 T1080,20 T960,20 T840,20 T720,20 T600,20 T480,20 T360,20 T240,20 T120,20 T0,20 Z' fill='black'/></svg>") top / 100% 100% no-repeat;
}

/* fill colors for each transition (color of the section above) */
.services.section-wave::before  { background: var(--bg);     }    /* trust → services */
.work.section-wave::before      { background: var(--surface);}    /* stats → work */
.about.section-scallop::before  { background: var(--bg);     }    /* work → about */
.reviews.section-wave::before   { background: var(--surface);}    /* about → reviews */
.contact.section-scallop::before{ background: var(--bg-2);   }    /* reviews → contact */

/* ============ Stats ============ */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stats__num {
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.stats__num small {
  font-size: 0.42em;
  font-weight: 600;
  margin-left: 2px;
  color: var(--muted);
}
.stats__label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============ Work gallery ============ */
.work__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.work__item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work__item--big {
  grid-column: span 4;
  grid-row: span 2;
}
.work__item:not(.work__item--big) {
  grid-column: span 2;
}
.work__item figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(14, 15, 16, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: 999px;
  letter-spacing: 0.005em;
  backdrop-filter: blur(6px);
}

/* ============ About ============ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__copy .section-title { text-align: left; margin-bottom: 18px; }
.about__copy .eyebrow { text-align: left; }
.about__copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 18px;
  max-width: 520px;
}
.about__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============ Reviews ============ */
.review {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review__stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.review blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.review figcaption {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review__name {
  font-weight: 600;
  color: var(--ink);
}
.review__role {
  color: var(--muted);
}

/* ============ Contact CTA ============ */
.contact__card {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 64px 56px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.contact__card::before {
  content: "GNG";
  position: absolute;
  top: -32px; right: -16px;
  font-size: 220px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
  user-select: none;
}
.contact__card .eyebrow { color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.contact__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 14px;
}
.contact__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin: 0 auto 32px;
  max-width: 480px;
  line-height: 1.55;
}
.contact__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.contact__card .btn--primary {
  background: #fff;
  color: var(--ink);
}
.contact__card .btn--primary:hover { background: var(--ink); color: #fff; }
.contact__card .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.contact__card .btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.contact__grid > div { display: flex; flex-direction: column; gap: 6px; }
.contact__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.contact__grid a, .contact__grid span {
  color: rgba(255,255,255,0.92);
  font-size: 14.5px;
  line-height: 1.5;
}
.contact__grid a:hover { color: #fff; }

/* ============ Translucent decorative shapes ============ */
.shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  opacity: 0.55;
}
.hero, .work, .reviews, .footer { position: relative; overflow: hidden; }
.hero .wrap, .work .wrap, .reviews .wrap { position: relative; z-index: 1; }

.shape--a {  /* hero — left peach */
  top: -80px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--accent-3), transparent 70%);
  opacity: 0.85;
}
.shape--b {  /* hero — right rust */
  top: 60px; right: -160px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.4), transparent 70%);
}
.shape--c {  /* work — top-right */
  top: -120px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--accent-3), transparent 70%);
  opacity: 0.45;
}
.shape--d {  /* reviews — bottom-left */
  bottom: -160px; left: -140px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.32), transparent 70%);
  opacity: 0.6;
}
.shape--e {  /* footer — top-right */
  top: -200px; right: -180px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(194, 65, 12, 0.35), transparent 70%);
  opacity: 0.55;
}

/* ============ Hero tagline ============ */
.hero__tagline {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  margin: -8px 0 22px;
  letter-spacing: 0.005em;
}

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 88px 0 28px;
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 2.6fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.footer__lockup {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__mark {
  font-size: 88px;
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.footer__tagline {
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.footer__col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.footer__col a:hover { color: #fff; }
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}
.footer__wordmark {
  font-size: clamp(140px, 24vw, 360px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.04);
  text-align: center;
  margin: 56px 0 8px;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 1;
}
.footer__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 2;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__row { gap: 12px; padding: 20px 24px; }
  .hero { padding: 64px 0 48px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .work__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .work__item--big, .work__item { grid-column: span 1; grid-row: span 1; }
  .work__item--big { grid-column: span 2; grid-row: span 2; }
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .services, .work, .about, .reviews, .contact { padding: 64px 0; }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__card { padding: 48px 28px; }
  .contact__card::before { font-size: 140px; top: -16px; right: -8px; }
  .footer { padding: 64px 0 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__mark { font-size: 64px; }
  .shape { filter: blur(48px); }
  .shape--a, .shape--b, .shape--c, .shape--d, .shape--e {
    width: 320px; height: 320px;
  }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero__ctas .btn, .contact__ctas .btn { width: 100%; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .work__item--big, .work__item { grid-column: 1; grid-row: span 1; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .trust__row { justify-content: flex-start; }
}

/* =====================================================
   LANDING PAGE ADDITIONS (paid ads: /lp/ + thank-you)
   Reuses tokens/classes above. Only new patterns below.
   ===================================================== */
.lp-hero { padding: 48px 0 72px; text-align: left; }
.lp-hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
.lp-hero .hero__title,
.lp-hero .hero__sub { text-align: left; margin-left: 0; }
.lp-hero .hero__sub { margin-bottom: 28px; max-width: 520px; }

.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink);
  margin-bottom: 24px;
}
.google-badge svg { display: block; }
.google-badge__stars { color: #fbbc05; letter-spacing: 1px; font-size: 13px; }

.lp-form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 8px;
  box-shadow: 0 30px 60px -30px rgba(15, 17, 18, 0.18);
}
.lp-form-card iframe { width: 100%; min-height: 520px; border: 0; border-radius: var(--radius-sm); display: block; }
.lp-form-placeholder {
  min-height: 420px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); font-size: 14px; padding: 32px; line-height: 1.6;
}

.lp-steps { display: grid; gap: 14px; max-width: 760px; margin: 0 auto; counter-reset: lpstep; }
.lp-step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px;
}
.lp-step__num {
  counter-increment: lpstep; font-weight: 700; font-size: 19px; color: var(--accent);
  width: 40px; height: 40px; flex: none; display: flex; align-items: center; justify-content: center;
  background: var(--accent-3); border-radius: 50%;
}
.lp-step__num::before { content: counter(lpstep); }
.lp-step h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 2px 0 4px; }
.lp-step p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.5; }

.lp-faq { display: grid; gap: 10px; max-width: 760px; margin: 0 auto; }
.lp-faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; }
.lp-faq__q { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.lp-faq__a { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.55; }

.lp-final { padding: 80px 0; background: var(--ink); color: #fff; text-align: center; }
.lp-final__inner { max-width: 640px; margin: 0 auto; }
.lp-final__title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 12px; }
.lp-final__sub { font-size: 16px; color: rgba(255, 255, 255, 0.7); margin: 0 0 28px; }
.lp-final .btn--primary { background: #fff; color: var(--ink); }
.lp-final .btn--primary:hover { background: var(--accent); color: #fff; }
.lp-final .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.lp-final .btn--ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.5); }

@media (max-width: 900px) {
  .lp-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-hero { text-align: center; }
  .lp-hero .hero__title, .lp-hero .hero__sub { text-align: center; margin-left: auto; margin-right: auto; }
}
