/* Digital Info - Professional Email Infrastructure */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --cyan-600: #0891b2;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--slate-950);
  color: var(--slate-100);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout */
.wrapper {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .wrapper { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .wrapper { padding: 0 2rem; } }

/* Typography */
.text-gradient {
  background: linear-gradient(135deg, #22d3ee 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Backgrounds */
.bg-grid {
  background-image: radial-gradient(rgba(34, 211, 238, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}

.glass {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glow-accent {
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-800);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.logo:hover { transform: scale(1.02); }

.logo-icon {
  padding: 0.5rem;
  background: linear-gradient(135deg, var(--cyan-500) 0%, var(--emerald-500) 100%);
  border-radius: 0.75rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: white;
}

.logo-text span { color: var(--cyan-400); }

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.nav-desktop a,
.nav-desktop .nav-active {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: color 0.2s;
  background: none;
  border: none;
  color: var(--slate-400);
  cursor: pointer;
  font-family: inherit;
}

.nav-desktop a:hover,
.nav-desktop .nav-active { color: var(--cyan-400); }

.btn-request {
  background: var(--cyan-600);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.2);
}

.btn-request:hover { background: var(--cyan-500); }

.mobile-menu-btn {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  color: var(--slate-300);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-nav {
  display: none;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--slate-800);
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav.open { display: flex; }

@media (min-width: 768px) { .mobile-nav { display: none !important; } }

.mobile-nav a,
.mobile-nav .mobile-nav-btn {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--slate-400);
  transition: all 0.2s;
  text-align: left;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.mobile-nav a:hover,
.mobile-nav .mobile-nav-btn:hover {
  color: var(--cyan-400);
  background: rgba(6, 182, 212, 0.1);
}

.mobile-nav .btn-request-full {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--cyan-600);
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-nav .btn-request-full:hover { background: var(--cyan-500); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--cyan-600);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  background: var(--cyan-500);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 1rem;
  border: 1px solid var(--slate-700);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--slate-500);
  background: var(--slate-800);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 8rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 10rem;
    padding-bottom: 13rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--slate-700);
  color: var(--cyan-400);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 2.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 5rem; } }

.hero p {
  font-size: 1.125rem;
  color: var(--slate-400);
  max-width: 48rem;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
  font-weight: 500;
}

@media (min-width: 768px) { .hero p { font-size: 1.5rem; } }

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Sections */
.section {
  padding: 6rem 1rem;
}

.section-lg { padding: 8rem 1rem; }

.section-header {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) { .section-header h2 { font-size: 3rem; } }

.section-header p {
  font-size: 1.25rem;
  color: var(--slate-400);
  line-height: 1.75;
  font-weight: 500;
}

/* Authority Statement */
.authority-section {
  padding: 6rem 1rem;
  background: rgba(15, 23, 42, 0.3);
  border-top: 1px solid var(--slate-900);
  border-bottom: 1px solid var(--slate-900);
  backdrop-filter: blur(4px);
}

/* Advantage Cards */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) { .advantages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .advantages-grid { grid-template-columns: repeat(4, 1fr); } }

.advantage-card {
  padding: 2rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--slate-800);
  border-radius: 2rem;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.advantage-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
  background: rgba(15, 23, 42, 0.6);
}

.advantage-card .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--cyan-400);
  transition: all 0.5s;
}

.advantage-card:hover .icon-box {
  transform: scale(1.1);
  background: rgba(6, 182, 212, 0.2);
}

.advantage-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  transition: color 0.3s;
}

.advantage-card:hover h3 { color: var(--cyan-300); }

.advantage-card p {
  color: var(--slate-400);
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 500;
}

/* Platform Section */
.platform-section {
  padding: 8rem 1rem;
  background: rgba(15, 23, 42, 0.2);
  border-top: 1px solid var(--slate-900);
  overflow: hidden;
}

.platform-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}

@media (min-width: 1024px) {
  .platform-grid {
    flex-direction: row;
    gap: 6rem;
  }
}

.platform-features {
  flex: 1;
}

.platform-features h2 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: white;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) { .platform-features h2 { font-size: 3.75rem; } }

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 1.5rem;
  border: 1px solid var(--slate-800);
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.feature-item svg {
  color: var(--cyan-400);
  flex-shrink: 0;
}

