﻿/*
Theme Name: Seine River Cruise
Author: Codex
Description: Landing page theme for a Seine River cruise.
Version: 1.0
*/

:root {
  --blue-900: #304c84;
  --blue-700: #0071eb;
  --blue-500: #0071eb;
  --orange-500: #ff5533;
  --white: #ffffff;
  --black: #0a0a0a;
  --bg: #ffffff;
  --shadow: 0 20px 60px rgba(9, 24, 48, 0.2);
  --radius-card: 10px;
  --radius-btn: 5px;
  --radius-img: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

img {
  border-radius: var(--radius-img);
}

.site-header {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid #e6edf5;
  overflow-x: hidden;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--blue-900);
}

.brand img,
.custom-logo {
  max-height: 56px;
  width: auto;
  height: auto;
}

.primary-nav {
  flex: 1;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e6edf5;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.nav-list a {
  text-decoration: none;
  color: var(--blue-900);
  font-weight: 600;
  padding: 6px 0;
}

.header-cta {
  padding: 10px 18px;
  font-size: 0.95rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e6edf5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-900);
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-icon svg {
  width: 20px;
  height: 20px;
}

.header-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 31, 58, 0.12);
}

main {
  display: block;
  padding: 0;
  margin: 0;
}

main > section {
  padding: 56px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;

}

.section-inner--wide {
  max-width: 1400px;
}

h1,
h2 {
  font-family: "Poppins", sans-serif;
  color: var(--blue-900);
  margin: 0 0 16px;
}

p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.section-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 12px;
}

.hero-section,
.trust-section,
.presentation,
.offer {
  background: var(--white);
}

.feature-product,
.resources-section,
.faq-section {
  background: #f5f8fb;
}

.hero {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  box-shadow: var(--shadow);
  background: var(--blue-900);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.55);
}

.hero-content {
  position: relative;
  padding: 64px;
  color: var(--white);
  max-width: 560px;
  z-index: 1;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.subtitle {
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}

.hero-features li {
  padding-left: 24px;
  position: relative;
}

.hero-features li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange-500);
  position: absolute;
  left: 0;
  top: 8px;
}

.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 16px;
}

.btn {
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 85, 51, 0.35);
}

.btn-secondary {
  background: var(--blue-700);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 113, 235, 0.25);
}

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.trust-card {
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e6edf5;
  box-shadow: 0 12px 30px rgba(11, 31, 58, 0.08);
  font-weight: 600;
  color: var(--blue-900);
}

.trust-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-card);
  background: #f2f6fb;
  border: 1px solid #e1e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature-product {
  margin-top: 0;
}

.feature-product-inner {
  display: grid;
  gap: 24px;
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: #4a5665;
  font-weight: 600;
}

.feature-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-900);
}

.feature-stars {
  color: #f5b400;
  letter-spacing: 2px;
}

.feature-score {
  font-weight: 700;
}

.feature-reviews {
  color: #4a5665;
}

.feature-provider {
  color: #6b7788;
}

.feature-product-body {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: start;
}

.feature-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 16px;
}

.feature-gallery-main img,
.feature-gallery-stack img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-img);
  border: 1px solid #e6edf5;
}

.feature-gallery-main {
  height: 420px;
}

.feature-gallery-main img {
  height: 100%;
}

.feature-gallery-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 420px;
}

.feature-gallery-stack img {
  height: 100%;
}

.feature-description {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-card);
  border: 1px solid #e6edf5;
  background: #f7f9fc;
  color: #4a5665;
}

.feature-description p + p {
  margin-top: 8px;
}

.feature-panel {
  background: #ffffff;
  border: 1px solid #e6edf5;
  border-radius: var(--radius-card);
  padding: 24px;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
}

.feature-panel-label {
  color: #6b7788;
  margin: 0;
  font-weight: 600;
}

.feature-panel-price {
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  color: var(--blue-900);
  margin: 0;
}

.feature-panel-price span {
  font-size: 1rem;
  color: #6b7788;
  font-weight: 600;
  margin-left: 6px;
}

.feature-panel-field {
  padding: 14px 16px;
  background: #f2f6fb;
  border-radius: var(--radius-card);
  border: 1px solid #e1e8f0;
  font-weight: 600;
  color: var(--blue-900);
}

.feature-panel-field--input {
  display: grid;
  gap: 6px;
}

.feature-panel-field--input span {
  font-size: 0.9rem;
  color: #4a5665;
}

