/* ==========================================================================
   SEO Price Landing — Shared Styles
   Palette aligned with main saveyourclicks.com site
   ========================================================================== */

:root {
    --bg-dark:       #0a0f1e;
    --bg-dark-2:     #0f1629;
    --bg-dark-3:     #131c33;
    --bg-light:      #f8fafc;
    --bg-white:      #ffffff;
    --primary:       #3b82f6;
    --primary-dark:  #2563eb;
    --accent:        #8b5cf6;
    --gradient:      linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gradient-soft: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(139,92,246,0.12));
    --text-dark:     #0f172a;
    --text-light:    #f1f5f9;
    --text-muted:    #94a3b8;
    --text-muted-2:  #64748b;
    --border-light:  #e2e8f0;
    --border-dark:   rgba(255,255,255,0.08);
    --success:       #22c55e;
    --warning:       #f59e0b;
    --danger:        #ef4444;
    --radius:        16px;
    --radius-sm:     10px;
    --radius-lg:     24px;
    --shadow-sm:     0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md:     0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg:     0 20px 60px rgba(15, 23, 42, 0.12);
    --shadow-glow:   0 10px 40px rgba(59, 130, 246, 0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html[lang="en"]                          { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
html[lang="fa"], html[lang="ar"]         { font-family: 'Vazirmatn', 'Inter', -apple-system, sans-serif; }
html[dir="rtl"] { direction: rtl; }
html[dir="ltr"] { direction: ltr; }

body {
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ----- Layout primitives ----- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
@media (max-width: 768px) { .section { padding: 48px 0; } .container { padding: 0 16px; } }

/* ----- Header / Nav ----- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
    max-width: 1180px;
    margin: 0 auto;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 17px;
}
.nav-brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-light); }
.lang-switch {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 3px;
}
.lang-switch a {
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}
.lang-switch a.active {
    background: var(--gradient);
    color: #fff;
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .lang-switch { display: flex; }
}

/* ----- Hero ----- */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59,130,246,0.18), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139,92,246,0.12), transparent),
        var(--bg-dark);
    color: var(--text-light);
    padding: 100px 0 80px;
    text-align: center;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    padding: 7px 16px;
    margin-bottom: 24px;
}
.hero-pill .pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--success);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero h1 .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 48px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(59,130,246,0.45); }
.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.18);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.btn-light {
    background: #fff;
    color: var(--bg-dark);
}
.btn-light:hover { background: #f1f5f9; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.trust-line {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.02em;
}

/* ----- Section header (reusable) ----- */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.section-header h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: inherit;
}
.section-header p {
    font-size: 16px;
    color: var(--text-muted-2);
    line-height: 1.7;
}
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-dark .section-header p { color: var(--text-muted); }
.section-light { background: var(--bg-light); }

/* ----- Calculator ----- */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 1024px) {
    .calc-grid { grid-template-columns: 2fr 1fr; }
}
.calc-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 36px;
    border: 1px solid var(--border-light);
}
@media (max-width: 768px) { .calc-card { padding: 24px; } }
.calc-q {
    margin-bottom: 32px;
}
.calc-q:last-child { margin-bottom: 0; }
.calc-q-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.calc-q-num {
    width: 26px; height: 26px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.calc-q-hint {
    font-size: 12px;
    color: var(--text-muted-2);
    margin-top: 8px;
}
.options-grid {
    display: grid;
    gap: 10px;
}
.options-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.options-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.options-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
.options-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
    .options-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
    .options-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 768px) {
    .options-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.option-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.15s ease;
}
.option-card:hover {
    border-color: var(--primary);
    background: #f0f7ff;
}
.option-card.selected {
    border-color: var(--primary);
    background: var(--gradient-soft);
    color: var(--primary-dark);
    font-weight: 600;
}
.option-card input { display: none; }
.option-card svg { width: 16px; height: 16px; flex-shrink: 0; }
.option-card-addon {
    font-size: 11px;
    color: var(--text-muted-2);
    font-weight: 500;
    margin-inline-start: auto;
}

