/* ==========================================================================
   PREMIUM UPGRADE LAYER — premium.css
   Additive enhancements on top of style.css. Load after style.css.
   Version: 2.0.0
   ========================================================================== */

/* ==========================================================================
   1. PERFORMANCE — GPU COMPOSITOR HINTS
   ========================================================================== */

/* ==========================================================================
   1. ENHANCED DESIGN TOKENS
   ========================================================================== */
:root {
  /* Refined easing curves (Stripe / Apple style) */
  --ease-out-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart:  cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-circ:cubic-bezier(0.85, 0, 0.15, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Gradient angle variants */
  --gradient-h:     linear-gradient(90deg, #6366F1, #EC4899);
  --gradient-v:     linear-gradient(180deg, #6366F1, #EC4899);

  /* Refined shadows — layered for depth */
  --shadow-card:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.06),
    0 12px 32px rgba(0,0,0,0.08);
  --shadow-card-hover:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.10),
    0 24px 56px rgba(0,0,0,0.14);
  --shadow-primary-soft:
    0 4px 14px rgba(99,102,241,0.2),
    0 12px 40px rgba(99,102,241,0.3);
  --shadow-glow:
    0 0 0 1px rgba(99,102,241,0.2),
    0 0 20px rgba(99,102,241,0.15),
    0 0 60px rgba(99,102,241,0.08);

  /* Noise overlay for texture */
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ==========================================================================
   2. PERFORMANCE — GPU HINTS
   ========================================================================== */

/* Promote frequently-animated elements to their own compositor layer */
.hero-blob,
.hero-float-card,
.navbar,
.modal-overlay,
.modal-content,
.back-to-top,
.reading-progress {
  will-change: transform, opacity;
}

/* Pause expensive blob animation when tab not visible */
@media (prefers-reduced-motion: reduce) {
  .hero-blob,
  .hero-float-card,
  .logos-track-inner,
  .play-btn {
    animation: none;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* Pause animation when document is hidden (tab switch) */
.animation-paused { animation-play-state: paused; }

/* ==========================================================================
   3. FOCUS RINGS — ACCESSIBLE, BRANDED
   ========================================================================== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.35);
}

/* ==========================================================================
   4. SCROLL BEHAVIOUR
   ========================================================================== */
/* style.css already sets html { scroll-behavior: auto } */

/* ==========================================================================
   5. BODY TRANSITION
   ========================================================================== */
/* style.css handles body transition */

/* ==========================================================================
   6. NAVBAR — LOGO HOVER ONLY (scrolled state handled in style.css)
   ========================================================================== */
.logo-mark {
  transition: transform 400ms cubic-bezier(0.34,1.56,0.64,1);
}
.navbar-logo:hover .logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

/* Nav underline slides from center — style.css already sets left:50% / translateX(-50%) */
.nav-link::after {
  transition: width 300ms cubic-bezier(0.25,1,0.5,1);
}

/* ==========================================================================
   7. BUTTONS — PREMIUM INTERACTIONS
   ========================================================================== */

/* Remove old before-pseudo shine (replaced by ripple) */
.btn::before { display: none; }

/* Ripple container */
.btn { overflow: hidden; }

/* Ripple element injected by JS */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleExpand 600ms var(--ease-out-expo) forwards;
  pointer-events: none;
}

@keyframes rippleExpand {
  to { transform: scale(4); opacity: 0; }
}

/* Primary button — gradient shift on hover */
.btn-primary {
  background-size: 200% 100%;
  background-image: linear-gradient(
    135deg,
    #6366F1 0%,
    #EC4899 50%,
    #6366F1 100%
  );
  background-position: 0% 0%;
  transition:
    background-position 400ms var(--ease-out-quart),
    transform 200ms var(--ease-spring),
    box-shadow 300ms var(--ease-out-quart);
}

.btn-primary:hover {
  background-position: 100% 0%;
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary-soft);
}

.btn-primary:active {
  transform: translateY(-1px);
}

/* Outline button — fill slide from left */
.btn-outline {
  background: linear-gradient(90deg, var(--primary) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: 100% 0%;
  transition:
    background-position 300ms var(--ease-out-quart),
    color 300ms ease,
    transform 200ms var(--ease-spring),
    box-shadow 300ms ease;
}

.btn-outline:hover {
  background-position: 0% 0%;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-soft);
}

/* Ghost button — shimmer effect */
.btn-ghost {
  position: relative;
  overflow: hidden;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  transform: skewX(-15deg);
  transition: left 600ms var(--ease-out-expo);
}

.btn-ghost:hover::after {
  left: 125%;
}

/* Button loading state */
.btn.loading {
  pointer-events: none;
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 600ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   8. HERO SECTION — ENHANCED
   ========================================================================== */

/* Hero grid — increase gap for better breathing room */
.hero-grid {
  gap: var(--space-20);
}

/* Blobs — use mix-blend-mode for richer integration */
.hero-blob {
  mix-blend-mode: multiply;
}

[data-theme="dark"] .hero-blob {
  mix-blend-mode: screen;
  opacity: 0.08;
}

/* Hero image frame — premium glow border */
.hero-image-frame {
  border: 1.5px solid rgba(99,102,241,0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    0 0 0 1px rgba(99,102,241,0.15),
    0 40px 80px rgba(99,102,241,0.15),
    0 80px 160px rgba(0,0,0,0.2);
  transition: box-shadow 400ms var(--ease-out-quart);
}

.hero-image-frame:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 0 0 1px rgba(99,102,241,0.25),
    0 40px 80px rgba(99,102,241,0.25),
    0 80px 160px rgba(0,0,0,0.3);
}

/* Float cards — layered shadow */
.hero-float-card {
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-expo);
}

.hero-float-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

/* Override float animation to be smoother */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* Hero badge — animated border */
.hero-badge {
  position: relative;
  animation: fadeInUp 0.7s var(--ease-out-expo) both;
}

@keyframes badgeBorderSpin {
  to { transform: rotate(360deg); }
}

/* Staggered hero content entrance */
.hero-badge       { animation-delay: 0ms; }
.hero-title       { animation-delay: 80ms; animation-duration: 0.8s; }
.hero-desc        { animation-delay: 160ms; }
.hero-actions     { animation-delay: 240ms; }
.hero-social-proof{ animation-delay: 320ms; }
.hero-visual      { animation-delay: 80ms; animation-duration: 0.9s; }

/* Badge pulse dot */
.badge-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.5); transform: scale(1); }
  50%       { box-shadow: 0 0 0 6px rgba(99,102,241,0); transform: scale(1.2); }
}

