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

:root {
  --ink: #080C14;
  --paper: #F4F1EB;
  --teal: #00C8B4;
  --ember: #FF5C35;
  --muted: #8A95A8;
  --card-bg: #111827;
  --border: rgba(255,255,255,0.07);
  --ff-head: 'Syne', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--ink); color: var(--paper); overflow-x: hidden; }

body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px; background: rgba(8,12,20,0.75);
  backdrop-filter: blur(18px); border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--ff-head); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.5px; color: var(--paper);
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo span { color: var(--teal); }
.nav-logo .dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--paper); }
.nav-cta { background: var(--teal); color: var(--ink); padding: 10px 22px; border-radius: 100px; font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,180,0.35); }

/* HERO */
.hero { min-height: 100vh; display: grid; place-items: center; padding: 120px 60px 80px; position: relative; overflow: hidden; }
.hero-glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(0,200,180,.15) 0%, transparent 70%); top: -100px; left: -150px; pointer-events: none; }
.hero-glow2 { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(255,92,53,.1) 0%, transparent 70%); bottom: 0; right: -100px; pointer-events: none; }
.hero-inner { max-width: 1100px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,200,180,.08); border: 1px solid rgba(0,200,180,.25); color: var(--teal); padding: 7px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 24px; animation: fadeUp .6s ease both; }
.hero-title { font-family: var(--ff-head); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; animation: fadeUp .6s .1s ease both; }
.hero-title em { font-style: normal; color: var(--teal); }
.hero-desc { margin-top: 20px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; max-width: 460px; animation: fadeUp .6s .2s ease both; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }

.btn-primary { background: var(--teal); color: var(--ink); padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all .25s; box-shadow: 0 4px 20px rgba(0,200,180,.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,200,180,.4); }
.btn-ghost { border: 1px solid var(--border); color: var(--paper); padding: 14px 28px; border-radius: 100px; font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: all .25s; background: rgba(255,255,255,.03); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; animation: fadeUp .6s .4s ease both; }
.stat-item { border-left: 2px solid var(--teal); padding-left: 16px; }
.stat-num { font-family: var(--ff-head); font-size: 2rem; font-weight: 800; color: var(--paper); }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

.hero-visual { animation: fadeLeft .8s .2s ease both; }
.hero-card-wrap { background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; padding: 32px; position: relative; overflow: hidden; }
.hero-card-wrap::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(0,200,180,.2), transparent); pointer-events: none; }
.score-ring { text-align: center; margin-bottom: 24px; }
.ring-svg { width: 160px; height: 160px; }
.ring-bg { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 12; }
.ring-fill { fill: none; stroke: var(--teal); stroke-width: 12; stroke-linecap: round; stroke-dasharray: 400; stroke-dashoffset: 72; transform: rotate(-90deg); transform-origin: center; animation: ringAnim 1.5s .5s ease both; }
.hero-metrics { display: grid; gap: 10px; }
.metric-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,.03); border-radius: 10px; padding: 10px 14px; }
.metric-label { font-size: 0.82rem; color: var(--muted); }
.metric-bar-wrap { flex: 1; margin: 0 14px; height: 4px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden; }
.metric-bar { height: 100%; border-radius: 2px; background: var(--teal); animation: barGrow 1.2s ease both; }
.metric-val { font-size: 0.82rem; font-weight: 600; color: var(--teal); }
.hero-status { display: flex; align-items: center; gap: 8px; background: rgba(0,200,180,.07); border: 1px solid rgba(0,200,180,.15); border-radius: 10px; padding: 12px 16px; margin-top: 16px; font-size: 0.85rem; color: var(--paper); }
.status-dot { width: 8px; height: 8px; background: #00e676; border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite; }

/* ANIMATIONS */
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:.5} }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes ringAnim { from { stroke-dashoffset: 400; } to { stroke-dashoffset: 72; } }
@keyframes ringAnim2 { from { stroke-dashoffset: 534; } to { stroke-dashoffset: 96; } }
@keyframes barGrow { from { width: 0!important; } }

