*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #ff2d78; --primary-hover: #e91e63; --accent: #ff6b9d; --accent2: #b44bff;
  --dark: #0d0518; --darker: #14071f; --bg-2: #1a0b2e; --card: #1f1033; --border: #2e1a4d;
  --text: #d6c7e6; --text-muted: #9c86b8; --heading: #ffffff;
  --radius: 14px; --transition: 0.3s ease;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --display: 'Space Grotesk', 'Inter', 'Segoe UI', sans-serif;
  --gradient: linear-gradient(135deg, #ff2d78 0%, #b44bff 100%);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--dark); color: var(--text); line-height: 1.7; min-height: 100vh; display: flex; flex-direction: column; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: rgba(13,5,24,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.logo { font-family: var(--display); font-size: 1.45rem; font-weight: 700; color: var(--heading); display: flex; align-items: center; gap: 10px; letter-spacing: 0.5px; }
.logo-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--gradient); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; flex-shrink: 0; }
.logo:hover { color: var(--heading); }
nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
nav a { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; padding: 8px 12px; border-radius: 8px; transition: all var(--transition); }
nav a:hover { color: var(--heading); background: rgba(255,45,120,0.12); }
nav a.nav-cta { background: var(--gradient); color: #fff; font-weight: 600; padding: 9px 18px; border-radius: 50px; }
nav a.nav-cta:hover { color: #fff; box-shadow: 0 6px 20px rgba(255,45,120,0.4); }
.mobile-toggle { display: none; background: none; border: none; color: var(--heading); font-size: 1.5rem; cursor: pointer; padding: 4px; }

@media(max-width:820px){
  .mobile-toggle{display:block}
  nav{display:none;width:100%;flex-direction:column;padding:12px 0;gap:4px}
  nav.open{display:flex}
  .header-inner{flex-wrap:wrap}
}

/* Hero Slider */
.hero-slider { position: relative; height: 640px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,3,18,0.92) 0%, rgba(10,3,18,0.55) 45%, rgba(10,3,18,0.25) 100%); }
.slide-content { position: relative; z-index: 2; max-width: 640px; }
.slide-content .kicker { display: inline-block; background: rgba(255,45,120,0.18); color: var(--accent); border: 1px solid rgba(255,45,120,0.4); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; }
.slide-content h1 { font-family: var(--display); font-size: 3.4rem; font-weight: 700; color: var(--heading); line-height: 1.15; margin-bottom: 16px; }
.slide-content h1 span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.slide-content p { font-size: 1.12rem; color: var(--text); max-width: 520px; margin-bottom: 28px; }
.slide-content .hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.slider-nav { position: absolute; bottom: 28px; right: 40px; z-index: 3; display: flex; gap: 10px; }
.slider-dot { width: 44px; height: 5px; border-radius: 5px; background: rgba(255,255,255,0.25); border: none; cursor: pointer; transition: all var(--transition); }
.slider-dot.active { background: var(--gradient); width: 62px; }
.slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; display: flex; justify-content: space-between; width: 100%; padding: 0 24px; pointer-events: none; }
.slider-arrows button { pointer-events: auto; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(13,5,24,0.5); color: #fff; font-size: 1.4rem; cursor: pointer; transition: all var(--transition); backdrop-filter: blur(6px); }
.slider-arrows button:hover { background: var(--gradient); border-color: transparent; }
@media(max-width:820px){
  .hero-slider{height:520px}
  .slide-content h1{font-size:2.3rem}
  .slider-arrows{display:none}
  .slider-nav{right:50%;transform:translateX(50%)}
}

/* Buttons */
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: all var(--transition); cursor: pointer; border: none; text-align: center; }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255,45,120,0.4); }
.btn-secondary { background: rgba(255,255,255,0.06); color: var(--heading); border: 1px solid var(--border); backdrop-filter: blur(4px); }
.btn-secondary:hover { background: rgba(255,45,120,0.15); color: var(--heading); border-color: var(--accent); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-2px); }
.btn-large { padding: 16px 40px; font-size: 1.05rem; }

