/* ============================================================
   1. RESET + CSS VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --orange: #F5621E;
  --orange-dark: #D44D10;
  --orange-light: #FFF0E8;
  --black: #111111;
  --dark: #1A1A2E;
  --gray: #6B7280;
  --gray-light: #F8F7F4;
  --gray-mid: #E5E3DF;
  --white: #ffffff;
  --font: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
}

/* ============================================================
   2. GLOBAL LAYOUT
   ============================================================ */
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); font-size: 15px; line-height: 1.6; }
section { padding: 70px 40px; }

/* ============================================================
   3. NAVIGATION
   ============================================================ */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  border-bottom: 1px solid var(--gray-mid);
  position: sticky; top: 0; background: var(--white); z-index: 150;
}
.logo { font-family: var(--font); font-size: 22px; font-weight: 800; color: var(--black); text-decoration: none; }
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--black); font-size: 14px; font-weight: 500; transition: all .2s; padding: 6px 12px; border-radius: 8px; display: block; }
.nav-links a:hover { color: var(--orange); background: var(--orange-light); }
.nav-links a.active { color: var(--orange); background: var(--orange-light); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; width: 36px; height: 36px; background: none; border: 1px solid var(--gray-mid); border-radius: 8px; cursor: pointer; flex-direction: column; gap: 4.5px; align-items: center; justify-content: center; padding: 8px; }
.nav-hamburger span { display: block; width: 18px; height: 2px; background: var(--black); border-radius: 2px; transition: all .2s; }