/* Slider — force LTR so dragging right always increases value, even on RTL pages */
.slider-wrap { padding: 4px 0; direction: ltr; }
.slider-ticks { direction: ltr; }
input[type="range"] { direction: ltr; }
.slider-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.slider-value {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 16px;
}
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(to var(--slider-dir, right), var(--primary) var(--p, 0%), #e2e8f0 var(--p, 0%));
    border-radius: 3px;
    outline: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px; height: 22px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
    transition: transform 0.1s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
    width: 22px; height: 22px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
}
.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted-2);
    margin-top: 6px;
}

/* Result panel */
.calc-result {
    background: var(--bg-dark);
    background:
        radial-gradient(circle at 0% 0%, rgba(59,130,246,0.25), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(139,92,246,0.2), transparent 50%),
        var(--bg-dark);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}
@media (min-width: 1024px) {
    .calc-result-sticky { position: sticky; top: 88px; }
}
.calc-result-label {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 4px;
}
.calc-result-price {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}
.calc-result-sub {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 24px;
}
.calc-floor-notice {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fcd34d;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.calc-totals {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
}
.calc-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-muted);
}
.calc-totals-row strong { color: var(--text-light); font-weight: 600; }
.calc-totals-row.total {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 15px;
    color: var(--text-light);
}
.calc-totals-row.total strong { font-size: 18px; }
.calc-breakdown {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-muted);
}
.calc-breakdown summary {
    cursor: pointer;
    padding: 8px 0;
    color: var(--text-muted);
}
.calc-breakdown summary:hover { color: var(--text-light); }
.calc-breakdown-body {
    margin-top: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 12px;
    font-size: 11px;
    line-height: 1.8;
}
.calc-breakdown-body > div { padding: 1px 0; }

/* ----- Packages ----- */
.period-toggle {
    display: inline-flex;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 4px;
    margin: 0 auto 40px;
    box-shadow: var(--shadow-sm);
}
.period-toggle button {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted-2);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.period-toggle button:hover { color: var(--text-dark); }
.period-toggle button.active {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}
.period-toggle .saving-pill {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}
.period-toggle button.active .saving-pill {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.center-row { text-align: center; }

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px)  { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .packages-grid { grid-template-columns: repeat(5, 1fr); } }

.pkg-card {
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}
.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.4);
}
.pkg-card.featured {
    border: 1.5px solid transparent;
    background:
        linear-gradient(var(--bg-white), var(--bg-white)) padding-box,
        var(--gradient) border-box;
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}
.pkg-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pkg-badge {
    position: absolute;
    top: -12px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
html[dir="rtl"] .pkg-badge { transform: translateX(50%); }
.pkg-number {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted-2);
    font-weight: 600;
}
.pkg-name {
    font-size: 22px;
    font-weight: 800;
    margin: 6px 0 8px;
    color: var(--text-dark);
}
.pkg-tagline {
    font-size: 13px;
    color: var(--text-muted-2);
    line-height: 1.65;
    margin-bottom: 20px;
    min-height: 64px;
}
.pkg-price-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
}
.pkg-price-strike {
    font-size: 12px;
    color: var(--text-muted-2);
    text-decoration: line-through;
    margin-bottom: 2px;
}
.pkg-price-main {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}
.pkg-price-unit {
    font-size: 11px;
    color: var(--text-muted-2);
    margin-top: 4px;
}
.pkg-price-saving {
    color: var(--success);
    font-weight: 700;
}
.pkg-price-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    font-size: 11px;
    color: var(--text-muted-2);
}
.pkg-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 20px;
}
.pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-dark);
}
.pkg-features li.excluded {
    color: var(--text-muted-2);
    text-decoration: line-through;
}
.pkg-features svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--success);
}
.pkg-features li.excluded svg { color: #cbd5e1; }
.pkg-bestfor {
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.5;
}
.pkg-bestfor strong { font-weight: 700; }

/* ----- Roadmap ----- */
.roadmap-section {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
}
@media (max-width: 768px) { .roadmap-section { padding: 32px 16px; } }
.roadmap-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #92400e;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    text-align: center;
    margin: 0 auto 36px;
    max-width: 740px;
    line-height: 1.65;
}
.roadmap-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
}
.roadmap-tab {
    padding: 9px 18px;
    border-radius: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted-2);
    transition: all 0.2s;
}
.roadmap-tab:hover { border-color: var(--primary); color: var(--primary-dark); }
.roadmap-tab.active {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}
.roadmap-meta {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted-2);
    margin-bottom: 24px;
}
.timeline {
    max-width: 760px;
    margin: 0 auto;
}
.timeline-item {
    position: relative;
    padding-inline-start: 36px;
    padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    inset-inline-start: 10px;
    top: 22px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(139, 92, 246, 0.2));
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
    position: absolute;
    inset-inline-start: 0;
    top: 6px;
    width: 22px; height: 22px;
    background: var(--bg-white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}
