/* ==========================================================================
   Spicy Studio - Luxury Architectural & Video Production Agency
   Design System & Styling
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  /* Color Palette matching Logo Carbon Fiber Theme */
  --bg-primary: #0b0c10;
  --bg-secondary: #0f1118;
  --bg-card: rgba(16, 20, 29, 0.75);
  --bg-card-hover: rgba(22, 28, 41, 0.88);
  --bg-input: rgba(11, 14, 21, 0.9);
  
  /* Primary Accent: Metallic Deep Blue */
  --accent-blue-deep: #1d4ed8;
  --accent-blue: #2563eb;
  --accent-blue-light: #3b82f6;
  --accent-blue-glow: rgba(37, 99, 235, 0.35);
  --accent-cyan: #38bdf8;
  
  /* Secondary Accent: Brushed Steel / Silver */
  --silver-100: #ffffff;
  --silver-200: #f1f5f9;
  --silver-300: #e2e8f0;
  --silver-400: #cbd5e1;
  --silver-500: #94a3b8;
  --silver-600: #64748b;
  --silver-border: rgba(203, 213, 225, 0.12);
  --silver-border-active: rgba(203, 213, 225, 0.3);
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Typography - Sleek Luxury Geometric Display */
  --font-display: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Glows */
  --glow-blue: 0 0 35px rgba(37, 99, 235, 0.28);
  --glow-blue-lg: 0 0 60px rgba(37, 99, 235, 0.45);
  --glow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-xl: 28px;
  --border-radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Carbon-Fiber & Ambient Mesh Background --- */
.carbon-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #0b0c10;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(45deg, #11141c 25%, transparent 25%), 
    linear-gradient(-45deg, #11141c 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #11141c 75%), 
    linear-gradient(-45deg, transparent 75%, #11141c 75%);
  background-size: 16px 16px, 8px 8px, 8px 8px, 8px 8px, 8px 8px;
  background-position: 0 0, 0 0, 0 4px, 4px -4px, -4px 0px;
  opacity: 0.95;
}

.ambient-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  will-change: transform;
}

.orb-1 {
  top: -10%;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--accent-blue) 0%, rgba(29, 78, 216, 0.1) 70%, transparent 100%);
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-2 {
  top: 40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1e40af 0%, rgba(56, 189, 248, 0.15) 60%, transparent 100%);
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  bottom: -15%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-blue-deep) 0%, rgba(14, 165, 233, 0.1) 70%, transparent 100%);
  animation: floatOrb 20s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.08); }
  100% { transform: translate(-30px, -20px) scale(0.95); }
}

/* Subtle grid overlay for high-tech architectural feel */
.architectural-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 80%);
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* --- Glassmorphic Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 12, 16, 0.75);
  border-bottom: 1px solid var(--silver-border);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(8, 10, 14, 0.92);
  border-bottom-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: opacity var(--transition-fast);
}

.brand-link:hover {
  opacity: 0.9;
}

.brand-logo-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, var(--silver-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-500);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--border-radius-full);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--silver-300);
  letter-spacing: 0.04em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-blue-light);
  box-shadow: 0 0 8px var(--accent-blue);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* --- Primary Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-deep) 100%);
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: var(--border-radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.6);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-primary:hover::before {
  left: 100%;
}

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

/* --- Hero Section --- */
.hero-section {
  padding-top: clamp(2.2rem, 4.5vw, 3.5rem);
  padding-bottom: 1.25rem;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Pure Typography Brand Showcase in Hero */
.hero-text-brand-container {
  margin-bottom: 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-brand-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 550px);
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.55) 0%, rgba(56, 189, 248, 0.2) 50%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  animation: pulseHalo 4s ease-in-out infinite alternate;
}

@keyframes pulseHalo {
  0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-text-brand-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 25%, #93c5fd 65%, var(--silver-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 50px rgba(37, 99, 235, 0.45);
  transition: transform var(--transition-smooth);
}

.hero-text-brand-name:hover {
  transform: scale(1.02);
}

.hero-text-brand-tagline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.6vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* Hero Typography */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 15%, #93c5fd 50%, var(--silver-400) 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subheadline {
  font-size: clamp(0.98rem, 1.8vw, 1.15rem);
  color: var(--silver-400);
  font-weight: 400;
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-subheadline strong {
  color: #ffffff;
  font-weight: 600;
}

