
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #1a56db; --blue-dark: #1e40af; --blue-light: #eff6ff;
  --dark: #111827; --gray: #6b7280; --gray-light: #9ca3af;
  --light: #f9fafb; --border: #e5e7eb; --white: #fff;
  --green: #059669; --yellow: #fcd34d;
  --radius: 12px; --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(26,86,219,.12);
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--dark); line-height: 1.65; font-size: 16px; }
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.tag { display: inline-block; font-size: .75rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.section-title { font-size: clamp(1.7rem,3vw,2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 640px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-size: 1rem; font-weight: 700; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s; border: none; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 8px 24px rgba(26,86,219,.3); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { box-shadow: 0 8px 24px rgba(252,211,77,.4); }
.btn-outline { border: 2px solid var(--border); color: var(--dark); background: transparent; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: #fff; color: var(--dark); }
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* NAV */
.nav { background: rgba(255,255,255,.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: .95rem; color: var(--dark); font-weight: 500; transition: background .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { background: var(--blue-light); color: var(--blue); }
.nav-cta { background: var(--blue); color: #fff !important; padding: 10px 20px !important; border-radius: 8px !important; font-weight: 700 !important; border: none !important; cursor: pointer; font-size: .95rem !important; font-family: inherit !important; }
.nav-cta:hover { background: var(--blue-dark) !important; }
.nav-mobile-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-mobile-btn span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }
@media(max-width:768px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-mobile-btn { display: flex; }
}

/* HERO */
.hero { background: linear-gradient(135deg,#0f172a 0%,#1e3a8a 40%,#1a56db 100%); color: #fff; padding: 96px 0 80px; overflow: hidden; position: relative; }
.hero::before { content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; max-width: 720px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 8px 18px; font-size: .85rem; margin-bottom: 28px; }
.hero h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 800; line-height: 1.12; margin-bottom: 24px; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero p { font-size: 1.15rem; opacity: .88; max-width: 560px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--yellow); }
.hero-stat-label { font-size: .85rem; opacity: .7; margin-top: 2px; }

/* TRUST BAR */
.trust-bar { background: var(--light); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-list { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--gray); font-weight: 500; }
.trust-item span:first-child { font-size: 1.3rem; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; margin-top: 48px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon { width: 56px; height: 56px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 20px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: .95rem; line-height: 1.6; }
.card-featured { border: 2px solid var(--blue); position: relative; }
.card-badge { position: absolute; top: -13px; left: 24px; background: var(--blue); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; margin-top: 48px; align-items: start; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.price-card.featured { border: 2px solid var(--blue); }
.price-name { font-size: .85rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.price-amount { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.price-amount small { font-size: 1rem; font-weight: 400; color: var(--gray); }
.price-desc { font-size: .9rem; color: var(--gray); margin: 12px 0 24px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li { padding: 9px 0; border-bottom: 1px solid var(--light); font-size: .9rem; display: flex; align-items: flex-start; gap: 10px; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-cta { display: block; text-align: center; padding: 14px; border-radius: 10px; font-weight: 700; background: var(--blue-light); color: var(--blue); transition: background .15s; }
.price-card.featured .price-cta { background: var(--blue); color: #fff; }
.price-cta:hover { opacity: .85; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 32px; margin-top: 48px; }
.process-step { text-align: center; }
.step-num { width: 56px; height: 56px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; margin: 0 auto 16px; }
.process-step h3 { font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--gray); font-size: .9rem; }

/* NICHE PILLS */
.niche-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.niche-pill { background: #fff; border: 1px solid var(--border); border-radius: 50px; padding: 12px 22px; font-size: .9rem; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: border-color .15s, color .15s; }
.niche-pill:hover { border-color: var(--blue); color: var(--blue); }

/* FAQ */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 0; font-size: 1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--blue); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 0 20px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* CTA SECTION */
.cta-section { background: linear-gradient(135deg,#0f172a,#1a56db); color: #fff; padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; opacity: .88; max-width: 540px; margin: 0 auto 40px; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; margin-top: 48px; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: var(--shadow-lg); }
.blog-card-body { padding: 24px; }
.blog-card-tag { font-size: .75rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--gray); font-size: .9rem; margin-bottom: 16px; }
.blog-card-meta { font-size: .8rem; color: var(--gray-light); }

/* BREADCRUMB */
.breadcrumb { padding: 16px 0; font-size: .85rem; color: var(--gray); }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 8px; }

/* CONTACT MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15,23,42,.7); z-index: 1000; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.active { display: flex; }
.modal { background: #fff; border-radius: 20px; padding: 40px; width: 100%; max-width: 520px; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,.25); max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--light); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; color: var(--gray); transition: background .15s; }
.modal-close:hover { background: var(--border); }
.modal h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.modal .modal-sub { color: var(--gray); font-size: .95rem; margin-bottom: 24px; }
.modal .modal-package { display: inline-block; background: var(--blue-light); color: var(--blue); font-size: .8rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: .95rem; outline: none; transition: border-color .15s; background: #fff; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; padding: 15px; background: var(--blue); color: #fff; border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .15s, transform .15s; }
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-msg { margin-top: 16px; padding: 12px 16px; border-radius: 10px; font-size: .9rem; font-weight: 600; display: none; }
.form-msg.success { background: #d1fae5; color: #065f46; display: block; }
.form-msg.error { background: #fee2e2; color: #991b1b; display: block; }
.form-privacy { font-size: .78rem; color: var(--gray-light); margin-top: 12px; text-align: center; }
.form-privacy a { color: var(--gray); }
@media(max-width:480px) { .form-row { grid-template-columns: 1fr; } .modal { padding: 28px 20px; } }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg,#0f172a,#1e3a8a); color: #fff; padding: 64px 0; }
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; opacity: .85; max-width: 580px; }

/* FOOTER */
.footer { background: #0f172a; color: #94a3b8; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--blue); }
.footer-desc { font-size: .9rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #94a3b8; font-size: .9rem; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: .8rem; }
@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .hero-stats { gap: 24px; }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
