/* ═══════════════════════════════════════════
   TROPICEATZ — Tropical Luxe Design System
   ═══════════════════════════════════════════ */

:root {
  /* Tropical palette */
  --green-deep: #065F46;
  --green: #0D7C3D;
  --green-light: #34D399;
  --green-glow: rgba(52, 211, 153, 0.25);
  --teal: #0891B2;
  --teal-light: #22D3EE;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --coral: #F97316;
  --sand: #FEF3C7;

  /* Dark surfaces */
  --bg: #060D1B;
  --bg-elevated: #0C1A2E;
  --bg-card: #0F1F36;
  --bg-card-hover: #142742;
  --surface: #1A2D4A;
  --border: rgba(52, 211, 153, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Text */
  --text: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0D7C3D, #0891B2);
  --gradient-warm: linear-gradient(135deg, #F59E0B, #F97316);
  --gradient-cool: linear-gradient(135deg, #0891B2, #34D399);
  --gradient-hero: radial-gradient(ellipse at 20% 50%, rgba(13, 124, 61, 0.2) 0%, transparent 50%),
                   radial-gradient(ellipse at 80% 20%, rgba(8, 145, 178, 0.15) 0%, transparent 50%),
                   radial-gradient(ellipse at 50% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);

  /* Layout */
  --container-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 180ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══ Grain Overlay ═══ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ═══ Decorative Blobs ═══ */
.deco {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}
.deco-1 {
  width: 600px; height: 600px;
  background: rgba(13, 124, 61, 0.08);
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.deco-2 {
  width: 500px; height: 500px;
  background: rgba(8, 145, 178, 0.06);
  top: 40%; right: -150px;
  animation-delay: -7s;
}
.deco-3 {
  width: 400px; height: 400px;
  background: rgba(245, 158, 11, 0.04);
  bottom: 10%; left: 10%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* ═══ Header ═══ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(6, 13, 27, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 var(--border-subtle), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  width: 84px;
  height: 84px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 2px 12px rgba(13, 124, 61, 0.3);
}

.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav a.active {
  color: var(--green-light);
}

.cta-link {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}

.cta-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-fast) ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 27, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}
.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.mobile-nav-content a {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}
.mobile-nav-content a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 200px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(13, 124, 61, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: var(--green-light);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.title-line {
  display: block;
}

.title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.lead {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform var(--duration-fast) var(--ease-spring),
              box-shadow var(--duration-fast) ease,
              background var(--duration-fast) ease;
  cursor: pointer;
  border: none;
  position: relative;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13, 124, 61, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13, 124, 61, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* ═══ Store Badges ═══ */
.store-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  color: var(--text);
  transition: background var(--duration-fast) ease, border-color var(--duration-fast) ease, transform var(--duration-fast) var(--ease-spring);
}
.store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.store-btn-soon {
  opacity: 0.55;
  cursor: default;
}
.store-btn-soon:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-subtle);
}
.store-btn svg { opacity: 0.9; }
.store-text { display: flex; flex-direction: column; }
.store-text small { font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); line-height: 1.2; }
.store-text span { font-size: 14px; font-weight: 600; }

/* Coming Soon store badge */
.store-btn-soon {
  opacity: 0.6;
  cursor: default;
  border-style: dashed;
}
.store-btn-soon:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ═══ Phone Mockup ═══ */
.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 124, 61, 0.2), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.phone-mockup {
  width: 270px;
  height: 540px;
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--bg);
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.screenshot-carousel {
  width: 90%;
  height: 90%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.carousel-slide.active { opacity: 1; }

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--duration-fast) ease, transform var(--duration-fast) var(--ease-spring);
}
.dot.active {
  background: var(--green-light);
  transform: scale(1.3);
}

/* ═══ Trusted Strip ═══ */
.trusted-strip {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(15, 31, 54, 0.5);
}

.trusted-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trusted-label {
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

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

.stat { text-align: center; }
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-light);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ═══ Section Common ═══ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(13, 124, 61, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.15);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cool {
  background: var(--gradient-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ Features ═══ */
.features {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) ease,
              box-shadow var(--duration-normal) ease,
              background var(--duration-normal) ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--border);
  background: var(--bg-card-hover);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(13, 124, 61, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon {
  font-size: 22px;
  line-height: 1;
}

.feature h3 {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ═══ Screenshots ═══ */
.screenshots-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.screenshots-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }

.screenshots-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.screenshot-card {
  width: 200px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) ease;
}
.screenshot-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.screenshot-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.screenshot-card span {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

/* ═══ Split Section ═══ */
.split-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

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

.split-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) ease;
}
.split-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.split-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.split-customers .split-card-bg {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(13, 124, 61, 0.15)),
              var(--bg-card);
}
.split-restaurants .split-card-bg {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(13, 124, 61, 0.1)),
              var(--bg-card);
}

