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

:root {
  --primary: #6366F1;
  --primary-dark: #4F46E5;
  --primary-light: #A5B4FC;
  --accent: #10B981;
  --dark: #060612;
  --dark2: #0D0D1F;
  --dark3: #13132A;
  --text: #111827;
  --text-light: #6B7280;
  --text-lighter: #9CA3AF;
  --white: #FFFFFF;
  --off-white: #F5F5FF;
  --border: #E5E7EB;
  --shadow: 0 20px 60px rgba(99,102,241,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 68px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,6,18,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 19px; color: #fff; letter-spacing: -0.5px; }
.nav-logo span { color: var(--primary-light); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--primary) !important; color: #fff !important; padding: 9px 22px; border-radius: 8px; font-weight: 600 !important; font-size: 14px; transition: all 0.2s !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 8px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; transition: all 0.25s; cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 24px rgba(99,102,241,0.4); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 34px rgba(99,102,241,0.5); color: #fff; }
.btn-white { background: #fff; color: var(--primary); box-shadow: 0 6px 24px rgba(0,0,0,0.12); }
.btn-white:hover { background: #F0F0FF; transform: translateY(-2px); color: var(--primary-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); color: #fff; }
.btn-lg { padding: 17px 40px; font-size: 16px; }

/* LAYOUT */
section { padding: 96px 48px; }
.container { max-width: 1160px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.label { display: inline-block; font-size: 11px; letter-spacing: 3px; color: var(--primary-light); font-weight: 700; text-transform: uppercase; margin-bottom: 14px; }
.title { font-size: clamp(26px, 3.8vw, 46px); font-weight: 800; color: var(--text); margin-bottom: 18px; }
.title-white { color: #fff; }
.sub { font-size: 18px; color: var(--text-light); line-height: 1.8; margin-bottom: 56px; max-width: 580px; }
.sub-white { color: rgba(255,255,255,0.68); }

.bg-dark { background: var(--dark2); }
.bg-light { background: var(--off-white); }
.bg-white { background: #fff; }
.bg-hero { background: linear-gradient(135deg, #060612 0%, #0D0D2E 50%, #0A0A22 100%); position: relative; overflow: hidden; }
.bg-indigo { background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* HERO */
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.3); border-radius: 6px; padding: 6px 14px; font-size: 13px; color: var(--primary-light); font-weight: 600; margin-bottom: 28px; }
.hero-badge .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(16,185,129,0.5);} 50%{opacity:0.7;box-shadow:0 0 0 6px rgba(16,185,129,0);} }
.hero-title { font-size: clamp(38px, 6.5vw, 76px); font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--primary-light); }
.hero-sub { font-size: clamp(16px, 1.8vw, 20px); color: rgba(255,255,255,0.68); line-height: 1.85; margin-bottom: 44px; max-width: 580px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-social-proof { display: flex; align-items: center; gap: 24px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 8px; }
.proof-item .check { width: 20px; height: 20px; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--accent); flex-shrink: 0; }
.proof-item span { font-size: 13px; color: rgba(255,255,255,0.55); }
.hero-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.1); }

/* CARDS */
.card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 36px 28px; transition: all 0.3s; }
.card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-5px); }
.card-icon { font-size: 38px; margin-bottom: 18px; display: block; }
.card h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--text-light); line-height: 1.75; }