.feature-item span {
  color: var(--slate-200);
  font-size: 1.125rem;
  font-weight: 700;
}

.platform-visual {
  flex: 1;
  max-width: 42rem;
  width: 100%;
}

.platform-box {
  aspect-ratio: 1;
  background: var(--slate-900);
  border-radius: 3rem;
  border: 1px solid var(--slate-800);
  box-shadow: 0 0 100px rgba(34, 211, 238, 0.05);
  overflow: hidden;
  padding: 2.5rem;
}

@media (min-width: 768px) { .platform-box { aspect-ratio: 4/3; } }

.platform-box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--slate-800);
}

.platform-box .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: var(--slate-800);
}

.platform-box .dot-active { background: rgba(6, 182, 212, 0.3); }

.platform-box .bar {
  margin-left: 1.5rem;
  height: 1.25rem;
  width: 12rem;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 9999px;
}

.platform-box .line {
  height: 1rem;
  background: rgba(30, 41, 59, 0.4);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.platform-box .line:nth-child(2) { width: 83.33%; }
.platform-box .line:nth-child(3) { width: 66.67%; }

.platform-box .nodes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 2.5rem;
}

.node-card {
  padding: 2rem;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.node-card.active {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.node-card.idle {
  background: rgba(30, 41, 59, 0.2);
  border: 1px solid var(--slate-800);
  opacity: 0.5;
}

.node-card span {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.node-card.active span { color: var(--cyan-400); }
.node-card.idle span { color: var(--slate-500); }

/* CTA Section */
.cta-section {
  padding: 8rem 1rem;
}

.cta-box {
  max-width: 64rem;
  margin: 0 auto;
  background: linear-gradient(to right, var(--cyan-600), #047857);
  border-radius: 3.5rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.2);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .cta-box { padding: 6rem; } }

.cta-box h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
  line-height: 1.2;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) { .cta-box h2 { font-size: 3.75rem; } }

.cta-box p {
  color: rgba(207, 250, 254, 0.9);
  margin-bottom: 3.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.cta-box .btn-cta {
  padding: 1.5rem 3.5rem;
  background: white;
  color: #020617;
  font-weight: 900;
  font-size: 1.25rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
}

.cta-box .btn-cta:hover { transform: scale(1.05); }

/* Footer */
footer {
  background: var(--slate-950);
  border-top: 1px solid var(--slate-900);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand .logo {
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 20rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan-400);
  margin-bottom: 2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 1rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--slate-500);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cyan-400); }

.footer-col .highlight { color: var(--cyan-300); font-weight: 700; }

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid var(--slate-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: var(--slate-600);
  font-weight: 500;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom .icons {
  display: flex;
  gap: 2rem;
}

.footer-bottom .icons svg {
  color: var(--slate-600);
  cursor: pointer;
  transition: color 0.2s;
}

.footer-bottom .icons svg:hover { color: var(--cyan-400); }

/* Page Headers */
.page-header {
  padding-top: 8rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--slate-900);
}

.page-header .label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--cyan-500);
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: white;
  margin-bottom: 2rem;
}

@media (min-width: 768px) { .page-header h1 { font-size: 4.5rem; } }

.page-header p {
  font-size: 1.25rem;
  color: var(--slate-400);
  line-height: 1.75;
  font-weight: 500;
  max-width: 42rem;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.service-card {
  padding: 2.5rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--slate-800);
  border-radius: 2.5rem;
  transition: all 0.3s;
}

.service-card:hover {
  background: var(--slate-900);
}

.service-card .icon-box {
  width: 4rem;
  height: 4rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--cyan-400);
  transition: all 0.3s;
}

.service-card:hover .icon-box {
  background: var(--cyan-600);
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.service-card p {
  color: var(--slate-400);
  line-height: 1.75;
  font-weight: 500;
}

.service-card-cta {
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--cyan-600), #166534);
  border-radius: 2.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.1);
}

.service-card-cta:hover { transform: translateY(-4px); }

.service-card-cta h3 {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.service-card-cta p {
  color: rgba(207, 250, 254, 0.9);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.service-card-cta .link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
}

/* Process Steps */
.process-section {
  padding: 8rem 1rem;
  background: rgba(15, 23, 42, 0.1);
  border-top: 1px solid var(--slate-900);
}

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

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 5rem;
  }
}

