:root {
  --background: #071410;
  --background-elevated: #0d1f18;
  --background-soft: #12271f;
  --card: rgba(10, 27, 22, 0.88);
  --card-strong: #10261e;
  --foreground: #f5f8f4;
  --muted: #aac0b4;
  --muted-strong: #c8d7cf;
  --primary: #f0c420;
  --primary-strong: #ffda58;
  --primary-ink: #211700;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(240, 196, 32, 0.24);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(240, 196, 32, 0.12), transparent 28%),
    radial-gradient(circle at left center, rgba(61, 158, 116, 0.14), transparent 26%),
    linear-gradient(180deg, #071410 0%, #081712 48%, #06100d 100%);
  color: var(--foreground);
}

body.overlay-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

svg {
  display: block;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.shell {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2,
.route-copy h1,
.contact-copy h2,
.checkout-copy h1,
.hero-copy h1 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-heading h2 span,
.contact-copy h2 span,
.route-copy h1 span,
.hero-copy h1 span,
.checkout-copy h1 span {
  color: var(--primary);
}

.section-heading p,
.route-copy p,
.contact-copy > p,
.checkout-copy p,
.hero-copy p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-kicker,
.meta-pill,
.meta-soft,
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.eyebrow-pill,
.meta-pill {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(240, 196, 32, 0.08);
  color: var(--primary);
}

.meta-soft {
  color: var(--muted);
}

.eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(240, 196, 32, 0.45);
  animation: pulse-dot 2s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(6, 16, 13, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-shell {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, rgba(240, 196, 32, 0.18), rgba(240, 196, 32, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.brand-copy {
  font-family: "Oxanium", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-copy span {
  color: var(--primary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-link {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--foreground);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.nav-mobile-actions,
.mobile-nav-panel {
  display: none;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--foreground);
}

.nav-mobile-actions .icon-button {
  gap: 0;
  flex-direction: column;
}

.nav-mobile-actions .icon-button span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin: 0.11rem 0;
}

.assistant-close span,
.lightbox-close span {
  position: absolute;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.assistant-close span:first-child,
.lightbox-close span:first-child {
  transform: rotate(45deg);
}

.assistant-close span:last-child,
.lightbox-close span:last-child {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--primary-ink);
  box-shadow: 0 18px 40px rgba(240, 196, 32, 0.18);
}

.button-primary:hover {
  box-shadow: 0 18px 50px rgba(240, 196, 32, 0.3);
}

.button-secondary,
.button-ghost,
.button-compact {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--foreground);
}

.button-ghost {
  background: transparent;
}

.button-small {
  min-height: 2.45rem;
  padding: 0.7rem 0.95rem;
  font-size: 0.92rem;
}

.button-compact {
  min-height: 2.65rem;
  padding-inline: 1rem;
}

.text-link,
.hero-subtle-link {
  color: var(--primary);
  font-weight: 700;
  background: none;
  border: 0;
  padding: 0;
}

.text-link:hover,
.hero-subtle-link:hover {
  color: var(--primary-strong);
}

.back-link {
  display: inline-flex;
  margin-bottom: 1rem;
}

.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  overflow: clip;
}

.hero-backdrop,
.hero-bg-image,
.hero-bg-gradient {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 42%),
    url("/assets/hero-bg.png") center/cover no-repeat;
  opacity: 0.28;
}

.hero-bg-gradient {
  background:
    linear-gradient(180deg, rgba(7, 20, 16, 0.2) 0%, rgba(7, 20, 16, 0.92) 62%, rgba(7, 20, 16, 1) 100%),
    radial-gradient(circle at top right, rgba(240, 196, 32, 0.2), transparent 24%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 2rem);
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  margin-top: 1.25rem;
}

.hero-copy p {
  max-width: 42rem;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-logo-wrap {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 196, 32, 0.3), rgba(240, 196, 32, 0));
  filter: blur(60px);
}

.hero-logo {
  position: relative;
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.4));
  animation: pulse-logo 4s ease-in-out infinite;
}

.hero-phone {
  font-family: "Oxanium", sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
}

.hero-subtle-link {
  font-size: 0.98rem;
}

.filter-row,
.tool-chip-grid,
.assistant-chip-grid,
.lead-summary-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip-button {
  min-height: 2.7rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-weight: 700;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

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

.chip-button.is-active {
  background: rgba(240, 196, 32, 0.12);
  border-color: var(--border-strong);
  color: var(--primary);
}

.card,
.tool-card,
.faq-card,
.assistant-summary,
.lead-summary-card,
.cookie-banner,
.status-banner {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-card,
.gallery-card,
.gallery-preview-card,
.checkout-card,
.contact-form,
.faq-card {
  padding: 1.4rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card-top,
.tool-card-top,
.lead-summary-top,
.faq-card-head,
.gallery-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.service-card h3,
.feature-card h3,
.gallery-preview-copy h3,
.gallery-card h3,
.tool-result h3,
.faq-card h3,
.lead-summary-card h3,
.checkout-summary strong {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  letter-spacing: -0.02em;
}

.service-card p,
.feature-card p,
.gallery-preview-copy p,
.gallery-card p,
.tool-result p,
.contact-info-item p,
.payment-card p,
.lead-summary-card p,
.faq-panel p,
.checkout-note,
.checkout-footnote {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(240, 196, 32, 0.18), rgba(240, 196, 32, 0.06));
  border: 1px solid rgba(240, 196, 32, 0.18);
}

.service-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card-actions,
.gallery-card-actions,
.assistant-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-detail-panel {
  display: grid;
  gap: 1rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    border-color 0.25s ease,
    padding-top 0.25s ease;
}

.service-card.is-expanded .service-detail-panel {
  max-height: 28rem;
  opacity: 1;
  padding-top: 1rem;
  border-color: var(--border);
}

.service-detail-panel h4,
.assistant-subheading,
.budget-label {
  margin: 0 0 0.55rem;
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 700;
}

.service-detail-panel ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted-strong);
  line-height: 1.7;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.gallery-preview-card,
.gallery-card {
  overflow: hidden;
}

.gallery-preview-image,
.gallery-card-image {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255, 255, 255, 0.04);
}

.gallery-preview-image img,
.gallery-card-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-preview-card:hover img,
.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-preview-copy,
.gallery-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1rem;
}