.feature-panel-field--input input,
.feature-panel-field--input select {
  border: 1px solid #e1e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--blue-900);
  background: #ffffff;
  font-family: inherit;
  width: 100%;
}

.feature-panel-field--input input[aria-invalid="true"] {
  border-color: #d7263d;
}

.feature-panel-error {
  margin: 2px 0 0;
  min-height: 1.2em;
  font-size: 0.85rem;
  color: #d7263d;
  font-weight: 600;
}

.feature-panel-dropdown {
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
}

.feature-panel-dropdown-trigger {
  width: 100%;
  background: #f2f6fb;
  border-radius: var(--radius-card);
  border: 1px solid #e1e8f0;
  padding: 14px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
  color: var(--blue-900);
  cursor: pointer;
}

.feature-panel-dropdown-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue-900);
  border-bottom: 2px solid var(--blue-900);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.feature-panel-dropdown.is-open .feature-panel-dropdown-icon {
  transform: rotate(-135deg);
}

.feature-panel-dropdown-menu {
  display: none;
  margin-top: 12px;
  background: #ffffff;
  border-radius: var(--radius-card);
  border: 1px solid #e6edf5;
  padding: 12px;
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.12);
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.feature-panel-dropdown.is-open .feature-panel-dropdown-menu {
  display: grid;
}

.feature-panel-select {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: #4a5665;
}

.feature-panel-select select {
  border: 1px solid #e1e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--blue-900);
  background: #ffffff;
  font-family: inherit;
  width: 100%;
}

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    padding: 16px 24px;
    gap: 10px;
    max-width: 100%;
  }

  .primary-nav {
    order: 4;
    flex: initial;
    width: 100%;
    grid-column: 1 / -1;
    display: none;
    margin-top: 12px;
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    padding: 8px 12px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    box-sizing: border-box;
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
    padding: 8px 0;
  }

  .nav-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    grid-column: 1;
  }

  .brand {
    justify-self: center;
    grid-column: 2;
  }

  .brand img,
  .custom-logo {
    max-height: 40px;
  }

  .header-actions {
    justify-self: end;
    gap: 8px;
    flex-wrap: nowrap;
    max-width: 100%;
    grid-column: 3;
    align-items: center;
  }

  .header-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }

  .header-icon svg {
    width: 18px;
    height: 18px;
  }

  .header-cta {
    padding: 8px 10px;
    font-size: 0.85rem;
    white-space: normal;
    max-width: 100px;
    text-align: center;
    line-height: 1.1;
  }
}

.feature-panel-cta {
  width: 100%;
  justify-content: center;
}

.feature-panel-book-now.is-disabled {
  opacity: 0.65;
}

.feature-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #4a5665;
  font-size: 0.95rem;
}

.feature-panel-list li {
  position: relative;
  padding-left: 26px;
}

.feature-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: no-repeat center / contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' fill='%230071eb'/><path d='M9.2 12.6l-1.8-1.8-1.4 1.4 3.2 3.2 6-6-1.4-1.4z' fill='%23ffffff'/></svg>");
}

.section-header {
  max-width: 720px;
  display: grid;
  gap: 12px;
}

.presentation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.presentation-content p {
  max-width: 520px;
}

.presentation-content p + p {
  margin-top: 12px;
}

.presentation-cta {
  margin-top: 16px;
  width: fit-content;
}

.presentation-media img {
  width: 100%;
  display: block;
  border-radius: var(--radius-img);
  border: 1px solid #e6edf5;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.14);
      margin-left: 5px;
}

.resources-section h2 {
  text-align: center;
}

.resources-section .subtitle {
  text-align: center;
  color: #999;
  margin: 5px 0 40px;
}

.resources-section .slider-wrapper {
  overflow: hidden;
  margin-bottom: 30px;
}

.resources-section .cards-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.resources-section .resource-card {
  min-width: calc(33.333% - 14px);
  height: 400px;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.resources-section .resource-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources-section .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: white;
}

.resources-section .card-overlay h3 {
  font-size: 22px;
  margin: 0 0 10px;
  font-weight: 400;
}

.resources-section .card-overlay p {
  opacity: 0.9;
  line-height: 1.5;
}

.resources-section .controls {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.resources-section .nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 100%;
  border: 1px solid #c7cfd9;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.resources-section .nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-top: 2px solid #1a1a2e;
  border-right: 2px solid #1a1a2e;
}

.resources-section .nav-btn.prev::before {
  transform: translate(-45%, -50%) rotate(-135deg);
}