/* ==========================================================================
   9. SECTION HEADERS — TIGHTER VISUAL RHYTHM
   ========================================================================== */
.section-header {
  margin-bottom: calc(var(--space-16) * 0.85);
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.section-tag::before {
  width: 20px;
  height: 2px;
}

/* ==========================================================================
   10. SERVICE CARDS — PREMIUM LIFT
   ========================================================================== */
.service-card {
  box-shadow: var(--shadow-card);
  transition:
    transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-expo),
    border-color 300ms ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}

/* Icon — scale on card hover */
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-3deg);
}

.service-icon {
  transition:
    transform 400ms var(--ease-spring),
    background 300ms ease;
}

/* Featured card — inner highlight */
.service-card.featured {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 8px 32px rgba(99,102,241,0.4),
    0 24px 64px rgba(99,102,241,0.2);
}

/* ==========================================================================
   11. BLOG CARDS — HOVER REFINEMENT
   ========================================================================== */
.blog-card {
  box-shadow: var(--shadow-card);
  transition:
    transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-expo),
    border-color 300ms ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

/* Read more arrow — slides right */
.blog-read-more {
  position: relative;
  padding-right: 1.25rem;
  transition: padding-right 300ms var(--ease-out-expo);
}

.blog-read-more::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transition: width 300ms var(--ease-out-expo);
}

.blog-card:hover .blog-read-more {
  padding-right: 1.75rem;
}

