:root {
  --green: #2f5e0f;
  --green-dark: #214308;
  --bg: #111111;
  --bg-soft: #171717;
  --panel: #202020;
  --panel-2: #262626;
  --text: #f6f6f6;
  --muted: #cfcfcf;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 22px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(47, 94, 15, 0.18), transparent 22%),
    linear-gradient(180deg, #111111 0%, #171717 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

main,
.section {
  position: relative;
  z-index: 2;
}

/* =========================
   TAGS / BUTTONS
========================= */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(47, 94, 15, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 28px rgba(47, 94, 15, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #3b7612;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1a1a1a;
  padding: 6px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(1.3) contrast(1.2);
}

.brand-text strong {
  display: block;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a:hover {
  color: white;
}

/* =========================
   HERO ACCUEIL
========================= */

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("driveway-apres-1.jpg.webp") center/cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.85) 0%,
    rgba(17, 17, 17, 0.65) 40%,
    rgba(17, 17, 17, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: end;
}

.hero-copy {
  max-width: 740px;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.96;
  margin: 18px 0 20px;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

/* =========================
   BLOCS / CARTES
========================= */

.stat,
.card,
.review,
.plan,
.contact-card,
.career-card,
.gallery-card,
.quote-box {
  background: rgba(29, 29, 29, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat {
  padding: 18px;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: white;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-box {
  padding: 26px;
  backdrop-filter: blur(10px);
}

.quote-box h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.quote-box p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 16px 0 0;
}

.section-head p {
  color: var(--muted);
  max-width: 58ch;
  margin: 0;
}

.cards-3,
.reviews-grid,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.cards-3,
.reviews-grid,
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.review,
.contact-card,
.career-card {
  padding: 26px;
}

.card h3,
.review h3,
.contact-card h3,
.career-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.card p,
.review p,
.contact-card p,
.career-card p {
  color: var(--muted);
  margin: 0;
}

/* =========================
   GALLERY
========================= */

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-body {
  padding: 20px;
}

.gallery-body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.gallery-body p {
  margin: 0;
  color: var(--muted);
}

/* =========================
   REVIEWS
========================= */

.review .stars {
  color: #67a62f;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.stars span {
  color: #4ade80;
  font-size: 16px;
  margin-right: 2px;
}

.review footer {
  margin-top: 16px;
  font-weight: 700;
  color: white;
}

/* =========================
   PLANS / ABONNEMENTS
========================= */

.subscription-plans {
  padding-top: 30px;
}

.subscription-head {
  margin-bottom: 36px;
}

.subscription-note,
.subscription-cta {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.subscription-note h3,
.subscription-cta h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.subscription-note p,
.subscription-cta p {
  margin: 0;
  color: var(--muted);
}

.subscription-cta .btn {
  margin-top: 16px;
  display: inline-block;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1240px;
  margin: 40px auto 0;
}

.plan {
  position: relative;
  width: 280px;
  min-height: 100%;
  padding: 30px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin: 10px 0 18px;
  color: white;
}

.plan p {
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.65;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.plan li {
  color: var(--muted);
  line-height: 1.5;
}

.plan li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 10px;
}

.plan a {
  pointer-events: none;
}

.plan.bronze {
  background: linear-gradient(180deg, rgba(169, 113, 66, 0.12), rgba(32, 32, 32, 0.95));
  border: 1px solid rgba(169, 113, 66, 0.45);
}

.plan.silver {
  background: linear-gradient(180deg, rgba(220, 220, 220, 0.12), rgba(32, 32, 32, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.plan.gold {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.14), rgba(32, 32, 32, 0.95));
  border: 1px solid rgba(255, 215, 120, 0.4);
}

.plan.featured {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 950px) {
  .plans-grid {
    grid-template-columns: repeat(2, 280px);
  }
}

@media (max-width: 650px) {
  .plans-grid {
    grid-template-columns: 280px;
  }
}

/* =========================
   CONTACT / CARRIÈRE
========================= */

.contact-wrap,
.career-wrap {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.contact-list,
.career-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact-item,
.career-item {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.career-hero {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.72)),
    url("carriere-porte-a-porte.jpg.webp") center/cover no-repeat;
}

.career-hero .inner {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(20, 20, 20, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.career-hero h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.career-hero p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 94, 15, 0.35);
  background: linear-gradient(135deg, rgba(47, 94, 15, 0.26), rgba(32, 32, 32, 0.95));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.cta-band h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
}

/* =========================
   FORMULAIRES
========================= */

form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #a8a8a8;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(47, 94, 15, 0.95);
  box-shadow: 0 0 0 4px rgba(47, 94, 15, 0.15);
}

/* =========================
   PAGE SOUMISSION
========================= */

.quote-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  background: #0f1115;
  overflow: hidden;
}

.quote-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(47, 94, 15, 0.12), transparent 46%),
    url("Logo.jpg.webp") center center / 320px no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.quote-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  padding: 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.quote-card .tag {
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(125, 255, 91, 0.12);
  border: 1px solid rgba(125, 255, 91, 0.25);
  color: #9cff7a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card .tag::before {
  display: none;
}

.quote-card h1 {
  text-align: center;
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.quote-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 25px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 6px;
  color: #fff;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: rgba(133, 255, 92, 0.65);
  box-shadow: 0 0 0 3px rgba(133, 255, 92, 0.1);
}

.quote-form option {
  color: #111;
}

.quote-form button {
  margin-top: 14px;
  padding: 16px 22px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #7dff5b, #3fcf4d);
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(88, 255, 108, 0.25);
}

#plan {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
}

/* =========================
   PAGE HEROES INTERNES
========================= */

.page-hero,
.subscription-hero {
  position: relative;
  min-height: 420px;
  height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-bg {
  position: absolute;
  inset: 0;
  background: url("driveway-apres-1.jpg.webp") center center / cover no-repeat;
  transform: scale(1.1);
  will-change: transform;
  z-index: 0;
}

.reviews-bg {
  background: url("driveway-apres-2.jpg.webp") center center / cover no-repeat;
}

.logo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(47, 94, 15, 0.14), transparent 45%),
    url("Logo.jpg.webp") center center / 320px no-repeat;
  opacity: 0.12;
  transform: scale(1.1);
  will-change: transform;
  z-index: 0;
}

.page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.2) 0%,
    rgba(17, 17, 17, 0.45) 45%,
    rgba(17, 17, 17, 0.82) 100%
  );
  z-index: 1;
}