.resources-section .nav-btn.next::before {
  transform: translate(-55%, -50%) rotate(45deg);
}

.resources-section .nav-btn:hover {
  background: #1a1a2e;
  border-color: #1a1a2e;
}

.resources-section .nav-btn:hover::before {
  border-color: #ffffff;
}

.offer {
  display: block;
  padding: 0;
}

.offer-inner {
  display: grid;
  gap: 28px;
  justify-items: center;
      padding: 56px 24px;
}

.offer-cards {
  display: grid;
  gap: 24px;
  width: 100%;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 450px));
}

.offer-card {
  position: relative;
  width: min(450px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--blue-900);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(48, 76, 132, 0.25);
  overflow: hidden;
  text-align: left;
  justify-items: start;
}

.offer-card--alt {
  background: #263b6a;
}

.offer-intro {
  max-width: 720px;
  text-align: center;
  display: grid;
  gap: 12px;
}

.offer-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--orange-500);
}

.offer-intro p {
  margin: 0;
  color: rgba(48, 76, 132, 0.75);
}

.offer-plan {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.offer-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.offer-price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.offer-price-amount {
  font-size: 2.6rem;
  font-family: "Poppins", sans-serif;
  color: var(--orange-500);
  font-weight: 700;
}

.offer-price-period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.offer-plan-title {
  margin: 0;
  font-size: 1.1rem;
}

.offer-plan-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.offer-features li {
  position: relative;
  padding-left: 22px;
}

.offer-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
}

.offer-cta-button {
  width: fit-content;
  justify-content: center;
  background: var(--orange-500);
  color: var(--white);
  border-radius: var(--radius-btn);
  padding: 12px 22px;
  box-shadow: 0 12px 22px rgba(255, 85, 51, 0.35);
}

.offer-note {
  margin: 0;
  text-align: left;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.urgency-card {
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: var(--radius-card);
  background: linear-gradient(120deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(48, 76, 132, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.urgency-text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.urgency-cta {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 85, 51, 0.35);
  border-radius: var(--radius-btn);
  padding: 8px 16px;
  white-space: nowrap;
}

.faq-section {
    padding: 56px 24px;
}

.faq-container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.faq-title {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.2;
  margin: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid #e1e8f0;
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  cursor: pointer;
  gap: 20px;
}

.faq-question-text {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
}

.faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: #1a1a2e;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
}

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

.faq-answer-content {
  padding: 0 24px 10px 24px;
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a5a;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Keep WooCommerce add-to-cart buttons from stretching in product grids. */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wp-block-woocommerce-product-template .wp-block-button__link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 10px 18px !important;
  line-height: 1.2;
  border-radius: var(--radius-btn) !important;
  white-space: normal;
  flex: 0 0 auto !important;
  align-self: center;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  margin-top: 12px;
}

.wc-block-grid__product-add-to-cart,
.wp-block-woocommerce-product-template .wp-block-button {
  margin-top: 12px;
  display: flex;
  justify-content: center;
}

.site-footer {
  margin-top: 0;
  background: #1a2b49;
  color: var(--white);
  border-top: 1px solid #e1e8f0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-block {
  min-width: 200px;
  flex: 1;
}

.footer-brand {
  font-family: "Poppins", sans-serif;
  margin: 0 0 10px;
  color: var(--white);
}

.footer-text {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-heading {
  font-size: 1rem;
  margin: 0 0 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
}

.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav {
    width: 100%;
  }

  .nav-list {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .offer-card {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .feature-product-body {
    grid-template-columns: 1fr;
  }

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

  .feature-gallery-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }

  .feature-gallery-main,
  .feature-gallery-stack img {
    height: 260px;
  }
}

@media (max-width: 1024px) {
  .resources-section .resource-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  main > section {
    padding: 40px 16px;
  }

  .hero {
    min-height: 480px;
  }

  .hero-content {
    padding: 48px 28px;
  }

  .offer-card {
    padding: 24px;
  }

  .urgency-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .urgency-cta {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 40px 24px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    padding: 32px 16px;
  }
}

@media (max-width: 768px) {
  .resources-section .resource-card {
    min-width: 100%;
  }

  .faq-title {
    font-size: 32px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question-text {
    font-size: 15px;
  }

  .faq-answer-content {
    padding: 0 20px 18px 20px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 28px;
  }

  .faq-subtitle {
    font-size: 11px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .faq-icon svg {
    width: 12px;
    height: 12px;
  }
}
