:root {
  --bg-deep: #ffffff;
  --bg-slate: #f8fafc;
  --panel-bg: rgba(255, 255, 255, 0.95);
  --border: rgba(226, 232, 240, 0.9);
  --accent: #ec4899;
  --accent-glow: rgba(236, 72, 153, 0.2);
  --cyan: #0ea5e9;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Background Decoration */
.glow-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

#orb-1 { top: -100px; right: -100px; background: var(--accent); }
#orb-2 { bottom: -100px; left: -100px; background: var(--cyan); }

/* Header */
header {
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.logo-text { font-family: var(--font-mono); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.05em; color: var(--text-primary); }
.logo-text span { color: var(--accent); }

/* Navigation */
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary);
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.05em; transition: 0.3s;
}
.nav-links a:hover { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.mobile-menu-btn {
  display: none; background: none; border: none;
  color: var(--text-primary); cursor: pointer; padding: 0.5rem;
}

/* Main Spacing */
main { padding-top: 20px; }
.contact-main, .legal-main { padding-top: 60px; }

/* Hero Sections */
.hero-section { padding: 80px 0 60px; text-align: center; }
.badge {
  background: rgba(236, 72, 153, 0.08); color: var(--accent);
  padding: 0.5rem 1.2rem; border-radius: 100px; font-weight: 800;
  font-size: 0.75rem; letter-spacing: 0.15em; border: 1px solid rgba(236, 72, 153, 0.2);
  margin-bottom: 2rem; display: inline-block;
}
.hero-section h1 {
  font-family: var(--font-mono); font-size: 4.5rem; font-weight: 700;
  line-height: 1.1; margin-bottom: 2rem; letter-spacing: -0.04em;
}
.hero-section h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.25rem; color: var(--text-secondary);
  max-width: 800px; margin: 0 auto 3.5rem; font-weight: 500;
}
.cta-group { display: flex; justify-content: center; gap: 1rem; margin-bottom: 4rem; }

.hero-features-strip {
  display: flex; justify-content: center; gap: 3rem;
  color: var(--text-secondary); font-weight: 700; font-size: 0.9rem;
}
.h-feat { display: flex; align-items: center; gap: 0.75rem; }
.h-feat i { color: var(--accent); width: 18px; }

/* Stats */
.stats-strip { padding: 5rem 0; background: var(--bg-slate); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid-v2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-v2 { display: flex; align-items: center; gap: 1.25rem; }
.stat-icon {
  width: 56px; height: 56px; background: white; border: 1px solid var(--border);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); box-shadow: var(--shadow-sm);
}
.stat-content strong { display: block; font-size: 1.75rem; font-family: var(--font-mono); line-height: 1.2; }
.stat-content span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); font-weight: 800; }

/* Features */
.features-v3 { padding: 100px 0; }
.section-heading { text-align: center; margin-bottom: 5rem; }
.section-heading h2 { font-family: var(--font-mono); font-size: 3rem; }
.section-heading h2 span { color: var(--accent); }
.section-heading p { color: var(--text-secondary); font-weight: 600; margin-top: 0.5rem; }

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

.feature-card-v2 {
  padding: 2.5rem; background: white; border: 1px solid var(--border);
  border-radius: 24px; transition: 0.3s; box-shadow: var(--shadow-sm);
}
.feature-card-v2:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.icon-wrap {
  width: 50px; height: 50px; background: var(--bg-slate); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.5rem;
}
.feature-card-v2 h3 { font-family: var(--font-mono); font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-card-v2 p { color: var(--text-secondary); font-size: 0.9rem; }

/* Fields */
.fields-section { padding: 100px 0; background: white; }
.fields-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.75rem; max-width: 1100px; margin: 0 auto;
}
.fields-grid span {
  padding: 0.6rem 1.2rem; background: var(--bg-slate); border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.8rem; font-weight: 700; color: var(--text-secondary);
  transition: 0.3s; cursor: default;
}
.fields-grid span:hover {
  border-color: var(--accent); color: var(--accent);
  background: white; transform: scale(1.05); box-shadow: 0 8px 20px rgba(236, 72, 153, 0.1);
}

/* Use Cases */
.use-cases { padding: 100px 0; background: var(--bg-slate); }
.use-case-card {
  padding: 2.5rem; background: white; border: 1px solid var(--border);
  border-radius: 24px; display: flex; gap: 1.5rem; box-shadow: var(--shadow-sm);
}
.use-case-card h3 { font-family: var(--font-mono); font-size: 1.25rem; margin-bottom: 0.5rem; }
.use-case-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Pricing */
.pricing-v3 { padding: 120px 0; }
.pricing-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.p-card {
  padding: 4rem 2.5rem; background: white; border: 1px solid var(--border);
  border-radius: 32px; text-align: center; position: relative; transition: 0.3s; box-shadow: var(--shadow-sm);
}
.p-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-lg); }
.p-card.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(236, 72, 153, 0.02) 0%, white 100%); }
.p-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--accent); color: white; padding: 0.5rem 1rem; border-radius: 100px;
  font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em;
}
.p-tier { font-family: var(--font-mono); font-size: 1.5rem; margin-bottom: 1rem; }
.p-now { font-size: 3.5rem; font-weight: 800; font-family: var(--font-mono); color: var(--accent); }
.p-list { list-style: none; text-align: left; margin: 2.5rem 0; }
.p-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-secondary); }
.p-list i { color: var(--accent); width: 16px; }

