* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --brand: #3B65F5; --brand-dark: #2D4FD4; --brand-light: #EEF2FE; --navy: #1A1A2E; --cyan: #3B65F5; --navy-dark: #2D4FD4; --navy-light: #EEF2FE; --cyan-light: #F5F7FF; --white: #ffffff; --text: #1A1A2E; --text-mid: #555577; --text-light: #8888AA; --border: #E8EBF5; --surface: #F8F9FC; }
body { font-family: "Segoe UI", system-ui, sans-serif; color: var(--text); background: var(--white); }

/* NAV — white background */
.navbar { background: #ffffff; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 var(--border), 0 2px 16px rgba(26,26,46,.05); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo img { display: block; }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a { color: var(--text-mid); text-decoration: none; padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; transition: all .2s; }
.nav-links a:hover { color: var(--brand); background: var(--brand-light); }
.btn-nav { background: var(--brand) !important; color: #fff !important; font-weight: 700 !important; padding: 9px 20px !important; border-radius: 20px !important; }
.btn-nav:hover { background: var(--brand-dark) !important; color: #fff !important; }
.nav-toggle { display: none; }
.nav-hamburger { display: none; color: var(--text); font-size: 24px; cursor: pointer; padding: 8px; }
@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; padding: 16px; gap: 4px; border-top: 1px solid var(--border); box-shadow: 0 8px 24px rgba(26,26,46,.08); }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

/* FOOTER — white background */
.footer { background: #ffffff; border-top: 1px solid var(--border); padding: 60px 24px 0; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; color: var(--text-mid); max-width: 300px; }
.footer-links h4 { color: var(--text); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-mid); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { max-width: 1200px; margin: 0 auto; text-align: center; padding: 24px 0; font-size: 13px; color: var(--text-light); }
@media (max-width: 768px) { .footer-container { grid-template-columns: 1fr; gap: 32px; } }


/* HERO */
.hero { background: linear-gradient(180deg, #ffffff 0%, var(--surface) 100%); color: var(--text); padding: 72px 24px 88px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(59,101,245,.08) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(59,101,245,.05) 0%, transparent 70%); border-radius: 50%; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero-content { text-align: left; }
.hero-badge { display: inline-block; background: var(--brand-light); border: 1px solid rgba(59,101,245,.15); color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: var(--text); }
.hero h1 span { color: var(--brand); }
.hero p { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary { background: var(--brand); color: white; padding: 15px 32px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 16px; transition: all .2s; box-shadow: 0 4px 16px rgba(59,101,245,.3); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(59,101,245,.4); }
.btn-secondary { background: #fff; color: var(--text); padding: 15px 32px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 16px; transition: all .2s; border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 32px; justify-content: flex-start; flex-wrap: wrap; }
.stat { text-align: left; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: var(--brand); }
.stat-label { font-size: 13px; color: var(--text-mid); margin-top: 4px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-app-wrap { position: relative; max-width: 300px; margin: 0 auto; }
.hero-app-wrap::before { content: ''; position: absolute; inset: -16px; background: var(--brand-light); border-radius: 36px; z-index: 0; opacity: .6; }
.hero-app-img { position: relative; z-index: 1; width: 100%; max-width: 280px; height: auto; border-radius: 28px; box-shadow: 0 20px 50px rgba(26,26,46,.12); display: block; margin: 0 auto; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat { text-align: center; }
  .hero-app-img { max-width: 240px; }
}
.section { padding: 80px 24px; }
.section-alt { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-block; color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-mid); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.inner { max-width: 1200px; margin: 0 auto; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
#features .cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
#features .card { flex: 0 1 300px; max-width: 300px; text-align: center; }
#features .card-icon { margin-left: auto; margin-right: auto; }
.card { background: white; border-radius: 20px; padding: 36px 28px; border: 1px solid var(--border); transition: all .3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(59,101,245,.1); border-color: rgba(59,101,245,.35); }
.card-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.card-icon.blue { background: var(--navy-light); }
.card-icon.cyan { background: var(--cyan-light); }
.card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.card p { font-size: .95rem; color: var(--text-mid); line-height: 1.7; }
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.audience-card { border-radius: 24px; padding: 48px 40px; color: var(--text); background: #fff; border: 1px solid var(--border); }
.audience-card.for-users { border-top: 4px solid var(--brand); }
.audience-card.for-pros { border-top: 4px solid var(--text-mid); }
.audience-card .tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.audience-card.for-pros .tag { color: var(--text-mid); }
.audience-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.audience-card p { color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.audience-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.audience-features li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text-mid); }
.audience-features li::before { content: "✓"; background: var(--brand-light); color: var(--brand); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.audience-card.for-pros .audience-features li::before { background: var(--surface); color: var(--text-mid); }
.info-box { background: var(--brand-light); border: 1px solid rgba(59,101,245,.12); border-radius: 24px; padding: 48px 36px; color: var(--text); text-align: center; }
.info-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.info-box p { color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
.info-box .info-box-btn { display: inline-block; background: var(--brand); color: #fff; padding: 14px 28px; border-radius: 30px; font-weight: 700; text-decoration: none; transition: all .2s; }
.info-box .info-box-btn:hover { background: var(--brand-dark); }
@media (max-width: 768px) { .audience { grid-template-columns: 1fr; } .audience-card { padding: 32px 24px; } }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 28px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: white; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-body p { font-size: .92rem; color: var(--text-mid); line-height: 1.65; }
.cta-banner { background: var(--surface); color: var(--text); text-align: center; padding: 80px 24px; border-top: 1px solid var(--border); }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.cta-banner p { color: var(--text-mid); max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }
.cta-banner .btn-outline { background: #fff; color: var(--text); border: 2px solid var(--border); box-shadow: none; }
.cta-banner .btn-outline:hover { border-color: var(--brand); color: var(--brand); background: #fff; }
.store-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.store-badge { display: inline-block; transition: transform .2s, opacity .2s; }
.store-badge:hover { transform: translateY(-2px); opacity: .9; }
.store-badge img { height: 52px; width: auto; display: block; }
@media (max-width: 480px) { .store-badge img { height: 44px; } }
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial { background: white; border-radius: 20px; padding: 32px; border: 1px solid var(--border); }
.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }
.testimonial p { font-size: .95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 15px; }
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--text); }
.testimonial-role { font-size: .8rem; color: var(--text-light); }
/* from contact.html */
.page-hero { background: var(--surface); color: var(--text); padding: 64px 24px; border-bottom: 1px solid var(--border); }
.page-hero.page-hero--with-image { position: relative; min-height: 280px; padding: 64px 24px; background-repeat: no-repeat; background-size: cover; background-position: center; }
.page-hero.page-hero--with-image::before { content: ''; position: absolute; inset: 0; background: rgba(26, 26, 46, 0.58); }
.page-hero.page-hero--with-image .page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: left; width: 100%; }
.page-hero.page-hero--with-image h1 { color: #fff; }
.page-hero.page-hero--with-image p { color: rgba(255, 255, 255, 0.9); }
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-mid); font-size: 1rem; line-height: 1.6; }
.contact-section { max-width: 1100px; margin: 0 auto; padding: 72px 24px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact-section { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h2 { font-size: 1.6rem; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.contact-info > p { color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-item-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-item h4 { font-size: .85rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-item p { color: var(--text-mid); font-size: .95rem; line-height: 1.5; margin: 0; }
.contact-item a { color: var(--brand); text-decoration: none; font-size: .95rem; }
.contact-form-wrap { background: white; border-radius: 24px; padding: 40px; border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(26,26,46,.06); }
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.subtitle { font-size: .9rem; color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
input, select, textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 15px; color: var(--text); background: var(--surface); transition: border-color .2s; outline: none; font-family: inherit; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); background: white; }
textarea { resize: vertical; min-height: 130px; }
.btn-submit { width: 100%; background: var(--brand); color: white; border: none; padding: 15px; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; transition: all .2s; }
.btn-submit:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(59,101,245,.3); }
.success-msg { display: none; background: #dcfce7; border: 1px solid #86efac; color: #166534; padding: 14px 20px; border-radius: 12px; margin-top: 16px; font-size: .95rem; font-weight: 600; }
/* from privacy.html */
.page-hero { background: var(--surface); color: var(--text); padding: 64px 24px; border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-mid); font-size: 1rem; line-height: 1.6; }
.page-content { max-width: 820px; margin: 0 auto; padding: 64px 24px; }
.page-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin: 40px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--brand); }
.page-content h2:first-of-type { margin-top: 0; }
.page-content p, .page-content li { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.page-content ul { padding-left: 24px; margin-bottom: 16px; }
.page-content li { margin-bottom: 8px; }
.last-updated { display: inline-block; background: var(--brand-light); color: var(--brand); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 32px; }
.static-page-content h1, .static-page-content h2, .static-page-content h3, .static-page-content h4 { color: var(--text); margin: 24px 0 12px; }
.static-page-content h3 { font-size: 1.2rem; font-weight: 800; padding-bottom: 8px; border-bottom: 2px solid var(--brand); }
.static-page-content p, .static-page-content li { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.static-page-content ul { padding-left: 24px; margin-bottom: 16px; }
.static-page-content a { color: var(--brand); }
.contact-info h3, .contact-info h4 { color: var(--text); }
.contact-info p { color: var(--text-mid); line-height: 1.7; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: left; }
/* from terms.html */
.page-hero { background: var(--surface); color: var(--text); padding: 64px 24px; border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-mid); font-size: 1rem; line-height: 1.6; }
.page-content { max-width: 820px; margin: 0 auto; padding: 64px 24px; }
.page-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin: 40px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--brand); }
.page-content h2:first-of-type { margin-top: 0; }
.page-content p, .page-content li { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.page-content ul { padding-left: 24px; margin-bottom: 16px; }
.page-content li { margin-bottom: 8px; }
.last-updated { display: inline-block; background: var(--brand-light); color: var(--brand); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 32px; }
.static-page-content h1, .static-page-content h2, .static-page-content h3, .static-page-content h4 { color: var(--text); margin: 24px 0 12px; }
.static-page-content h3 { font-size: 1.2rem; font-weight: 800; padding-bottom: 8px; border-bottom: 2px solid var(--brand); }
.static-page-content p, .static-page-content li { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.static-page-content ul { padding-left: 24px; margin-bottom: 16px; }
.static-page-content a { color: var(--brand); }
.contact-info h3, .contact-info h4 { color: var(--text); }
.contact-info p { color: var(--text-mid); line-height: 1.7; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: left; }