/* ============================================================
   FLORIN+ — Global Stylesheet
   CI: MyWage / Florinplus Brand
   Fonts: Cabinet Grotesk (display), Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* === TOKENS === */
:root {
  --blue-primary:   #155EEF;
  --blue-dark:      #0E3FA8;
  --blue-hero:      #1440C4;
  --mint:           #5FE9D0;
  --mint-dark:      #38C9B3;
  --dark:           #081617;
  --text:           #1A2222;
  --text-muted:     #516060;
  --bg-light:       #EFF5F5;
  --bg-white:       #FFFFFF;
  --border:         #E0EBEB;
  --orange:         #F65D36;
  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --shadow-sm:      0 2px 12px rgba(21,94,239,0.08);
  --shadow-md:      0 8px 32px rgba(21,94,239,0.13);
  --shadow-lg:      0 16px 56px rgba(21,94,239,0.18);
  --max-w:          1160px;
  --font-display:   'Plus Jakarta Sans', 'Cabinet Grotesk', sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.75; }
.lead { font-size: 1.15rem; }
.text-white p, .text-white { color: rgba(255,255,255,0.85); }
.text-center { text-align: center; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--mint);
  color: var(--dark);
}
.btn--primary:hover {
  background: var(--mint-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}
.btn--outline:hover {
  background: var(--blue-primary);
  color: white;
}
.btn--white {
  background: white;
  color: var(--blue-primary);
}
.btn--white:hover {
  background: var(--bg-light);
}
.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn svg { width: 18px; height: 18px; }

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}
.nav__logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo .logo-plus {
  color: var(--blue-primary);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  font-size: 0.95rem;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--blue-primary);
}
.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-hero) 50%, #0D2E8A 100%);
  color: white;
  padding: 100px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(95,233,208,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(95,233,208,0.15);
  border: 1px solid rgba(95,233,208,0.3);
  color: var(--mint);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 { color: white; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 440px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 40px; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.hero__avatars {
  display: flex;
}
.hero__avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  margin-left: -8px;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__visual { display: flex; justify-content: center; align-items: center; position: relative; }

/* === CREDIT CARD === */
.card-visual {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(150deg, #141414 0%, #1e1e1e 50%, #0e0e0e 100%);
  border-radius: 18px;
  padding: 26px 30px 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.65), 0 6px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  color: white;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.586;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
}
.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 18px;
}
.card-visual__top { display: flex; justify-content: space-between; align-items: flex-start; }
.card-visual__brand-area { display: flex; flex-direction: column; gap: 3px; }
.card-visual__logo-row { display: flex; align-items: center; gap: 8px; }
.card-visual__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  letter-spacing: 2px;
  line-height: 1;
}
.card-visual__brand-name span { color: #5FE9D0; }
.card-visual__sub {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.8px;
  padding-left: 2px;
}
.card-visual__nfc {
  color: rgba(255,255,255,0.45);
  font-size: 1.5rem;
  margin-top: 2px;
}
.card-visual__chip {
  width: 46px;
  height: 36px;
  background: linear-gradient(135deg, #c8973a 0%, #f4cc52 35%, #e8b830 65%, #a87020 100%);
  border-radius: 7px;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}
.card-visual__chip::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(0,0,0,0.2);
  transform: translateY(-50%);
}
.card-visual__chip::after {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: rgba(0,0,0,0.15);
  transform: translateX(-50%);
}
.card-visual__number {
  font-size: 1.1rem;
  letter-spacing: 4px;
  font-family: 'Courier New', 'OCR A Std', monospace;
  color: rgba(255,255,255,0.9);
  margin-top: 2px;
}
.card-visual__number-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  margin-top: 1px;
}
.card-visual__expiry-row { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.card-visual__expiry-label {
  font-size: 0.48rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.card-visual__expiry-date {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  font-family: 'Courier New', monospace;
}
.card-visual__bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.card-visual__name {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-family: 'Courier New', monospace;
}
.card-visual__mc { display: flex; align-items: center; }
.card-visual__mc-circle { width: 34px; height: 34px; border-radius: 50%; }
.card-visual__mc-circle:first-child { background: #EB001B; }
.card-visual__mc-circle:last-child { background: #F79E1B; margin-left: -13px; opacity: 0.92; }

/* === NAV LOGO IMAGE === */
.nav__logo img { height: 36px; width: auto; display: block; }
.nav__logo-text { display: none; }

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg-light);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item__icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
}

/* === PRODUCTS SECTION === */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card__header {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  padding: 32px;
  color: white;
}
.product-card__header h3 { color: white; margin-bottom: 8px; }
.product-card__header p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.product-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.product-card__highlight {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue-primary);
  margin-bottom: 4px;
}
.product-card__sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}
.feature-item__check {
  width: 20px;
  height: 20px;
  background: rgba(95,233,208,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--blue-primary);
  font-size: 0.7rem;
}
.product-card__cta { margin-top: auto; }