.split-card-content {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.split-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.split-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.split-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.split-list li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
}
.split-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* ═══ Testimonials ═══ */
.testimonials {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

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

blockquote {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 28px;
  border-radius: var(--radius-lg);
  margin: 0;
  transition: transform var(--duration-normal) var(--ease-out), border-color var(--duration-normal) ease;
  position: relative;
}
blockquote:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}

.quote-mark {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

blockquote p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

blockquote footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13, 124, 61, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

blockquote footer strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

blockquote footer span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══ CTA Section ═══ */
.cta-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 64px 40px;
  text-align: center;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(13, 124, 61, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(8, 145, 178, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══ Footer ═══ */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 24px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}
.footer-brand strong {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: block;
}
.muted {
  color: var(--text-muted);
  font-size: 13px;
}

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

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  padding: 4px 0;
  transition: color var(--duration-fast) ease;
}
.footer-col a:hover { color: var(--text); }

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

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background var(--duration-fast) ease, color var(--duration-fast) ease, border-color var(--duration-fast) ease;
}
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-email {
  color: var(--green-light);
  font-size: 14px;
  font-weight: 500;
  transition: opacity var(--duration-fast) ease;
}
.footer-email:hover { opacity: 0.8; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dev-label {
  font-size: 12px;
  color: var(--text-muted);
}

.dev-brand img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity var(--duration-fast) ease, filter var(--duration-fast) ease;
}
.dev-brand:hover img { opacity: 0.85; }

/* ═══ Scroll Reveal ═══ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

/* ═══ Responsive ═══ */
@media (min-width: 800px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .hero-content {
    text-align: left;
    flex: 1;
  }
  .hero-ctas { justify-content: flex-start; }
  .store-badges { justify-content: flex-start; }
  .hero-media { flex: 0 0 auto; }
}

@media (max-width: 799px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trusted-inner { flex-direction: column; gap: 24px; }
  .trusted-stats { gap: 20px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-card { padding: 40px 24px; }
  .phone-mockup { width: 240px; height: 480px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 80px; }
  .title { font-size: 36px; }
  .stat-number { font-size: 24px; }
  .store-badges { flex-direction: column; align-items: stretch; }
}

/* ═══ Lightbox ═══ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 27, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: zoom-out;
  animation: fadeIn 0.3s var(--ease-out);
}
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ═══ Subpage Styles ═══ */
.page-hero {
  padding: 120px 0 60px;
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-features {
  padding: 40px 0 80px;
  position: relative;
  z-index: 1;
}
.page-features h2 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-features ul {
  list-style: none;
  padding: 0;
}
.page-features ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text-secondary);
  font-size: 15px;
  border-bottom: 1px solid var(--border-subtle);
}
.page-features ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

.page-screenshots {
  padding: 40px 0 80px;
  position: relative;
  z-index: 1;
}
.page-screenshots h2 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.page-shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) ease;
  cursor: zoom-in;
}
.page-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.page-shot img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.page-shot-text {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  padding: 20px;
}

/* ═══ Contact Form ═══ */
.contact-section {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info .section-tag {
  margin-bottom: 0;
}

.contact-details {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}
.contact-detail-item svg {
  color: var(--green-light);
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 14px;
  transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
  outline: none;
  resize: vertical;
}

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

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 124, 61, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.form-status {
  font-size: 14px;
  text-align: center;
  min-height: 20px;
  transition: opacity var(--duration-fast) ease;
}

.form-status.success {
  color: var(--green-light);
}

.form-status.error {
  color: #F87171;
}

.form-status.loading {
  color: var(--text-muted);
}

/* Button states */
.btn-primary.sending {
  opacity: 0.7;
  pointer-events: none;
}

.btn-primary.sent {
  background: var(--green) !important;
}

.btn-primary.error-state {
  background: #DC2626 !important;
}

@media (max-width: 799px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