.process-sidebar {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .process-sidebar {
    grid-column: span 5;
    position: sticky;
    top: 10rem;
  }
}

.process-sidebar h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
}

@media (min-width: 768px) { .process-sidebar h2 { font-size: 3rem; } }

.process-sidebar > p {
  color: var(--slate-400);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 3rem;
}

.process-quote {
  padding: 2rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 1px solid var(--slate-800);
  margin-top: 3rem;
}

.process-quote .quote-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cyan-400);
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-quote p {
  font-size: 0.875rem;
  color: var(--slate-500);
  font-style: italic;
  line-height: 1.75;
}

.process-steps {
  grid-column: span 1;
}

@media (min-width: 1024px) { .process-steps { grid-column: span 7; } }

.process-step {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .process-step {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}

.process-step-number {
  width: 4rem;
  height: 4rem;
  background: var(--slate-900);
  border: 1px solid var(--slate-800);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--cyan-400);
  transition: border-color 0.3s;
}

.process-step:hover .process-step-number { border-color: var(--cyan-500); }

.process-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  padding-top: 0.5rem;
}

.process-step p {
  color: var(--slate-400);
  line-height: 1.75;
  font-weight: 500;
  max-width: 36rem;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8rem;
}

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

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

.value-card {
  padding: 2rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--slate-800);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.value-card .icon-box {
  width: 3rem;
  height: 3rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 0.75rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
}

.value-card span {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: white;
}

.governance-card {
  padding: 3rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 3.5rem;
  border: 1px solid var(--slate-800);
  position: relative;
}

.governance-card h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
}

.governance-card p {
  color: var(--slate-400);
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

.governance-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.governance-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--cyan-300);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.governance-list .dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--cyan-500);
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(34, 211, 238, 1);
}

.vision-section {
  padding: 10rem 1rem;
  text-align: center;
}

.vision-section p {
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--slate-500);
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
}

@media (min-width: 768px) { .vision-section p { font-size: 3rem; } }

.vision-section .highlight { color: white; font-weight: 900; font-style: normal; }

.vision-divider {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(to right, var(--cyan-500), var(--emerald-500));
  border-radius: 9999px;
  margin: 0 auto 2rem;
}

.vision-label {
  font-weight: 900;
  color: var(--slate-300);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.75rem;
}

/* Pricing Page */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.pricing-toggle span {
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.pricing-toggle span.active { color: white; }
.pricing-toggle span.inactive { color: var(--slate-600); }

.toggle-switch {
  width: 5rem;
  height: 2.5rem;
  background: var(--slate-900);
  border-radius: 9999px;
  border: 1px solid var(--slate-800);
  position: relative;
  padding: 0.25rem;
  cursor: pointer;
}

.toggle-switch .toggle-dot {
  width: 2rem;
  height: 2rem;
  background: var(--cyan-600);
  border-radius: 9999px;
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  transition: left 0.5s;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.toggle-switch.annual .toggle-dot { left: 2.75rem; }

.save-badge {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 0.125rem 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  border-radius: 0.375rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-top: 0.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.pricing-card {
  padding: 2.5rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid var(--slate-800);
  border-radius: 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
}

.pricing-card:hover { transform: translateY(-8px); }

.pricing-card.popular {
  border-color: var(--cyan-500);
  box-shadow: 0 0 50px rgba(34, 211, 238, 0.1);
}

.pricing-card .popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--cyan-600);
  color: white;
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  padding: 0.5rem 1.5rem;
  border-bottom-left-radius: 1rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.pricing-card .subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-500);
  margin-bottom: 2rem;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 3rem;
}

.pricing-card .price span {
  font-size: 1.125rem;
  color: var(--slate-500);
  font-weight: 500;
  margin-left: 0.75rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 3.5rem;
  flex-grow: 1;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--slate-300);
  font-weight: 500;
}

.pricing-card li .check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.pricing-card .btn-pricing {
  width: 100%;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}

.pricing-card.popular .btn-pricing {
  background: var(--cyan-600);
  color: white;
  box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.2);
}

.pricing-card.popular .btn-pricing:hover { background: var(--cyan-500); }

.pricing-card:not(.popular) .btn-pricing {
  background: rgba(15, 23, 42, 0.8);
  color: white;
  border: 1px solid var(--slate-700);
}

