@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  --bg-primary: #0a0c10;
  --bg-secondary: #11141b;
  --bg-tertiary: #181d28;
  
  --accent: #00d1b2; /* Emerald Teal */
  --accent-light: #80ebd9;
  --accent-glow: rgba(0, 209, 178, 0.15);
  --accent-blue: #0ea5e9; /* Sky Blue for gradients */
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --border-accent: rgba(0, 209, 178, 0.3);
  --border-focus: rgba(0, 209, 178, 0.4);
  
  --font-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Arvo', 'Rockwell', 'Courier New', serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* --- AMBIENT GLOW BACKDROP --- */
.ambient-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(10, 12, 16, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 { top: -10vw; right: -10vw; }
.glow-2 { top: 45vh; left: -20vw; background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(10, 12, 16, 0) 70%); }
.glow-3 { bottom: -10vw; right: -10vw; }

/* --- HEADER & NAVIGATION --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4rem;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  height: 70px;
  background: rgba(10, 12, 16, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  height: 48px;
  color: var(--text-main);
}

.logo-container svg {
  height: 100%;
  width: auto;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  margin-left: 4rem;
}

.menu-toggle {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta .btn-primary {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
  color: #050505;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 209, 178, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 209, 178, 0.4);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-blue) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* --- CONTAINERS & SECTIONS --- */
section {
  padding: 8rem 2rem;
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.section-tag {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 3.5rem;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 50%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glassmorphic Card Visual */
.graphic-card {
  width: 100%;
  max-width: 380px;
  height: 380px;
  border-radius: 20px;
  background: radial-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.graphic-card::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: conic-gradient(from 0deg, transparent 20%, rgba(0, 209, 178, 0.15) 50%, transparent 80%);
  animation: rotateGlow 12s linear infinite;
}

.graphic-card-inner {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: var(--bg-secondary);
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.graphic-card-inner svg {
  width: 60%;
  height: auto;
  color: var(--accent);
  animation: pulseLogo 6s ease-in-out infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px rgba(0, 209, 178, 0.4)); }
}

/* --- ABOUT SECTION --- */
.about {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-mission-box {
  background: var(--bg-tertiary);
  border-left: 4px solid var(--accent);
  padding: 1.8rem;
  border-radius: 0 12px 12px 0;
  margin-top: 1rem;
}

.mission-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.mission-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.bullet-item {
  display: flex;
  gap: 1.2rem;
}

.bullet-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 209, 178, 0.08);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.bullet-icon span {
  font-size: 1.5rem;
}

.bullet-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.bullet-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- VENTURES SECTION --- */
.ventures {
  position: relative;
}

.ventures-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Flagship Product Card (Pulse Visit) */
.flagship-card {
  width: 100%;
  max-width: 900px;
  background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.flagship-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 209, 178, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.flagship-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 40px rgba(0, 209, 178, 0.05);
}

.flagship-badge {
  background: rgba(0, 209, 178, 0.12);
  color: var(--accent-light);
  border: 1px solid var(--border-accent);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.flagship-logo {
  height: 45px;
  margin-bottom: 1.5rem;
}

.flagship-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.flagship-points {
  list-style: none;
  margin-bottom: 2.5rem;
}

.flagship-point {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.flagship-point span.check {
  color: var(--accent);
  font-weight: bold;
}

.flagship-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: rgba(10, 12, 16, 0.4);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
}

.f-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.f-stat-icon {
  color: var(--accent);
  font-size: 1.8rem;
  background: rgba(0, 209, 178, 0.06);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.f-stat-info {
  display: flex;
  flex-direction: column;
}

.f-stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.f-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --- CORE PILLARS SECTION --- */
.pillars {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar-card {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  height: 100%;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.8rem;
  transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
  background: rgba(0, 209, 178, 0.08);
  border-color: var(--border-accent);
}

.pillar-icon span {
  font-size: 1.8rem;
}

.pillar-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- CORPORATE FOOTER & CTA SECTION --- */
.cta-section {
  text-align: center;
  padding: 10rem 2rem;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-desc {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* --- FOOTER --- */
.main-footer {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  padding: 4rem 2rem 2rem 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto 3rem auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  align-self: flex-start;
}

.footer-tagline {
  color: var(--text-muted);
  max-width: 320px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link {
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--accent);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-muted);
}

.footer-contact-item {
  display: flex;
  gap: 0.8rem;
}

.footer-contact-item span {
  color: var(--accent);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

/* --- CONTACT MODAL / POPUP --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  width: 100%;
  max-width: 580px;
  padding: 3rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 60px rgba(0, 209, 178, 0.1);
  margin: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-main);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input, .form-select, .form-textarea {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--border-focus);
  background: var(--bg-secondary);
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 1rem;
  font-size: 1rem;
  padding: 1rem;
}

/* Success UI State inside modal */
.form-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
}

.success-icon-container {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 209, 178, 0.08);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  animation: pulseLogo 4s ease-in-out infinite;
}

.success-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.success-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 380px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
  .main-header {
    padding: 0 2rem;
  }

  .nav-wrapper {
    margin-left: 2rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-graphic {
    order: -1;
  }
  
  .graphic-card {
    height: 300px;
    max-width: 300px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 6rem 1.5rem;
  }

  .main-header {
    padding: 0 1.5rem;
  }

  /* Header & Mobile Drawer Navigation */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 110;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(17, 20, 27, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 7rem 2.5rem 2rem 2.5rem;
    gap: 3rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 105;
    margin-left: 0;
  }

  .nav-wrapper.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    display: block;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }

  .hero-graphic {
    order: 1; /* stack visual graphic below the hero text content */
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }
  
  .flagship-card {
    padding: 2.5rem 1.5rem;
  }
  
  .flagship-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .flagship-stats-grid {
    padding: 1.5rem;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .modal-content {
    padding: 2rem 1.5rem;
    width: calc(100% - 2rem);
    max-width: 500px;
    margin: auto;
  }
}
