*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #4f46e5; --primary-dark: #4338ca; --primary-light: #eef2ff;
  --accent: #d97706; --accent-hover: #b45309; --accent-light: #fef3c7;
  --dark: #ffffff; --darker: #f8fafc; --bg-2: #f1f5f9; --card: #ffffff; --border: #e2e8f0;
  --text: #475569; --text-muted: #64748b; --heading: #0f172a; --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06); --shadow-lg: 0 20px 50px rgba(79, 70, 229, 0.12);
  --transition: 0.3s ease; --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --display: 'Space Grotesk', 'Segoe UI', sans-serif;
}
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(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); 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.4rem; font-weight: 700; color: var(--heading); display: flex; align-items: center; gap: 8px; letter-spacing: -0.02em; }
.logo-icon { color: var(--accent); font-size: 1.2rem; }
.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.9rem; font-weight: 500; padding: 7px 13px; border-radius: 10px; transition: all var(--transition); }
nav a:hover { color: var(--primary); background: var(--primary-light); }
nav a.nav-cta { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 600; padding: 9px 20px; border-radius: 50px; box-shadow: 0 6px 18px rgba(79,70,229,0.35); }
nav a.nav-cta:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; transform: translateY(-1px); }
.mobile-toggle { display: none; background: none; border: none; color: var(--heading); font-size: 1.5rem; cursor: pointer; padding: 4px; }

@media(max-width:768px){
  .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 */
.hero {
  background: linear-gradient(135deg, var(--darker) 0%, #eef2ff 55%, var(--accent-light) 100%);
  padding: 100px 0 90px; text-align: center; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(79,70,229,0.10) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 80%); pointer-events: none; }
.hero h1 { font-family: var(--display); font-size: 3.1rem; font-weight: 700; color: var(--heading); margin-bottom: 16px; line-height: 1.15; letter-spacing: -0.02em; }
.hero h1 span { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.15rem; max-width: 680px; margin: 0 auto 34px; color: var(--text-muted); }
.hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); color: var(--primary); font-size: 0.8rem; font-weight: 600; padding: 7px 16px; border-radius: 50px; margin-bottom: 18px; box-shadow: var(--shadow); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-content { max-width: 720px; margin: 0 auto; }
.hero-visual { margin-top: 48px; display: flex; justify-content: center; }
.hero-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; max-width: 380px; text-align: left; box-shadow: var(--shadow-lg); }
.hero-card-price { font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.hero-card-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.hero-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.hero-card ul li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-muted); }
.hero-card ul li::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; transition: all var(--transition); cursor: pointer; border: none; text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 8px 20px rgba(79,70,229,0.35); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(79,70,229,0.4); }
.btn-secondary { background: #fff; color: var(--heading); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg-2); color: var(--heading); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); color: var(--primary-dark); transform: translateY(-2px); }
.btn-large { padding: 16px 38px; font-size: 1.05rem; }

/* Sections */
.section { padding: 80px 0; }
.section-title { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--heading); text-align: center; margin-bottom: 12px; letter-spacing: -0.02em; }
.section-sub { text-align: center; color: var(--text-muted); margin-bottom: 48px; max-width: 620px; margin-left: auto; margin-right: auto; }
.section-label { text-align: center; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 40px; }

/* Content area */
.content-area { padding: 60px 0; flex: 1; }
.content-area h1 { font-family: var(--display); font-size: 2.3rem; color: var(--heading); margin-bottom: 24px; letter-spacing: -0.02em; }
.content-area h2 { font-family: var(--display); font-size: 1.5rem; color: var(--heading); margin-top: 40px; margin-bottom: 16px; }
.content-area h3 { font-size: 1.2rem; color: var(--heading); margin-top: 28px; margin-bottom: 12px; }
.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); }

