﻿:root {
  --bg: #080808;
  --bg-soft: #1f1f1f;
  --text: #fafafa;
  --muted: #ffc5aa;
  --surface: rgba(18, 18, 18, 0.88);
  --surface-strong: #111111;
  --line: rgba(243, 126, 49, 0.35);
  --accent-red: #d14200;
  --accent-orange: #ff7700;
  --accent-blue: #f37e31;
  --accent-green: #9e3b1b;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "madefor-text", "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 119, 0, 0.26), transparent 32%),
    radial-gradient(circle at 90% 22%, rgba(209, 66, 0, 0.24), transparent 34%),
    radial-gradient(circle at 72% 84%, rgba(158, 59, 27, 0.22), transparent 30%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-soft) 100%);
  min-height: 100vh;
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
  border-radius: 50%;
  filter: blur(6px);
}

body::before {
  width: 220px;
  height: 220px;
  top: 7rem;
  left: -4rem;
  background: radial-gradient(circle, rgba(255, 190, 125, 0.22), transparent 68%);
}

body::after {
  width: 260px;
  height: 260px;
  right: -5rem;
  bottom: 8rem;
  background: radial-gradient(circle, rgba(255, 119, 0, 0.18), transparent 70%);
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - clamp(0.8rem, 3vw, 2.4rem)));
  margin-inline: auto;
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.32) 0.4px, transparent 0.9px);
  background-size: 8px 8px;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(0);
  pointer-events: none;
  z-index: -1;
}

.orb-one {
  width: 180px;
  height: 180px;
  right: 4%;
  top: 12%;
  background: radial-gradient(circle at 30% 30%, #ffd8b8, var(--accent-orange));
  opacity: 0.3;
}

.orb-two {
  width: 210px;
  height: 210px;
  left: 1%;
  bottom: 8%;
  background: radial-gradient(circle at 35% 35%, #ffc5aa, var(--accent-red));
  opacity: 0.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.94), rgba(8, 8, 8, 0.84));
  border-bottom: 1px solid rgba(243, 126, 49, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 119, 0, 0.08) 30%, transparent 60%),
    radial-gradient(circle at 12% 50%, rgba(255, 188, 120, 0.08), transparent 26%);
  background-size: 220% 100%, 100% 100%;
  animation: headerGlow 12s linear infinite;
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.45rem, 1.4vw, 1rem);
  min-height: clamp(70px, 9vw, 94px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-text {
  display: grid;
  gap: 0.2rem;
}

.logo-mini {
  width: clamp(94px, 8vw, 128px);
  height: clamp(94px, 8vw, 128px);
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 16px rgba(209, 66, 0, 0.35)) drop-shadow(0 0 18px rgba(255, 159, 87, 0.15));
}

.brand-pill {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(209, 66, 0, 0.2);
  border: 1px solid rgba(243, 126, 49, 0.45);
  padding: 0.34rem 0.5rem;
  border-radius: 999px;
}

