/* ══════════════════════════════════════════════════════════════════════
   ΦΠΑ — Marketing Landing Page Stylesheet
   Theme: Serious Premium Greek Fintech (Dark-only)
   Font: IBM Plex Sans
   Mint: #18CB96 | Background: #373643
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --bg: #373643;          /* AppColors.bg — charcoal/obsidian UI */
  --surface: #403E4C;     /* AppColors.surface */
  --card: #444250;        /* AppColors.card */
  --field: #2E2D38;       /* AppColors.field */
  --text: #FFFFFF;        /* AppColors.text */
  --muted: #B5B3C0;       /* AppColors.muted */
  --mint: #18CB96;        /* AppColors.mint — single source of truth */
  --mint-dim: #117A5C;    /* AppColors.mintDim */
  --on-mint: #373643;     /* AppColors.onMint — text on mint button */
  --coral: #E57373;       /* AppColors.coral — errors / expiration */
  --border: rgba(255, 255, 255, 0.12); /* #1FFFFFFF */
  --pane: #282733;        /* desktop split left pane */
  --live: #1E1D26;        /* LIVE VAT card */
  --ink: #100F16;         /* motif black + icon background */
  --grey-1: #8E8B9E;      /* motif outlined pill */
  --grey-2: #484555;      /* motif slate fill */

  --radius-input: 12px;
  --radius-btn: 12px;
  --radius-card: 14px;
  --radius-panel: 16px;
  --btn-h: 52px;

  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.28);
  --shadow-live: 0 10px 28px rgba(0, 0, 0, 0.32);
  --container-max: 1200px;
}

/* Base reset & typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.br-m {
  display: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.tabular {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ════════════════════════════════════════
   BUTTONS & LINKS
   ════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--btn-h);
  padding: 0 24px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.15s ease, opacity 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  user-select: none;
}

.btn:active {
  transform: scale(0.985);
}

.btn-primary {
  background-color: var(--mint);
  color: var(--on-mint);
  border: 1px solid var(--mint);
}

.btn-primary:hover {
  opacity: 0.94;
}

.btn-primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-outline {
  height: 48px;
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-sm {
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  border-radius: 10px;
}

.text-link {
  color: var(--mint);
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════════
   HEADER / NAVBAR
   ════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 72px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-login {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  transition: color 0.15s ease;
}

.nav-login:hover {
  color: var(--text);
}

.nav-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu > a {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.mobile-menu .mobile-auth .btn {
  width: 100%;
  border-bottom: none;
}

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
.hero-section {
  position: relative;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 80px 0;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy phone"
    "trust trust";
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left-content { grid-area: copy; }
.hero-showcase-pane { grid-area: phone; }
.hero-trust-box { grid-area: trust; }

.hero-motif-anchor {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 320px;
  height: 360px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
}

.hero-left-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  width: 100%;
}

.hero-title {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.hero-line {
  display: block;
}

.hero-line-white {
  color: #FFFFFF;
  white-space: nowrap;
}

.hero-line-mint {
  color: var(--mint);
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-trust-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 16px 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
  border-color: rgba(24, 203, 150, 0.5);
  background: #1a1822;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(24, 203, 150, 0.18);
}

.store-btn:active {
  transform: scale(0.98);
  border-color: var(--mint);
}

.store-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #fff;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.65);
}

.store-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #fff;
}

/* Right column: iPhone mockup */
.hero-showcase-pane {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.iphone {
  position: relative;
  width: 290px;
  height: 620px;
  transform: rotate(-4.5deg);
  filter:
    drop-shadow(-14px 22px 32px rgba(0, 0, 0, 0.6))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
  z-index: 2;
}

/* Hover lift only on real pointer devices — sticky :hover on touch can leave
   the phone translated over hero copy. */
@media (hover: hover) and (pointer: fine) {
  .iphone:hover {
    transform: rotate(-2deg) translateY(-6px);
    filter:
      drop-shadow(-18px 28px 40px rgba(0, 0, 0, 0.7))
      drop-shadow(0 6px 16px rgba(75, 222, 151, 0.18));
  }
}

.iphone-btn {
  position: absolute;
  background: linear-gradient(to right, #383745, #1f1e29);
  border-radius: 2px;
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.6);
}

.iphone-btn-silent {
  left: -2px;
  top: 108px;
  width: 3px;
  height: 22px;
}

.iphone-btn-vol-up {
  left: -2px;
  top: 148px;
  width: 3px;
  height: 36px;
}

.iphone-btn-vol-down {
  left: -2px;
  top: 194px;
  width: 3px;
  height: 36px;
}

.iphone-btn-power {
  right: -2px;
  top: 176px;
  width: 3px;
  height: 58px;
}

.iphone-bezel {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2d2c38 0%, #161520 40%, #0c0b12 100%);
  border-radius: 48px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 1.5px 2px rgba(255, 255, 255, 0.24),
    inset -1px -1px 2px rgba(0, 0, 0, 0.8),
    0 0 0 1px #06050a;
}

.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.iphone-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: -25%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.04) 28%,
    transparent 46%
  );
  pointer-events: none;
  z-index: 10;
  border-radius: 40px;
}