/* MEGA MENU */
.nav-item-mega { position: relative; }
.mega-trigger { display: flex; align-items: center; gap: 5px; color: var(--black); text-decoration: none; font-size: 14px; font-weight: 500; transition: all .2s; background: none; border: none; cursor: pointer; font-family: inherit; padding: 6px 12px; border-radius: 8px; }
.mega-trigger:hover { color: var(--orange); background: var(--orange-light); }
.mega-trigger svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform .2s; flex-shrink: 0; }
.nav-item-mega.is-open .mega-trigger { color: var(--orange); background: var(--orange-light); }
.nav-item-mega.is-open .mega-trigger svg { transform: rotate(180deg); }
.nav-item-mega.is-open::after { content: ''; position: absolute; top: calc(100% - 2px); left: -30px; right: -30px; height: 14px; z-index: 9; }
.mega-panel { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px); width: 860px; max-width: calc(100vw - 32px); background: white; border-radius: 0 0 16px 16px; box-shadow: 0 16px 48px rgba(0,0,0,.13), 0 2px 6px rgba(0,0,0,.05); border: 1px solid var(--gray-mid); border-top: none; opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease; z-index: 10; overflow: hidden; }
.nav-item-mega.is-open .mega-panel { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-inner { display: flex; min-height: 380px; max-height: 520px; }
.mega-col1 { width: 192px; background: var(--gray-light); padding: 16px 0; border-right: 1px solid var(--gray-mid); flex-shrink: 0; overflow-y: auto; }
.mega-col1::-webkit-scrollbar { width: 4px; }
.mega-col1::-webkit-scrollbar-thumb { background: var(--gray-mid); border-radius: 2px; }
.mega-col1-head { font-size: 10px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .07em; padding: 0 16px 12px; }
.mega-cat-btn { width: 100%; display: flex; align-items: center; gap: 9px; padding: 9px 14px; font-size: 13px; font-weight: 500; color: var(--gray); cursor: pointer; border: none; background: none; text-align: left; transition: all .15s; border-left: 3px solid transparent; font-family: inherit; line-height: 1.3; }
.mega-cat-btn:hover { color: var(--black); background: rgba(255,255,255,.7); }
.mega-cat-btn.active { color: var(--black); background: white; border-left-color: var(--orange); font-weight: 700; }
.mega-cat-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; background: var(--gray-mid); transition: background .15s; }
.mega-cat-btn.active .mega-cat-icon { background: var(--orange-light); }
.mega-cat-badge { margin-left: auto; font-size: 10px; background: var(--gray-mid); color: var(--gray); border-radius: 10px; padding: 1px 6px; font-weight: 700; flex-shrink: 0; }
.mega-cat-btn.active .mega-cat-badge { background: var(--orange-light); color: var(--orange); }
.mega-col2 { width: 222px; padding: 16px; border-right: 1px solid var(--gray-mid); flex-shrink: 0; }
.mega-col2-head { font-size: 10px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; min-height: 14px; }
.mega-sub-group { display: none; }
.mega-sub-group.active { display: block; animation: mgIn .15s ease; }
@keyframes mgIn { from { opacity: 0; transform: translateX(-5px); } to { opacity: 1; transform: translateX(0); } }
.mega-sub-link { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 8px; font-size: 13px; color: var(--black); text-decoration: none; transition: all .15s; cursor: pointer; border: none; background: none; width: 100%; text-align: left; font-family: inherit; }
.mega-sub-link:hover, .mega-sub-link.is-active { background: var(--orange-light); color: var(--orange); }
.mega-sub-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; opacity: 0; transition: opacity .15s; }
.mega-sub-link:hover .mega-sub-dot, .mega-sub-link.is-active .mega-sub-dot { opacity: 1; }
.mega-sub-badge { margin-left: auto; font-size: 10px; background: var(--orange-light); color: var(--orange); border-radius: 4px; padding: 1px 7px; font-weight: 700; white-space: nowrap; }
.mega-sub-soon { margin-left: auto; font-size: 10px; color: var(--gray-mid); }
.mega-sub-vars { display: flex; gap: 4px; flex-wrap: wrap; padding: 2px 10px 6px 23px; }
.mega-sub-var { font-size: 10px; border: 1px solid var(--gray-mid); border-radius: 5px; padding: 2px 8px; text-decoration: none; color: var(--gray); background: white; transition: all .15s; }
.mega-sub-var:hover { background: var(--orange-light); border-color: var(--orange); color: var(--orange); }
.mega-col2b { width: 0; overflow: hidden; flex-shrink: 0; transition: width .18s ease; background: white; border-right: 1px solid var(--gray-mid); }
.mega-col2b.active { width: 168px; }
.mega-col2b-inner { width: 168px; padding: 16px; }
.mega-col2b-head { font-size: 10px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.mega-var-btn { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 8px; font-size: 13px; color: var(--black); text-decoration: none; transition: all .15s; width: 100%; border: none; background: none; font-family: inherit; text-align: left; cursor: pointer; }
.mega-var-btn:hover { background: var(--orange-light); color: var(--orange); }
.mega-var-num { font-size: 10px; background: var(--gray-light); border: 1px solid var(--gray-mid); border-radius: 4px; padding: 1px 7px; font-weight: 700; margin-left: auto; flex-shrink: 0; }
.mega-col3 { flex: 1; padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.mega-col3-head { font-size: 10px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .07em; }
.mega-pframe { border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-mid); }
.mega-pbar { background: #1e1e30; padding: 7px 10px; display: flex; gap: 5px; align-items: center; }
.mega-pdot { width: 8px; height: 8px; border-radius: 50%; }
.mega-pdot.r { background: #FF5F57; }
.mega-pdot.y { background: #FEBC2E; }
.mega-pdot.g { background: #28C840; }
.mega-pthumb { height: 158px; overflow: hidden; background: #f0f0f4; position: relative; }
.mega-pthumb iframe { position: absolute; top: 0; left: 0; width: 1200px; height: 800px; border: none; transform-origin: top left; pointer-events: none; }
.mega-pempty { height: 158px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; color: var(--gray); font-size: 12px; }
.mega-pempty svg { width: 28px; height: 28px; stroke: var(--gray-mid); fill: none; stroke-width: 1.5; }
.mega-pmeta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mega-pname { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--black); }
.mega-pcat { font-size: 11px; color: var(--gray); margin-top: 1px; }
.mega-pcta { background: var(--orange); color: white; border: none; border-radius: 8px; padding: 8px 14px; font-family: var(--font); font-size: 12px; font-weight: 700; cursor: pointer; text-decoration: none; transition: background .2s; white-space: nowrap; flex-shrink: 0; display: inline-block; }
.mega-pcta:hover { background: var(--orange-dark); }
.mega-pcta.off { background: var(--gray-light); color: var(--gray); cursor: default; pointer-events: none; }

/* ============================================================
   4. FOOTER
   ============================================================ */
footer { background: var(--dark); padding: 50px 40px 24px; color: rgba(255,255,255,.6); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto 40px; }
.footer-brand .logo { color: white; }
.footer-brand p { font-size: 13px; line-height: 1.6; margin: 12px 0 16px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 32px; height: 32px; background: rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 13px; text-decoration: none; transition: background .2s; }
.social-btn:hover { background: var(--orange); color: white; }
.footer-col h5 { color: white; font-family: var(--font); font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: 13px; text-decoration: none; transition: all .2s; display: block; padding: 4px 8px; margin: 0 -8px; border-radius: 6px; }
.footer-col ul li a:hover { color: var(--orange); background: rgba(255,255,255,.08); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 8px; }
.footer-contact li svg { width: 14px; height: 14px; stroke: var(--orange); fill: none; stroke-width: 2; margin-top: 2px; flex-shrink: 0; }
.footer-bottom { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); font-size: 12px; text-decoration: none; }
.footer-bottom-links a:hover { color: white; }

/* ============================================================
   5. SHARED COMPONENTS
   ============================================================ */
.btn-orange { background: var(--orange); color: var(--white); border: none; border-radius: var(--radius); padding: 10px 22px; font-family: var(--font); font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; white-space: nowrap; text-decoration: none; display: inline-block; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--gray-mid); border-radius: var(--radius); padding: 10px 22px; font-family: var(--font); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.page-hero { background: var(--dark); padding: 64px 40px; text-align: center; }
.page-hero h1 { font-family: var(--font); font-size: 42px; font-weight: 800; color: white; margin-bottom: 12px; line-height: 1.2; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto; }
.page-hero p + p { margin-top: 8px; }

.cta-section { background: var(--dark); padding: 80px 40px; text-align: center; }
.cta-section h2 { font-family: var(--font); font-size: 36px; font-weight: 800; color: white; margin-bottom: 12px; line-height: 1.2; }
.cta-section h2 span { color: var(--orange); }
.cta-section p { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 28px; }

.section-title { text-align: center; font-family: var(--font); font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--gray); font-size: 15px; margin-bottom: 48px; }
.section-label { text-align: center; background: var(--orange-light); color: var(--orange); display: inline-block; border-radius: 20px; padding: 5px 16px; font-size: 12px; font-weight: 700; font-family: var(--font); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.section-label-wrap { text-align: center; margin-bottom: 0; }

.agents-section { background: var(--gray-light); padding: 80px 40px; }
.agents-inner { max-width: 900px; margin: 0 auto; }
.agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.agent-card { background: var(--white); border-radius: var(--radius-lg); padding: 20px; border: 2px solid var(--gray-mid); }
.agent-card-icon { width: 44px; height: 44px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
.agent-card h4 { font-family: var(--font); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.agent-card p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ============================================================
   6. HOME PAGE
   ============================================================ */
.hero { display: flex; align-items: center; gap: 40px; padding: 70px 80px 60px; max-width: 1200px; margin: 0 auto; }
.hero-left { flex: 1; max-width: 520px; }
.hero-left h1 { font-family: var(--font); font-size: 48px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: var(--black); }
.hero-left h1 span { color: var(--orange); }
.hero-left p { font-size: 15px; color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.hero-checks { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 7px; }
.hero-checks li { font-size: 13px; color: var(--gray); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.hero-checks li::before { content: '✓'; color: var(--orange); font-weight: 800; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.hero-btns { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.stat { display: flex; align-items: center; gap: 10px; }
.stat-icon { width: 36px; height: 36px; background: var(--orange-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; }
.stat-text strong { display: block; font-weight: 700; font-size: 14px; color: var(--black); }
.stat-text span { font-size: 12px; color: var(--gray); }
.hero-right { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; }

/* BUILD DEMO */
.build-demo { width: 320px; position: relative; }
.build-status { background: var(--dark); border-radius: 8px; padding: 10px 14px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; opacity: 0; animation: bdFadeIn .6s .4s forwards; }
.build-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: bdPulse 1.5s infinite; }
.build-status-text { font-size: 11px; color: rgba(255,255,255,.7); flex: 1; font-family: var(--font); }
.build-progress { height: 3px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; width: 80px; }
.build-progress-bar { height: 100%; background: var(--orange); border-radius: 2px; width: 0%; animation: bdProgress 7s .8s ease-out forwards; }
@keyframes bdPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }
@keyframes bdProgress { 0% { width: 0%; } 55% { width: 78%; } 85% { width: 90%; } 100% { width: 100%; } }
@keyframes bdFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bdSlideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.bd-browser { background: var(--dark); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.18); opacity: 0; animation: bdFadeIn .7s 1.2s forwards; }
.bd-bar { background: #2a2a3e; padding: 8px 12px; display: flex; gap: 6px; align-items: center; }
.bd-dot { width: 8px; height: 8px; border-radius: 50%; }
.bd-dot.r { background: #ff5f57; }
.bd-dot.y { background: #ffbd2e; }
.bd-dot.g { background: #28c840; }
.bd-bar-url { flex: 1; background: rgba(255,255,255,.08); border-radius: 4px; height: 14px; margin-left: 8px; }
.bd-nav { background: #23233a; padding: 8px 16px; display: flex; justify-content: space-between; align-items: center; opacity: 0; animation: bdSlideIn .5s 2.0s forwards; }
.bd-nav-logo { font-family: var(--font); font-size: 11px; font-weight: 800; color: rgba(255,255,255,.9); }
.bd-nav-logo span { color: var(--orange); }
.bd-nav-links { display: flex; gap: 10px; }
.bd-nav-links span { color: rgba(255,255,255,.5); font-size: 10px; }
.bd-hero-sec { background: linear-gradient(135deg, #2d3561 0%, #1a1a35 100%); padding: 20px 16px; }
.bd-hero-tag { font-size: 9px; color: var(--orange); font-weight: 700; font-family: var(--font); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; opacity: 0; animation: bdSlideIn .5s 2.8s forwards; }
.bd-hero-h { font-family: var(--font); color: white; font-size: 13px; font-weight: 700; margin-bottom: 5px; line-height: 1.4; opacity: 0; animation: bdSlideIn .5s 3.5s forwards; }
.bd-hero-p { color: rgba(255,255,255,.6); font-size: 10px; margin-bottom: 10px; opacity: 0; animation: bdSlideIn .5s 4.3s forwards; }
.bd-hero-btn { background: var(--orange); color: white; border-radius: 5px; padding: 5px 12px; font-size: 10px; font-weight: 600; display: inline-block; opacity: 0; animation: bdSlideIn .5s 5.1s forwards; }
.bd-services-sec { background: var(--white); padding: 12px 16px; }
.bd-services-title { font-size: 10px; font-weight: 700; color: var(--black); margin-bottom: 8px; opacity: 0; animation: bdSlideIn .5s 5.9s forwards; }
.bd-cards { display: flex; gap: 6px; }
.bd-card { flex: 1; height: 32px; background: var(--gray-light); border-radius: 6px; opacity: 0; }
.bd-card:nth-child(1) { animation: bdSlideIn .5s 6.5s forwards; }
.bd-card:nth-child(2) { animation: bdSlideIn .5s 7.0s forwards; }
.bd-card:nth-child(3) { animation: bdSlideIn .5s 7.5s forwards; }
.bd-done { position: absolute; top: -12px; right: -12px; background: #28c840; color: white; border-radius: 20px; padding: 5px 12px; font-size: 12px; font-weight: 700; font-family: var(--font); box-shadow: 0 4px 12px rgba(40,200,64,.35); opacity: 0; animation: bdFadeIn .7s 8.4s forwards; }

/* HOW IT WORKS (home) */
.how-it-works { background: var(--white); padding-top: 24px; }
.steps { display: flex; gap: 0; justify-content: center; max-width: 900px; margin: 0 auto; position: relative; }
.steps::before { content: ''; position: absolute; top: 34px; left: 10%; right: 10%; height: 2px; background: repeating-linear-gradient(90deg, var(--gray-mid) 0, var(--gray-mid) 6px, transparent 6px, transparent 12px); z-index: 0; }
.step { flex: 1; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num { width: 68px; height: 68px; background: var(--white); border: 2px solid var(--gray-mid); border-radius: 16px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; position: relative; }
.step-num svg { width: 28px; height: 28px; stroke: var(--gray); fill: none; stroke-width: 1.5; }
.step-badge { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; background: var(--orange); border-radius: 50%; color: white; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: var(--font); }
.step h4 { font-family: var(--font); font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.step p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* PRICING (home) */
.pricing { background: var(--white); }
.pricing-grid { display: flex; gap: 20px; max-width: 960px; margin: 0 auto; align-items: stretch; }
.pricing-card { flex: 1; border: 2px solid var(--gray-mid); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; }
.pricing-card.featured { background: var(--orange); border-color: var(--orange); color: white; }
.pricing-card.dark { background: var(--dark); border-color: var(--dark); color: white; }
.pricing-badge { background: white; color: var(--orange); font-size: 11px; font-weight: 700; border-radius: 20px; padding: 4px 14px; display: inline-block; margin-bottom: 12px; font-family: var(--font); }
.plan-name { font-family: var(--font); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 4px; opacity: .7; }
.pricing-card.featured .plan-name, .pricing-card.dark .plan-name { opacity: .8; color: rgba(255,255,255,.8); }
.plan-price { font-family: var(--font); font-size: 52px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.plan-price span { font-size: 22px; }
.plan-desc { font-size: 13px; margin-bottom: 20px; opacity: .75; }
.plan-features { list-style: none; flex: 1; margin-bottom: 24px; }
.plan-features li { font-size: 13px; padding: 6px 0; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(0,0,0,.06); }
.pricing-card.featured .plan-features li, .pricing-card.dark .plan-features li { border-bottom-color: rgba(255,255,255,.1); }
.plan-features li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 13px; }
.pricing-card.featured .plan-features li::before { color: white; }
.pricing-card.dark .plan-features li::before { color: var(--orange); }
.plan-btn { width: 100%; border-radius: var(--radius); padding: 12px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; border: 2px solid var(--orange); background: transparent; color: var(--orange); transition: all .2s; }
.plan-btn:hover { background: var(--orange); color: white; }
.pricing-card.featured .plan-btn { background: white; color: var(--orange); border-color: white; }
.pricing-card.featured .plan-btn:hover { background: rgba(255,255,255,.9); }
.pricing-card.dark .plan-btn { background: var(--orange); color: white; border-color: var(--orange); }

/* EXAMPLES (home) */
.examples { background: var(--gray-light); }
.examples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto 32px; }
.example-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,.08); position: relative; }
.example-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: white; font-weight: 700; text-align: center; padding: 12px; position: relative; overflow: hidden; }
.example-img.img1 { background: linear-gradient(135deg, #c0392b 0%, #8e1a10 100%); }
.example-img.img2 { background: linear-gradient(135deg, #1a3a2e 0%, #0d2419 100%); }
.example-img.img3 { background: linear-gradient(135deg, #1a1a35 0%, #0d1117 100%); }
.example-img.img4 { background: linear-gradient(135deg, #f8e8d4 0%, #e8c9a0 100%); }
.example-img.img4 span { color: var(--black); }
.example-inner { padding: 10px; font-size: 11px; color: var(--gray); font-weight: 600; display: flex; align-items: center; justify-content: space-between; }
.example-preview-btn { background: none; border: none; color: var(--orange); font-size: 12px; font-weight: 700; cursor: pointer; font-family: var(--font); padding: 0; transition: color .2s; white-space: nowrap; }
.example-preview-btn:hover { color: var(--orange-dark); }
.example-hover { position: absolute; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; }
.example-card:hover .example-hover { opacity: 1; }
.example-hover-btn { background: var(--orange); color: white; border: none; border-radius: 8px; padding: 9px 18px; font-family: var(--font); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s; }
.example-hover-btn:hover { background: var(--orange-dark); }
.example-badge { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,.4); color: white; font-size: 10px; font-weight: 700; border-radius: 20px; padding: 3px 10px; font-family: var(--font); }
.see-more-btn { display: block; margin: 0 auto; background: transparent; border: 2px solid var(--orange); color: var(--orange); border-radius: var(--radius); padding: 10px 28px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; text-decoration: none; }
.see-more-btn:hover { background: var(--orange); color: white; }

/* Browser-frame iframe thumbnails (homepage) */
.ec-browser { position: relative; overflow: hidden; }
.ec-bar { background: #1e1e30; padding: 7px 10px; display: flex; gap: 5px; align-items: center; }
.ec-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ec-dot.r { background: #FF5F57; }
.ec-dot.y { background: #FEBC2E; }
.ec-dot.g { background: #28C840; }
.ec-thumb { position: relative; height: 160px; overflow: hidden; background: #f0f0f4; }
.ec-iframe { position: absolute; top: 0; left: 0; width: 1200px; height: 810px; border: none; transform-origin: top left; pointer-events: none; }

/* INDIVIDUAL strip (home) */
.individual-section { padding: 0 40px 70px; background: var(--white); }
.individual-card { max-width: 1000px; margin: 0 auto; background: var(--dark); border-radius: var(--radius-lg); padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; color: white; }
.individual-card .ind-left { display: flex; flex-direction: column; }
.ind-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,98,30,.18); color: var(--orange); border-radius: 20px; padding: 5px 16px; font-size: 11px; font-weight: 700; font-family: var(--font); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px; width: fit-content; }
.ind-title { font-family: var(--font); font-size: 32px; font-weight: 800; margin-bottom: 6px; line-height: 1.2; }
.ind-price { font-family: var(--font); font-size: 48px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.ind-price span { font-size: 20px; color: rgba(255,255,255,.6); }
.ind-desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 24px; flex: 1; }
.ind-for { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; }
.ind-for-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.ind-for-list { display: flex; flex-wrap: wrap; gap: 7px; }
.ind-for-tag { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.75); border-radius: 20px; padding: 4px 13px; font-size: 12px; }
.ind-right { display: flex; flex-direction: column; justify-content: space-between; }
.ind-features { list-style: none; margin-bottom: 28px; }
.ind-features li { font-size: 14px; padding: 7px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.85); }
.ind-features li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.ind-why { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 24px; }
.ind-btn { background: var(--orange); color: white; border: none; border-radius: var(--radius); padding: 16px; font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; width: 100%; }
.ind-btn:hover { background: var(--orange-dark); }

/* WHY (home) */
.why { background: var(--white); }
.why-title { color: var(--orange); font-family: var(--font); font-size: 30px; font-weight: 800; text-align: center; margin-bottom: 40px; }
.why-title strong { color: var(--black); }
.why-grid { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.why-item { flex: 1; min-width: 140px; text-align: center; padding: 20px 16px; }
.why-icon { width: 52px; height: 52px; background: var(--orange-light); border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 2; }
.why-item h4 { font-family: var(--font); font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: 12px; color: var(--gray); line-height: 1.4; }

/* CTA DARK (home) */
.cta-dark { background: var(--dark); padding: 70px 40px; }
.cta-inner { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.cta-text { flex: 1; }
.cta-text h2 { font-family: var(--font); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.cta-text h2 span { color: var(--orange); }
.cta-text p { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 24px; }
.cta-mockup { flex: 1; display: flex; justify-content: center; }
.dark-mockup { background: #23233a; border-radius: 14px; overflow: hidden; width: 340px; box-shadow: 0 20px 60px rgba(0,0,0,.4); position: relative; }
.dark-mockup-screen { padding: 20px; }
.dark-mockup h3 { color: white; font-family: var(--font); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.dark-mockup h3 span { color: var(--orange); }
.dark-mockup p { color: rgba(255,255,255,.5); font-size: 11px; margin-bottom: 14px; }
.dark-mockup-overlay { position: absolute; top: 30px; right: -15px; background: white; border-radius: 10px; padding: 10px 14px; font-size: 10px; font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.dark-mockup-overlay span { color: var(--orange); display: block; margin-bottom: 2px; }
.dark-mockup-footer { background: rgba(255,255,255,.05); padding: 10px 20px; display: flex; gap: 16px; }
.dmf-item { font-size: 9px; color: rgba(255,255,255,.4); }

/* FAQ (home) */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-mid); display: flex; flex-direction: column; cursor: pointer; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 12px; }
.faq-item span { font-size: 14px; color: var(--black); font-weight: 500; }
.faq-chevron { color: var(--gray); font-size: 18px; transition: transform .2s; flex-shrink: 0; }
.faq-item:hover .faq-chevron, .faq-item.open .faq-chevron { color: var(--orange); }
.faq-item.open .faq-chevron { transform: rotate(90deg); }
.faq-a { display: none; font-size: 13px; color: var(--gray); line-height: 1.65; padding-bottom: 16px; }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   7. JAK TO DZIALA PAGE
   ============================================================ */
.steps-section { padding: 80px 40px; max-width: 900px; margin: 0 auto; }
.big-step { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 64px; position: relative; }
.big-step:last-child { margin-bottom: 0; }
.big-step::after { content: ''; position: absolute; left: 35px; top: 70px; bottom: -64px; width: 2px; background: repeating-linear-gradient(180deg, var(--gray-mid) 0, var(--gray-mid) 6px, transparent 6px, transparent 12px); }
.big-step:last-child::after { display: none; }
.step-icon-wrap { width: 70px; height: 70px; background: var(--white); border: 2px solid var(--gray-mid); border-radius: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.step-icon-wrap svg { width: 32px; height: 32px; stroke: var(--gray); fill: none; stroke-width: 1.5; }
.step-num-badge { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; background: var(--orange); border-radius: 50%; color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: var(--font); }
.big-step-body { flex: 1; }
.big-step-body h3 { font-family: var(--font); font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.big-step-body p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 12px; }
.step-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.step-tag { background: var(--orange-light); color: var(--orange); border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 600; font-family: var(--font); }

/* ============================================================
   8. PRZYKLADY PAGE
   ============================================================ */
.examples-section { padding: 80px 40px; background: var(--gray-light); }
.examples-inner { max-width: 1060px; margin: 0 auto; }
.ex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ex-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: 0 6px 24px rgba(0,0,0,.09); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.ex-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }

/* Browser mock frame */
.ex-browser { position: relative; overflow: hidden; flex-shrink: 0; }
.ex-browser-bar { background: #2a2a3e; padding: 8px 12px; display: flex; gap: 6px; align-items: center; }
.ex-dot { width: 9px; height: 9px; border-radius: 50%; }
.ex-dot.r { background: #ff5f57; }
.ex-dot.y { background: #ffbd2e; }
.ex-dot.g { background: #28c840; }

/* Iframe thumbnail */
.thumb-wrap { position: relative; height: 220px; overflow: hidden; background: #f0f0f4; }
.thumb-iframe { position: absolute; top: 0; left: 0; width: 1200px; height: 810px; border: none; pointer-events: none; transform-origin: top left; will-change: transform; }

/* Gradient fallback previews */
.ex-preview { height: 220px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 13px; color: white; font-weight: 700; text-align: center; padding: 20px; overflow: hidden; }
.ex-preview.trener { background: linear-gradient(135deg, #1a1a35 0%, #0d1117 100%); }
.ex-preview.foto { background: linear-gradient(135deg, #f8e8d4 0%, #e8c9a0 100%); }
.ex-preview.prawo { background: linear-gradient(135deg, #1e3a5f 0%, #0d1f35 100%); }
.ex-preview.kuch { background: linear-gradient(135deg, #5f1e1e 0%, #3a0d0d 100%); }
.ex-preview.foto span, .ex-preview.foto .ex-tag { color: #3a2a1a; }

.ex-hover { position: absolute; inset: 0; z-index: 2; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; }
.ex-card:hover .ex-hover { opacity: 1; }
.ex-hover-btn { background: var(--orange); color: white; border: none; border-radius: 9px; padding: 11px 22px; font-family: var(--font); font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s; }
.ex-hover-btn:hover { background: var(--orange-dark); }

.ex-tag { position: absolute; top: 10px; right: 10px; z-index: 3; background: rgba(0,0,0,.4); color: white; font-size: 10px; font-weight: 700; border-radius: 20px; padding: 3px 10px; font-family: var(--font); }
.ex-tag.live { background: rgba(245,98,30,.9); }
.ex-tag.soon { background: rgba(0,0,0,.35); }

.ex-footer { padding: 14px 16px 0; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.ex-name { font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--black); }
.ex-cat { font-size: 12px; color: var(--gray); margin-top: 2px; }
.ex-preview-btn { background: none; border: 2px solid var(--orange); color: var(--orange); border-radius: 8px; padding: 7px 16px; font-family: var(--font); font-size: 12px; font-weight: 700; cursor: pointer; transition: all .2s; white-space: nowrap; }
.ex-preview-btn:hover { background: var(--orange); color: white; }
.ex-preview-btn.disabled { border-color: var(--gray-mid); color: var(--gray); cursor: default; }
.ex-preview-btn.disabled:hover { background: transparent; color: var(--gray); }

/* Buy template button */
.ex-buy-btn { display: block; width: calc(100% - 32px); margin: 10px 16px 16px; background: var(--orange); color: white; border: none; border-radius: var(--radius); padding: 11px 16px; font-family: var(--font); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s; text-align: center; letter-spacing: .02em; }
.ex-buy-btn:hover { background: var(--orange-dark); }
.ex-buy-btn.soon-buy { background: var(--gray-light); color: var(--gray); border: 2px solid var(--gray-mid); cursor: default; }
.ex-buy-btn.soon-buy:hover { background: var(--gray-light); }

/* ============================================================
   9. FAQ PAGE
   ============================================================ */
.faq-section { padding: 80px 40px; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-category { font-family: var(--font); font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; margin-top: 48px; }
.faq-category:first-child { margin-top: 0; }
.faq-q span { font-size: 15px; font-weight: 600; color: var(--black); line-height: 1.4; }
.faq-icon { width: 28px; height: 28px; border-radius: 7px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 16px; transition: all .2s; flex-shrink: 0; }
.faq-item.open .faq-icon { background: var(--orange-light); color: var(--orange); transform: rotate(45deg); }
.cta-contact { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 16px; }
.cta-contact a { color: var(--orange); text-decoration: none; }

/* ============================================================
   10. DLA KOGO PAGE
   ============================================================ */
.audience-section { padding: 80px 40px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.aud-card { border: 2px solid var(--gray-mid); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.aud-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(245,98,30,.1); }
.aud-img { width: 100%; height: 160px; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.aud-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.52) 100%); pointer-events: none; }
.aud-img-label { position: absolute; bottom: 8px; right: 10px; font-size: 10px; font-weight: 700; letter-spacing: .06em; font-family: var(--font); text-transform: uppercase; color: rgba(255,255,255,.9); z-index: 1; }
.aud-card-body { padding: 22px 24px 24px; }
.aud-card h3 { font-family: var(--font); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.aud-card p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.aud-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.aud-tag { background: var(--gray-light); color: var(--gray); border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 600; font-family: var(--font); }

/* COMPARISON (dla-kogo) */
.compare-section { background: var(--gray-light); padding: 80px 40px; }
.compare-inner { max-width: 860px; margin: 0 auto; }
.compare-row { display: flex; gap: 24px; margin-bottom: 16px; align-items: stretch; }
.compare-col { flex: 1; border-radius: var(--radius-lg); padding: 24px; background: var(--white); }
.compare-col.bad { border: 2px solid #FEE2E2; background: #FFF5F5; }
.compare-col.good { border: 2px solid #D1FAE5; background: #F0FDF4; }
.compare-col h4 { font-family: var(--font); font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.compare-col.bad h4 { color: #DC2626; }
.compare-col.good h4 { color: #059669; }
.compare-col ul { list-style: none; }
.compare-col ul li { font-size: 13px; color: var(--gray); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.compare-col ul li::before { font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.compare-col.bad ul li::before { content: '✗'; color: #DC2626; }
.compare-col.good ul li::before { content: '✓'; color: #059669; }

/* STATS (dla-kogo) */
.stats-section { padding: 80px 40px; background: var(--dark); }
.stats-inner { max-width: 860px; margin: 0 auto; display: flex; gap: 0; justify-content: center; }
.stat-item { flex: 1; text-align: center; padding: 0 20px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.1); }
.stat-num { font-family: var(--font); font-size: 48px; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.4; }

/* ============================================================
   11. KONTAKT PAGE
   ============================================================ */
.contact-section { padding: 80px 40px; }
.contact-inner { max-width: 960px; margin: 0 auto; display: flex; gap: 60px; align-items: flex-start; }
.contact-form-wrap { flex: 1.2; }
.contact-info-wrap { flex: 1; }
.contact-form-wrap h2 { font-family: var(--font); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.contact-form-wrap p { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.form-label span { color: var(--gray); font-weight: 400; }
.form-inp { width: 100%; padding: 12px 16px; border-radius: 10px; border: 2px solid var(--gray-mid); background: var(--white); color: var(--black); font-size: 14px; font-family: var(--font-body); outline: none; transition: border-color .2s; }
.form-inp:focus { border-color: var(--orange); }
.form-inp::placeholder { color: #9CA3AF; }
textarea.form-inp { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 14px; border-radius: var(--radius); background: var(--orange); color: white; border: none; font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; margin-top: 4px; }
.form-submit:hover { background: var(--orange-dark); }
.form-submit:disabled { background: #ccc; cursor: not-allowed; opacity: .7; }
.form-note { font-size: 12px; color: var(--gray); margin-top: 12px; text-align: center; }
.form-success { display: none; background: #ECFDF5; border: 2px solid #A7F3D0; border-radius: var(--radius-lg); padding: 20px; text-align: center; margin-top: 20px; }
.form-success h4 { font-family: var(--font); font-size: 16px; font-weight: 700; color: #059669; margin-bottom: 4px; }
.form-success p { font-size: 14px; color: #065F46; }
.contact-info-wrap h2 { font-family: var(--font); font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.contact-info-wrap > p { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.info-card { background: var(--gray-light); border-radius: var(--radius-lg); padding: 20px 22px; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 14px; }
.info-card-icon { width: 44px; height: 44px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }
.info-card-body h4 { font-family: var(--font); font-size: 13px; font-weight: 700; margin-bottom: 3px; color: var(--black); }
.info-card-body p { font-size: 14px; color: var(--gray); line-height: 1.5; }
.info-card-body a { color: var(--orange); text-decoration: none; }
.info-card-body a:hover { text-decoration: underline; }
.info-box { background: var(--dark); border-radius: var(--radius-lg); padding: 22px; margin-top: 24px; }
.info-box h4 { font-family: var(--font); font-size: 14px; font-weight: 700; color: white; margin-bottom: 8px; }
.info-box p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.info-box .gen-btn { display: inline-block; margin-top: 14px; background: var(--orange); color: white; border: none; border-radius: 8px; padding: 9px 20px; font-family: var(--font); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s; }
.info-box .gen-btn:hover { background: var(--orange-dark); }

/* ============================================================
   12. PAKIETY PAGE
   ============================================================ */
.pricing-section { padding: 80px 40px; }

/* Pakiety uses wider pricing grid */
.pricing-section .pricing-grid { gap: 24px; max-width: 1000px; margin: 0 auto 60px; }
.pricing-section .pricing-card { padding: 32px 28px; }
.pricing-section .plan-price { font-size: 56px; }
.pricing-section .plan-price span { font-size: 24px; }
.pricing-section .plan-features li { font-size: 14px; padding: 7px 0; gap: 10px; }
.pricing-section .plan-btn { padding: 14px; font-size: 15px; }

/* COMPARISON TABLE (pakiety) */
.compare-table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.compare-table th { font-family: var(--font); font-size: 13px; font-weight: 700; padding: 16px 20px; text-align: center; border-bottom: 2px solid var(--gray-mid); }
.compare-table th:first-child { text-align: left; }
.compare-table th.col-feat { color: var(--orange); background: var(--orange-light); }
.compare-table td { padding: 13px 20px; font-size: 13px; border-bottom: 1px solid var(--gray-light); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--gray-light); }
.check { color: #059669; font-size: 16px; }
.cross { color: var(--gray-mid); font-size: 16px; }

/* FAQ MINI (pakiety) */
.faq-section .faq-inner { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--gray-mid); cursor: pointer; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 0; }
.faq-q span { font-size: 15px; font-weight: 600; color: var(--black); }
.faq-a { font-size: 14px; color: var(--gray); line-height: 1.7; padding-bottom: 16px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }

/* PLAN — why/label sub-elements */
.plan-section-label { font-size: 11px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.plan-why-wrap { border-top: 1px solid var(--gray-mid); padding-top: 14px; margin-bottom: 18px; }
.plan-why { list-style: none; font-size: 13px; color: var(--gray); }
.plan-why li { padding: 3px 0; }
.plan-why li::before { content: '› '; }

/* HOSTING SECTION */
.hosting-section { padding: 80px 40px; background: var(--gray-light); }
.hosting-inner { max-width: 700px; margin: 0 auto; }
.hosting-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 2px solid var(--gray-mid); margin-top: 8px; }
.hosting-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.hosting-card strong { color: var(--black); }
.hosting-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.hosting-list li { font-size: 14px; color: var(--gray); display: flex; gap: 10px; align-items: flex-start; }
.hosting-list li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.hosting-link { color: var(--orange); font-weight: 700; text-decoration: none; }
.hosting-link:hover { text-decoration: underline; }

/* ============================================================
   13. RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .mega-col1 { width: 160px; }
  .mega-col2 { width: 180px; }
}

@media (max-width: 680px) {
  nav { position: relative; overflow: visible; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--gray-mid); flex-direction: column; gap: 0; z-index: 200; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
  .nav-links.mob-open { display: flex; }
  .nav-links > li > a, .nav-links > li > .mega-trigger { display: block; padding: 13px 24px; font-size: 14px; border-bottom: 1px solid var(--gray-light); width: 100%; box-sizing: border-box; }
  .nav-hamburger { display: flex; }
  .mega-panel { display: none; }

  .hero { flex-direction: column; padding: 40px 24px; }
  .hero-left h1 { font-size: 32px; }
  .hero-right { width: 100%; }
  .build-demo { width: 100%; max-width: 320px; margin: 0 auto; }

  .page-hero { padding: 48px 24px; }
  .page-hero h1 { font-size: 28px; }

  section { padding: 48px 24px; }
  .steps { flex-direction: column; }
  .steps::before { display: none; }
  .pricing-grid { flex-direction: column; }
  .examples-grid { grid-template-columns: 1fr 1fr; }
  .ex-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .individual-card { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
  .contact-inner { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; gap: 32px; }
  .dark-mockup { width: 100%; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; }
  .big-step { flex-direction: column; }
  .big-step::after { display: none; }
  .agents-grid { grid-template-columns: 1fr 1fr; }
  .compare-row { flex-direction: column; }
  .pricing-section .pricing-grid { flex-direction: column; }
}

@media (max-width: 480px) {
  .examples-grid { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 28px; }
}

/* ============================================================
   14. PAGE-SPECIFIC EXTRAS
   ============================================================ */
.rodo-wrap { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0; }
.rodo-wrap input[type=checkbox] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: #F5621E; cursor: pointer; }
.rodo-wrap label { font-size: 13px; color: #6B7280; line-height: 1.5; cursor: pointer; }
.rodo-wrap label a { color: #F5621E; }

.ex-features { list-style: none; padding: 10px 16px 6px; margin: 0; border-top: 1px solid var(--gray-light); }
.ex-features li { font-size: 12px; color: var(--gray); padding: 4px 0; display: flex; gap: 7px; align-items: flex-start; line-height: 1.4; }
.ex-features li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.ex-card-cta { padding: 4px 16px 16px; }
