@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --primary: #FF4D00;
  --primary-light: #FF7A3D;
  --dark: #0A0A0F;
  --dark2: #111118;
  --dark3: #1A1A24;
  --accent: #00D4FF;
  --accent2: #FFD600;
  --text: #E8E8F0;
  --text-muted: #888899;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --radius: 16px;
  --shadow: 0 24px 80px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid white;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.logo-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  top: 8px; right: 7px;
}

.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--card-bg);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--primary-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* HERO SECTION */
.hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(255,77,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0,212,255,0.08) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,0,0.1);
  border: 1px solid rgba(255,77,0,0.3);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,77,0,0.35); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  transition: all 0.25s;
  cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: var(--card-bg); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.stat-item {}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}
.stat-num span { color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

/* SECTIONS */
section { padding: 100px 5%; }

.section-tag {
  display: inline-block;
  background: rgba(255,77,0,0.1);
  border: 1px solid rgba(255,77,0,0.25);
  color: var(--primary-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* CARDS */
.cards-grid {
  display: grid;
  gap: 24px;
  margin-top: 60px;
}

.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.cards-grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,77,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: rgba(255,77,0,0.25);
  transform: translateY(-4px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}

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

.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card-icon.orange { background: rgba(255,77,0,0.15); }
.card-icon.blue { background: rgba(0,212,255,0.12); }
.card-icon.yellow { background: rgba(255,214,0,0.12); }
.card-icon.green { background: rgba(0,212,100,0.12); }
.card-icon.purple { background: rgba(150,77,255,0.12); }
.card-icon.pink { background: rgba(255,77,150,0.12); }

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

/* SERVICES SECTION */
.services-section { background: var(--dark2); }

.service-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.06;
  transition: all 0.4s;
}

.service-card.orange::after { background: var(--primary); }
.service-card.blue::after { background: var(--accent); }
.service-card.yellow::after { background: var(--accent2); }

.service-card:hover { transform: translateY(-6px); border-color: rgba(255,77,0,0.3); }
.service-card:hover::after { opacity: 0.12; transform: scale(1.3); }

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
}

.service-card h3 { font-size: 1.3rem; margin: 16px 0 12px; }

.service-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-features li::before {
  content: '→';
  color: var(--primary);
  font-size: 0.75rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.service-link:hover { gap: 12px; }

/* PROCESS */
.process-section {}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step {
  background: var(--dark2);
  padding: 36px 28px;
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.process-step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(255,77,0,0.12), rgba(255,77,0,0.04));
  border-color: rgba(255,77,0,0.4);
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pricing-card .price {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 20px 0 4px;
}
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }

.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}
.pricing-features li .check { color: #00D464; font-size: 0.75rem; }
.pricing-features li .cross { color: var(--text-muted); opacity: 0.4; font-size: 0.75rem; }

/* TESTIMONIALS */
.testimonials-section { background: var(--dark2); }
.testimonial-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  opacity: 0.9;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: var(--accent2); font-size: 0.8rem; margin-bottom: 14px; }

/* CTA SECTION */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,77,0,0.1), transparent);
}

.cta-section .section-title { position: relative; font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
.cta-section p { position: relative; }
.cta-buttons { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  gap: 16px;
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary-light); }
.faq-q .faq-icon { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; color: var(--primary); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* CONTACT FORM */
.contact-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group select { background-color: var(--dark3); cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,77,0,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* TEAM */
.team-card {
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: white;
}
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--primary-light); margin-bottom: 10px; font-weight: 500; }
.team-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 80px 5% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; margin-top: 16px; max-width: 280px; font-weight: 300; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-icon:hover { border-color: var(--primary); color: var(--primary); background: rgba(255,77,0,0.08); }

/* PAGE HEADER */
.page-header {
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 60%, rgba(255,77,0,0.1), transparent);
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 16px; }
.page-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--primary-light); }

/* BLOG */
.blog-card {}
.blog-img {
  height: 180px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
}
.blog-cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); }
.read-more { color: var(--primary-light); font-weight: 500; }

/* LEGAL PAGES */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 5% 100px;
}
.legal-content h2 { font-size: 1.4rem; margin: 40px 0 14px; color: var(--text); }
.legal-content h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--text-muted); }
.legal-content p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 14px; font-weight: 300; }
.legal-content ul { padding-left: 0; margin-bottom: 14px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { font-size: 0.93rem; color: var(--text-muted); padding-left: 20px; position: relative; line-height: 1.7; font-weight: 300; }
.legal-content ul li::before { content: '–'; position: absolute; left: 0; color: var(--primary); }
.legal-content a { color: var(--primary-light); }
.legal-date { display: inline-block; background: rgba(255,77,0,0.1); border: 1px solid rgba(255,77,0,0.2); padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; color: var(--primary-light); margin-bottom: 40px; }

/* ABOUT */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
.value-item { text-align: center; padding: 28px 20px; }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-item h3 { font-size: 0.95rem; margin-bottom: 8px; }
.value-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--dark3);
  border: 1px solid rgba(0,212,100,0.4);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text);
  font-size: 0.88rem;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 320px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast strong { color: #00D464; display: block; margin-bottom: 4px; }

/* MOBILE NAV */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--dark2);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; }
  .cards-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}

/* SCROLL ANIMATE */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HIGHLIGHT */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* BADGE CHIPS */
.chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,77,0,0.1);
  color: var(--primary-light);
  border: 1px solid rgba(255,77,0,0.2);
  margin: 4px;
}
.chip.blue { background: rgba(0,212,255,0.1); color: var(--accent); border-color: rgba(0,212,255,0.2); }
.chip.yellow { background: rgba(255,214,0,0.1); color: var(--accent2); border-color: rgba(255,214,0,0.2); }

/* 2-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; direction: ltr; }
}

.visual-block {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.visual-block::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: var(--primary);
  border-radius: 50%;
  bottom: -80px; right: -80px;
  opacity: 0.08;
}

.metric-big {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}
.metric-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }

.metric-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 28px; }
.metric-item {}

/* NO SCROLL */
.no-scroll { overflow: hidden; }