.pricing-card:not(.popular) .btn-pricing:hover {
  background: var(--slate-800);
  border-color: var(--slate-500);
}

.transparency-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 3.5rem;
  border: 1px solid var(--slate-800);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .transparency-box {
    flex-direction: row;
    padding: 4rem;
  }
}

.transparency-box .icon-box {
  width: 6rem;
  height: 6rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 2rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  flex-shrink: 0;
}

.transparency-box h3 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.transparency-box p {
  color: var(--slate-400);
  font-weight: 500;
  line-height: 1.75;
  font-size: 1.125rem;
}

/* Request Account Form */
.request-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.request-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--slate-800);
  color: var(--cyan-400);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 2rem;
}

.request-header h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) { .request-header h1 { font-size: 4.5rem; } }

.request-header p {
  color: var(--slate-500);
  font-weight: 500;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.75;
}

.progress-tracker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 36rem;
  margin: 0 auto 5rem;
  padding: 0 1rem;
  position: relative;
}

.progress-tracker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--slate-800);
  transform: translateY(-50%);
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.progress-step .step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  border: 2px solid;
  transition: all 0.7s;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
  background: var(--cyan-600);
  border-color: var(--cyan-500);
  color: white;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.progress-step:not(.active):not(.completed) .step-number {
  background: var(--slate-950);
  border-color: var(--slate-800);
  color: var(--slate-600);
}

.progress-step .step-label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.progress-step.active .step-label,
.progress-step.completed .step-label { color: var(--cyan-400); }
.progress-step:not(.active):not(.completed) .step-label { color: var(--slate-600); }

.request-form {
  background: rgba(15, 23, 42, 0.3);
  border-radius: 3.5rem;
  border: 1px solid var(--slate-800);
  overflow: hidden;
  padding: 2.5rem;
  position: relative;
}

@media (min-width: 768px) { .request-form { padding: 5rem; } }

.request-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.5), transparent);
}

.form-phase {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--slate-800);
}

.form-phase h3 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.025em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan-400);
}

.form-field label .required { color: var(--emerald-500); margin-left: 0.25rem; }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 1.25rem;
  background: var(--slate-900);
  border: 1px solid var(--slate-800);
  border-radius: 1rem;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--slate-700);
}

.form-field.full-width { grid-column: 1 / -1; }

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 1rem;
  border: 1px solid var(--slate-800);
  cursor: pointer;
  transition: all 0.2s;
}

.checkbox-field:hover { border-color: rgba(6, 182, 212, 0.3); }

.checkbox-field input {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--slate-700);
  background: var(--slate-900);
  cursor: pointer;
}

.checkbox-field span {
  font-size: 0.875rem;
  color: var(--slate-300);
  font-weight: 700;
}

.form-checkboxes {
  margin-bottom: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--slate-800);
}

.form-checkboxes .checkbox-inline {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-checkboxes .checkbox-inline input {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkboxes .checkbox-inline p {
  font-size: 0.875rem;
  color: var(--slate-500);
  font-weight: 500;
}

.form-checkboxes .checkbox-inline a {
  color: var(--cyan-400);
  text-decoration: underline;
  font-weight: 900;
}

.form-checkboxes .checkbox-inline a:hover { color: var(--cyan-300); }

.form-actions {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-actions {
    flex-direction: row;
  }
}

.form-actions .btn-prev {
  padding: 1.25rem 2.5rem;
  background: rgba(15, 23, 42, 0.8);
  color: white;
  border: 1px solid var(--slate-700);
  border-radius: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: inherit;
}

.form-actions .btn-prev:hover { background: var(--slate-800); }

.form-actions .btn-next {
  padding: 1.25rem 3rem;
  background: var(--cyan-600);
  color: white;
  border: none;
  border-radius: 1rem;
  font-weight: 900;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.2);
  font-family: inherit;
}

.form-actions .btn-next:hover { background: var(--cyan-500); }

.form-actions .btn-submit {
  padding: 1.5rem 4rem;
  background: linear-gradient(to right, var(--cyan-600), var(--emerald-600));
  color: white;
  border: none;
  border-radius: 2rem;
  font-weight: 900;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3);
  font-family: inherit;
}

