/* ===== PEPP DESIGN SYSTEM ===== */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/fraunces-v38-latin-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-v12-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-v12-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-v12-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-v12-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-v12-latin-800.woff2') format('woff2');
}

:root {
  --bg:         #F6F0E6;
  --bg-alt:     #FFFAF1;
  --bg-card:    #FFFFFF;
  --ink:        #0F2A4A;
  --ink2:       #3A4A65;
  --ink3:       rgba(15,42,74,0.50);
  --accent:     #FF6B4A;
  --accent-dk:  #E14E2D;
  --yellow:     #FFC857;
  --mint:       #7DCFB6;
  --border:     rgba(15,42,74,0.10);
  --border-act: #0F2A4A;

  --font-d: 'Fraunces', Georgia, serif;
  --font-b: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --r-sm:  12px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  22px;
  --r-btn: 18px;
  --r-full:9999px;

  --sh-card:   0 2px 12px rgba(15,42,74,0.07), 0 0 0 1px rgba(15,42,74,0.05);
  --sh-btn:    0 8px 20px rgba(255,107,74,0.28);
  --sh-phone:  0 40px 80px rgba(15,42,74,0.22), 0 8px 20px rgba(15,42,74,0.10);
  --sh-nav:    0 1px 0 rgba(15,42,74,0.08);

  --sec-py:    88px;
  --max-w:     1160px;
  --px:        24px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-b); }

