/* ===== PYRSO SITE — GLOBAL CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --amber: #F59E0B; --amber-l: #FBBF24; --amber-d: #D97706; --amber-dd: #B45309;
    --orange: #F97316; --orange-l: #FB923C;
    --navy: #0F172A; --navy-l: #1E293B; --navy-ll: #334155;
    --sl50: #F8FAFC; --sl100: #F1F5F9; --sl200: #E2E8F0; --sl300: #CBD5E1; --sl400: #94A3B8; --sl500: #64748B;
    --green: #10B981; --red: #EF4444; --violet: #8B5CF6; --sky: #0EA5E9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--navy); color: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: all .3s; }
.nav.scrolled { background: rgba(15, 23, 42, .92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.04); padding: 10px 0; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 32px; height: 32px; }
.nav-logo span { font-size: 22px; font-weight: 800; letter-spacing: -1px; }
.nav-logo .f { background: linear-gradient(135deg, var(--amber), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.55); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { padding: 10px 24px; border-radius: 10px; background: linear-gradient(135deg, var(--amber), var(--orange)); color: #fff!important; font-weight: 700; font-size: 14px; transition: opacity .2s, transform .2s; }
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }

/* ===== HEADING ===== */
.sec-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; border-radius: 50px; background: rgba(245,158,11,.06); border: 1px solid rgba(245,158,11,.1); font-size: 11px; font-weight: 700; color: var(--amber-l); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.sec-badge .d { width: 5px; height: 5px; border-radius: 50%; background: var(--amber-l); }
.sec-title { font-size: 48px; font-weight: 900; letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px; }
.sec-title .f { background: linear-gradient(135deg, var(--amber), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sec-sub { font-size: 18px; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 600px; }
.text-center { text-align: center; }
.text-center .sec-sub { margin: 0 auto; }

/* ===== HERO ===== */
.hero { padding: 160px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; width: 600px; height: 600px; background: var(--amber); border-radius: 50%; filter: blur(200px); opacity: .06; top: -200px; right: -100px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-left .sec-title { font-size: 56px; }
.hero-desc { font-size: 14px; font-weight: 500; color: var(--amber-l); margin-bottom: 6px; letter-spacing: .5px; }
.hero-text { font-size: 18px; color: rgba(255,255,255,.45); line-height: 1.7; margin: 20px 0 32px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 12px; background: linear-gradient(135deg, var(--amber), var(--orange)); color: #fff; font-weight: 700; font-size: 15px; font-family: 'Outfit'; border: none; cursor: pointer; transition: all .2s; box-shadow: 0 8px 32px rgba(245,158,11,.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,158,11,.3); }
.btn-primary svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: #fff; font-weight: 600; font-size: 15px; font-family: 'Outfit'; cursor: pointer; transition: all .2s; }
.btn-secondary:hover { background: rgba(255,255,255,.08); }
.hero-right { position: relative; }
.hero-right img { border-radius: 16px; box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.hero-right::before { content: ''; position: absolute; inset: -20px; background: linear-gradient(135deg, rgba(245,158,11,.1), rgba(249,115,22,.05)); border-radius: 24px; z-index: -1; }
.hero-stats { display: flex; gap: 40px; margin-top: 40px; }
.hero-stat .num { font-size: 28px; font-weight: 900; background: linear-gradient(135deg, var(--amber), var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat .label { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 2px; }

/* ===== FEATURES CARDS ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.feat-card { background: var(--navy-l); border: 1px solid rgba(255,255,255,.04); border-radius: 16px; padding: 32px; transition: all .3s; }
.feat-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,.15); box-shadow: 0 16px 48px rgba(0,0,0,.2); }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(245,158,11,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feat-icon svg { width: 24px; height: 24px; stroke: var(--amber); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.6; }

/* ===== SOCIAL PROOF ===== */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.proof-card { background: var(--navy-l); border: 1px solid rgba(255,255,255,.04); border-radius: 16px; padding: 28px; }
.proof-stars { color: var(--amber); font-size: 16px; margin-bottom: 12px; }
.proof-text { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--amber), var(--orange)); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; }
.proof-name { font-size: 14px; font-weight: 700; }
.proof-role { font-size: 11px; color: rgba(255,255,255,.35); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, rgba(245,158,11,.08), rgba(249,115,22,.04)); border: 1px solid rgba(245,158,11,.1); border-radius: 24px; padding: 60px; text-align: center; }
.cta-banner .sec-title { font-size: 40px; }
.cta-banner .sec-sub { margin: 0 auto 32px; }

/* ===== PRICING ===== */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 32px 0 48px; }
.pricing-toggle span { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.4); transition: color .2s; }
.pricing-toggle span.active { color: #fff; }
.toggle-switch { width: 56px; height: 30px; border-radius: 15px; background: var(--navy-ll); border: 1px solid rgba(255,255,255,.08); position: relative; cursor: pointer; transition: background .3s; }
.toggle-switch.annual { background: linear-gradient(135deg, var(--amber), var(--orange)); border-color: transparent; }
.toggle-dot { width: 24px; height: 24px; border-radius: 50%; background: #fff; position: absolute; top: 2px; left: 2px; transition: left .3s; box-shadow: 0 2px 4px rgba(0,0,0,.2); }
.toggle-switch.annual .toggle-dot { left: 28px; }
.save-badge { padding: 4px 10px; border-radius: 6px; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); font-size: 11px; font-weight: 700; color: var(--green); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { background: var(--navy-l); border: 1px solid rgba(255,255,255,.04); border-radius: 20px; padding: 36px; display: flex; flex-direction: column; transition: all .3s; }
.price-card.featured { background: linear-gradient(180deg, rgba(245,158,11,.06), var(--navy-l)); border-color: rgba(245,158,11,.2); transform: scale(1.03); box-shadow: 0 16px 56px rgba(245,158,11,.1); }
.price-card.featured .price-popular { display: inline-flex; }
.price-popular { display: none; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 50px; background: linear-gradient(135deg, var(--amber), var(--orange)); font-size: 10px; font-weight: 700; color: #fff; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; width: fit-content; }
.price-name { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.price-desc { font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 24px; }
.price-value { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-currency { font-size: 20px; font-weight: 700; color: rgba(255,255,255,.4); }
.price-amount { font-size: 48px; font-weight: 900; letter-spacing: -2px; }
.price-period { font-size: 14px; color: rgba(255,255,255,.3); }
.price-billing { font-size: 11px; color: rgba(255,255,255,.25); margin-bottom: 24px; }
.price-original { text-decoration: line-through; color: rgba(255,255,255,.2); font-size: 14px; margin-left: 8px; }
.price-divider { width: 100%; height: 1px; background: rgba(255,255,255,.06); margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.price-feat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.5); }
.price-feat svg { width: 18px; height: 18px; stroke: var(--green); fill: none; stroke-width: 2.5; stroke-linecap: round; flex-shrink: 0; }
.price-feat.disabled { opacity: .3; }
.price-feat.disabled svg { stroke: var(--sl400); }
.price-btn { width: 100%; padding: 14px; border-radius: 12px; border: none; font-family: 'Outfit'; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; }
.price-btn-primary { background: linear-gradient(135deg, var(--amber), var(--orange)); color: #fff; box-shadow: 0 8px 24px rgba(245,158,11,.2); }
.price-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,158,11,.3); }
.price-btn-secondary { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: #fff; }
.price-btn-secondary:hover { background: rgba(255,255,255,.08); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.3); }
.timeline { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.timeline-item { display: flex; gap: 20px; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--amber), var(--orange)); flex-shrink: 0; margin-top: 4px; }
.timeline-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.value-card { text-align: center; padding: 32px 24px; background: var(--navy-l); border: 1px solid rgba(255,255,255,.04); border-radius: 16px; }
.value-card .emoji { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); }
.form-input { padding: 14px 18px; border-radius: 12px; background: var(--navy-l); border: 1px solid rgba(255,255,255,.06); color: #fff; font-family: 'Outfit'; font-size: 14px; outline: none; transition: border-color .2s; }
.form-input:focus { border-color: var(--amber); }
.form-input::placeholder { color: rgba(255,255,255,.2); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--navy-l); border: 1px solid rgba(255,255,255,.04); border-radius: 12px; overflow: hidden; }
.faq-q { padding: 18px 20px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .2s; }
.faq-q:hover { background: rgba(255,255,255,.02); }
.faq-q svg { width: 18px; height: 18px; stroke: var(--sl400); fill: none; stroke-width: 2; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s; }
.faq-a-inner { padding: 0 20px 18px; font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid rgba(255,255,255,.04); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.35); padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.04); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .features-grid, .proof-grid, .values-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .sec-title { font-size: 36px; }
    .hero-left .sec-title { font-size: 40px; }
    .nav-links { display: none; }
}