.brand-name {
  font-family: "futura-lt-w01-book", "Montserrat", "Futura PT", "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: clamp(1.4rem, 1rem + 1vw, 2.05rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 126, 49, 0.45);
  background: rgba(209, 66, 0, 0.16);
  color: var(--text);
  border-radius: 999px;
  min-height: 42px;
  padding: 0.45rem 0.9rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.main-nav {
  display: inline-flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.8rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.main-nav a:hover {
  background: rgba(243, 126, 49, 0.24);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 174, 110, 0.22);
  color: #fff5ee;
}

.hero {
  padding: clamp(1.2rem, 4.6vw, 4.25rem) 0 clamp(1rem, 2.5vw, 2rem);
}

.hero-grid {
  display: grid;
  gap: clamp(0.7rem, 1.8vw, 1.2rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.product-card,
.delivery-card,
.step,
.faq-card,
.assurance-copy,
.assurance-company,
.contact-intro,
.contact-form,
.contact-copy,
.legal-card {
  background: var(--surface);
  border: 1px solid rgba(243, 126, 49, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.hero-copy::before,
.hero-panel::before,
.product-card::before,
.delivery-card::before,
.step::before,
.faq-card::before,
.assurance-copy::before,
.assurance-company::before,
.contact-intro::before,
.contact-form::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 119, 0, 0.95), rgba(255, 210, 150, 0.75), rgba(209, 66, 0, 0.92));
  opacity: 0.9;
}

.hero-copy {
  padding: clamp(1.65rem, 1.2rem + 1.2vw, 2.45rem) clamp(1.3rem, 1rem + 1vw, 2rem) clamp(1.45rem, 1rem + 1vw, 2.1rem);
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(255, 169, 96, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(20, 20, 20, 0.96), rgba(13, 13, 13, 0.88));
}

.hero-copy .eyebrow {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f37e31;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 126, 49, 0.22);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  font-family: "futura-lt-w01-book", "Montserrat", "Futura PT", "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: clamp(2.1rem, 1.2rem + 2.2vw, 3.55rem);
  line-height: 1.02;
  max-width: 13ch;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
  font-size: clamp(1rem, 0.92rem + 0.25vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.price-note {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffc5aa;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: clamp(0.55rem, 1.8vw, 0.72rem) clamp(0.85rem, 2.5vw, 1.08rem);
  min-width: clamp(124px, 22vw, 154px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, #c73700, #ff7b00 58%, #ffae4d);
  border-color: rgba(255, 209, 168, 0.2);
  box-shadow: 0 16px 34px rgba(209, 66, 0, 0.42);
}

.btn-primary:hover {
  filter: brightness(1.02);
  box-shadow: 0 20px 38px rgba(209, 66, 0, 0.52);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel {
  padding: 1.45rem;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border: 1px solid rgba(243, 126, 49, 0.3);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 119, 0, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(19, 19, 19, 0.95), rgba(9, 9, 9, 0.9));
}

.logo-hero {
  width: min(500px, 100%);
  height: auto;
  margin-bottom: 0.55rem;
  justify-self: start;
}

.maxmoro-logo.is-hidden {
  display: none;
}

.panel-title {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
}

.hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hero-list li {
  position: relative;
  font-weight: 700;
  padding-left: 1.3rem;
}

.hero-list li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.45rem;
  background: linear-gradient(120deg, var(--accent-orange), var(--accent-red));
}

.panel-footnote {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(1.2rem, 3.2vw, 2rem) 0;
}

.section-head {
  margin-bottom: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.section h2 {
  font-family: "futura-lt-w01-book", "Montserrat", "Futura PT", "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.35rem);
  line-height: 1.08;
}

.section-copy {
  max-width: 66ch;
  color: var(--muted);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.05rem);
}

.delivery-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    rgba(18, 18, 18, 0.9);
}

.delivery-card h3 {
  font-size: 1.05rem;
}

.delivery-card p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.8vw, 0.9rem);
}

.proof-card {
  border: 1px solid rgba(243, 126, 49, 0.2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 38%),
    rgba(18, 18, 18, 0.9);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.proof-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(243, 126, 49, 0.18);
}

.proof-body {
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  height: 100%;
}

.proof-tag {
  width: fit-content;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(243, 126, 49, 0.26);
  color: #ffd9c4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-list {
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
  display: grid;
  gap: 0.28rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.05rem);
}

.product-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 155, 82, 0.08), transparent 24%),
    rgba(18, 18, 18, 0.9);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.product-badge {
  width: fit-content;
  max-width: 100%;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(243, 126, 49, 0.28);
  color: #ffd9c4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-badge-muted {
  background: rgba(255, 255, 255, 0.04);
}

.product-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(243, 126, 49, 0.35);
  background: rgba(10, 10, 10, 0.65);
  transition: transform 260ms ease, filter 260ms ease;
}

.product-card:hover,
.delivery-card:hover,
.step:hover,
.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 166, 94, 0.44);
  box-shadow: 0 28px 44px rgba(0, 0, 0, 0.42);
}

.product-card:hover .product-image {
  transform: scale(1.025);
  filter: saturate(1.05);
}
.product-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.2;
}

.product-card p {
  color: var(--muted);
}

.product-fit,
.product-example {
  font-size: 0.94rem;
}

.product-fit strong,
.product-example strong {
  color: #ffe3d2;
}

.product-actions {
  margin-top: auto;
  display: grid;
  gap: 0.45rem;
}

.btn-product {
  width: 100%;
  min-width: 0;
}