/* ===== Layout ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(246,240,230,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--sh-nav);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px);
}
.nav-logo {
  display: flex; align-items: center; gap: 6px; text-decoration: none;
}
.nav-logo-mark {
  width: 34px; height: 34px; background: var(--accent); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 900; font-size: 18px; color: #fff;
  letter-spacing: -0.5px; flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-d); font-weight: 900; font-size: 24px;
  color: var(--ink); letter-spacing: -0.5px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links li a {
  font-size: 15px; font-weight: 600; color: var(--ink2);
  padding: 8px 14px; border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-links li a:hover { color: var(--ink); background: rgba(15,42,74,0.06); }
.nav-links li a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 9px 20px !important; border-radius: var(--r-btn) !important;
  font-weight: 700 !important; font-size: 14px !important;
  box-shadow: var(--sh-btn); transition: background .2s, transform .15s, box-shadow .2s !important;
}
.nav-cta:hover {
  background: var(--accent-dk) !important; transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255,107,74,0.32) !important;
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.nav-mobile {
  display: none; padding: 12px var(--px) 20px;
  border-top: 1px solid var(--border); background: rgba(246,240,230,0.97);
}
.nav-mobile li a {
  display: block; padding: 12px 16px; font-weight: 600; font-size: 16px;
  color: var(--ink2); border-radius: var(--r-sm);
}
.nav-mobile li a:hover { background: rgba(15,42,74,0.06); color: var(--ink); }
.nav-mobile .nav-cta {
  display: block; text-align: center; margin-top: 8px;
  padding: 13px 20px !important; font-size: 16px !important;
}
.nav-mobile.open { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; border-radius: var(--r-btn);
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--accent); color: #fff; padding: 14px 28px; box-shadow: var(--sh-btn); }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255,107,74,0.35); }
.btn-dark { background: var(--ink); color: #fff; padding: 14px 28px; box-shadow: 0 8px 20px rgba(15,42,74,0.2); }
.btn-dark:hover { background: var(--ink2); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(15,42,74,0.25); }
.btn-ghost { background: var(--bg-card); color: var(--ink); padding: 14px 28px; box-shadow: var(--sh-card); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-alt); transform: translateY(-2px); }
.btn-lg { font-size: 17px; padding: 16px 34px; border-radius: 20px; }

/* ===== STORE BADGES ===== */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; padding: 11px 18px;
  border-radius: var(--r-md); text-decoration: none;
  transition: background .2s, transform .15s;
  border: 1.5px solid transparent;
}
.store-badge:hover { background: #1a3d6e; transform: translateY(-2px); }
.store-badge.light {
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
}
.store-badge.light:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.store-badge-icon { font-size: 24px; line-height: 1; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.store-badge-sub { font-size: 10px; font-weight: 500; opacity: 0.7; letter-spacing: 0.01em; }
.store-badge-name { font-size: 15px; font-weight: 700; }

/* ===== PHONE FRAME ===== */
.phone {
  position: relative;
  background: #0A1828;
  border-radius: 52px;
  padding: 13px;
  box-shadow: var(--sh-phone);
  flex-shrink: 0;
}
.phone::before {
  content: '';
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 26px;
  background: #0A1828; border-radius: 0 0 16px 16px; z-index: 2;
}
.phone-screen {
  border-radius: 40px; overflow: hidden;
  background: var(--bg); position: relative; z-index: 1;
}
.phone-screen img { width: 100%; display: block; }
.phone--sm { border-radius: 44px; padding: 11px; }
.phone--sm::before { width: 74px; height: 22px; }
.phone--sm .phone-screen { border-radius: 34px; }

/* ===== SECTIONS ===== */
section { padding: var(--sec-py) 0; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-d); font-weight: 800;
  font-size: clamp(30px, 3.8vw, 46px);
  color: var(--ink); line-height: 1.13; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; font-weight: 500; color: var(--ink2); line-height: 1.65; max-width: 580px;
}
.section-hd { margin-bottom: 56px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-sub { margin: 0 auto; }

/* ===== HERO ===== */
.hero { padding: clamp(28px, 5dvh, 80px) 0 clamp(24px, 4dvh, 64px); overflow: hidden; min-height: 420px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,107,74,0.10); color: var(--accent);
  font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: var(--r-full);
  border: 1px solid rgba(255,107,74,0.20); margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(38px, 5.5vw, 66px);
  color: var(--ink); line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 18px; font-weight: 500; color: var(--ink2); line-height: 1.65;
  margin-bottom: 36px; max-width: 460px;
}
.hero-social {
  margin-top: 28px; display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--ink3); flex-wrap: wrap;
}
.hero-stars { color: var(--yellow); font-size: 14px; letter-spacing: 1px; }
.hero-visual {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 20px; position: relative;
}
.hero-phone-img {
  width: clamp(160px, calc((70dvh - 160px) * 9 / 19.5), 220px);
  border-radius: clamp(20px, 12%, 32px);
  box-shadow: var(--sh-phone);
  display: block;
  flex-shrink: 0;
}
.hero-phone-img { transform: rotate(-4deg); }
.hero-phone-frame {
  width: clamp(160px, calc((70dvh - 160px) * 9 / 19.5), 220px);
  background: #0F2A4A;
  border-radius: clamp(20px, 12%, 32px);
  box-shadow: var(--sh-phone);
  overflow: hidden;
  flex-shrink: 0;
  transform: rotate(3deg) translateY(-24px);
}
.hero-phone-inner {
  width: 100%; height: auto;
  display: block;
}
.hero-deco {
  position: absolute; pointer-events: none; user-select: none;
  font-size: 32px; animation: float 3.5s ease-in-out infinite;
}
.hero-deco-1 { top: 8%; right: 2%; animation-delay: 0s; }
.hero-deco-2 { bottom: 12%; left: 2%; animation-delay: 1.2s; }
.hero-deco-3 { top: 40%; right: -2%; animation-delay: 0.6s; font-size: 24px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ===== SCREENSHOTS SWIPER ===== */
.screenshots-section { padding: 56px 0 56px; background: var(--bg-alt); }
.screenshots-section .section-hd { margin-bottom: 40px; }
.swiper-box {
  max-width: 860px; margin: 0 auto;
  /*padding: 28px 32px 24px;*/
  border: 1.5px solid var(--border);
  border-radius: 24px;
}
.swiper-clip { overflow: hidden; padding: 28px 32px 24px; }
.swiper-screenshots { overflow: visible; padding-bottom: 40px; }
.swiper-screenshots .phone { width: 220px; }
.swiper-wrapper { align-items: center; }
.swiper-pagination-bullet {
  background: var(--ink) !important; opacity: .2 !important; width: 8px; height: 8px;
}
.swiper-pagination-bullet-active {
  background: var(--accent) !important; opacity: 1 !important; width: 22px; border-radius: 4px;
}
.swiper-pagination { bottom: -4px !important; }
.swiper-screenshots { padding-bottom: 44px !important; }

/* ===== FEATURE CARDS ===== */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feat-card {
  background: var(--bg-card); border-radius: var(--r-xl);
  padding: 30px; border: 1px solid var(--border); box-shadow: var(--sh-card);
  transition: transform .25s, box-shadow .25s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(15,42,74,0.10); }
.feat-icon {
  width: 54px; height: 54px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.feat-icon.c  { background: rgba(255,107,74,0.12); }
.feat-icon.n  { background: rgba(15,42,74,0.08); }
.feat-icon.m  { background: rgba(125,207,182,0.15); }
.feat-icon.y  { background: rgba(255,200,87,0.15); }
.feat-card h3 {
  font-family: var(--font-d); font-weight: 800; font-size: 19px;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em;
}
.feat-card p { font-size: 14.5px; color: var(--ink2); line-height: 1.68; }

/* ===== STEPS ===== */
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps-row::before {
  content: ''; position: absolute; top: 27px; left: calc(100%/6); right: calc(100%/6);
  height: 2px; background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 6px, transparent 6px, transparent 14px);
}
.step { text-align: center; }
.step-num {
  width: 54px; height: 54px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 900; font-size: 22px;
  margin: 0 auto 20px; box-shadow: 0 6px 18px rgba(255,107,74,0.32);
  position: relative; z-index: 1;
}
.step h3 {
  font-family: var(--font-d); font-weight: 800; font-size: 18px;
  color: var(--ink); margin-bottom: 10px;
}
.step p { font-size: 14.5px; color: var(--ink2); line-height: 1.65; max-width: 240px; margin: 0 auto; }

/* ===== CTA BANNER ===== */
.cta-band {
  background: var(--ink); border-radius: 32px;
  padding: 64px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -70px; right: -70px;
  width: 260px; height: 260px; background: rgba(255,107,74,0.14); border-radius: 50%;
}
.cta-band::after {
  content: ''; position: absolute; bottom: -80px; left: -50px;
  width: 220px; height: 220px; background: rgba(125,207,182,0.10); border-radius: 50%;
}
.cta-band h2 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(26px, 3.5vw, 42px);
  color: #fff; margin-bottom: 14px; letter-spacing: -0.025em; position: relative; z-index: 1;
}
.cta-band p {
  font-size: 17px; color: rgba(255,255,255,0.72); margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-band .btn-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ===== BENEFITS TABLE (Vorteile) ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.benefit-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--bg-card); border-radius: var(--r-xl);
  padding: 28px; border: 1px solid var(--border); box-shadow: var(--sh-card);
  transition: transform .25s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-ico {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.benefit-ico.c { background: rgba(255,107,74,0.12); }
.benefit-ico.n { background: rgba(15,42,74,0.08); }
.benefit-ico.m { background: rgba(125,207,182,0.18); }
.benefit-ico.y { background: rgba(255,200,87,0.18); }
.benefit-txt h3 { font-family: var(--font-d); font-weight: 800; font-size: 18px; color: var(--ink); margin-bottom: 7px; }
.benefit-txt p { font-size: 14.5px; color: var(--ink2); line-height: 1.68; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.pricing-card {
  background: var(--bg-card); border-radius: var(--r-xl);
  padding: 32px; border: 2px solid var(--border); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,42,74,0.10); }
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,107,74,0.08);
}
.pricing-top-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: var(--r-full); white-space: nowrap;
}
.pricing-name { font-size: 12px; font-weight: 700; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.pricing-price {
  font-family: var(--font-d); font-weight: 900; font-size: 42px;
  color: var(--ink); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.pricing-price sup { font-size: 20px; vertical-align: super; }
.pricing-price span { font-family: var(--font-b); font-size: 16px; font-weight: 500; color: var(--ink2); }
.pricing-period { font-size: 13px; color: var(--ink3); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink2); }
.pricing-features li::before { content: '✓'; font-weight: 700; color: var(--mint); flex-shrink: 0; margin-top: 1px; }
.pricing-features li.no { opacity: .4; }
.pricing-features li.no::before { content: '×'; color: var(--ink3); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  font-family: var(--font-b); font-weight: 700; font-size: 15.5px;
  color: var(--ink); background: none; border: none; cursor: pointer;
  text-align: left; transition: background .2s;
}
.faq-q:hover { background: rgba(15,42,74,0.03); }
.faq-chevron {
  flex-shrink: 0; width: 30px; height: 30px;
  background: rgba(255,107,74,0.10); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 18px; font-weight: 700;
  transition: transform .3s, background .3s, color .3s;
  line-height: 1; padding-bottom: 1px;
}
.faq-item.open .faq-chevron {
  transform: rotate(45deg); background: var(--accent); color: #fff;
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(0,.9,.3,1), padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 24px 20px; }
.faq-a p { font-size: 14.5px; color: var(--ink2); line-height: 1.75; }
.faq-a p + p { margin-top: 10px; }
.faq-a a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 56px 0 40px; text-align: center;
}
.page-hero h1 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(34px, 5vw, 58px);
  color: var(--ink); letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.08;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { font-size: 18px; color: var(--ink2); max-width: 540px; margin: 0 auto; line-height: 1.6; }