.form-actions .btn-submit:hover { transform: scale(1.05); }

/* Success Screen */
.success-screen {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.success-box {
  max-width: 42rem;
  width: 100%;
  padding: 4rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 4rem;
  border: 1px solid var(--slate-800);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(to right, var(--cyan-500), var(--emerald-500));
}

.success-box .icon {
  width: 6rem;
  height: 6rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan-500);
  border-radius: 2.5rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
}

.success-box h2 {
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}

@media (min-width: 768px) { .success-box h2 { font-size: 3rem; } }

.success-box p {
  color: var(--slate-400);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.success-box .btn-return {
  width: 100%;
  padding: 1.5rem;
  background: var(--cyan-600);
  color: white;
  border: none;
  border-radius: 2rem;
  font-weight: 900;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.2);
}

.success-box .btn-return:hover { background: var(--cyan-500); }

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-form {
  background: rgba(15, 23, 42, 0.4);
  padding: 3rem;
  border-radius: 3.5rem;
  border: 1px solid var(--slate-800);
}

@media (min-width: 768px) { .contact-form { padding: 4rem; } }

.contact-form .form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .contact-form .form-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan-400);
  display: block;
  margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1.25rem;
  background: var(--slate-950);
  border: 1px solid var(--slate-800);
  border-radius: 1rem;
  color: white;
  font-size: 1rem;
  font-family: inherit;
}

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

.contact-form .btn-submit {
  width: 100%;
  padding: 1.5rem;
  background: var(--cyan-600);
  color: white;
  border: none;
  border-radius: 2rem;
  font-weight: 900;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 0.2s;
  box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.2);
}

.contact-form .btn-submit:hover { background: var(--cyan-500); }

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card {
  padding: 3rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 3rem;
  border: 1px solid var(--slate-800);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-item .icon {
  width: 3rem;
  height: 3rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-400);
  flex-shrink: 0;
}

.contact-item .label {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--slate-600);
  margin-bottom: 0.25rem;
}

.contact-item .value {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.contact-item .value:hover { color: var(--cyan-400); cursor: pointer; }

.status-card {
  padding: 3rem;
  background: rgba(2, 44, 52, 0.2);
  border-radius: 3rem;
  border: 1px solid rgba(6, 182, 212, 0.1);
  position: relative;
  overflow: hidden;
}

.status-card h4 {
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.status-card p {
  color: var(--slate-400);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.status-card .status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--emerald-400);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.status-card .status-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--emerald-500);
  border-radius: 9999px;
  box-shadow: 0 0 12px rgba(16, 185, 129, 1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Terms & Privacy */
.legal-content {
  padding: 8rem 1rem;
}

.legal-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--slate-800);
  color: var(--cyan-400);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 2.5rem;
}

.legal-content .content-block {
  margin-bottom: 5rem;
}

.legal-content .content-block h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-content .content-block .section-num {
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.25rem 0.75rem;
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan-500);
  border-radius: 0.5rem;
}

.legal-content .content-block p {
  color: var(--slate-400);
  font-weight: 500;
  line-height: 1.75;
  font-size: 1.125rem;
}

.legal-disclaimer {
  padding: 3rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 3rem;
  border: 1px solid var(--slate-800);
  font-style: italic;
  font-size: 1rem;
  color: var(--slate-500);
  text-align: center;
}

.privacy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 6rem;
}

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

.privacy-card {
  padding: 2.5rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--slate-800);
  border-radius: 2.5rem;
}

.privacy-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.privacy-card p {
  color: var(--slate-500);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
}

.privacy-content h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.privacy-content .content-block {
  margin-bottom: 5rem;
}

.privacy-contact {
  padding-top: 5rem;
  border-top: 1px solid var(--slate-900);
  text-align: center;
}

.privacy-contact p {
  font-size: 0.875rem;
  color: var(--slate-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.privacy-contact span { color: var(--cyan-500); }

/* Main content area */
main {
  flex-grow: 1;
  padding-top: 5rem;
}

/* Orbs/background effects */
.hero::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: rgba(6, 182, 212, 0.1);
  filter: blur(120px);
  border-radius: 9999px;
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(5, 150, 105, 0.1);
  filter: blur(100px);
  border-radius: 9999px;
  pointer-events: none;
}

.hero .bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
