/* ===================================================
   SALVATORE RINCIONE – APRIL 50% OFF LANDING PAGE
   Style Guide: Navy · Cyan · Glassmorphism · Premium
   =================================================== */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --navy:        #0f172a;
  --navy-mid:    #1e293b;
  --navy-light:  #334155;
  --slate:       #475569;
  --slate-light: #94a3b8;
  --cyan:        #22d3ee;
  --cyan-dark:   #0891b2;
  --cyan-glow:   rgba(34, 211, 238, 0.15);
  --cyan-glow-s: rgba(34, 211, 238, 0.08);
  --amber:       #f59e0b;
  --white:       #ffffff;
  --white-80:    rgba(255,255,255,0.8);
  --white-60:    rgba(255,255,255,0.6);
  --white-20:    rgba(255,255,255,0.2);
  --white-10:    rgba(255,255,255,0.1);
  --white-05:    rgba(255,255,255,0.05);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  --shadow-glow: 0 0 40px rgba(34,211,238,0.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.3);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head: 'Outfit', 'Inter', sans-serif;

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);

  --header-h: 72px;
  --container: 1200px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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

/* ---- TYPOGRAPHY ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white-10);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 24px rgba(34,211,238,0.35);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(34,211,238,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--white-10);
  color: var(--white-80);
  border-color: var(--white-20);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: var(--white-20);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { font-size: 0.875rem; padding: 10px 20px; min-height: 40px; }
.btn-lg { font-size: 1.0625rem; padding: 16px 36px; min-height: 56px; }
.btn-full { width: 100%; }

.btn-arrow {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---- GLASS CARD ---- */
.glass-card {
  background: linear-gradient(135deg, rgba(30,41,59,0.8) 0%, rgba(15,23,42,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), var(--shadow-glow);
  border-color: rgba(34,211,238,0.15);
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

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

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--slate-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- FADE-IN ANIMATION ---- */
.fade-in-up {
  animation: fadeInUp 0.7s both;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Intersection-observer driven */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(15,23,42,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-monogram {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(34,211,238,0.3);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--white);
  background: var(--white-05);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu-btn:hover { background: var(--white-05); }
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white-80);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  background: rgba(15,23,42,0.98);
  border-top: 1px solid rgba(255,255,255,0.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition);
}
.mobile-nav.open {
  max-height: 400px;
  display: flex;
}

.mobile-nav-link {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--slate-light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--white); }
.mobile-cta { margin-top: 8px; }

/* ===================================================
   HERO SECTION
   =================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(34,211,238,0.12) 0%, rgba(129,140,248,0.06) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,211,238,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--slate-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--cyan); font-weight: 700; }

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--slate-light);
  flex-wrap: wrap;
  justify-content: center;
}

.proof-icon { flex-shrink: 0; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ===================================================
   STATS STRIP
   =================================================== */
.stats-strip {
  background: rgba(30,41,59,0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-size: 1.25rem;
  color: var(--cyan);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--slate-light);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ===================================================
   PRICING SECTION
   =================================================== */
.pricing-section {
  padding: 120px 0;
}

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

.pricing-card {
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 16px;
}

.plan-icon {
  font-size: 2.25rem;
  margin-bottom: 16px;
  display: block;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.plan-tagline {
  font-size: 0.9rem;
  color: var(--slate-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.plan-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.price-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-old {
  font-size: 1.125rem;
  color: var(--slate);
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.plan-plus {
  font-size: 1.5rem;
  color: var(--slate-light);
}

.price-badge {
  background: linear-gradient(135deg, rgba(34,211,238,0.2) 0%, rgba(34,211,238,0.1) 100%);
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--white-80);
}

.feature-check { flex-shrink: 0; }

/* Featured card */
.featured-card {
  background: linear-gradient(135deg, rgba(34,211,238,0.08) 0%, rgba(15,23,42,0.95) 50%);
  border-color: rgba(34,211,238,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 64px rgba(34,211,238,0.12);
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 80px rgba(34,211,238,0.2);
}

.featured-label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: var(--navy);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(34,211,238,0.4);
}

/* ===================================================
   URGENCY SECTION
   =================================================== */
.urgency-section {
  padding: 80px 0;
}

.urgency-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px;
  flex-wrap: wrap;
}

.urgency-icon {
  font-size: 4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(245,158,11,0.4));
  animation: urgency-pulse 3s ease-in-out infinite;
}

@keyframes urgency-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.urgency-content { flex: 1; min-width: 240px; }

.urgency-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.urgency-description {
  font-size: 1.0625rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.urgency-description strong { color: var(--amber); }

.urgency-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.urgency-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
}

.urgency-tag-icon { font-size: 1rem; }

/* Countdown */
.countdown-block { flex-shrink: 0; }

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  min-width: 72px;
}

.countdown-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--slate-light);
  text-transform: uppercase;
  margin-top: 4px;
}