.section-cta {
  margin-top: 2rem;
}

.route-intro {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}

.route-shell,
.checkout-shell {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.route-shell {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.route-copy h1,
.checkout-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.tool-card {
  padding: 1.5rem;
  display: grid;
  gap: 1.2rem;
}

.tool-result,
.assistant-summary {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tool-note,
.assistant-hint,
.checkout-footnote {
  font-size: 0.92rem;
}

.budget-row,
.assistant-subsection {
  display: grid;
  gap: 0.8rem;
}

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

.feature-card {
  display: grid;
  gap: 0.9rem;
}

.guarantee-card,
.payment-card,
.lead-summary-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
}

.guarantee-card {
  margin-top: 1.25rem;
}

.contact-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-copy,
.contact-form-wrap {
  display: grid;
  gap: 1rem;
}

.contact-info-list {
  display: grid;
  gap: 0.95rem;
}

.contact-info-item {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
}

.contact-info-item h3 {
  margin: 0 0 0.25rem;
  font-family: "Oxanium", sans-serif;
}

.payment-card {
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.payment-card-copy {
  display: grid;
  gap: 0.75rem;
}

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

.contact-form label,
.checkout-form label,
.assistant-textarea {
  display: grid;
  gap: 0.45rem;
  color: var(--muted-strong);
  font-weight: 600;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--foreground);
}

textarea {
  resize: vertical;
  min-height: 7.5rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 248, 244, 0.45);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(240, 196, 32, 0.28);
  outline-offset: 2px;
  border-color: rgba(240, 196, 32, 0.3);
}

.faq-card {
  display: grid;
  gap: 0.75rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  color: var(--foreground);
  padding: 1rem 1.1rem;
  text-align: left;
  font-weight: 700;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-panel {
  max-height: 16rem;
}

.faq-panel p {
  padding: 0 1.1rem 1rem;
}

.lead-summary-card,
.status-banner,
.cookie-banner {
  padding: 1rem 1.1rem;
}

.lead-summary-card {
  flex-direction: column;
}

.lead-summary-top {
  align-items: flex-start;
}

.status-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.status-banner strong {
  display: inline-block;
  min-width: fit-content;
  font-family: "Oxanium", sans-serif;
}

.status-banner.success {
  border-color: rgba(61, 158, 116, 0.35);
  background: rgba(61, 158, 116, 0.12);
}

.status-banner.error {
  border-color: rgba(255, 111, 111, 0.35);
  background: rgba(255, 111, 111, 0.12);
}

.checkout-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.checkout-card,
.checkout-form {
  display: grid;
  gap: 1rem;
}

.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-summary strong {
  color: var(--primary);
  font-size: 2rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 7, 6, 0.72);
  backdrop-filter: blur(8px);
}

.assistant-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100vw, 460px);
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1rem;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(240, 196, 32, 0.16), transparent 28%),
    rgba(10, 23, 19, 0.98);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.assistant-head h2 {
  margin: 0.4rem 0 0;
  font-family: "Oxanium", sans-serif;
  font-size: 2rem;
}

