:root {
  --bg: #f3eee4;
  --surface: #ffffff;
  --dark: #211b14;
  --dark-2: #2c241b;
  --accent: #eb4f1c;
  --accent-dark: #c93f12;
  --accent-soft: #fce6dc;
  --text: #211b14;
  --muted: #6f6559;
  --line: #e6ddce;
  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 18px 50px rgba(33, 27, 20, 0.08);
  --font: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

main {
  padding-top: 100px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 28px 0;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 12px;
  z-index: 100;
  padding: 12px 0 0;
  width: 100%;
}

.header-bar {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  margin: 0 14px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-text .brand-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.brand-text .brand-name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.main-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.main-nav a.active {
  background: var(--dark);
  color: #fff;
}

.header-contact {
  text-align: right;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  flex-shrink: 0;
}

.header-contact strong {
  display: block;
  color: var(--text);
  font-size: 13px;
}

.header-contact a,
.header-contact span {
  display: block;
  font-weight: 600;
  color: var(--text);
}

.header-contact a:hover {
  color: var(--accent);
}

.header-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  transition: transform 0.2s, background 0.2s;
}

.header-socials a svg {
  width: 16px;
  height: 16px;
}

.header-socials a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.header-socials a:hover svg {
  fill: #fff;
}

.mobile-socials {
  flex-direction: row;
  margin-top: 18px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 8px;
  padding: 18px 22px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 11px 4px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu a.active {
  color: var(--accent);
}

.mobile-menu .mobile-contact {
  padding-top: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.mobile-menu .mobile-contact a {
  display: inline;
  padding: 0;
  border: none;
  font-weight: 600;
  color: var(--text);
}

/* ---------- Shared blocks ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.eyebrow.pill {
  background: var(--accent-soft);
  padding: 7px 14px;
  border-radius: 999px;
}

.eyebrow.on-dark {
  color: #ffb59b;
}

.eyebrow.pill.on-dark {
  background: rgba(235, 79, 28, 0.22);
  color: #ffc9b3;
}

h1, h2, h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
}

h1 {
  font-size: clamp(34px, 5vw, 56px);
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 16px;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s;
  font-family: var(--font);
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-light {
  background: #fff;
  color: var(--dark);
}

.btn-light:hover {
  background: var(--accent-soft);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--line);
}

.btn-dark-outline:hover {
  border-color: var(--dark);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px;
}

.card-dark {
  background: var(--dark);
  color: #f6f1e8;
  border: none;
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.card-dark::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 79, 28, 0.32), transparent 65%);
  pointer-events: none;
}

.card-dark .lead {
  color: #c9beb0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--dark-2);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card.tall {
  min-height: 320px;
}

.media-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.media-frame img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.overlay-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.overlay-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.overlay-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 4px solid var(--accent-soft);
  box-shadow: inset 0 0 0 3px var(--accent);
}

.check-list.on-dark li {
  color: #c9beb0;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Hero ---------- */
.hero {
  padding: 28px 0 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-main h1 {
  color: #fff;
  margin: 14px 0 18px;
}

.hero-main .lead {
  max-width: 52ch;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-side .media-card {
  flex: 1;
  min-height: 300px;
}

.hero-side .card {
  flex-shrink: 0;
}

.hero-side .card p {
  color: var(--muted);
  font-size: 14.5px;
}

.offline-strip {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}

.offline-strip .offline-badge {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: #ffb59b;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.offline-strip ul li {
  color: #e8dfd2;
  font-size: 14.5px;
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}

.offline-strip ul li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--accent);
}

/* ---------- Warning blocks ---------- */
.warning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.warning-block {
  border-radius: var(--radius);
  padding: 30px;
  border: 1.5px solid var(--accent);
  background: var(--accent-soft);
}

.warning-block.dark {
  background: var(--dark);
  color: #f6f1e8;
}

.warning-block .warning-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.warning-block.dark .warning-tag {
  color: #ffb59b;
}

.warning-block h3 {
  font-size: 22px;
}

.warning-block p {
  color: var(--text);
  font-size: 15px;
  margin-top: 8px;
}

.warning-block.dark p {
  color: #d9cfc0;
}

/* ---------- Steps / process ---------- */
.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
}

.step-card .step-num {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.step-card p {
  color: var(--muted);
  font-size: 15px;
}

/* ---------- Testimonials ---------- */
.testimonial-card blockquote {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 18px;
}

.testimonial-card .quote-mark {
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.testimonial-author {
  font-size: 14px;
  color: var(--muted);
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.stars {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 12px;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 56px 40px;
}

.cta-band h2 {
  color: #fff;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .lead {
  margin: 0 auto;
  max-width: 56ch;
}

.cta-band .btn-row {
  justify-content: center;
}

/* ---------- Packages ---------- */
.package-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.package-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-dark);
  margin: 4px 0 12px;
}

.package-body p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 16px;
}

.package-body ul {
  margin-bottom: 20px;
}

.package-body ul li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.package-body ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.package-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.package-card.featured {
  border: 2px solid var(--accent);
  position: relative;
}

.package-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

/* ---------- Comparison table ---------- */
.compare-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 15px 18px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: var(--dark);
  color: #fff;
  font-weight: 700;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  font-weight: 700;
}

.compare-table .price-cell {
  color: var(--accent-dark);
  font-weight: 800;
  white-space: nowrap;
}

/* ---------- Experience tabs ---------- */
.exp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.exp-tab {
  border: 1.5px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  font-family: var(--font);
  color: var(--text);
  transition: all 0.2s;
}

.exp-tab:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.exp-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.exp-panel {
  display: none;
}

.exp-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.exp-panel .card h3 {
  font-size: 24px;
}

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

.exp-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ---------- Contact ---------- */
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-info-list .icon-tile {
  width: 40px;
  height: 40px;
  font-size: 16px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-info-list strong {
  display: block;
  font-size: 14px;
}

.contact-info-list span,
.contact-info-list a {
  font-size: 14.5px;
  color: var(--muted);
}

.contact-info-list a:hover {
  color: var(--accent);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  transition: transform 0.2s, background 0.2s;
}

.socials a svg {
  width: 20px;
  height: 20px;
}

.socials a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 15px;
  background: #fbf9f4;
  color: var(--text);
  transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 14px;
  background: #e7f4ea;
  border: 1px solid #b9dcc3;
  color: #27693c;
  font-weight: 600;
  font-size: 14.5px;
}

.form-success.visible {
  display: block;
}

/* ---------- Legal pages ---------- */
.legal-content h2 {
  font-size: 22px;
  margin: 30px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15.5px;
}

.legal-content ul {
  margin: 10px 0 16px;
}

.legal-content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 28px 0 40px;
}

.footer-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 40px;
  margin: 0 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
  gap: 36px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.footer-brand .brand-eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.footer-brand .brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 34ch;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--muted);
  font-size: 14.5px;
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-contact p,
.footer-contact span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 6px;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-legal {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 380px;
  background: var(--dark);
  color: #f6f1e8;
  border-radius: 20px;
  padding: 22px 24px;
  z-index: 200;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner p {
  font-size: 13.5px;
  color: #d9cfc0;
  margin-bottom: 14px;
}

.cookie-banner a {
  color: #ffb59b;
  text-decoration: underline;
}

.cookie-banner .btn-row {
  margin-top: 0;
  gap: 10px;
}

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 13.5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .main-nav,
  .header-info {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-grid,
  .grid-2,
  .exp-panel.active {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .grid-3,
  .warning-grid,
  .form-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .card,
  .card-dark,
  .footer-card {
    padding: 24px;
  }

  .cta-band {
    padding: 40px 24px;
  }

  .header-bar {
    padding: 12px 16px;
  }

  .section {
    padding: 20px 0;
  }

  .exp-panel img {
    min-height: 220px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
  }

  .mobile-socials a {
    padding: 0;
    display: inline-flex;
  }
}
