/* ============================================
   TOPSAIL AREA LOCAL BUSINESSES
   Coastal Editorial Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --midnight: #0A1628;
  --deep-ocean: #1B4965;
  --coastal-blue: #5FA8D3;
  --seafoam: #4ECDC4;
  --sand: #E8DCC8;
  --warm-white: #F7F4EF;
  --shell: #FFF9F2;
  --coral: #E85D4A;
  --coral-hover: #D14836;
  --driftwood: #8B7355;
  --text-dark: #1A2332;
  --text-body: #3D4F5F;
  --text-light: #6B7C8F;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(10,22,40,0.06);
  --shadow-md: 0 4px 20px rgba(10,22,40,0.08);
  --shadow-lg: 0 12px 40px rgba(10,22,40,0.12);
  --shadow-xl: 0 20px 60px rgba(10,22,40,0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--shell);
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { max-width: 65ch; }
.text-light { color: var(--text-light); }

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

.section {
  padding: var(--space-xl) 0;
}

/* --- Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 249, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--deep-ocean), var(--seafoam));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.03em;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

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

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

.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--coral) !important;
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--coral-hover) !important;
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--midnight) 0%, var(--deep-ocean) 50%, #1a6b6a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(78, 205, 196, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(95, 168, 211, 0.1), transparent);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-2xl) var(--space-md);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--seafoam);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--seafoam);
  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(1.5); }
}

.hero h1 {
  color: white;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--seafoam);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--midnight);
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,0.15);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
}

.hero-phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--midnight);
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f1923 0%, #1a3040 50%, #0f1923 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.phone-play-btn {
  width: 64px;
  height: 64px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(232, 93, 74, 0.4);
  animation: play-pulse 2.5s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(232, 93, 74, 0.4); }
  50% { box-shadow: 0 8px 50px rgba(232, 93, 74, 0.6); }
}

.phone-play-btn svg { width: 24px; height: 24px; fill: white; margin-left: 3px; }

.phone-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.phone-subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.phone-stars {
  display: flex;
  gap: 3px;
  margin-top: 1rem;
}

.phone-stars svg { width: 16px; height: 16px; fill: #F4B942; }

/* Floating cards around phone */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-views {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.hero-float-card.card-rank {
  bottom: 20%;
  right: -5%;
  animation-delay: 1.5s;
}

.hero-float-card .card-icon {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.hero-float-card .card-number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--seafoam);
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--coral);
  color: white;
  box-shadow: 0 4px 20px rgba(232, 93, 74, 0.3);
}

.btn-primary:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 93, 74, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.05);
}

.btn-dark {
  background: var(--midnight);
  color: white;
}

.btn-dark:hover {
  background: var(--deep-ocean);
  transform: translateY(-2px);
}

/* ============================================
   WAVE DIVIDER
   ============================================ */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: var(--space-xs);
}

.section-header p {
  margin: var(--space-sm) auto 0;
  font-size: 1.1rem;
  color: var(--text-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  counter-reset: step;
}

.step-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: var(--transition);
  border: 1px solid rgba(139, 115, 85, 0.08);
  counter-increment: step;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--sand);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.step-card h3 { margin-bottom: 0.75rem; }

.step-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ============================================
   NICHES / SERVICES
   ============================================ */
.niches {
  background: var(--shell);
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-sm);
}

.niche-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(139, 115, 85, 0.06);
  transition: var(--transition);
  cursor: pointer;
}

.niche-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--seafoam);
}

.niche-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(95,168,211,0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.niche-card h4 {
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.niche-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   SHOWCASE / FEATURED VIDEOS
   ============================================ */
.showcase {
  background: var(--midnight);
  color: white;
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 80% 20%, rgba(78,205,196,0.08), transparent);
}

.showcase .section-header { position: relative; z-index: 2; }
.showcase .section-eyebrow { color: var(--seafoam); }
.showcase h2 { color: white; }
.showcase .section-header p { color: rgba(255,255,255,0.5); }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

.showcase-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.showcase-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(78,205,196,0.3);
  transform: translateY(-4px);
}

.showcase-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--deep-ocean), #1a3a4a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-card-thumb .play-overlay {
  width: 56px;
  height: 56px;
  background: rgba(232, 93, 74, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.showcase-card:hover .play-overlay {
  transform: scale(1.1);
  background: var(--coral);
}

.play-overlay svg { width: 20px; height: 20px; fill: white; margin-left: 2px; }

.showcase-card-body {
  padding: 1.25rem 1.5rem;
}

.showcase-card-niche {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 0.4rem;
}

.showcase-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.showcase-card-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   PRICING
   ============================================ */
.pricing { background: var(--warm-white); }

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

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(139, 115, 85, 0.08);
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--seafoam);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--seafoam);
  color: var(--midnight);
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-md);
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.06);
}

.pricing-features li::before {
  content: '✓';
  color: var(--seafoam);
  font-weight: 700;
  font-size: 0.85rem;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--shell);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid rgba(139, 115, 85, 0.06);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial-stars svg { width: 18px; height: 18px; fill: #F4B942; }

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--coastal-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--deep-ocean) 0%, #1a6b6a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(78,205,196,0.1), transparent);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  margin: 0 auto var(--space-md);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact {
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info h2 { margin-bottom: var(--space-sm); }

.contact-info > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(78,205,196,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 115, 85, 0.06);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(139, 115, 85, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--seafoam);
  box-shadow: 0 0 0 3px rgba(78,205,196,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.contact-form-card .btn { width: 100%; justify-content: center; margin-top: var(--space-xs); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.5);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: var(--space-sm);
  max-width: 320px;
}

.footer h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ============================================
   VIDEO PAGE (showcase/template)
   ============================================ */
.video-page-hero {
  background: linear-gradient(165deg, var(--midnight), var(--deep-ocean));
  padding: 8rem 0 var(--space-lg);
}

.video-page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.video-page-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
}
.video-page-hero .breadcrumb a { color: var(--seafoam); }

.video-embed-wrapper {
  max-width: 800px;
  margin: calc(-1 * var(--space-lg)) auto var(--space-lg);
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.video-embed-wrapper .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-embed-wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
}

.business-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(139, 115, 85, 0.06);
  margin-bottom: var(--space-md);
}

.business-info-card h3 { margin-bottom: var(--space-sm); }

.business-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.06);
  font-size: 0.95rem;
}

.business-detail:last-child { border-bottom: none; }
.business-detail-icon { font-size: 1.1rem; min-width: 24px; text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: var(--space-md); }
  .hero-float-card.card-views { left: 5%; }
  .hero-float-card.card-rank { right: 5%; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--shell);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  }

  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero-phone-mockup {
    width: 220px;
    height: 440px;
    transform: none;
  }

  .hero-float-card { display: none; }
}
