/**
 * landing-redesign.css
 * Complete Landing Page Redesign — rechnung.best 2026
 *
 * Style: Corporate / Professional (German B2B)
 * Inspiration: Stripe, Linear, Lexoffice — but better
 */

/* ================================================================
   RESET & BASE
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body[data-page-context="landing"] {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
  background: #0a0f1e;
  color: #1a1a2e;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* ================================================================
   NAVIGATION
   ================================================================ */

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.landing-nav.scrolled {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: #60a5fa;
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 450;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-btn-login {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500 !important;
}

.nav-btn-cta {
  background: #2563eb !important;
  color: #ffffff !important;
  padding: 12px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.1s !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-btn-cta:hover {
  background: #1d4ed8 !important;
  transform: translateY(-1px) !important;
}

/* ================================================================
   HERO SECTION
   ================================================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0f1e;
}

/* Photo background */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  z-index: 1;
  transform: scale(1.03);
  filter: saturate(0.9) brightness(0.7);
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(10,15,30,0.92) 0%,
      rgba(15,30,60,0.80) 40%,
      rgba(30,58,138,0.55) 70%,
      rgba(30,58,138,0.30) 100%
    );
  z-index: 2;
}

/* Bottom fade */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, #0a0f1e);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left: Text content */
.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.35);
  color: #93c5fd;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-h1 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
}

.hero-h1 .accent {
  color: #60a5fa;
  position: relative;
}

.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0 0 40px;
  font-weight: 400;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

.hero-tag-check {
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.45);
  letter-spacing: -0.01em;
}

.hero-btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,99,235,0.5);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-btn-secondary:hover {
  color: #ffffff;
}

.hero-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.hero-btn-secondary:hover .hero-arrow {
  transform: translateX(3px);
}