/* === STATS === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label { font-size: 0.85rem; color: var(--text-muted); }

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.steps-grid--four { grid-template-columns: repeat(4, 1fr); }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.steps-grid--four::before {
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-item__num {
  width: 56px;
  height: 56px;
  background: var(--blue-primary);
  color: white;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(21,94,239,0.1);
}
.step-item h4 { margin-bottom: 8px; }

/* === REQUIREMENTS === */
.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}
.req-item__icon {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.req-item__text h4 { font-size: 0.95rem; margin-bottom: 2px; }
.req-item__text p { font-size: 0.85rem; }

/* === PRICING TABLE === */
.pricing-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:nth-child(odd) { background: var(--bg-light); }
.pricing-row__label { font-weight: 500; font-size: 0.95rem; }
.pricing-row__value { font-weight: 700; font-size: 1rem; color: var(--blue-primary); }

/* === FAQ === */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  color: var(--text);
  gap: 16px;
  transition: background 0.2s;
}
.faq-item__q:hover { background: var(--bg-light); }
.faq-item__q .chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--blue-primary);
}
.faq-item__a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.faq-item--open .faq-item__a {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-item--open .chevron { transform: rotate(180deg); }
.faq-item__a p { font-size: 0.9rem; }

/* === BLOG CARDS === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  display: inline-block;
  background: rgba(21,94,239,0.08);
  color: var(--blue-primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.blog-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-card__excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  color: white;
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p { font-size: 0.88rem; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
}
.footer__logo span { color: var(--mint); }
.footer__col h4 { color: white; font-size: 0.9rem; margin-bottom: 16px; font-weight: 600; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--mint); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

/* === ARTICLE LAYOUT === */
.article-hero {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: white;
  padding: 80px 0;
}
.article-hero h1 { color: white; max-width: 760px; }
.article-hero p { color: rgba(255,255,255,0.8); margin-top: 16px; max-width: 600px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.article-content h2 {
  font-size: 1.7rem;
  margin: 48px 0 16px;
  color: var(--text);
}
.article-content h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--text);
}
.article-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1rem;
}
.article-content ul, .article-content ol {
  margin: 0 0 20px 24px;
  list-style: disc;
}
.article-content li {
  color: var(--text-muted);
  margin-bottom: 8px;
  font-size: 1rem;
}
.article-content .highlight-box {
  background: rgba(21,94,239,0.06);
  border-left: 4px solid var(--blue-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.article-content .highlight-box p { color: var(--text); font-weight: 500; margin: 0; }

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}
.badge--blue { background: rgba(21,94,239,0.1); color: var(--blue-primary); }
.badge--green { background: rgba(95,233,208,0.15); color: #1a8a72; }
.badge--orange { background: rgba(246,93,54,0.1); color: var(--orange); }

/* === SECTION HEADER === */
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }

/* === LEGAL PAGE === */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h1 { margin-bottom: 8px; }
.legal-content .last-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; color: var(--text); }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal-content p { margin-bottom: 16px; font-size: 0.95rem; }
.legal-content ul { margin: 0 0 16px 24px; list-style: disc; }
.legal-content li { margin-bottom: 6px; font-size: 0.95rem; color: var(--text-muted); }
.legal-content a { color: var(--blue-primary); text-decoration: underline; }

/* === MOBILE === */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section--lg { padding: 80px 0; }
  .hero { padding: 60px 0 48px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .card-visual { max-width: 300px; margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .steps-grid--four { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cta-banner { padding: 40px 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .nav__links { display: none; }
  .nav__mobile-toggle { display: flex; }
  .nav__cta .btn:first-child { display: none; }
  .pricing-row { padding: 14px 20px; }
  .trust-bar__inner { gap: 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