/* Sections */
.section { padding: 84px 0; }
.section-label { text-align: center; color: var(--accent); font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: var(--display); font-size: 2.3rem; font-weight: 700; color: var(--heading); text-align: center; margin-bottom: 12px; line-height: 1.2; }
.section-title span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { text-align: center; color: var(--text-muted); margin: 0 auto 48px; max-width: 640px; font-size: 1.02rem; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 48px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: all var(--transition); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); opacity: 0; transition: opacity var(--transition); }
.card:hover { border-color: rgba(255,45,120,0.5); transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,0.4); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.card h3 { font-size: 1.12rem; color: var(--heading); margin-bottom: 8px; }
.card h3 a { color: var(--heading); }
.card h3 a:hover { color: var(--accent); }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Feature blocks (why choose) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.feature-card { background: linear-gradient(180deg, var(--card) 0%, rgba(31,16,51,0.6) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px; text-align: center; transition: all var(--transition); }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(180,75,255,0.5); box-shadow: 0 14px 40px rgba(0,0,0,0.4); }
.feature-icon { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; box-shadow: 0 8px 24px rgba(255,45,120,0.35); }
.feature-card h3 { color: var(--heading); font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; align-items: start; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; text-align: center; transition: all var(--transition); position: relative; }
.pricing-card.featured { border-color: transparent; background: linear-gradient(180deg, rgba(255,45,120,0.12) 0%, var(--card) 45%); box-shadow: 0 0 0 1.5px var(--primary), 0 18px 50px rgba(255,45,120,0.22); }
.pricing-card:hover { transform: translateY(-5px); }
.badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 5px 18px; border-radius: 50px; white-space: nowrap; box-shadow: 0 6px 16px rgba(255,45,120,0.4); }
.pricing-name { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--heading); letter-spacing: 0.5px; margin-bottom: 14px; }
.pricing-price { font-family: var(--display); font-size: 3rem; font-weight: 700; color: var(--heading); line-height: 1; }
.pricing-price small { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-period { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }
.pricing-saving { display: inline-block; margin: 14px 0 4px; background: rgba(52,211,153,0.14); color: #34d399; border: 1px solid rgba(52,211,153,0.35); font-size: 0.78rem; font-weight: 600; padding: 4px 14px; border-radius: 50px; }
.pricing-features { list-style: none; padding: 0; margin: 20px 0 24px; text-align: left; }
.pricing-features li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text); }
.pricing-features li::before { content: '✓ '; color: var(--accent); font-weight: 700; }
.pricing-card .btn { width: 100%; }

/* Comparison table */
.comparison-table-wrapper { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.comparison-table th, .comparison-table td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; color: var(--heading); font-weight: 600; }
.comparison-table th { background: var(--card); color: var(--heading); font-weight: 700; }
.comparison-table tr:hover td { background: rgba(255,45,120,0.06); }

/* Trust / numbers */
.feature-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.feature-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.feature-item .num { font-family: var(--display); font-size: 2.2rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 4px; }
.feature-item h4 { color: var(--heading); margin-bottom: 4px; font-size: 0.98rem; }
.feature-item p { font-size: 0.84rem; color: var(--text-muted); }

