/* ============================================================
   DPH automatizace — Landing Page Stylesheet
   Fully responsive: desktop / tablet / mobile / mobile-small
   ============================================================ */

/* ----- Reset & Variables ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { zoom: 1.1; }

:root {
  --bg-page: #FFFFFF;
  --bg-card: #F4F4F5;
  --bg-elevated: #E4E4E7;
  --text-primary: #18181B;
  --text-secondary: #71717A;
  --text-tertiary: #A1A1AA;
  --text-subtle: #52525B;
  --accent: #8B5CF6;
  --accent-dark: #7C3AED;
  --accent-soft: #F5F3FF;
  --teal: #14B8A6;
  --green: #16A34A;
  --green-bright: #22C55E;
  --green-soft: #DCFCE7;
  --amber: #F59E0B;
  --pink: #EC4899;
  --blue: #3B82F6;
  --dark: #18181B;
  --dark-card: #27272A;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ====== Scroll Animations ====== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  animation: fadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ====== Header ====== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 80px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}

.header-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
}

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

.header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.header-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
  color: #fff !important;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 24px;
  background: transparent;
  color: var(--text-secondary) !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-cta-secondary:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

/* ====== Hero ====== */
.hero {
  text-align: center;
  padding: 40px 120px 48px;
  background: linear-gradient(180deg, #DDD6FE 0%, #EDE9FE 30%, #F5F3FF 65%, #FFFFFF 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge-icon {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.15;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto 20px;
}

.hero-pain {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-dark);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.hero-sub {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 24px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-hero:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.35);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.45);
}

.btn-hero-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
}

.btn-hero-secondary:hover {
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

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

.trust-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

/* ====== Video Section ====== */
.video-section {
  text-align: center;
  padding: 40px 120px 64px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F3FF 50%, #FFFFFF 100%);
}

.video-frame {
  position: relative;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 24px auto 0;
  background: #18181B;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 24px 80px rgba(139, 92, 246, 0.3),
              0 8px 32px rgba(0, 0, 0, 0.15),
              0 0 0 1px rgba(139, 92, 246, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}

.video-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 96px rgba(139, 92, 246, 0.4),
              0 12px 40px rgba(0, 0, 0, 0.2),
              0 0 0 1px rgba(139, 92, 246, 0.12);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.3s;
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
}

.video-play-icon {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  margin-left: 4px;
}

.video-caption {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ====== Section Shared ====== */
.section {
  padding: 80px 120px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ====== How It Works ====== */
.section#jak-to-funguje {
  background: linear-gradient(180deg, #F4F4F5 0%, #EDE9FE 50%, #F4F4F5 100%);
  border-top: none;
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15),
              0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.1);
  flex: 1;
  max-width: 340px;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(139, 92, 246, 0.3),
              0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  flex-shrink: 0;
}

.step-arrow-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  opacity: 0.7;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.45),
              0 0 0 6px rgba(139, 92, 246, 0.1);
}

.step-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-subtle);
  line-height: 1.5;
  max-width: 280px;
}