.iphone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
}

.iphone-statusbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 0 28px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.iphone-sys {
  display: flex;
  align-items: center;
  gap: 5px;
}

.iphone-battery {
  display: inline-block;
  width: 22px;
  height: 11px;
  border: 1.2px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  position: relative;
  padding: 1.5px;
}

.iphone-battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 3px;
  width: 1.5px;
  height: 4px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 1px 1px 0;
}

.iphone-battery i {
  display: block;
  width: 78%;
  height: 100%;
  background: #fff;
  border-radius: 1px;
}

.iphone-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.iphone-app {
  position: relative;
  padding: 4px 16px 0;
  height: calc(100% - 86px);
  overflow: hidden;
}

.phone-motif {
  position: absolute;
  left: -28px;
  bottom: 8px;
  width: 170px;
  height: 190px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.phone-motif img {
  width: 100%;
  height: 100%;
}

.dash-company {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dash-heading {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #fff;
  margin-bottom: 3px;
}

.dash-sync {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
}

.dash-live {
  position: relative;
  z-index: 1;
  background: var(--field);
  border-radius: 8px;
  padding: 14px 14px 12px;
  margin-bottom: 16px;
}

.dash-live-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--mint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.9px;
  margin-bottom: 12px;
}

.dash-live-kind {
  font-size: 13px;
  font-weight: 500;
  color: var(--mint);
  margin-bottom: 2px;
}

.dash-live-amount {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1.1px;
  color: var(--mint);
  line-height: 1.12;
}

.dash-quarter {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.dash-quarter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px 11px 13px;
  border-left: 3px solid var(--mint);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.dash-q-badge {
  padding: 3px 8px;
  border-radius: 8px;
  border: 1px solid rgba(24, 203, 150, 0.5);
  color: var(--mint);
  font-size: 11px;
  font-weight: 600;
  background: transparent;
}

.dash-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-month.last {
  border-bottom: none;
}

.dash-month-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}

.dash-month-kind {
  font-size: 11.5px;
  font-weight: 500;
  margin-top: 2px;
  white-space: nowrap;
}

.dash-month-kind.credit,
.dash-month-amt.credit {
  color: var(--mint);
}

.dash-month-kind.debit,
.dash-month-amt.debit {
  color: #fff;
}

.dash-month-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.dash-month-amt {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.dash-analyze {
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 2px 7px;
  border-radius: 20px;
  border: 1px solid rgba(24, 203, 150, 0.55);
  color: var(--mint);
  font-size: 10.5px;
  font-weight: 600;
  background: transparent;
  white-space: nowrap;
}

.iphone-homebar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 4px;
  background: #fff;
  border-radius: 4px;
  z-index: 5;
}

/* ════════════════════════════════════════
   THE AUTHENTIC LIVE ΦΠΑ CARD (§3A)
   Container #1E1D26, radius 14, border white 12%
   Dot mint 8px + «LIVE ΦΠΑ» mint 11px w700 letter-spacing 0.9
   Δεξιά «ΑΑΔΕ myDATA» muted 11px
   Ποσό «1.480,18 €» mint 28px w700
   Badge «Πιστωτικό» mint text, mint border 50%, fill mint 12%, radius 6
   Divider, μετά: «Τρέχον τρίμηνο 3ο 2026» · «Ενημέρωση live»
   ════════════════════════════════════════ */
.live-vat-card {
  background-color: var(--live);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-live);
  padding: 20px;
}