.product-link {
  color: #ffd2bf;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.product-link:hover {
  text-decoration: underline;
}

.section-flow .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(0.6rem, 1.8vw, 0.9rem);
}

.step {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  display: grid;
  gap: 0.55rem;
}

.step span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, var(--accent-red), var(--accent-orange));
}

.step h3 {
  font-size: 1.05rem;
}

.step p {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.05rem);
}

.faq-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.55rem;
  background: var(--surface);
  border: 1px solid rgba(243, 126, 49, 0.25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.faq-card h3 {
  font-size: 1.05rem;
}

.faq-card p {
  color: var(--muted);
}

.section-cta {
  padding-top: 0.5rem;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 126, 49, 0.24);
  background:
    radial-gradient(circle at top right, rgba(255, 166, 94, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(20, 20, 20, 0.96), rgba(12, 12, 12, 0.9));
  box-shadow: var(--shadow);
}

.cta-band-copy {
  display: grid;
  gap: 0.35rem;
}

.cta-band-copy p:last-child {
  color: var(--muted);
}

.cta-band-compact {
  padding-block: 1rem;
}

.assurance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(0.7rem, 1.8vw, 1rem);
}

.assurance-copy,
.assurance-company {
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.assurance-copy {
  display: grid;
  gap: 0.9rem;
}

.assurance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.assurance-item {
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(243, 126, 49, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.assurance-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.assurance-item p,
.assurance-company p {
  color: var(--muted);
}

.assurance-company {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  background:
    radial-gradient(circle at top right, rgba(255, 166, 94, 0.12), transparent 28%),
    rgba(18, 18, 18, 0.92);
}

.assurance-company h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.company-meta span {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 126, 49, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #ffe3d2;
  font-size: 0.86rem;
  font-weight: 700;
}

.company-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: #ffe5d4;
  font-weight: 700;
}

.section-contact {
  padding-bottom: 3.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  max-width: 760px;
  margin-inline: auto;
}

.contact-copy,
.contact-intro,
.contact-form {
  padding: 1.3rem;
  border-radius: var(--radius-md);
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  height: fit-content;
}

.contact-copy p {
  color: var(--muted);
}

.contact-intro {
  display: grid;
  gap: 0.75rem;
  background:
    radial-gradient(circle at top right, rgba(255, 155, 82, 0.1), transparent 24%),
    rgba(18, 18, 18, 0.9);
}

.contact-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-intro-points span {
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 126, 49, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #ffe3d2;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-note,
.form-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.form-trust {
  margin: 0.1rem 0 0;
  padding: 0.72rem 0.82rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(243, 126, 49, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
}

.mail-link {
  font-weight: 700;
  color: #f37e31;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.mail-link:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.form-title {
  font-family: "futura-lt-w01-book", "Montserrat", "Futura PT", "Avenir Next", "Trebuchet MS", sans-serif;
  font-size: clamp(1.25rem, 1rem + 0.6vw, 1.7rem);
  line-height: 1.08;
}

.form-intro {
  color: var(--muted);
  margin-top: -0.1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.field-grid > div {
  display: grid;
  gap: 0.45rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  display: grid;
  gap: 0.45rem;
  padding: 0.78rem;
  border: 1px solid rgba(243, 126, 49, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 126, 49, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(14, 14, 14, 0.9);
  color: var(--text);
  padding: 0.74rem 0.82rem;
  font: inherit;
}

.contact-form textarea {
  min-height: 122px;
  resize: vertical;
}

.assurance-company .btn {
  width: fit-content;
}

.contact-form .btn {
  justify-self: stretch;
  width: 100%;
  margin-top: 0.25rem;
  min-height: 52px;
}

.hero-actions .btn,
.cookie-banner__actions .btn {
  letter-spacing: 0.01em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(243, 126, 49, 0.7);
  box-shadow: 0 0 0 3px rgba(243, 126, 49, 0.2);
}

.form-status {
  display: none;
  margin-top: 0.1rem;
  padding: 0.88rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #ffe7d7;
  border: 1px solid rgba(243, 126, 49, 0.34);
  background: linear-gradient(120deg, rgba(209, 66, 0, 0.22), rgba(255, 119, 0, 0.18));
}

.form-status.is-error {
  color: #ffd2bf;
  border: 1px solid rgba(209, 66, 0, 0.45);
  background: rgba(209, 66, 0, 0.14);
}

.site-footer {
  border-top: 1px solid rgba(243, 126, 49, 0.25);
  background: rgba(8, 8, 8, 0.84);
}

.footer-inner {
  padding: clamp(0.65rem, 1.5vw, 0.85rem) 0 clamp(0.8rem, 2vw, 1.1rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.9rem;
  color: var(--muted);
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  line-height: 1.4;
}

.footer-brand-block,
.footer-address-block {
  margin: 0;
}

.footer-address-block {
  justify-self: end;
  text-align: right;
  max-width: 44ch;
}

.footer-link {
  color: #ffd2bf;
  text-decoration: none;
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link-button:hover {
  text-decoration: underline;
}

.legal-page {
  padding: clamp(1rem, 3vw, 2rem) 0 2rem;
}

.legal-card {
  max-width: 860px;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  background: var(--surface);
  border: 1px solid rgba(243, 126, 49, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 1rem;
}

.legal-lead {
  max-width: 68ch;
}

.legal-block {
  display: grid;
  gap: 0.45rem;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.3rem;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
  font-weight: 700;
  color: #ffd2bf;
}

.back-link:hover {
  text-decoration: underline;
}

.subpage-main {
  padding: 1rem 0 3rem;
}

.page-back {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-weight: 700;
  color: #ffd2bf;
  text-decoration: none;
}

.page-back:hover {
  text-decoration: underline;
}

.landing-hero {
  display: grid;
  gap: 0.9rem;
}

.landing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 0.9rem;
}

.landing-copy,
.landing-side,
.landing-card {
  background: var(--surface);
  border: 1px solid rgba(243, 126, 49, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.landing-copy::before,
.landing-side::before,
.landing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 119, 0, 0.95), rgba(255, 210, 150, 0.75), rgba(209, 66, 0, 0.92));
}

.landing-copy,
.landing-side,
.landing-card {
  padding: 1.2rem;
}

.landing-copy {
  display: grid;
  gap: 0.8rem;
}

.landing-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(243, 126, 49, 0.24);
}

.landing-side {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.landing-points,
.mini-link-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.landing-card {
  display: grid;
  gap: 0.45rem;
}

.landing-card p {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: max(0.8rem, env(safe-area-inset-left));
  right: max(0.8rem, env(safe-area-inset-right));
  bottom: max(0.8rem, env(safe-area-inset-bottom));
  z-index: 50;
  margin: 0 auto;
  width: min(980px, calc(100% - 1.6rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(243, 126, 49, 0.32);
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__copy {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
}

.cookie-banner__title {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.cookie-banner__copy p:last-child {
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  justify-content: flex-end;
  row-gap: 0.8rem;
  align-items: center;
}

.cookie-banner__actions .btn {
  min-width: 118px;
  padding-inline: 1rem;
}

@keyframes headerGlow {
  0% {
    background-position: 0% 0%, 0 0;
  }
  100% {
    background-position: 200% 0%, 0 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
  }

  .landing-layout,
  .landing-card-grid {
    grid-template-columns: 1fr;
  }

  .logo-hero {
    width: min(420px, 100%);
  }
}

@media (max-width: 760px) {
  .delivery-grid,
  .proof-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .assurance-list {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .footer-address-block {
    justify-self: end;
    text-align: right;
    max-width: 24ch;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }


  .nav-toggle {
    display: inline-flex;
    min-height: 36px;
    padding: 0.34rem 0.75rem;
    font-size: 0.92rem;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.25rem;
    padding: 0.45rem;
    border-radius: 12px;
    border: 1px solid rgba(243, 126, 49, 0.35);
    background: rgba(8, 8, 8, 0.97);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    overflow: hidden;
    max-height: 0;
    transition: opacity 180ms ease, transform 180ms ease, max-height 180ms ease;
    z-index: 30;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    max-height: 240px;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 0.58rem 0.75rem;
    font-size: 0.92rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band .btn {
    width: 100%;
  }

  .contact-intro-points {
    display: grid;
  }

  .company-meta {
    display: grid;
  }

  .orb {
    display: none;
  }
}