/* ====== Features (dark) ====== */
.features-section {
  background: linear-gradient(180deg, #18181B 0%, #1E1B2E 50%, #18181B 100%);
  padding: 80px 120px;
}

.features-section .section-title {
  color: #FFFFFF;
}

.features-section .section-desc {
  color: var(--text-tertiary);
}

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

.feature-card {
  background: var(--dark-card);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.feature-card:hover {
  transform: translateY(-4px);
}

/* Colored glow per card */
.feature-card:nth-child(1),
.feature-card:nth-child(4) {
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.25), 0 2px 8px rgba(0, 0, 0, 0.2);
}
.feature-card:nth-child(1):hover,
.feature-card:nth-child(4):hover {
  box-shadow: 0 20px 56px rgba(139, 92, 246, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.feature-card:nth-child(2),
.feature-card:nth-child(5) {
  box-shadow: 0 8px 32px rgba(20, 184, 166, 0.25), 0 2px 8px rgba(0, 0, 0, 0.2);
}
.feature-card:nth-child(2):hover,
.feature-card:nth-child(5):hover {
  box-shadow: 0 20px 56px rgba(20, 184, 166, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.feature-card:nth-child(3),
.feature-card:nth-child(6) {
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.25), 0 2px 8px rgba(0, 0, 0, 0.2);
}
.feature-card:nth-child(3):hover,
.feature-card:nth-child(6):hover {
  box-shadow: 0 20px 56px rgba(236, 72, 153, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon.purple { background: rgba(139, 92, 246, 0.12); }
.feature-icon.green  { background: rgba(34, 197, 94, 0.12); }
.feature-icon.amber  { background: rgba(245, 158, 11, 0.12); }
.feature-icon.teal   { background: rgba(20, 184, 166, 0.12); }
.feature-icon.pink   { background: rgba(236, 72, 153, 0.12); }
.feature-icon.blue   { background: rgba(59, 130, 246, 0.12); }

.fi-purple { width: 24px; height: 24px; color: var(--accent); }
.fi-green  { width: 24px; height: 24px; color: var(--green-bright); }
.fi-amber  { width: 24px; height: 24px; color: var(--amber); }
.fi-teal   { width: 24px; height: 24px; color: var(--teal); }
.fi-pink   { width: 24px; height: 24px; color: var(--pink); }
.fi-blue   { width: 24px; height: 24px; color: var(--blue); }

.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
}

.feature-card p {
  font-size: 15px;
  font-weight: 500;
  color: #A1A1AA;
  line-height: 1.6;
}

/* ====== Pricing ====== */
.section#cenik {
  background: linear-gradient(180deg, #EDE9FE 0%, #F5F3FF 50%, #EDE9FE 100%);
  border-top: none;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-card.free {
  background: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card.pro {
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
  border: 3px solid #A78BFA;
  box-shadow: 0 16px 64px rgba(139, 92, 246, 0.4), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
}

.pricing-card.free .pricing-label { color: var(--text-primary); }
.pricing-card.pro .pricing-label  { color: #FFFFFF; }

.pricing-badge {
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.pricing-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
}

.pricing-card.free .pricing-amount { color: var(--text-primary); }
.pricing-card.pro .pricing-amount  { color: #FFFFFF; }

.pricing-per {
  font-size: 16px;
  font-weight: 500;
}

.pricing-card.free .pricing-per { color: var(--text-secondary); }
.pricing-card.pro .pricing-per  { color: rgba(255, 255, 255, 0.7); }

.pricing-per-info {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-per-info s {
  opacity: 0.5;
}

.pricing-divider {
  height: 2px;
}

.pricing-card.free .pricing-divider { background: var(--bg-elevated); }
.pricing-card.pro .pricing-divider  { background: #A78BFA; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.pricing-card.free .pricing-feature { color: var(--text-primary); }
.pricing-card.pro .pricing-feature  { color: rgba(255, 255, 255, 0.9); }

.check-green {
  width: 18px;
  height: 18px;
  color: var(--green-bright);
  flex-shrink: 0;
}

.check-white {
  width: 18px;
  height: 18px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.btn-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  margin-top: auto;
}

.btn-pricing:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.btn-pricing.primary {
  background: var(--accent);
  color: #fff;
}

.btn-pricing.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.btn-pricing.white {
  background: #FFFFFF;
  color: var(--accent);
}

.btn-pricing.white:hover {
  background: #F5F3FF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ====== Final CTA ====== */
.final-cta {
  text-align: center;
  padding: 80px 120px;
  background: linear-gradient(180deg, #DDD6FE 0%, #C4B5FD 50%, #A78BFA 100%);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: var(--text-primary);
  max-width: 800px;
  margin: 0 auto 32px;
}

.final-cta .section-desc {
  margin-bottom: 32px;
  color: var(--text-subtle);
}

.btn-final {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
  transition: all 0.25s;
  margin-bottom: 32px;
}

.btn-final:hover {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.5);
}

.btn-final:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.final-note {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-subtle);
}

/* ====== Footer ====== */
.footer {
  background: linear-gradient(180deg, #18181B 0%, #1E1B2E 100%);
  padding: 48px 120px 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 500;
  color: #A1A1AA;
  line-height: 1.5;
  max-width: 250px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

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

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  font-weight: 500;
  color: #A1A1AA;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-col a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-divider {
  height: 2px;
  background: var(--dark-card);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: #A1A1AA;
}

/* ============================================================
   RESPONSIVE -- Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .header {
    padding: 16px 32px;
  }

  .hero {
    padding: 60px 32px 48px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-pain {
    font-size: 18px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .video-section {
    padding: 48px 32px 60px;
  }

  .video-frame {
    max-width: 100%;
  }

  .section {
    padding: 60px 32px;
  }

  .features-section {
    padding: 60px 32px;
  }

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

  .final-cta {
    padding: 60px 32px;
  }

  .footer {
    padding: 40px 32px 24px;
  }
}

/* ============================================================
   RESPONSIVE -- Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }

  .header-nav a:not(.btn-cta) {
    display: none;
  }

  .header-nav {
    gap: 0;
  }

  .hero {
    padding: 48px 20px 36px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-pain {
    font-size: 16px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .video-section {
    padding: 36px 20px 48px;
  }

  .video-play-btn {
    width: 60px;
    height: 60px;
  }

  .video-play-icon {
    width: 24px;
    height: 24px;
  }

  .section {
    padding: 48px 20px;
  }

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

  .steps-row {
    flex-direction: column;
    gap: 12px;
  }

  .step-card {
    max-width: 100%;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .features-section {
    padding: 48px 20px;
  }

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 48px 20px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .footer {
    padding: 32px 20px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* ============================================================
   RESPONSIVE -- Small mobile (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .section {
    padding: 40px 16px;
  }

  .features-section {
    padding: 40px 16px;
  }

  .final-cta {
    padding: 40px 16px;
  }

  .final-cta h2 {
    font-size: 24px;
  }

  .btn-final {
    font-size: 18px;
    padding: 16px 32px;
  }

  .step-card,
  .feature-card,
  .pricing-card {
    padding: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}