.blog-card:hover .blog-read-more::after {
  width: 22px;
}

/* ==========================================================================
   12. TESTIMONIAL SLIDER — PREMIUM
   ========================================================================== */
.testimonial-track {
  transition: transform 600ms var(--ease-out-expo);
}

.testimonial-inner {
  box-shadow: var(--shadow-card);
  transition:
    box-shadow 400ms var(--ease-out-expo),
    transform 400ms var(--ease-out-expo);
}

/* Subtle tilt on hover */
.testimonial-inner:hover {
  box-shadow: var(--shadow-card-hover);
}

/* Refined avatar ring */
.testimonial-avatar-placeholder {
  box-shadow:
    0 0 0 3px var(--bg-surface),
    0 0 0 5px rgba(99,102,241,0.3);
}

/* ==========================================================================
   13. STAT ITEMS — ANIMATED HOVER
   ========================================================================== */
.stat-item {
  transition:
    background 300ms var(--ease-out-quart),
    transform 300ms var(--ease-spring);
}

.stat-item:hover {
  background: var(--gradient-soft);
  transform: scaleY(1.02);
}

.stat-number {
  transition: letter-spacing 300ms var(--ease-out-quart);
}

.stat-item:hover .stat-number {
  letter-spacing: -0.01em;
}

/* ==========================================================================
   14. LEAD MAGNET — DEPTH
   ========================================================================== */
.lead-magnet {
  position: relative;
  isolation: isolate;
}

/* Noise overlay for premium texture */
.lead-magnet::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
}

.lead-magnet-content {
  z-index: 3;
}

/* Email input focus — glow effect */
.email-input {
  transition:
    border-color 250ms var(--ease-out-quart),
    box-shadow 250ms var(--ease-out-quart),
    background 250ms ease;
}

.email-input:focus {
  border-color: white;
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.2),
    0 4px 12px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.2);
}

/* ==========================================================================
   15. FORM CONTROLS — POLISHED INTERACTIONS
   ========================================================================== */
.form-control {
  transition:
    border-color 200ms var(--ease-out-quart),
    box-shadow 200ms var(--ease-out-quart),
    background-color 200ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow:
    0 0 0 3px rgba(99,102,241,0.12),
    0 2px 8px rgba(99,102,241,0.08);
  background: var(--bg-surface);
}

/* Valid state */
.form-control.valid {
  border-color: #10B981;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* Error state */
.form-control.error {
  border-color: #EF4444;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23EF4444' stroke-width='2.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

/* Label — float animation on focus */
.form-group {
  position: relative;
}

.form-error {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 250ms var(--ease-out-quart),
    opacity 250ms ease;
  opacity: 0;
}

.form-error.show {
  max-height: 60px;
  opacity: 1;
}

/* ==========================================================================
   16. SCROLL REVEAL — REFINED
   ========================================================================== */
.reveal,
.reveal-left,
.reveal-right {
  transition-duration: 0.75s;
  transition-timing-function: var(--ease-out-expo);
  transition-property: opacity, transform;
}

/* Stagger delays within .stagger containers */
.stagger > *:nth-child(1) { transition-delay: 0ms;   }
.stagger > *:nth-child(2) { transition-delay: 80ms;  }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }

/* ==========================================================================
   17. CARD BASE — UNIFIED SHADOW SYSTEM
   ========================================================================== */
.card,
.pricing-card,
.achievement-card,
.contact-info-item,
.contact-form,
.sidebar-widget {
  box-shadow: var(--shadow-card);
  transition:
    transform 400ms var(--ease-out-expo),
    box-shadow 400ms var(--ease-out-expo),
    border-color 300ms ease;
}

.card:hover,
.pricing-card:hover,
.achievement-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* ==========================================================================
   18. CTA SECTION — DEPTH IMPROVEMENT
   ========================================================================== */
.cta-section {
  background: #060D1B;
}

.cta-bg {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(236,72,153,0.15) 0%, transparent 60%);
}

/* Grid of dots behind CTA */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* CTA heading size boost */
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--space-5);
}