.timeline-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.timeline-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.timeline-head h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}
.timeline-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-dark);
}
.timeline-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.timeline-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted-2);
}
.timeline-card li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 9px;
    flex-shrink: 0;
}

/* ----- Compare Table ----- */
.compare-wrap {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 8px;
    overflow-x: auto;
}
.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    min-width: 720px;
}
.compare-table th, .compare-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}
.compare-table th { background: var(--bg-light); font-weight: 700; }
.compare-table th:first-child, .compare-table td:first-child {
    text-align: start;
    font-weight: 600;
    color: var(--text-dark);
}
.compare-table .featured-col {
    background: rgba(59, 130, 246, 0.04);
}
.compare-table th.featured-col {
    background: var(--gradient-soft);
}
.compare-pkg-name { font-size: 15px; font-weight: 800; color: var(--text-dark); }
.compare-pkg-price { font-size: 12px; color: var(--primary-dark); margin-top: 2px; font-weight: 600; }
.icon-yes { color: var(--success); }
.icon-no  { color: #cbd5e1; }

/* ----- Logos marquee ----- */
.logo-marquee {
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
}
.logo-marquee::before, .logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-marquee::before { inset-inline-end: 0; background: linear-gradient(to var(--m-end, left), var(--bg-white), rgba(255,255,255,0)); }
.logo-marquee::after  { inset-inline-start: 0; background: linear-gradient(to var(--m-start, right), var(--bg-white), rgba(255,255,255,0)); }
html[dir="rtl"] .logo-marquee::before { background: linear-gradient(to right, var(--bg-white), rgba(255,255,255,0)); }
html[dir="rtl"] .logo-marquee::after  { background: linear-gradient(to left,  var(--bg-white), rgba(255,255,255,0)); }
.logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 32s linear infinite;
}
.logo-strip { display: flex; align-items: center; gap: 32px; flex-shrink: 0; min-width: 100%; padding-inline-end: 32px; }
.logo-item {
    min-width: 130px;
    padding: 10px 18px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-item img { height: 44px; width: auto; object-fit: contain; filter: saturate(0.7); transition: filter 0.2s; }
.logo-item:hover img { filter: saturate(1); }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
html[dir="rtl"] .logo-track { animation-direction: reverse; }

/* ----- Lead Form ----- */
.form-section {
    background: var(--bg-dark);
    background:
        radial-gradient(ellipse at top right, rgba(59,130,246,0.15), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(139,92,246,0.12), transparent 50%),
        var(--bg-dark);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 56px 32px;
}
@media (max-width: 768px) { .form-section { padding: 40px 20px; } }
.form-grid {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(241, 245, 249, 0.4); }
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}
.form-context {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #93c5fd;
    line-height: 1.6;
}
.form-context strong { color: #fff; }
.form-message {
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
}
.form-message.success { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); color: #86efac; }
.form-message.error   { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); color: #fca5a5; }
.form-message.loading { background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59, 130, 246, 0.3); color: #93c5fd; }
.form-footnote {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* ----- FAQ ----- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(59, 130, 246, 0.3); }
.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    text-align: start;
    gap: 16px;
}
.faq-toggle svg { transition: transform 0.25s; width: 18px; height: 18px; color: var(--text-muted-2); flex-shrink: 0; }
.faq-toggle.open svg { transform: rotate(180deg); color: var(--primary); }
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-content-inner {
    padding: 0 22px 20px;
    color: var(--text-muted-2);
    font-size: 14px;
    line-height: 1.75;
}

/* ----- Footer ----- */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 56px 0 28px;
    border-top: 1px solid var(--border-dark);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text-light); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--text-muted); font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-light); }
.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-brand-row img { width: 32px; height: 32px; border-radius: 8px; }
.footer-brand-row span { font-weight: 700; font-size: 16px; }
.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted-2);
}

/* ----- Small utilities ----- */
.scroll-mt { scroll-margin-top: 80px; }
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hidden { display: none !important; }