/* Reviews */
.trustpilot-badge { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.trustpilot-badge svg { width: 32px; height: 32px; }
.trustpilot-badge-text { font-size: 1.4rem; font-weight: 700; color: var(--heading); }
.trustpilot-stars { color: #00e676; font-size: 1.5rem; letter-spacing: 4px; }
.trustpilot-rating { color: var(--text-muted); font-size: 0.9rem; }
.review-count-bar { text-align: center; margin-bottom: 28px; font-size: 0.85rem; color: var(--text-muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: all var(--transition); }
.review-card:hover { border-color: rgba(255,45,120,0.5); transform: translateY(-3px); }
.review-stars { color: #ffb400; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-text::before { content: '\201C'; color: var(--accent); font-size: 1.4rem; font-weight: 700; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.review-name { font-size: 0.9rem; color: var(--heading); font-weight: 600; }
.review-source { font-size: 0.75rem; color: var(--text-muted); }
.review-hidden { display: none; }
.load-more-wrap { text-align: center; margin-top: 32px; }
.btn-load-more { background: transparent; border: 2px solid var(--accent); color: var(--heading); padding: 13px 38px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all var(--transition); }
.btn-load-more:hover { background: var(--gradient); color: #fff; border-color: transparent; transform: translateY(-2px); }
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-score { display: inline-flex; align-items: center; gap: 18px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 34px; }
.reviews-score-number { font-family: var(--display); font-size: 2.6rem; font-weight: 700; color: var(--heading); }
.reviews-score-stars { color: #ffb400; font-size: 1.3rem; letter-spacing: 3px; }
.reviews-score-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #2a0a3c 0%, #4a0f3a 100%); border: 1px solid rgba(255,45,120,0.35); padding: 64px 40px; text-align: center; border-radius: 18px; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,45,120,0.15); filter: blur(40px); }
.cta-section h2 { font-family: var(--display); font-size: 2rem; color: #fff; margin-bottom: 12px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 26px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.guarantee-badge { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 20px; color: var(--text); font-size: 0.85rem; position: relative; }
.guarantee-badge-icon { font-size: 1.1rem; }

/* Page hero */
.page-hero { padding: 70px 0 50px; text-align: center; position: relative; background: radial-gradient(ellipse at 50% -20%, rgba(255,45,120,0.18) 0%, transparent 60%); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: var(--display); font-size: 2.6rem; color: var(--heading); }
.page-hero p { color: var(--text-muted); margin-top: 10px; max-width: 620px; margin-left: auto; margin-right: auto; }

/* Content area */
.content-area { padding: 64px 0; flex: 1; }
.content-area h1 { font-family: var(--display); font-size: 2.4rem; color: var(--heading); margin-bottom: 24px; }
.content-area h2 { font-family: var(--display); font-size: 1.55rem; color: var(--heading); margin-top: 40px; margin-bottom: 14px; }
.content-area h3 { font-size: 1.15rem; color: var(--heading); margin-top: 28px; margin-bottom: 10px; }
.content-area p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.8; }
.content-area ul, .content-area ol { margin-bottom: 16px; padding-left: 24px; color: var(--text-muted); }
.content-area li { margin-bottom: 8px; }
.content-area strong { color: var(--heading); }
.content-area a { color: var(--accent); }
.content-area a:hover { color: var(--primary); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: border-color var(--transition); }
.faq-item.active { border-color: rgba(255,45,120,0.55); }
.faq-question { padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--heading); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--accent); font-weight: 400; transition: transform var(--transition); }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; color: var(--text-muted); font-size: 0.95rem; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 22px 20px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px; text-align: center; transition: all var(--transition); }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(180,75,255,0.5); }
.contact-card-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.contact-card h3 { color: var(--heading); font-size: 1.1rem; margin-bottom: 10px; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; color: var(--heading); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 0.95rem; font-family: var(--font); transition: border-color var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* Setup steps */
.steps { max-width: 720px; margin: 0 auto; }
.step { display: flex; gap: 20px; margin-bottom: 28px; }
.step-num { width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; background: var(--gradient); color: #fff; font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(255,45,120,0.35); }
.step h3 { color: var(--heading); font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--text-muted); font-size: 0.94rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { border-color: rgba(255,45,120,0.5); transform: translateY(-4px); }
.blog-card-tag { display: inline-block; align-self: flex-start; background: rgba(180,75,255,0.15); color: var(--accent2); border: 1px solid rgba(180,75,255,0.35); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 14px; }
.blog-card h3 { font-size: 1.1rem; color: var(--heading); margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: var(--heading); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.blog-card-date { font-size: 0.78rem; color: var(--text-muted); }
.read-more { color: var(--accent); font-weight: 600; font-size: 0.9rem; }

/* Footer */
footer { background: var(--darker); border-top: 1px solid var(--border); padding: 60px 0 30px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media(max-width:768px){.footer-grid{grid-template-columns:1fr 1fr;gap:24px}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr}}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin: 12px 0; max-width: 340px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 1.5rem; color: var(--text-muted); transition: color var(--transition); }
.footer-social a:hover { color: var(--accent); }
.footer-grid h4 { font-size: 0.95rem; color: var(--heading); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 40px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 18px; justify-content: center; margin-top: 10px; }
.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); color: #fff; }

/* 404 */
.error-404 { text-align: center; padding: 100px 0; flex: 1; }
.error-404 h1 { font-family: var(--display); font-size: 6rem; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.error-404 h2 { font-size: 1.8rem; color: var(--heading); margin: 12px 0; }
.error-404 p { color: var(--text-muted); margin-bottom: 24px; }

/* 18+ bar */
.age-bar { background: var(--bg-2); border-top: 1px solid var(--border); padding: 14px 0; font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.age-bar strong { color: var(--accent); }