.live-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.live-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--mint);
}

.live-label {
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.live-source {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.live-amount-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.live-amount {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--mint);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.status-badge-credit {
  color: var(--mint);
  background-color: rgba(24, 203, 150, 0.12);
  border: 1px solid rgba(24, 203, 150, 0.50);
}

.status-badge-debit {
  color: var(--text);
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.live-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.13);
  margin-bottom: 10px;
}

.live-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

/* ════════════════════════════════════════
   CURRENT QUARTER CARD (§3B)
   Left mint border 3px, outline badge «3ο 2026»
   Months list with «Ανάλυση» / «Απόκρυψη» pill
   ════════════════════════════════════════ */
.quarter-card {
  background-color: var(--card);
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.quarter-card-header {
  border-left: 3px solid var(--mint);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 13px 14px 13px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quarter-header-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--text);
}

.quarter-header-badge {
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(24, 203, 150, 0.50);
  background-color: transparent;
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.month-vat-row {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.15s ease;
}

.month-vat-row:last-child {
  border-bottom: none;
}

.month-vat-row.active {
  padding-left: 13px;
  border-left: 3px solid var(--mint);
}

.month-main-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.month-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.month-kind {
  font-size: 13px;
  font-weight: 500;
  margin-top: 3px;
}

.month-kind.mint {
  color: var(--mint);
}

.month-kind.white {
  color: var(--text);
}

.month-right-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.month-amount {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.month-amount.mint {
  color: var(--mint);
}

.month-amount.white {
  color: var(--text);
}

.pill-analysis-btn {
  margin-top: 6px;
  padding: 4px 9px;
  border-radius: 20px;
  border: 1px solid rgba(24, 203, 150, 0.55);
  background: transparent;
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.pill-analysis-btn:hover {
  border-color: rgba(24, 203, 150, 0.85);
  background-color: rgba(24, 203, 150, 0.06);
}

.pill-analysis-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.month-breakdown {
  display: none;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(24, 203, 150, 0.28);
}

.month-vat-row.active .month-breakdown {
  display: block;
}

.month-vat-row.active .pill-analysis-btn svg {
  transform: rotate(180deg);
}

.breakdown-range {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.breakdown-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.breakdown-label {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.breakdown-sub {
  font-size: 11.5px;
  color: var(--muted);
}

.breakdown-val {
  font-size: 14px;
  font-weight: 600;
}

.breakdown-val.mint {
  color: var(--mint);
}

.breakdown-val.white {
  color: var(--text);
}

/* ════════════════════════════════════════
   GENERAL SECTION STYLING
   ════════════════════════════════════════ */
.section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   HOW IT WORKS (§2 & §5)
   ════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.step-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.step-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: var(--field);
  border: 1px solid var(--border);
  color: var(--mint);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   FEATURES GRID (§3 & §5)
   Max 6 cards, clean styling, no blob icons
   ════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease;
}

.feature-card.highlight {
  border-left: 3px solid var(--mint);
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.feature-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 14px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   APP PREVIEW CTA
   ════════════════════════════════════════ */
.showcase-preview-section {
  background-color: var(--pane);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.showcase-preview-header {
  margin-bottom: 36px;
}

.showcase-preview-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  background-color: var(--mint);
  color: var(--on-mint);
  border: 1px solid var(--mint);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(24, 203, 150, 0.22);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.preview-app-btn:hover {
  background-color: #15b888;
  border-color: #15b888;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(24, 203, 150, 0.28);
}

.preview-app-btn:active {
  transform: scale(0.98);
  box-shadow: 0 6px 16px rgba(24, 203, 150, 0.18);
}

.preview-app-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Daily Transactions Mockup (§3C) */
.daily-mockup-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.filter-pills-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-pill {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background-color: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-pill.active {
  background-color: var(--mint);
  color: var(--on-mint);
  border-color: var(--mint);
}

.daily-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background-color: var(--field);
  border-radius: 10px;
  margin-bottom: 16px;
}

.daily-date-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.daily-counts-badge {
  font-size: 12px;
  color: var(--muted);
}

.daily-totals-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.summary-box {
  background-color: var(--field);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.summary-title {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.summary-val {
  font-size: 18px;
  font-weight: 700;
}

.summary-val.mint {
  color: var(--mint);
}

.summary-val.white {
  color: var(--text);
}

.summary-vat {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.doc-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doc-card.incoming {
  border-left: 3px solid var(--mint);
}

.doc-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.doc-icon-badge.outgoing {
  background-color: rgba(255, 255, 255, 0.10);
  color: var(--text);
}

.doc-icon-badge.incoming {
  background-color: rgba(24, 203, 150, 0.12);
  color: var(--mint);
}

.doc-info {
  display: flex;
  flex-direction: column;
}

.doc-partner {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.doc-meta {
  font-size: 12px;
  color: var(--muted);
}

.doc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.doc-gross {
  font-size: 15px;
  font-weight: 700;
}

.doc-gross.mint {
  color: var(--mint);
}

.doc-gross.white {
  color: var(--text);
}

.doc-vat {
  font-size: 11px;
  color: var(--muted);
}

/* History Mockup (§3D) */
.history-mockup-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.quarter-history-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.quarter-history-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quarter-history-item.open {
  border-left: 3px solid var(--mint);
}

.qh-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 2px;
}

.qh-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.qh-dates {
  font-size: 11.5px;
  color: var(--muted);
}

.qh-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.qh-amount {
  font-size: 16px;
  font-weight: 700;
}

.qh-amount.mint {
  color: var(--mint);
}

.qh-amount.white {
  color: var(--text);
}

.f2-analysis-box {
  background-color: var(--field);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.f2-header {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f2-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.f2-table th {
  text-align: left;
  padding: 6px 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 11.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.f2-table th:last-child {
  text-align: right;
}

.f2-table td {
  padding: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.f2-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.f2-code {
  color: var(--mint);
  font-weight: 600;
  font-size: 12px;
}

/* ════════════════════════════════════════
   SECURITY & TRUST SECTION (§3G & §5)
   ════════════════════════════════════════ */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.security-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
}

.security-icon {
  width: 32px;
  height: 32px;
  color: var(--mint);
  margin-bottom: 16px;
}

.security-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.security-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   PRICING SECTION (§2.4 & §5)
   Monthly 19,90 € | Annual 199,00 € (2 months free)
   No Free plan, no trial
   ════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto 36px auto;
}

.pricing-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border-color: rgba(24, 203, 150, 0.6);
  background-color: #3b3947;
}

.pricing-badge {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pricing-badge-normal {
  background-color: var(--field);
  color: var(--muted);
  border: 1px solid var(--border);
}

.pricing-badge-save {
  background-color: rgba(24, 203, 150, 0.14);
  color: var(--mint);
  border: 1px solid rgba(24, 203, 150, 0.45);
}

.plan-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  min-height: 42px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.plan-price {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--text);
}

.plan-period {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

.plan-savings-note {
  font-size: 12.5px;
  color: var(--mint);
  font-weight: 500;
  margin-bottom: 24px;
  min-height: 20px;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}

.plan-feature-item svg {
  width: 17px;
  height: 17px;
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════ */
.cta-band {
  background-color: var(--pane);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-band-content {
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}

.cta-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background-color: var(--bg);
  padding: 60px 0 40px 0;
  font-size: 14px;
  color: var(--muted);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-group-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-links-group a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(181, 179, 192, 0.7);
}

/* ════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   360 / 768 / 860+ / 1024+ / 1280+
   ════════════════════════════════════════ */

@media (max-width: 859px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    height: 60px;
  }

  .header-container {
    gap: 10px;
  }

  .brand-logo-img {
    height: 28px;
  }

  .nav-auth {
    gap: 8px;
  }

  .nav-login {
    display: none;
  }

  .nav-mobile-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-menu {
    top: 60px;
    padding: 16px 16px 28px;
  }

  .hero-section {
    padding: 20px 0 28px;
    /* Visible so tilted phone isn't sliced; body overflow-x blocks page scroll */
    overflow: visible;
  }

  /* Side-by-side mobile hero: copy | phone, trust full-width below */
  .hero-container {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy phone"
      "trust trust";
    align-items: center;
    gap: 10px 12px;
    min-width: 0;
    width: 100%;
  }

  .hero-left-content {
    z-index: 3;
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .hero-motif-anchor {
    width: 140px;
    height: 160px;
    bottom: -24px;
    left: -40px;
    opacity: 0.12;
  }

  .br-m {
    display: block;
  }

  .hero-line-white,
  .hero-line-mint {
    white-space: normal;
  }

  .hero-title {
    font-size: clamp(20px, 5.4vw, 24px);
    letter-spacing: -0.45px;
    margin-bottom: 10px;
    line-height: 1.18;
  }

  .hero-subtitle {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 14px;
    max-width: none;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    white-space: normal;
    box-sizing: border-box;
  }

  .hero-cta-group .btn-primary {
    background: var(--mint);
    color: #0b1a13;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    min-height: 52px;
    padding: 8px 10px;
    line-height: 1.2;
    text-align: center;
  }

  .hero-cta-group .btn-primary span {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-cta-group .btn-outline {
    min-height: 42px;
    font-size: 13.5px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .cta-buttons .btn {
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 12px 16px;
    white-space: normal;
    line-height: 1.25;
    text-wrap: balance;
    box-sizing: border-box;
  }

  .mobile-menu .mobile-auth .btn {
    height: auto;
    min-height: 48px;
    padding: 12px 16px;
    white-space: normal;
    line-height: 1.25;
    text-wrap: balance;
  }

  .hero-trust-box {
    padding-top: 16px;
    margin-top: 4px;
    gap: 12px;
  }

  .store-buttons {
    gap: 8px;
  }

  .store-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    min-height: 48px;
    padding: 8px 12px 8px 10px;
    gap: 8px;
  }

  .store-icon {
    width: 20px;
    height: 20px;
  }

  .store-label {
    font-size: 9px;
  }

  .store-name {
    font-size: 13.5px;
  }

  /* Intrinsic scaled phone in its own column — no absolute bleed over copy */
  .hero-showcase-pane {
    --phone-scale: 0.55;
    /* ~160px visual width on ~390px; pad for slight tilt AABB */
    width: calc(290px * var(--phone-scale) + 10px);
    height: calc(620px * var(--phone-scale) + 14px);
    max-width: none;
    margin: 0;
    padding: 4px 2px;
    overflow: visible;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: center;
    pointer-events: none;
  }

  .hero-showcase-pane::before {
    display: none;
  }

  .iphone {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    flex-shrink: 0;
    width: 290px;
    height: 620px;
    /* Collapse layout to scaled size via negative margins */
    margin: calc(620px * (var(--phone-scale) - 1) / 2) calc(290px * (var(--phone-scale) - 1) / 2);
    transform: scale(var(--phone-scale)) rotate(-2deg);
    transform-origin: center center;
    filter:
      drop-shadow(-6px 10px 16px rgba(0, 0, 0, 0.5))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
    transition: none;
    z-index: 1;
    pointer-events: none;
  }

  /* Kill sticky :hover lift on touch / coarse pointers */
  .iphone:hover {
    transform: scale(var(--phone-scale)) rotate(-2deg);
    filter:
      drop-shadow(-6px 10px 16px rgba(0, 0, 0, 0.5))
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  }
  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .step-card,
  .feature-card,
  .security-card {
    padding: 22px 18px;
  }

  .step-title,
  .feature-title {
    font-size: 18px;
  }

  .showcase-preview-section {
    padding: 56px 0;
  }

  .showcase-preview-header {
    margin-bottom: 28px;
  }

  .preview-app-btn {
    width: 100%;
    max-width: 420px;
    min-height: 56px;
    padding: 0 22px;
    font-size: 17px;
    border-radius: 14px;
  }

  .pricing-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    max-width: none;
    margin: 0 0 28px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .pricing-card {
    flex: 1 1 0;
    min-width: min(100%, 168px);
    max-width: 100%;
    padding: 16px 12px;
    scroll-snap-align: start;
  }

  .pricing-badge {
    font-size: 9.5px;
    padding: 3px 7px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
  }

  .plan-name {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .plan-desc {
    font-size: 11.5px;
    line-height: 1.35;
    margin-bottom: 12px;
    min-height: 0;
  }

  .plan-price-wrap {
    margin-bottom: 4px;
    gap: 4px;
  }

  .plan-price {
    font-size: 22px;
    letter-spacing: -0.4px;
  }

  .plan-period {
    font-size: 12px;
  }

  .plan-savings-note {
    font-size: 10.5px;
    margin-bottom: 12px;
    min-height: 0;
    line-height: 1.3;
  }

  .plan-features-list {
    gap: 8px;
    margin-bottom: 14px;
  }

  .plan-feature-item {
    font-size: 11.5px;
    gap: 6px;
    line-height: 1.3;
  }

  .plan-feature-item svg {
    width: 14px;
    height: 14px;
    margin-top: 1px;
  }

  .pricing-card .btn {
    white-space: normal;
    height: auto;
    min-height: 44px;
    padding: 10px 8px;
    line-height: 1.25;
    font-size: 12px;
  }

  .cta-band {
    padding: 48px 0;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-buttons {
    align-items: stretch;
  }

  .site-footer {
    padding: 40px 0 28px;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 370px) {
  .hero-title {
    font-size: 19px;
  }

  .hero-subtitle {
    font-size: 12.5px;
  }

  .hero-container {
    gap: 8px 10px;
  }

  .hero-showcase-pane {
    --phone-scale: 0.5;
    width: calc(290px * var(--phone-scale) + 8px);
    height: calc(620px * var(--phone-scale) + 12px);
  }

  .iphone,
  .iphone:hover {
    transform: scale(var(--phone-scale)) rotate(-1.5deg);
  }

  .btn-sm {
    padding: 0 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-cta-group .btn {
    font-size: 12.5px;
    padding: 10px 10px;
  }
}

@media (min-width: 600px) and (max-width: 859px) {
  .hero-section {
    padding: 36px 0 48px;
  }

  .hero-container {
    gap: 16px 20px;
    max-width: none;
    margin-inline: 0;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-showcase-pane {
    --phone-scale: 0.62;
    width: calc(290px * var(--phone-scale) + 12px);
    height: calc(620px * var(--phone-scale) + 16px);
  }

  .iphone,
  .iphone:hover {
    transform: scale(var(--phone-scale)) rotate(-2.5deg);
  }

  .cta-buttons {
    flex-direction: row;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: auto;
    flex: 1;
  }

  .features-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .nav-mobile-toggle {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
      "copy phone"
      "trust phone";
    gap: 18px 48px;
    align-items: center;
    min-height: calc(100vh - 160px);
  }

  .hero-showcase-pane {
    width: auto;
    height: auto;
    max-width: none;
    overflow: visible;
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    isolation: auto;
  }

  .hero-showcase-pane::before {
    display: none;
  }

  .iphone {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin: 0;
    transform: rotate(-4.5deg);
    transform-origin: center center;
    pointer-events: auto;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
    filter:
      drop-shadow(-16px 26px 36px rgba(0, 0, 0, 0.6))
      drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
  }

  @media (hover: hover) and (pointer: fine) {
    .iphone:hover {
      transform: rotate(-2deg) translateY(-8px);
      filter:
        drop-shadow(-20px 32px 44px rgba(0, 0, 0, 0.7))
        drop-shadow(0 8px 20px rgba(75, 222, 151, 0.2));
    }
  }

  .hero-section {
    padding: 60px 0 80px 0;
  }

  .hero-motif-anchor {
    width: 360px;
    height: 410px;
    bottom: -30px;
    left: -30px;
    opacity: 0.32;
  }

  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }

  .hero-cta-group .btn-primary {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.3em;
    min-height: var(--btn-h);
    padding: 0 24px;
  }

  .hero-cta-group .btn-primary span {
    display: inline;
    width: auto;
  }

  .cta-buttons {
    flex-direction: row;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .security-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-container {
    gap: 60px;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 48px;
  }
}