/* SPLIT */
.split-text h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: var(--text); margin-bottom: 20px; }
.split-text p { font-size: 17px; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.split-img img { width: 100%; border-radius: 16px; box-shadow: 0 30px 80px rgba(99,102,241,0.2); }

/* CHECKLIST */
.checklist { list-style: none; padding: 0; margin: 28px 0; }
.checklist li { padding: 10px 0; border-bottom: 1px solid #F3F4F6; display: flex; gap: 12px; align-items: center; font-size: 16px; color: var(--text); font-weight: 500; }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: "✓"; color: var(--primary); font-weight: 800; font-size: 12px; width: 22px; height: 22px; background: rgba(99,102,241,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; text-align: center; }
.step-num { font-family: 'Syne', sans-serif; font-size: 84px; font-weight: 800; color: var(--primary); opacity: 0.15; line-height: 1; margin-bottom: -8px; }
.step h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.step p { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center; margin-top: 72px; padding-top: 56px; border-top: 1px solid rgba(255,255,255,0.07); }
.stat-n { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: var(--primary-light); line-height: 1; margin-bottom: 10px; }
.stat-l { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px,1fr)); gap: 22px; }
.price-card { background: #fff; border: 2px solid var(--border); border-radius: 20px; padding: 40px 30px; text-align: center; transition: all 0.3s; position: relative; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 70px rgba(99,102,241,0.14); }
.price-card.hot { border-color: var(--primary); box-shadow: 0 24px 70px rgba(99,102,241,0.22); transform: scale(1.04); }
.price-card.hot:hover { transform: scale(1.04) translateY(-4px); }
.hot-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; padding: 4px 18px; border-radius: 6px; white-space: nowrap; letter-spacing: 0.5px; }
.price-tier { font-size: 11px; letter-spacing: 3px; color: var(--primary); font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.price-amt { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 6px; }
.price-cad { font-size: 13px; color: var(--text-lighter); margin-bottom: 28px; }
.price-feats { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; }
.price-feats li { font-size: 14px; color: #4B5563; padding: 8px 0; border-bottom: 1px solid #F3F4F6; display: flex; gap: 10px; align-items: flex-start; }
.price-feats li:last-child { border-bottom: none; }
.price-feats li::before { content: "✓"; color: var(--primary); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 34px 28px; position: relative; transition: all 0.3s; }
.testi:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.testi-q { font-size: 68px; color: var(--primary); opacity: 0.12; position: absolute; top: 12px; left: 20px; font-family: Georgia,serif; line-height: 1; }
.testi p { font-size: 15px; color: #4B5563; line-height: 1.85; font-style: italic; margin-bottom: 22px; }
.testi-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-lighter); margin-top: 3px; }

/* FAQ */
.faq-wrap { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; gap: 16px; }
.faq-q h4 { font-size: 16px; font-weight: 700; color: var(--text); transition: color 0.2s; }
.faq-q:hover h4 { color: var(--primary); }
.faq-ico { width: 26px; height: 26px; background: rgba(99,102,241,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 18px; font-weight: 700; flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-ico { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-ans p { font-size: 15px; color: var(--text-light); line-height: 1.85; padding-bottom: 20px; }
.faq-item.open .faq-ans { max-height: 400px; }

/* INCLUDES */
.includes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.inc-card { display: flex; gap: 16px; padding: 24px; background: #fff; border: 1.5px solid var(--border); border-radius: 14px; transition: all 0.3s; }
.inc-card:hover { border-color: var(--primary); box-shadow: 0 8px 30px rgba(99,102,241,0.1); }
.inc-icon { font-size: 28px; flex-shrink: 0; }
.inc-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.inc-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* CONTACT */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-g { margin-bottom: 14px; }
.form-g label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: 0.3px; text-transform: uppercase; }
.form-g input, .form-g textarea, .form-g select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 15px; font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; outline: none; transition: border 0.2s, box-shadow 0.2s; }
.form-g input:focus, .form-g textarea:focus, .form-g select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.form-g textarea { height: 120px; resize: vertical; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 20px; background: #fff; border: 1.5px solid var(--border); border-radius: 14px; transition: all 0.3s; }
.contact-detail:hover { border-color: var(--primary); transform: translateY(-2px); }
.cd-icon { font-size: 26px; flex-shrink: 0; }
.cd-label { font-size: 11px; color: var(--text-lighter); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.cd-value { font-size: 15px; color: var(--primary); font-weight: 600; }
.cd-sub { font-size: 12px; color: var(--text-lighter); margin-top: 2px; }

/* FOOTER */
footer { background: var(--dark); padding: 64px 48px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1160px; margin: 0 auto; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand h3 { font-size: 20px; color: #fff; margin-bottom: 12px; }
.footer-brand h3 span { color: var(--primary-light); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.75; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom { max-width: 1160px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.65s ease forwards; }
.d1 { animation-delay:0.1s; opacity:0; }
.d2 { animation-delay:0.22s; opacity:0; }
.d3 { animation-delay:0.34s; opacity:0; }
.d4 { animation-delay:0.46s; opacity:0; }

.about-img img { width:100%; border-radius:16px; box-shadow:0 30px 80px rgba(99,102,241,0.18); }
.about-note { font-size:11px; color:var(--text-lighter); text-align:center; margin-top:10px; font-style:italic; }

@media(max-width:1024px) {
  nav { padding:0 24px; }
  section { padding:80px 24px; }
  footer { padding:50px 24px 32px; }
  .grid-2 { gap:40px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
  .stats-row { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-links.open { display:flex; flex-direction:column; position:fixed; top:68px; left:0; right:0; background:var(--dark); padding:24px; gap:18px; border-bottom:1px solid rgba(255,255,255,0.07); z-index:998; }
  .grid-2 { grid-template-columns:1fr; gap:36px; }
  .grid-3 { grid-template-columns:1fr; }
  .grid-4 { grid-template-columns:1fr 1fr; }
  .steps-grid { grid-template-columns:1fr; gap:36px; }
  .testi-grid { grid-template-columns:1fr; }
  .includes-grid { grid-template-columns:1fr; }
  .stats-row { grid-template-columns:repeat(2,1fr); gap:28px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { justify-content:center; }
  .price-card.hot { transform:scale(1); }
  .form-row { grid-template-columns:1fr; }
}
@media(max-width:480px) {
  .grid-4 { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
}