/* CTA paragraph — explicit white */
.cta-content > p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
}

/* ==========================================================================
   19. FOOTER LINK — TRANSLATE ANIMATION
   ========================================================================== */
.footer-link {
  transition:
    color 200ms ease,
    transform 200ms var(--ease-spring);
}

.footer-link:hover {
  transform: translateX(6px);
}

/* ==========================================================================
   20. BACK TO TOP — IMPROVED
   ========================================================================== */
.back-to-top {
  display: flex;
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  transition:
    opacity 300ms ease,
    transform 300ms var(--ease-spring),
    box-shadow 300ms ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary-soft);
}

/* ==========================================================================
   21. VIDEO CARD — CURSOR + SCALE
   ========================================================================== */
.video-card {
  cursor: none;
  transition: box-shadow 400ms var(--ease-out-expo);
}

.video-card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* Custom cursor play — injected by JS */
.video-cursor {
  position: fixed;
  width: 72px;
  height: 72px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9990;
  font-size: 1.5rem;
  color: var(--primary);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 250ms var(--ease-spring);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  font-weight: 700;
}

.video-cursor.active {
  transform: translate(-50%, -50%) scale(1);
}

/* ==========================================================================
   22. THEME TOGGLE — PILL STYLE
   ========================================================================== */
.theme-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  padding: 0;
  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
  overflow: visible;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
  transform: none;
}

/* Thumb indicator rendered via JS — class .toggle-thumb on a child span */
.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
  transition: transform 350ms var(--ease-spring);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}

[data-theme="dark"] .toggle-thumb {
  transform: translateX(24px);
}

/* Hide emoji text from buttons — display only in toggle-thumb */
.theme-toggle > .toggle-icon { display: none; }

/* ==========================================================================
   23. MOBILE MENU — handled fully in style.css now
   ========================================================================== */
/* No overrides needed — style.css uses CSS transitions (not display:none) */

/* ==========================================================================
   24. PRICING CARD — SHIMMER ON POPULAR
   ========================================================================== */
.pricing-card.popular {
  position: relative;
  overflow: hidden;
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99,102,241,0.06),
    transparent
  );
  transform: skewX(-15deg);
  animation: shimmerCard 3s ease-in-out infinite;
}

@keyframes shimmerCard {
  0%   { left: -75%; }
  60%, 100% { left: 125%; }
}

/* ==========================================================================
   25. READING PROGRESS BAR
   ========================================================================== */
.reading-progress {
  height: 2px;
  background: var(--gradient-h);
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  transition: width 80ms linear;
  box-shadow: 0 0 8px rgba(99,102,241,0.5);
}

/* ==========================================================================
   26. PARALLAX — SUBTLE HERO PARALLAX
   ========================================================================== */
.hero-parallax-layer {
  will-change: transform;
  /* transform applied via JS */
}

/* ==========================================================================
   27. SKELETON LOADING STATES
   ========================================================================== */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-elevated) 25%,
    var(--bg-surface) 50%,
    var(--bg-elevated) 75%
  );
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==========================================================================
   28. TRAY / NOTIFICATION TOAST
   ========================================================================== */
.toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-2);
  color: white;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-xl);
  z-index: 9998;
  transition: transform 400ms var(--ease-spring);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid rgba(255,255,255,0.1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ==========================================================================
   29. IMAGE LAZY LOAD — FADE IN
   ========================================================================== */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 400ms ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* ==========================================================================
   30. FOOTER LINK — no transition flicker
   ========================================================================== */
.footer-link {
  display: inline-flex; /* fix alignment */
}

/* ==========================================================================
   31. RESPONSIVE REFINEMENTS
   ========================================================================== */
@media (max-width: 768px) {
  .hero-grid {
    gap: var(--space-12);
  }

  /* Stack CTA actions on mobile */
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    justify-content: center;
    text-align: center;
  }

  /* Enlarge tap targets */
  .slider-btn,
  .theme-toggle,
  .back-to-top {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .email-form {
    flex-direction: column;
  }
}