/* Page hero */
.page-hero { padding: 64px 0 48px; text-align: center; background: linear-gradient(135deg, var(--darker) 0%, #eef2ff 100%); }
.page-hero h1 { font-family: var(--display); font-size: 2.4rem; color: var(--heading); letter-spacing: -0.02em; }
.page-hero p { color: var(--text-muted); margin-top: 10px; }

/* 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: 28px; transition: all var(--transition); box-shadow: 0 2px 8px rgba(15,23,42,0.03); }
.card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.card h3 { font-size: 1.15rem; color: var(--heading); margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Features */
.feature-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 20px; }
.feature-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; transition: all var(--transition); }
.feature-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-item .num { font-family: var(--display); font-size: 2rem; font-weight: 700; background: linear-gradient(135deg, var(--primary), var(--accent)); -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; }
.feature-item p { font-size: 0.85rem; color: var(--text-muted); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 22px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: all var(--transition); }
.feature-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-icon { font-size: 1.6rem; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.05rem; color: var(--heading); margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; align-items: stretch; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; transition: all var(--transition); position: relative; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.pricing-card.featured .badge, .pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 18px; border-radius: 50px; white-space: nowrap; box-shadow: 0 6px 16px rgba(79,70,229,0.35); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-name { font-family: var(--display); font-size: 1.1rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.pricing-price { font-family: var(--display); font-size: 2.6rem; font-weight: 700; color: var(--heading); letter-spacing: -0.02em; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.pricing-saving { display: inline-block; background: var(--accent-light); color: var(--accent-hover); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-top: 6px; }
.pricing-card ul { list-style: none; padding: 0; margin: 20px 0; text-align: left; flex: 1; }
.pricing-card ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-muted); }
.pricing-card ul li::before { content: '✓ '; color: var(--primary); font-weight: 700; }
.pricing-card .btn { width: 100%; }

/* 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); }
.blog-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-tag { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.blog-card .meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.15rem; color: var(--heading); margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: var(--heading); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-card-date { font-size: 0.8rem; color: var(--text-muted); }
.read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 60px 0; text-align: center; border-radius: var(--radius); margin: 40px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.cta-section h2 { font-family: var(--display); font-size: 1.8rem; color: #fff; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-section .btn-primary { background: var(--accent); }
.cta-section .btn-primary:hover { background: var(--accent-hover); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.cta-section .btn-outline { border-color: rgba(255,255,255,0.7); color: #fff; }
.cta-section .btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* 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(--primary); }
.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(--primary); }
.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 { margin-top: 10px; }
.footer-bottom-links a { color: var(--text-muted); margin: 0 10px; font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--primary); }

/* 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; }

/* Table */
.table-wrap { overflow-x: auto; margin: 20px 0; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
th { background: var(--card); color: var(--heading); font-weight: 600; }
tr:hover td { background: var(--primary-light); }

/* 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: 32px; text-align: center; transition: all var(--transition); }
.contact-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-card-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.contact-card h3 { color: var(--heading); margin-bottom: 10px; }
.contact-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 18px; }
.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: 12px 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); box-shadow: 0 0 0 3px rgba(79,70,229,0.12); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* Reviews */
.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: 24px; transition: all var(--transition); }
.review-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.review-stars { color: #ffc107; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-text::before { content: '\201C'; color: var(--primary); font-size: 1.4rem; font-weight: 700; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); 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; }
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-score { display: inline-flex; align-items: center; gap: 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 32px; box-shadow: var(--shadow); }
.reviews-score-number { font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: var(--primary); }
.reviews-score-stars { color: #ffc107; font-size: 1.3rem; letter-spacing: 3px; }
.reviews-score-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
.trustpilot-badge { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trustpilot-badge svg { width: 32px; height: 32px; }
.trustpilot-badge-text { font-size: 1.5rem; font-weight: 700; color: var(--heading); }
.trustpilot-stars { color: #00b67a; font-size: 1.5rem; letter-spacing: 4px; }
.trustpilot-rating { color: var(--text-muted); font-size: 0.9rem; }
.platform-rating { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 32px; margin-bottom: 32px; }
.platform-rating-logo { display: flex; align-items: center; gap: 10px; }
.platform-rating-logo .trustpilot-stars { font-size: 1rem; }
.trustpilot-text { font-size: 1.2rem; font-weight: 700; color: var(--heading); }
.platform-rating-score { text-align: center; }
.platform-rating-number { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--primary); }
.platform-rating-stars { color: #00b67a; font-size: 1.1rem; letter-spacing: 3px; }
.platform-rating-count { font-size: 0.8rem; color: var(--text-muted); }
.load-more-wrap { text-align: center; margin-top: 32px; }
.btn-load-more { background: transparent; border: 2px solid var(--primary); color: var(--heading); padding: 12px 36px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all var(--transition); }
.btn-load-more:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.review-count-bar { text-align: center; margin-bottom: 24px; font-size: 0.85rem; color: var(--text-muted); }

/* 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: 12px; overflow: hidden; transition: all var(--transition); }
.faq-item:hover { border-color: var(--primary); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow); }
.faq-question { padding: 20px 24px; font-weight: 600; color: var(--heading); cursor: pointer; position: relative; padding-right: 48px; }
.faq-question::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--primary); font-weight: 400; transition: transform var(--transition); }
.faq-item.active .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.92rem; }

/* Setup steps */
.setup-steps { max-width: 760px; margin: 0 auto; }
.setup-step { display: flex; gap: 20px; margin-bottom: 24px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all var(--transition); }
.setup-step:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.setup-step-number { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.setup-step-content h3 { color: var(--heading); margin-bottom: 6px; font-size: 1.05rem; }
.setup-step-content p { font-size: 0.9rem; color: var(--text-muted); }

/* 404 */
.error-404 { text-align: center; padding: 100px 0; }
.error-404 h1 { font-family: var(--display); font-size: 6rem; background: linear-gradient(135deg, var(--primary), var(--accent)); -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; }