/* FAQ */
.faq-v4 { padding: 100px 0; background: var(--bg-slate); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item-v4 { background: white; border: 1px solid var(--border); border-radius: 16px; margin-bottom: 1rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-trigger { padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; }
.faq-trigger i { transition: 0.3s; color: var(--accent); }
.faq-content-v4 { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: 0.4s; color: var(--text-secondary); font-size: 0.95rem; }
.faq-item-v4.active .faq-content-v4 { padding-bottom: 1.5rem; max-height: 200px; }
.faq-item-v4.active .faq-trigger i { transform: rotate(45deg); }

/* Contact Page Refined */
.contact-hero { padding: 40px 0 20px; text-align: center; }
.contact-hero h1 { font-family: var(--font-mono); font-size: 4rem; color: var(--text-primary); line-height: 1.2; margin-bottom: 1rem; }
.contact-hero h1 span { color: var(--accent); }
.contact-hero p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; padding: 40px 0 100px; align-items: start; }
.contact-info { display: grid; gap: 1.5rem; }
.info-card {
  padding: 2.5rem; background: white; border: 1px solid var(--border);
  border-radius: 24px; display: flex; gap: 1.5rem; align-items: center; box-shadow: var(--shadow-sm);
}
.info-icon {
  width: 48px; height: 48px; background: rgba(236, 72, 153, 0.08);
  color: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.info-card h4 { font-family: var(--font-mono); font-size: 1.1rem; margin-bottom: 0.2rem; }
.info-card p { color: var(--text-secondary); font-size: 0.95rem; font-weight: 700; }

.glass-form { padding: 3.5rem; background: white; border: 1px solid var(--border); border-radius: 32px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 1rem 1.25rem; background: var(--bg-slate); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text-primary); font-family: var(--font-main); outline: none; transition: 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: white; box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.05); }

/* Legal Pages */
.legal-main { padding-top: 80px; }
.legal-card {
  background: white; border: 1px solid var(--border); border-radius: 32px;
  padding: 4rem; box-shadow: var(--shadow-sm); max-width: 900px; margin: 0 auto;
}
.legal-card h3 { font-family: var(--font-mono); font-size: 1.75rem; margin: 3rem 0 1rem; color: var(--accent); }
.legal-card h4 { font-family: var(--font-mono); font-size: 1.25rem; margin: 2rem 0 1rem; color: var(--text-primary); }
.legal-card p { margin-bottom: 1.5rem; color: var(--text-secondary); font-size: 1.05rem; }
.legal-list { list-style: none; margin-bottom: 2rem; }
.legal-list li { margin-bottom: 1rem; position: relative; padding-left: 1.5rem; color: var(--text-secondary); }
.legal-list li::before { content: "•"; color: var(--accent); position: absolute; left: 0; font-weight: bold; }

/* Buttons */
button, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; border-radius: 12px; font-weight: 700;
  text-decoration: none; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-mono); gap: 0.5rem; cursor: pointer; border: none; outline: none;
}
.btn-primary { background: var(--accent); color: white !important; box-shadow: 0 8px 20px -6px var(--accent-glow); }
.btn-primary:hover { transform: translateY(-2px); background: #db2777; box-shadow: 0 12px 25px -4px var(--accent-glow); color: white !important; }
.btn-outline { border: 1px solid var(--border); color: var(--text-primary) !important; background: white; }
.btn-outline:hover { background: var(--bg-slate); border-color: var(--text-secondary); }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1.25rem 2.5rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* Footer */
footer { background: var(--bg-slate); border-top: 1px solid var(--border); margin-top: 120px; }

.footer-v3 { padding: 80px 0 40px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 60px;
}

.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-brand p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; max-width: 360px; }

.footer-col h4 {
  font-family: var(--font-mono);
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 1rem; }
.footer-col a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.3s;
}

.footer-col a:hover { color: var(--accent); transform: translateX(5px); display: inline-block; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal-links { display: flex; gap: 2rem; }
.legal-links a { text-decoration: none; color: var(--text-secondary); transition: 0.3s; font-weight: 600; }
.legal-links a:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-section h1 { font-size: 3.5rem; }
  .grid-3, .grid-2, .stats-grid-v2, .pricing-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; margin-bottom: 2rem; }
}

@media (max-width: 768px) {
  header { height: 70px; }
  .desktop-nav, .desktop-only { display: none; }
  .mobile-menu-btn { display: block; }
  .nav-links.active { top: 70px; height: calc(100vh - 70px); }
  
  .hero-section { padding: 40px 0; }
  .hero-section h1 { font-size: 2.75rem; }
  .hero-sub { font-size: 1.1rem; }
  .cta-group { flex-direction: column; gap: 1rem; }
  .hero-features-strip { flex-direction: column; gap: 1rem; align-items: center; }

  .grid-3, .grid-2, .stats-grid-v2, .pricing-grid-v2, .contact-grid { grid-template-columns: 1fr; }
  
  .section-heading h2 { font-size: 2.25rem; }
  .feature-card-v2, .use-case-card, .p-card, .legal-card { padding: 2rem 1.5rem; }
  
  .footer-top { grid-template-columns: 1fr; gap: 3rem; text-align: left; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
  .legal-links { justify-content: center; flex-wrap: wrap; }
  
  .glass-form { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .stat-v2 { justify-content: center; }
  
  .contact-hero h1 { font-size: 3rem; }
}