.assistant-progress {
  display: flex;
  gap: 0.6rem;
}

.progress-step {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
}

.progress-step.is-current,
.progress-step.is-complete {
  color: var(--primary-ink);
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
}

.assistant-body {
  min-height: 0;
  overflow: auto;
  padding-right: 0.2rem;
}

.assistant-section {
  display: grid;
  gap: 1rem;
}

.assistant-section h3 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-size: 1.35rem;
}

.assistant-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.assistant-choice {
  display: grid;
  gap: 0.35rem;
  text-align: left;
  min-height: 6rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--foreground);
}

.assistant-choice strong {
  font-size: 1rem;
}

.assistant-choice span {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.assistant-choice.is-selected {
  border-color: var(--border-strong);
  background: rgba(240, 196, 32, 0.09);
}

.assistant-textarea textarea {
  min-height: 8rem;
}

.assistant-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 1040px);
  max-height: 90vh;
  padding: 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--border);
  background: rgba(3, 7, 6, 0.88);
  box-shadow: var(--shadow);
}

.lightbox img {
  width: 100%;
  max-height: calc(90vh - 2.5rem);
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-copy {
  display: grid;
  gap: 0.45rem;
}

.cookie-copy h3 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.mobile-cta-rail {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 16, 13, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.mobile-cta-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.mobile-cta-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: var(--primary-ink);
}

.mobile-cta-item svg,
.desktop-whatsapp svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.desktop-whatsapp {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 39;
  width: 3.7rem;
  height: 3.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 20px 45px rgba(37, 211, 102, 0.3);
}

.desktop-whatsapp svg {
  stroke-width: 1.8;
}

.toast-stack {
  position: fixed;
  top: calc(var(--header-height) + 1rem);
  right: 1rem;
  z-index: 70;
  display: grid;
  gap: 0.75rem;
}

.toast {
  min-width: min(320px, calc(100vw - 2rem));
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(9, 22, 18, 0.96);
  box-shadow: var(--shadow);
}

.toast strong {
  font-family: "Oxanium", sans-serif;
}

.toast.success {
  border-color: rgba(61, 158, 116, 0.35);
}

.toast.error {
  border-color: rgba(255, 111, 111, 0.35);
}

.site-footer {
  padding: 2rem 0 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(240, 196, 32, 0.4);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 10px rgba(240, 196, 32, 0);
    opacity: 0.8;
  }
}

@keyframes pulse-logo {
  0%,
  100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.03);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .route-shell,
  .contact-grid,
  .checkout-shell,
  .gallery-preview-grid,
  .card-grid-services {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 0;
  }

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

@media (max-width: 820px) {
  body {
    padding-bottom: 6rem;
  }

  .nav-desktop {
    display: none;
  }

  .nav-mobile-actions,
  .mobile-nav-panel {
    display: block;
  }

  .mobile-nav-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(6, 16, 13, 0.95);
  }

  .mobile-nav-panel.is-open {
    max-height: 26rem;
  }

  .mobile-nav-panel {
    padding-inline: 1rem;
  }

  .mobile-nav-link,
  .mobile-nav-panel .button {
    display: block;
    width: min(1180px, calc(100vw - 2rem));
    margin: 0 auto;
  }

  .mobile-nav-link {
    padding: 1rem 0;
    color: var(--muted-strong);
    font-weight: 700;
  }

  .mobile-nav-panel .button {
    margin-top: 0.25rem;
    margin-bottom: 1rem;
  }

  .feature-grid,
  .form-grid-two,
  .assistant-choice-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta-rail {
    display: flex;
  }

  .desktop-whatsapp {
    display: none;
  }

  .cookie-banner {
    bottom: 5.9rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(100vw - 1rem, 1180px);
  }

  .section {
    padding: 4rem 0;
  }

  .hero-copy h1,
  .route-copy h1,
  .checkout-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-highlights,
  .hero-actions,
  .service-card-actions,
  .gallery-card-actions,
  .assistant-summary-actions,
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .assistant-drawer {
    width: 100vw;
    padding-bottom: 1.1rem;
  }

  .payment-card,
  .guarantee-card,
  .lead-summary-card,
  .status-banner,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .toast-stack {
    left: 1rem;
    right: 1rem;
  }

  .toast {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