.hero-legal {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* Right: App preview card */
.hero-preview {
  display: flex;
  justify-content: center;
}

.hero-app-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.app-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.app-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.app-card-dot.red   { background: #ef4444; }
.app-card-dot.amber { background: #f59e0b; }
.app-card-dot.green { background: #22c55e; }

.app-card-title {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}

.app-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.app-metric {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}

.app-metric-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  font-weight: 600;
}

.app-metric-value {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.app-metric-delta {
  font-size: 12px;
  color: #34d399;
  font-weight: 600;
  margin-top: 4px;
}

.app-chart-bar {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-bottom: 20px;
  padding: 0 4px;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(96,165,250,0.3);
  transition: background 0.2s;
  min-width: 0;
}

.bar:nth-child(4), .bar:nth-child(5) {
  background: rgba(96,165,250,0.7);
}

.bar:last-child {
  background: #2563eb;
  box-shadow: 0 0 12px rgba(37,99,235,0.5);
}

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

.app-invoice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 14px;
}

.app-invoice-name {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.app-invoice-amount {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.app-invoice-status {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 100px;
  font-weight: 600;
}

.status-paid   { background: rgba(52,211,153,0.15); color: #34d399; }
.status-open   { background: rgba(251,191,36,0.15);  color: #fbbf24; }
.status-sent   { background: rgba(96,165,250,0.15);  color: #60a5fa; }

/* ================================================================
   STATS BAR
   ================================================================ */

.stats-bar {
  background: #0f1629;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 40px;
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-box h3 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.04em;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.stat-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-weight: 400;
}

/* ================================================================
   TRUST LOGOS BAR
   ================================================================ */

.trust-bar {
  background: #f8fafc;
  padding: 48px 40px;
  border-bottom: 1px solid #e2e8f0;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-bar-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.trust-badge-item:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37,99,235,0.12);
}

.trust-badge-item .badge-icon-check {
  color: #059669;
  font-size: 16px;
  font-weight: 700;
}

/* ================================================================
   FEATURES SPLIT SECTIONS
   ================================================================ */

.features-section {
  background: #ffffff;
  padding: 0;
}

.features-intro {
  padding: 100px 40px 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.section-sub {
  font-size: 19px;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature split rows */
.feature-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-split.reversed {
  direction: rtl;
}

.feature-split.reversed > * {
  direction: ltr;
}

/* Feature photo side */
.feature-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
  aspect-ratio: 4/3;
}

.feature-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.feature-photo-wrap:hover img {
  transform: scale(1.03);
}

/* Color overlay tint on feature photos */
.feature-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.feature-photo-wrap.tint-blue::after   { background: linear-gradient(135deg, #1e40af, transparent); }
.feature-photo-wrap.tint-green::after  { background: linear-gradient(135deg, #065f46, transparent); }
.feature-photo-wrap.tint-purple::after { background: linear-gradient(135deg, #4c1d95, transparent); }

/* Feature label chip on photo */
.feature-photo-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.feature-photo-chip .chip-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Feature text side */
.feature-text {}

.feature-number {
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-h3 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.feature-desc {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 32px;
}

.feature-bullets {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}

.bullet-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.feature-link:hover {
  gap: 10px;
}

/* Separator between features */
.feature-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0 30%, #e2e8f0 70%, transparent);
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */

.testimonials-section {
  background: #f8fafc;
  padding: 100px 40px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: #f59e0b;
  font-size: 16px;
}

.testimonial-quote {
  font-size: 16px;
  color: #334155;
  line-height: 1.7;
  margin: 0 0 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e2e8f0;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 3px;
}

.testimonial-role {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

/* ================================================================
   PRICING
   ================================================================ */

.pricing-section {
  background: #ffffff;
  padding: 100px 40px;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

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

/* 2-column variant (landing page uses only 2 real plans) */
.pricing-grid.pricing-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}

.pricing-card.featured {
  border-color: #2563eb;
  background: #f0f6ff;
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 56px rgba(37,99,235,0.22);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 16px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.pricing-plan-name.featured-label {
  color: #2563eb;
}

.pricing-amount {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.04em;
  margin: 0 0 4px;
  line-height: 1;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.pricing-amount span {
  font-size: 18px;
  font-weight: 500;
  color: #64748b;
  letter-spacing: 0;
}

.pricing-period {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 28px;
}

.pricing-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-features-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.pricing-check {
  flex-shrink: 0;
  color: #059669;
  font-weight: 800;
  font-size: 14px;
  margin-top: 1px;
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.pricing-btn.btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

.pricing-btn.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}

.pricing-btn.btn-outline {
  border: 1.5px solid #cbd5e1;
  color: #334155;
  background: transparent;
}

.pricing-btn.btn-outline:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #94a3b8;
}

/* ================================================================
   CTA SECTION
   ================================================================ */

.cta-photo-section {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
  background: #0a0f1e;
}

.cta-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&q=75&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.22;
  filter: saturate(0.8) brightness(0.9);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.88) 0%, rgba(30,58,138,0.65) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0 0 44px;
}

.cta-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #1e40af;
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
  letter-spacing: -0.01em;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,255,255,0.28);
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.cta-btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.cta-trust {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ================================================================
   FOOTER
   ================================================================ */

.landing-footer {
  background: #080d1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 240px;
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-mini-badge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 4px 10px;
  border-radius: 6px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

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

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 100px 32px 80px;
  }

  .hero-preview {
    display: none;
  }

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

  .feature-split {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 32px;
  }

  .feature-split.reversed {
    direction: ltr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-desktop-only {
    display: none;
  }

  .landing-nav {
    padding: 0 20px;
  }

  .hero-inner {
    padding: 88px 20px 64px;
  }

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

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-box h3 {
    font-size: 32px;
  }

  .trust-bar {
    padding: 36px 20px;
  }

  .features-intro {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-split,
  .testimonials-section,
  .pricing-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-photo-section {
    padding: 80px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .landing-footer {
    padding: 48px 20px 24px;
  }

  .testimonials-section {
    padding: 72px 20px;
  }
}

@media (max-width: 480px) {
  .stats-bar-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-tags {
    gap: 6px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .pricing-grid {
    max-width: 100%;
  }

  .cta-btn-row {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn-primary,
  .cta-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Navigation scroll effect */
@media (prefers-reduced-motion: no-preference) {
  .feature-photo-wrap img {
    transition: transform 6s ease;
  }
}
