/* ================================================================
   Духовная линия — Landing Page Styles
   Фирменный стиль: тёмно-синий фон, золотые акценты, белый текст
   ================================================================ */

/* ===== CSS Custom Properties ===== */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1525;
  --bg-card: rgba(15, 21, 37, 0.85);
  --bg-card-hover: rgba(20, 28, 50, 0.9);

  --gold: #c9a84c;
  --gold-light: #dbc06a;
  --gold-dark: #a8883a;
  --gold-glow: rgba(201, 168, 76, 0.25);
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #d4b95e 50%, #c9a84c 100%);

  --text-primary: #ffffff;
  --text-secondary: #b0b8c8;
  --text-muted: #6b7585;

  --border-subtle: rgba(201, 168, 76, 0.15);
  --border-medium: rgba(201, 168, 76, 0.3);
  --border-strong: rgba(201, 168, 76, 0.5);

  --font-heading: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', 'Helvetica Neue', sans-serif;

  --container-max: 1140px;
  --section-py: 100px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--gold);
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

section {
  padding: var(--section-py) 0;
  position: relative;
}

/* ===== Decorative Background ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(201, 168, 76, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(30, 58, 138, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main, .header, .footer {
  position: relative;
  z-index: 1;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo:hover {
  color: var(--gold-light);
}

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav a:hover::after {
  width: 100%;
}

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  border-radius: 36px;
  border: 3px solid var(--border-medium);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(201, 168, 76, 0.1),
    0 25px 50px rgba(0, 0, 0, 0.4);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  background: linear-gradient(180deg, #0f1525 0%, #141e35 100%);
}

.phone-mockup-placeholder .icon-dome {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  color: var(--gold);
}

.phone-mockup-placeholder p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border-medium);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
}

/* ===== Feature Cards ===== */
.features {
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== Roadmap ===== */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.roadmap-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all var(--transition);
}

.roadmap-item:hover {
  border-color: var(--border-medium);
}

.roadmap-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.roadmap-icon svg {
  width: 100%;
  height: 100%;
}

.roadmap-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.roadmap-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.roadmap-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Benefits ===== */
.benefits {
  background: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.benefits-column {
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.benefits-column h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--gold);
  text-align: center;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

.benefit-check svg {
  width: 14px;
  height: 14px;
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Security ===== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.security-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all var(--transition);
}

.security-item:hover {
  border-color: var(--border-medium);
}

.security-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.security-icon svg {
  width: 28px;
  height: 28px;
}

.security-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.security-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== Social Impact ===== */
.social-impact {
  background: var(--bg-secondary);
}

.impact-list {
  max-width: 700px;
  margin: 0 auto;
}

.impact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.impact-item:last-child {
  margin-bottom: 0;
}

.impact-item:hover {
  border-color: var(--border-medium);
}

.impact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.impact-icon svg {
  width: 22px;
  height: 22px;
}

.impact-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.impact-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ===== Countdown ===== */
.countdown-section {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.countdown-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.countdown-item {
  width: 120px;
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.countdown-finished {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  padding: 40px 0;
}

/* ===== Subscribe ===== */
.subscribe {
  background: var(--bg-secondary);
}

.subscribe-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-form {
  margin-top: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input.error {
  border-color: #e53e3e;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 8px;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--border-medium);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 2px;
  position: relative;
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--bg-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-checkbox span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-checkbox a {
  display: block;
  margin-top: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(56, 161, 105, 0.12);
  border: 1px solid rgba(56, 161, 105, 0.3);
  color: #68d391;
}

.form-message.error {
  display: block;
  background: rgba(229, 62, 62, 0.12);
  border: 1px solid rgba(229, 62, 62, 0.3);
  color: #fc8181;
}

/* ===== Cooperation ===== */
.cooperation {
  text-align: center;
}

.cooperation-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 8px;
  padding: 12px 28px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.cooperation-email:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
}

.cooperation-email svg {
  width: 22px;
  height: 22px;
}

/* ===== Download ===== */
.download {
  background: var(--bg-secondary);
  text-align: center;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition);
  min-width: 200px;
  justify-content: center;
}

.store-badge:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-badge-text {
  text-align: left;
}

.store-badge-small {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.2;
}

.store-badge-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.important-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: rgba(201, 168, 76, 0.04);
  text-align: center;
}

.important-note p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
}

.important-note strong {
  color: var(--gold);
  font-style: normal;
}

/* ===== Footer ===== */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

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

.footer-separator {
  margin: 0 8px;
  color: var(--text-muted);
}

/* ===== Animations (scroll reveal) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== Privacy Policy Page ===== */
.privacy-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.privacy-page .container {
  max-width: 800px;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.privacy-back:hover {
  color: var(--gold);
}

.privacy-back svg {
  width: 18px;
  height: 18px;
}

.privacy-page h1 {
  color: var(--gold);
  margin-bottom: 8px;
}

.privacy-page .privacy-company {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.privacy-page h2 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 16px;
}

.privacy-page p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.75;
}

.privacy-page ul {
  margin-bottom: 16px;
  padding-left: 4px;
}

.privacy-page ul li {
  color: var(--text-secondary);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.65;
}

.privacy-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

.privacy-page .privacy-contact {
  margin-top: 40px;
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.privacy-page .privacy-contact p {
  margin-bottom: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: 220px;
    height: 440px;
    border-radius: 28px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 1.2rem;
  }

  .burger {
    display: flex;
    z-index: 101;
  }

  .features-grid,
  .security-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .countdown-wrap {
    gap: 12px;
  }

  .countdown-item {
    width: 72px;
    padding: 16px 8px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    width: 100%;
    max-width: 300px;
  }

  .section-subtitle {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-py: 48px;
  }

  body {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .phone-mockup {
    width: 180px;
    height: 360px;
    border-radius: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .benefits-column {
    padding: 28px 20px;
  }

  .impact-item {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
}