/* ===== LEGAL ===== */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 0 var(--px) 80px; }
.legal-wrap h1 {
  font-family: var(--font-d); font-weight: 900;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--ink); letter-spacing: -0.025em; margin-bottom: 6px;
}
.legal-wrap .meta { font-size: 13px; color: var(--ink3); margin-bottom: 44px; }
.legal-wrap h2 {
  font-family: var(--font-d); font-weight: 800; font-size: 21px;
  color: var(--ink); margin: 40px 0 12px; letter-spacing: -0.01em;
}
.legal-wrap h3 { font-weight: 700; font-size: 16px; color: var(--ink); margin: 24px 0 8px; }
.legal-wrap p { font-size: 15px; color: var(--ink2); line-height: 1.78; margin-bottom: 14px; }
.legal-wrap ul, .legal-wrap ol { margin: 10px 0 16px 20px; }
.legal-wrap li { font-size: 15px; color: var(--ink2); line-height: 1.78; margin-bottom: 7px; }
.legal-wrap ul li { list-style: disc; }
.legal-wrap ol li { list-style: decimal; }
.legal-wrap a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-wrap a:hover { color: var(--accent-dk); }
.legal-wrap table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 16px 0; }
.legal-wrap th { background: rgba(15,42,74,0.05); color: var(--ink); font-weight: 700; padding: 10px 12px; text-align: left; }
.legal-wrap td { padding: 10px 12px; border-top: 1px solid var(--border); color: var(--ink2); }

/* ===== FOOTER ===== */
footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 28px;
}
.footer-brand .logo-text {
  font-family: var(--font-d); font-weight: 900; font-size: 28px;
  color: #fff; display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.footer-brand .logo-mark {
  width: 32px; height: 32px; background: var(--accent); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 900; font-size: 16px; color: #fff;
}
.footer-brand p { font-size: 14px; line-height: 1.65; margin-bottom: 22px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.38); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.85); }

/* ===== UTILS ===== */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.divider { height: 1px; background: var(--border); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .step { display: flex; gap: 20px; text-align: left; align-items: flex-start; }
  .step-num { flex-shrink: 0; margin: 0; }
  .step p { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root { --sec-py: 56px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 48px 0 52px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero h1 { font-size: 40px; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .store-badges { justify-content: center; }
  .hero-visual { display: none; }
  .hero-social { justify-content: center; }

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

  .cta-band { padding: 44px 24px; border-radius: 22px; }
  .cta-band .btn-row { flex-direction: column; align-items: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .swiper-screenshots .phone { width: 200px; }
}
