@charset "utf-8";

/* =========================
   FONTS - MONTSERRAT LOCAL
========================= */

@font-face {
  font-family: 'Montserrat';
  src: url('/css/fonts/montserrat-regular.woff2') format('woff2'),
       url('/css/fonts/montserrat-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/css/fonts/montserrat-bold.woff2') format('woff2'),
       url('/css/fonts/montserrat-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/css/fonts/montserrat-extrabold.woff2') format('woff2'),
       url('/css/fonts/montserrat-extrabold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* =========================
   RESET
========================= */

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

html {
  scroll-behavior: smooth;
}


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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}


/* ===== DESKTOP SCROLLBAR ===== */

html {
  scrollbar-width: thin;
  scrollbar-color: #83b9ff #0f0f0f;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #a6cfff, #83b9ff);
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(131, 185, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #83b9ff, #5fa4ff);
}

/* =========================
   ROOT
========================= */

:root {
  --bg: #101317;
  --bg-2: #151a20;
  --panel: #161b21;
  --panel-hover: #1a2027;
  --footer-bg: #0d1014;

  --text: #edf2f7;
  --text-soft: #c8d1da;
  --muted: #93a0ad;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);

  --accent: #83b9ff;
  --accent-soft: rgba(131, 185, 255, 0.12);
  --accent-line: rgba(131, 185, 255, 0.28);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* =========================
   BASE
========================= */

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  background: linear-gradient(180deg, #111419 0%, #101317 100%);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-main {
  padding: 28px 0 68px;
}

h1,
h2,
h3 {
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: left;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  color: var(--text-soft);
  text-align: left;
}

a {
  color: var(--accent);
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

a:hover {
  color: #bcd9ff;
}

strong {
  color: #ffffff;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(16, 19, 23, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 46px;
  width: auto;
}

/* =========================
   MAIN NAV
========================= */

/* =========================
   CENTER NAV + MOBILE MENU
========================= */

.desktop-nav {
  display: flex;
}


.main-nav {
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.main-nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(131, 185, 255, 0.04);
}

.main-nav a.active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(131, 185, 255, 0.10);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(131, 185, 255, 0.08);
  border: 1px solid var(--accent-line);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.menu-toggle:hover {
  background: rgba(131, 185, 255, 0.14);
	 box-shadow: 0 0 10px rgba(131, 185, 255, 0.4);
  border-color: var(--accent);
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: rgba(6, 10, 14, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.mobile-menu-inner {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(180deg, #171d24 0%, #12171d 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  padding: 4px 18px 20px;
  transform: translateY(-100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu-inner {
  transform: translateY(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  width: min(1180px, 92%);
  margin: 0 auto 14px;

  padding: 8px 0; /* era mai mare */
  border-bottom: 1px solid var(--line);
}

.mobile-menu-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-close {
  width: 50px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.menu-close:hover {
  background: rgba(131, 185, 255, 0.10);
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(1180px, 92%);
  margin: 0 auto;
  align-items: stretch;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 6px 10px;
  border-radius: 12px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
  background: rgba(131, 185, 255, 0.08);
  border-color: var(--accent-line);
}

.mobile-menu a.active {
  color: var(--accent);
  background: rgba(131, 185, 255, 0.12);
  border-color: var(--accent);
}



.quick-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
}

.quick-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.quick-nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(131, 185, 255, 0.04);
}

.quick-nav a.active {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(131, 185, 255, 0.10);
}




/* =========================
   BREADCRUMB
========================= */

.breadcrumb {
  margin: 6px 0 26px;
  padding: 12px 0;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.breadcrumb a {
  color: #a7d3ff;
}

.breadcrumb a:hover {
  color: #d2e7ff;
}

.breadcrumb span {
  color: var(--muted);
}

/* =========================
   HERO
========================= */

.hero {
  padding: 8px 0 10px;
}

.hero-box {
  background: linear-gradient(180deg, #171d24 0%, #14191f 100%);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}

.hero p {
  max-width: 100%;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.96rem;
  border: 1px solid var(--line-strong);
  text-align: center;
}

.button-primary {
  background: var(--accent);
  color: #07111d;
  border-color: transparent;
}

.button-primary:hover {
  background: #9bc7ff;
  color: #07111d;
}

.button-secondary {
  background: transparent;
  color: #ffffff;
}

.button-secondary:hover {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

/* =========================
   SECTIONS
========================= */

.section {
  margin-top: 40px;
}

.section-intro {
  max-width: 100%;
  margin-bottom: 20px;
}

.section h2 {
  margin-bottom: 10px;
}

/* =========================
   ANIMATION
========================= */

@keyframes border-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* =========================
   CARDS
========================= */

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

.card {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 14px 18px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.25s ease;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  background: var(--panel-hover);
  border-color: rgba(131, 185, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(131, 185, 255, 0.16),
    0 0 20px rgba(131, 185, 255, 0.08),
    var(--shadow-card);
}

.card:hover::after {
  opacity: 1;
  animation: border-flow 2s linear infinite;
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.card-image,
.card h2,
.card h3,
.card p,
.card-cta,
.card-buy {
  position: relative;
  z-index: 1;
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px;
  background: transparent;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.96);
  transition: transform 0.35s ease, filter 0.35s ease;
  transform-origin: center center;
  filter: brightness(0.95);
}

.card:hover .card-image img {
  transform: scale(1.03);

  filter: brightness(1.06) contrast(1.05);
}

.card h2,
.card h3 {
  margin: 0 12px 8px;
  color: var(--accent);
  text-align: left;
  padding-top: 0;
  transition: color 0.22s ease;
}

.card:hover h2,
.card:hover h3 {
  color: #bcd9ff;
}

.card h2 {
  font-size: 1.1rem;
}

.card p {
  margin: 0 12px 16px;
  color: var(--text-soft);
  font-size: 0.96rem;
  text-align: left;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
}

.card-cta::after {
  content: "→";
  transition: transform 0.22s ease;
}

.card:hover .card-cta::after {
  transform: translateX(4px);
}

.card-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 6px;
  border: 2px solid var(--accent);
  background: rgba(131, 185, 255, 0.10);
  color: var(--accent) !important;
  transition: all 0.22s ease;
}

.card-buy:hover {
  background: var(--accent);
  color: #07111d !important;
  border-color: var(--accent);
}

.card-buy::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.card-buy:hover::after {
  transform: translateX(4px);
}

/* =========================
   CARD WIDE
========================= */

.card-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #111;
  border-radius: 16px;
  padding: 25px;
  margin: 30px 0;
  transition: 0.3s ease;
}

/* =========================
   CARD SPLIT
========================= */

.card-split {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card-split::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.25s ease;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-split:hover {
  transform: translateY(-4px);
  background: var(--panel-hover);
  border-color: rgba(131, 185, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(131, 185, 255, 0.16),
    0 0 20px rgba(131, 185, 255, 0.08),
    var(--shadow-card);
}

.card-split:hover::after {
  opacity: 1;
  animation: border-flow 2s linear infinite;
}

.card-split-content {
  min-width: 0;
}

.card-split-content h2 {
  margin: 0 0 12px;
  color: var(--accent);
  transition: color 0.22s ease;
}

.card-split:hover .card-split-content h2 {
  color: #bcd9ff;
}

.card-split-content p {
  margin: 0 0 16px;
  color: var(--text-soft);
  text-align: left;
}

.benefits {
  margin: 0 0 18px;
  padding-left: 22px;
  list-style: disc;
}

.benefits li {
  margin-bottom: 8px;
  color: var(--text-soft);
}

.note {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-split-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
}

.card-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.96);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: brightness(0.95);
}

.card-split:hover .card-split-image img {
  transform: scale(1.03);
  filter: brightness(1.06) contrast(1.05);
}

.card-split-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  border: 2px solid var(--accent);
  background: rgba(131, 185, 255, 0.10);
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.22s ease;
}

.card-split-buy:hover {
  background: var(--accent);
  color: #07111d !important;
}

/* =========================
   FEATURE STRIP
========================= */

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.feature-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}

.feature-box h3 {
  margin-bottom: 8px;
  text-align: left;
}

.feature-box p {
  margin-bottom: 0;
  font-size: 0.96rem;
  text-align: left;
}

/* =========================
   CONTENT / ARTICLES
========================= */

.content-area {
  width: 100%;
  max-width: 100%;
}

.content-area.article-page {
  width: 100%;
  max-width: 100%;
}

.content-area h1 + p {
  font-size: 1.03rem;
}

.content-area h2 {
  margin-top: 8px;
  padding-top: 8px;
  text-align: left;
}

.content-area h3 {
  margin-top: 20px;
  text-align: left;
}

.content-area ul,
.content-area ol {
  margin: 0 0 18px 0;
  padding-left: 22px;
}

.content-area ul {
  list-style: disc;
}

.content-area ol {
  list-style: decimal;
}

.content-area li {
  margin-bottom: 8px;
  color: var(--text-soft);
  text-align: left;
}

.content-area blockquote {
  margin: 22px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 12px 12px 0;
  text-align: left;
}

.article-image {
  width: 100%;
  margin: 18px 0 22px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.related-links {
  margin: 0 0 18px 0;
  padding-left: 22px;
  list-style: disc;
}

.related-links li {
  margin-bottom: 8px;
}

.video-link {
  margin: 20px 0 26px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: #e3efff;
  text-align: left;
}

.video-link a {
  color: #ffffff;
  font-weight: 700;
}

.video-link a:hover {
  color: #d7e9ff;
}

.buy-button {
  display: inline-block;
  margin: 10px 0 20px;
  padding: 10px 16px;
  background: #00c853;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* =========================
   FAQ
========================= */

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.faq-item {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 18px 20px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.faq-item h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-item h3::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #4da3ff;
  border-radius: 50%;
}

.faq-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  margin-top: 70px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 26px;
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  text-align: left;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: var(--text-soft);
}

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

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
  text-align: left;
}

.footer-note {
  margin-top: 10px;
  max-width: 100%;
}

/* =========================
   HELPERS
========================= */

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .card-grid,
  .feature-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-box {
    padding: 30px;
  }
}




@media (max-width: 760px) {
	
  html, body {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none;
  }
	
  .site-main {
    padding: 22px 0 54px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 56px;
    padding: 8px 0;
    gap: 6px;
  }

  .site-logo {
    display: inline-flex;
  }

  .site-logo img {
    height: 26px;
  }

  .desktop-nav {
    display: none;
  }

.quick-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

.quick-nav a {
  min-height: 30px;
  padding: 4px 6px;
  font-size: 0.74rem;
}
	
  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .hero-box {
    padding: 24px;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .card-grid,
  .feature-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 12px 12px 18px;
  }

  .card h2,
  .card h3,
  .card p,
  .card-cta {
    margin-left: 10px;
    margin-right: 10px;
  }

  .card-image {
    margin-bottom: 10px;
  }

  .breadcrumb {
    margin-bottom: 22px;
  }

  .card-split {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px 12px 18px;
  }

  .card-split-content h2,
  .card-split-content p,
  .benefits,
  .note {
    margin-left: 10px;
    margin-right: 10px;
  }

  .card-split-buy {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}