.page-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 55px;
}

.page-content h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
}

.page-content p {
  margin: 0;
  max-width: 620px;
  color: #d7d7d7;
  font-size: 1rem;
}

/* =========================
   FOOTER
========================= */

.footer {
  padding: 36px 0 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  align-items: start;
}

.footer h4 {
  color: white;
  margin: 0 0 12px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

/* =========================
   ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .hero-grid,
  .cards-3,
  .reviews-grid,
  .gallery-grid,
  .contact-wrap,
  .career-wrap,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: repeat(3, 280px);
  }

  .plan.featured {
    transform: none;
  }
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: repeat(2, 280px);
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-grid,
  .cards-3,
  .reviews-grid,
  .gallery-grid,
  .contact-wrap,
  .career-wrap,
  .footer-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    align-items: start;
  }

  .hero-content {
    padding: 70px 0;
  }

  .quote-card {
    padding: 28px;
  }
}
@media (max-width: 650px) {
  .plans-grid {
    grid-template-columns: 280px;
  }
}

@media (max-width: 600px) {
  .page-content {
    padding-bottom: 38px;
  }

  .page-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .quote-page {
    padding: 24px 14px;
  }

  .quote-card {
    padding: 22px;
  }
}
/* MENU MOBILE */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: relative;
  z-index: 2001;
}

@media (max-width: 768px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 2000;
  }

  .hero-overlay {
    pointer-events: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #111;
    padding: 20px;
    z-index: 1999;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-wrap > .btn.btn-primary {
    display: none;
  }
}
.menu-toggle {
  z-index: 9999;
  position: relative;
}
@media (max-width: 768px) {
  .hero-grid,
  .section-head,
  .pricing-grid,
  .cards-3,
  .plans-grid,
  .abonnement-grid {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .hero-content,
  .hero-copy,
  .quote-box,
  .section-head > div,
  .section-head p {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero-content h1,
  .section-head h2 {
    font-size: 2.5rem !important;
    line-height: 1.05;
  }

  .hero-copy p,
  .page-hero-content p,
  .section-head p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .tag {
    font-size: 0.95rem;
    padding: 12px 18px;
  }

  .pricing-grid,
  .plans-grid,
  .abonnement-grid {
    gap: 20px;
  }

  .card,
  .plan-card,
  .pricing-card {
    width: 100%;
    min-width: 0;
  }

  .plan-card h3,
  .pricing-card h3 {
    font-size: 1.8rem;
  }

  .plan-card .price,
  .pricing-card .price {
    font-size: 2.4rem;
  }

  .section,
  .page-hero,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .subscription-head {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
    text-align: left;
  }

  .subscription-head h2 {
    font-size: 2.3rem !important;
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .subscription-head p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
  }

  .plans-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .plan {
    width: 100%;
    min-width: 0;
  }

  .plan h3 {
    font-size: 1.8rem;
  }

  .price {
    font-size: 2.3rem;
    line-height: 1.1;
  }

  .subscription-banner-wrap {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .subscription-banner-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .subscription-banner-copy h2 {
    font-size: 2rem !important;
    line-height: 1.1;
  }

  .subscription-plans .container,
  .subscription-banner .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .subscription-head {
    display: block !important;
  }

  .subscription-head > div,
  .subscription-head > p {
    width: 100% !important;
    max-width: 100% !important;
  }

  .subscription-head h2 {
    font-size: 2.2rem !important;
    line-height: 1.05 !important;
    margin-bottom: 14px !important;
  }

  .subscription-head p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }

  .plans-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .plans-grid .plan {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .plans-grid .price {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
    word-break: break-word;
  }

  .subscription-banner-wrap {
    display: block !important;
  }

  .subscription-banner-image,
  .subscription-banner-copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .subscription-banner-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .subscription-banner-copy {
    margin-top: 20px !important;
  }

  .subscription-banner-copy h2 {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }

  .section,
  .subscription-plans,
  .subscription-banner {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {

  .hero-content {
    overflow: visible !important;
  }

  .hero-grid {
    display: block !important;
  }

  .hero-copy {
    width: 100% !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
  }

  .hero-actions .btn {
    display: flex !important;
    width: 100%;
    justify-content: center;
  }

}