/* SECTIONS */
.section { padding: 100px 60px; }
.section-inner { max-width: 1100px; margin: auto; }
.sec-header { margin-bottom: 60px; }
.sec-tag { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.sec-tag::before { content: ''; width: 20px; height: 2px; background: var(--teal); }
.sec-title { font-family: var(--ff-head); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
.sec-desc { color: var(--muted); margin-top: 12px; font-size: 1rem; line-height: 1.7; max-width: 520px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-cards { display: grid; gap: 16px; }
.about-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 22px; display: flex; gap: 16px; align-items: flex-start; transition: all .3s; cursor: default; }
.about-card:hover { border-color: rgba(0,200,180,.3); transform: translateX(6px); }
.about-card-icon { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: rgba(0,200,180,.1); display: grid; place-items: center; color: var(--teal); font-size: 1.1rem; }
.about-card h4 { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; margin-bottom: 5px; }
.about-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.6; }

/* SERVICES */
.services-bg { background: #0A0F1E; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 32px 26px; transition: all .3s; position: relative; overflow: hidden; cursor: default; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--ember)); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { border-color: rgba(0,200,180,.2); transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,.4); }
.svc-icon { width: 60px; height: 60px; border-radius: 16px; margin-bottom: 20px; background: rgba(0,200,180,.08); border: 1px solid rgba(0,200,180,.15); display: grid; place-items: center; font-size: 1.4rem; color: var(--teal); }
.svc-card h3 { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
.svc-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--teal); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: gap .2s; }
.svc-card:hover .svc-arrow { gap: 10px; }

/* PLANS */
.compare-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.compare-left { position: sticky; top: 100px; }
.plans-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.plans-table thead th { padding: 16px 20px; text-align: center; font-family: var(--ff-head); font-weight: 700; font-size: 0.9rem; background: var(--card-bg); border-bottom: 1px solid var(--border); }
.plans-table thead th:first-child { text-align: left; border-radius: 16px 0 0 0; }
.plans-table thead th:last-child { border-radius: 0 16px 0 0; }
.th-elite { color: var(--teal); position: relative; }
.th-elite::after { content: 'BEST'; position: absolute; top: 6px; right: 14px; background: var(--teal); color: var(--ink); font-size: 0.6rem; font-weight: 800; padding: 2px 6px; border-radius: 100px; letter-spacing: .5px; }
.plans-table tbody tr { border-bottom: 1px solid var(--border); }
.plans-table tbody tr:hover { background: rgba(255,255,255,.02); }
.plans-table td { padding: 14px 20px; text-align: center; font-size: 0.87rem; color: var(--muted); }
.plans-table td:first-child { text-align: left; color: var(--paper); font-weight: 500; }
.plans-table .check { color: var(--teal); font-weight: 700; }
.plans-table .cross { color: rgba(255,255,255,.2); }
.table-wrap { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }

/* SCORE */
.score-section-bg { background: linear-gradient(180deg, #0A0F1E 0%, var(--ink) 100%); }
.score-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; margin-top: 10px; }
.score-gauge-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; padding: 36px 24px; text-align: center; }
.big-ring { width: 200px; height: 200px; margin: 0 auto 24px; }
.big-ring-bg { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 14; }
.big-ring-fill { fill: none; stroke-width: 14; stroke-linecap: round; stroke-dasharray: 534; stroke-dashoffset: 96; transform: rotate(-90deg); transform-origin: center; stroke: url(#ringGrad); animation: ringAnim2 1.8s .3s ease both; }
.score-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,230,118,.08); border: 1px solid rgba(0,230,118,.2); color: #00e676; padding: 8px 18px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; }
.score-details { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.score-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 18px; transition: all .3s; }
.score-card:hover { border-color: rgba(0,200,180,.25); }
.score-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.score-card h4 { font-size: 0.85rem; font-weight: 600; }
.score-card .badge { background: rgba(0,200,180,.1); color: var(--teal); padding: 3px 8px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }
.score-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; margin-bottom: 10px; }
.score-mini-bar { height: 3px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden; }
.score-mini-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--teal), #00a896); animation: barGrow 1.4s ease both; }
.ai-box { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(0,200,180,.08), rgba(255,92,53,.05)); border: 1px solid rgba(0,200,180,.15); border-radius: 20px; padding: 28px 30px; }
.ai-box h3 { font-family: var(--ff-head); font-weight: 700; margin-bottom: 14px; font-size: 1.05rem; }
.ai-suggestions { display: flex; flex-wrap: wrap; gap: 10px; }
.ai-chip { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 100px; padding: 8px 16px; font-size: 0.83rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.ai-chip span { color: var(--teal); }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(0,200,180,.3); }
.faq-q { width: 100%; background: none; border: none; color: var(--paper); text-align: left; padding: 20px 24px; cursor: pointer; font-family: var(--ff-body); font-size: 0.95rem; font-weight: 500; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-q-icon { color: var(--teal); font-size: 1.1rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; padding: 0 24px; color: var(--muted); font-size: 0.87rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.why-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px; padding: 36px; }
.why-card h3 { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }
.why-card > p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; padding: 12px 16px; background: rgba(0,200,180,.05); border: 1px solid rgba(0,200,180,.1); border-radius: 12px; }
.why-list li::before { content: '✓'; color: var(--teal); font-weight: 800; }
.why-highlight { margin-top: 24px; padding: 16px; border-radius: 12px; background: linear-gradient(135deg, var(--teal), #00a896); color: var(--ink); font-weight: 700; text-align: center; font-size: 0.9rem; }

/* NEWSLETTER */
.newsletter-bar { background: linear-gradient(135deg, rgba(0,200,180,.12), rgba(255,92,53,.08)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px; }
.newsletter-inner { max-width: 1100px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-text h3 { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.newsletter-text p { color: var(--muted); font-size: 0.9rem; }
.newsletter-form { display: flex; border-radius: 100px; overflow: hidden; border: 1px solid var(--border); background: rgba(255,255,255,.04); }
.newsletter-form input { background: none; border: none; padding: 14px 22px; color: var(--paper); font-family: var(--ff-body); font-size: 0.9rem; outline: none; width: 280px; }
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button { background: var(--teal); color: var(--ink); border: none; padding: 14px 26px; font-weight: 700; cursor: pointer; font-family: var(--ff-body); font-size: 0.9rem; transition: background .2s; }
.newsletter-form button:hover { background: #00a896; }

/* FOOTER */
footer { background: #060A12; padding: 60px 60px 30px; }
.footer-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 0.87rem; line-height: 1.7; margin-top: 14px; max-width: 240px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); font-size: 0.85rem; text-decoration: none; transition: all .2s; }
.social-btn:hover { background: var(--teal); color: var(--ink); border-color: var(--teal); }
.footer-col h4 { font-family: var(--ff-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.87rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-contact li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: var(--muted); margin-bottom: 10px; }
.footer-contact i { color: var(--teal); width: 14px; }
.footer-bottom { max-width: 1100px; margin: auto; padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }
.footer-bottom a { color: var(--teal); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 16px 30px; }
  .hero { padding: 100px 30px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; max-width: 600px; }
  .about-grid, .compare-grid, .faq-layout { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .score-layout { grid-template-columns: 1fr; }
  .score-details { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 30px; }
}
@media (max-width: 640px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 90px 20px 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .score-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-bar { padding: 40px 20px; }
  footer { padding: 48px 20px 24px; }
  .section { padding: 60px 20px; }
}