.countdown-sep {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--cyan);
  opacity: 0.5;
  margin-bottom: 24px;
}

.countdown-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--slate-light);
}

/* ===================================================
   BENEFITS SECTION
   =================================================== */
.benefits-section {
  padding: 120px 0;
}

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

.benefit-card {
  padding: 36px 28px;
}

.benefit-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.benefit-card:hover .benefit-icon-wrap {
  background: rgba(34,211,238,0.15);
  border-color: rgba(34,211,238,0.4);
  transform: scale(1.08);
}

.benefit-icon { display: block; }

.benefit-title {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.benefit-desc {
  font-size: 0.9375rem;
  color: var(--slate-light);
  line-height: 1.7;
}

/* ===================================================
   CONTACT / FINAL CTA SECTION
   =================================================== */
.contact-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-bg-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(34,211,238,0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

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

.contact-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-sub {
  font-size: 1.0625rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-group {
  margin-bottom: 40px;
}

.contact-note {
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--slate-light);
}

.contact-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--slate-light);
  font-weight: 500;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: rgba(10,16,30,0.9);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--slate-light);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--slate-light);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--cyan); }

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white-05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--slate-light);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--cyan-glow);
  border-color: rgba(34,211,238,0.3);
  color: var(--cyan);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 24px;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--slate-light);
  margin-bottom: 6px;
}
.footer-copy a { color: var(--cyan); }
.footer-copy a:hover { text-decoration: underline; }

.footer-legal {
  font-size: 0.75rem;
  color: var(--slate);
}

/* ===================================================
   STICKY CTA BAR
   =================================================== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: rgba(15,23,42,0.97);
  border-top: 1px solid rgba(34,211,238,0.2);
  backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  display: none;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  min-height: 52px;
}

/* ===================================================
   RESPONSIVE — TABLET
   =================================================== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .featured-card { transform: none; order: -1; }
  .featured-card:hover { transform: translateY(-6px); }
  .pricing-card:last-child { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; }

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

  .urgency-card { gap: 28px; }
  .countdown-block { margin: 0 auto; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .logo-text { display: none; }
}

/* ===================================================
   RESPONSIVE — MOBILE
   =================================================== */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .container { padding: 0 16px; }

  .hero-section {
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 100px;
    min-height: auto;
  }

  .hero-heading { font-size: 2.25rem; }
  .hero-cta-group { flex-direction: column; gap: 12px; width: 100%; }
  .hero-cta-group .btn { width: 100%; }

  .stats-inner { gap: 0; }
  .stat-item { padding: 16px 20px; }
  .stat-divider { height: 32px; }

  .pricing-section { padding: 80px 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .featured-card { order: 0; }
  .pricing-card:last-child { grid-column: auto; max-width: none; }

  .pricing-card { padding: 28px 20px; }
  .plan-pricing { flex-direction: row; align-items: baseline; }

  .benefits-section { padding: 80px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-card { padding: 24px 20px; }

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

  .urgency-section { padding: 60px 0; }
  .urgency-card { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .urgency-icon { font-size: 3rem; }

  .countdown-grid { gap: 6px; }
  .countdown-item { padding: 12px 14px; min-width: 62px; }
  .countdown-num { font-size: 1.5rem; }
  .countdown-sep { font-size: 1.25rem; }

  .contact-section { padding: 80px 0 120px; }
  .contact-trust-row { gap: 16px; flex-direction: column; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 16px; }

  .sticky-cta-bar { display: block; }

  .stats-inner { justify-content: flex-start; overflow-x: auto; }
}

/* ===================================================
   SMALL MOBILE
   =================================================== */
@media (max-width: 380px) {
  .hero-heading { font-size: 1.875rem; }
  .stat-item { padding: 12px 14px; }
}