/* --- Countdown Timer --- */
.countdown-wrapper {
  margin-bottom: 1.75rem;
  width: 100%;
  max-width: 680px;
}

.countdown-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-bottom: 1.1rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.countdown-card {
  background: rgba(18, 23, 34, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--silver-border);
  border-radius: var(--border-radius-md);
  padding: clamp(0.85rem, 2vw, 1.35rem) 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-card);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue-light), transparent);
  opacity: 0.6;
}

.countdown-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.countdown-value {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.countdown-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-500);
}

/* --- Lead Capture Section --- */
.lead-capture-wrapper {
  width: 100%;
  max-width: 580px;
  margin-bottom: 1.25rem;
  position: relative;
}

.lead-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(14, 18, 27, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: var(--border-radius-full);
  padding: 6px 6px 6px 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(37, 99, 235, 0.15);
  transition: all var(--transition-smooth);
}

.lead-form:focus-within {
  border-color: var(--accent-blue-light);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(37, 99, 235, 0.4);
}

.input-icon {
  color: var(--silver-500);
  display: flex;
  align-items: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.lead-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ffffff;
  width: 100%;
}

.lead-input::placeholder {
  color: var(--silver-500);
}

.lead-btn {
  padding: 0.85rem 1.6rem;
  white-space: nowrap;
}

.form-feedback {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 1.3rem;
  transition: all var(--transition-fast);
}

.form-feedback.success {
  color: #34d399;
}

.form-feedback.error {
  color: #f87171;
}

.privacy-note {
  font-size: 0.78rem;
  color: var(--silver-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* --- Section Dividers & Headers --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--border-radius-full);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Teaser / Mystery Grid --- */
.services-section,
.teaser-section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  position: relative;
}

.services-grid,
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .teaser-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--silver-border);
  border-radius: var(--border-radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: var(--glow-card);
}

/* Gradient border effect on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(37, 99, 235, 0.4), transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 35px rgba(37, 99, 235, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-top {
  margin-bottom: 1.5rem;
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  transition: transform var(--transition-bounce), color var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-deep) 100%);
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--silver-400);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.service-feature-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--border-radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver-300);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Agency Highlights / Value Pillars --- */
.pillars-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  position: relative;
}

.pillars-box {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--border-radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(37, 99, 235, 0.08);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.pillar-desc {
  font-size: 0.88rem;
  color: var(--silver-500);
  line-height: 1.55;
}

/* --- Pre-Footer Call to Action Banner --- */
.cta-banner {
  margin-top: 3.5rem;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.18) 0%, rgba(11, 15, 23, 0.7) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--border-radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-banner-sub {
  color: var(--silver-400);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  max-width: 540px;
  margin-inline: auto;
}

/* --- Footer (Corporate & Legal) --- */
.footer {
  margin-top: 1.75rem;
  background: #080a0e;
  border-top: 1px solid var(--silver-border);
  padding: 2.2rem 0 1.75rem 0;
  position: relative;
}

.footer-top {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.footer-legal-card {
  max-width: 620px;
  width: 100%;
  background: rgba(18, 23, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-header {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legal-item {
  font-size: 0.85rem;
  color: var(--silver-400);
  line-height: 1.5;
}

.legal-item strong {
  color: #ffffff;
  font-weight: 600;
}

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

.copyright-text {
  font-size: 0.82rem;
  color: var(--silver-600);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-link {
  color: var(--silver-500);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #ffffff;
}

/* --- Toast Notification Modal --- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  pointer-events: none;
}

.toast {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--accent-blue-light);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(37, 99, 235, 0.5);
  backdrop-filter: blur(16px);
  border-radius: var(--border-radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-bounce);
  pointer-events: auto;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 24px;
  height: 24px;
  color: #34d399;
  flex-shrink: 0;
}

.toast-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.toast-message {
  font-size: 0.82rem;
  color: var(--silver-400);
}

/* --- Responsive Adjustments --- */
@media (max-width: 640px) {
  .nav-container {
    height: 70px;
  }
  
  .status-pill {
    display: none;
  }
  
  .lead-form {
    flex-direction: column;
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    gap: 0.75rem;
  }
  
  .lead-input {
    width: 100%;
    padding: 0.4rem 0;
  }
  
  .lead-btn {
    width: 100%;
    border-radius: var(--border-radius-md);
  }
  
  .countdown-grid {
    gap: 0.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
