﻿/* ── Altakamol Website · site.css ── */
:root {
    --brand:        #0A3260;
    --brand-mid:    #1A6BC4;
    --brand-light:  #EAF2FC;
    --accent:       #1DB87E;
    --accent-light: #E1F5EE;
    --amber:        #F0A830;
    --amber-light:  #FEF3E2;
    --text:         #1A1A2E;
    --text-2:       #4A5568;
    --text-3:       #718096;
    --border:       #E2E8F0;
    --surface:      #F7F9FC;
    --white:        #ffffff;
    --radius:       10px;
    --radius-lg:    14px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 64px;
    display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem;
    background: rgba(6,14,31,.75); backdrop-filter: blur(16px);
    border-bottom: .5px solid rgba(255,255,255,.06);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-en { font-size: 16px; font-weight: 600; color: #fff; }
.logo-ar { font-size: 11px; color: rgba(255,255,255,.45); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: nowrap; }
.nav-link { font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s; }
.nav-link:hover { color: #fff; }
.lang-form { display: inline-flex; }
.lang-btn {
    background: transparent; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.8);
    padding: 5px 14px; border-radius: 6px; font-size: 12px; font-weight: 500;
    cursor: pointer; transition: border-color .15s, color .15s; white-space: nowrap;
}
.lang-btn:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.nav-cta {
    background: var(--brand-mid); color: #fff; padding: 8px 20px;
    border-radius: 7px; font-size: 13px; font-weight: 500; transition: opacity .15s;
}
.nav-cta:hover { opacity: .88; }
.nav-btn-designer {
    background: rgba(29,184,126,.15); color: #1DB87E;
    border: 1px solid rgba(29,184,126,.45);
    padding: 7px 16px; border-radius: 7px; font-size: 13px; font-weight: 600;
    white-space: nowrap; transition: background .15s, border-color .15s;
    direction: rtl;
}
.nav-btn-designer:hover { background: rgba(29,184,126,.28); border-color: rgba(29,184,126,.75); }
.nav-btn-portal {
    background: rgba(240,168,48,.15); color: #F0A830;
    border: 1px solid rgba(240,168,48,.45);
    padding: 7px 16px; border-radius: 7px; font-size: 13px; font-weight: 600;
    white-space: nowrap; transition: background .15s, border-color .15s;
    direction: rtl;
}
.nav-btn-portal:hover { background: rgba(240,168,48,.28); border-color: rgba(240,168,48,.75); }

/* ── HERO ── */
.hero {
    position: relative; min-height: 100vh; overflow: hidden;
    background: #060E1F; padding-top: 64px;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content {
    position: relative; z-index: 10;
    padding: 4rem 3rem 4rem 4rem;
}
.hero-illustration {
    position: relative; z-index: 10;
    padding: 4rem 4rem 4rem 2rem;
    display: flex; align-items: center; justify-content: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(29,184,126,.15); border: 1px solid rgba(29,184,126,.3);
    border-radius: 20px; padding: 6px 16px; font-size: 12px;
    color: #1DB87E; margin-bottom: 1.75rem;
}
.hero-title {
    font-size: 56px; line-height: 1.05; color: #fff;
    letter-spacing: -2px; margin-bottom: 1.25rem; font-weight: 700;
}
.gradient-text   { background: linear-gradient(90deg,#fff,#4A9EE0); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.gradient-text-2 { background: linear-gradient(90deg,#1DB87E,#4ADBB8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.gradient-text-3 { background: linear-gradient(90deg,#F0A830,#F7CC70); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 2.25rem; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
    display: grid; grid-template-columns: repeat(4,auto); gap: 0;
    border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
    background: rgba(255,255,255,.04); overflow: hidden; max-width: 480px;
}
.stat {
    padding: 14px 20px; text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
.stat-num { display: block; font-size: 20px; font-weight: 700; color: #fff; }
.stat-label { font-size: 10px; color: rgba(255,255,255,.5); display: block; margin-top: 2px; }

/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 10; text-align: center; color: rgba(255,255,255,.3);
    font-size: 10px; letter-spacing: .08em; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-hint svg { animation: scrollbounce 2s ease-in-out infinite; }
@keyframes scrollbounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* Hero illustration SVG wrapper */
.illus-wrap {
    width: 100%; max-width: 560px;
    filter: drop-shadow(0 24px 60px rgba(26,107,196,.35));
}

/* ── FEATURE STRIP ── */
.feature-strip {
    background: #0C1A35; border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem 3rem; overflow: hidden;
}
.strip-inner {
    display: flex; align-items: center; gap: 2rem; justify-content: center; flex-wrap: wrap;
}
.strip-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,.75); white-space: nowrap;
}
.strip-item svg { flex-shrink: 0; }
.strip-sep { color: rgba(255,255,255,.2); font-size: 18px; }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-mid); color: #fff;
    padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 500;
    border: none; cursor: pointer; transition: opacity .15s, transform .15s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.06); color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.2);
    padding: 12px 28px; border-radius: 8px; font-size: 14px; font-weight: 500;
    cursor: pointer; transition: background .15s;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline {
    display: block; text-align: center; padding: 11px; border-radius: 8px;
    font-size: 13px; font-weight: 500; cursor: pointer; transition: opacity .15s;
    border: 1px solid var(--border); color: var(--text-2);
}
.btn-outline:hover { opacity: .8; }
.btn-submit {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-mid); color: #fff;
    padding: 13px 32px; border-radius: 8px; font-size: 14px; font-weight: 500;
    border: none; cursor: pointer; transition: opacity .15s;
}
.btn-submit:hover { opacity: .88; }

/* ── SECTIONS ── */
.section { padding: 5rem 4rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; }
.section-tag {
    display: inline-block; background: var(--brand-light); color: var(--brand-mid);
    font-size: 11px; font-weight: 600; padding: 4px 14px;
    border-radius: 20px; margin-bottom: 12px; letter-spacing: .04em; text-transform: uppercase;
}
.section-header h2 { font-size: 30px; color: var(--text); margin-bottom: 8px; font-weight: 700; }
.section-header p { font-size: 15px; color: var(--text-3); max-width: 520px; }

/* Features grid */
.features-section { background: var(--surface); }
.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.feat-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.5rem;
    transition: border-color .2s, box-shadow .2s;
}
.feat-card:hover { border-color: var(--brand-mid); box-shadow: 0 4px 20px rgba(26,107,196,.1); }
.feat-card-soon { opacity: .55; }
.feat-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--brand-light); display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.feat-card h3 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.feat-card p  { font-size: 13px; color: var(--text-3); line-height: 1.6; }

/* How it works */
.how-section { background: #060E1F; padding: 5rem 4rem; }
.how-section .section-header h2 { color: #fff; }
.how-section .section-tag { background: rgba(26,107,196,.2); color: #4A9EE0; }
.steps {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0; max-width: 960px; margin: 0 auto; align-items: center;
}
.step { text-align: center; padding: 2rem 1.5rem; }
.step-arrow { font-size: 22px; color: rgba(255,255,255,.15); }
.step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-mid), #4A9EE0);
    color: #fff; font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; box-shadow: 0 4px 20px rgba(26,107,196,.4);
}
.step h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.step p  { font-size: 13px; color: rgba(255,255,255,.5); }

/* Pricing */
.pricing-section { background: var(--surface); }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 960px; margin: 0 auto;
}
.price-card {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2rem 1.75rem; background: var(--white); position: relative;
}
.price-card-featured { border: 2px solid var(--brand-mid); box-shadow: 0 8px 32px rgba(26,107,196,.15); }
.price-popular {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--brand-mid); color: #fff; font-size: 11px; font-weight: 600;
    padding: 3px 16px; border-radius: 20px; white-space: nowrap;
}
.price-name { font-size: 14px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; }
.price-amount { font-size: 36px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.price-amount span { font-size: 16px; font-weight: 400; color: var(--text-3); }
.price-card > p { font-size: 13px; color: var(--text-3); margin-bottom: 20px; line-height: 1.5; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-features li { font-size: 13px; color: var(--text-2); padding-left: 18px; position: relative; }
.price-features li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-size: 12px; }

/* CTA */
.cta-section { background: linear-gradient(135deg, #0A3260 0%, #1A6BC4 100%); padding: 5rem 2.5rem; text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-section h2 { font-size: 32px; color: #fff; margin-bottom: 12px; font-weight: 700; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
    background: #060E1F; padding: 2rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1.5rem; border-top: 1px solid rgba(255,255,255,.06);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-name   { font-size: 15px; font-weight: 600; color: #fff; }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,.4); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.35); }

/* ── CONTACT ── */
.contact-hero {
    background: linear-gradient(135deg, #060E1F 0%, #0A3260 50%, #1A6BC4 100%);
    padding: 120px 2.5rem 3.5rem; text-align: center;
}
.contact-hero-inner { max-width: 580px; margin: 0 auto; }
.contact-hero h1 { font-size: 38px; color: #fff; margin: 12px 0 10px; font-weight: 700; }
.contact-hero p  { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; }

.contact-section { padding: 4rem 4rem; }
.contact-inner {
    display: grid; grid-template-columns: 1fr 300px; gap: 3rem;
    max-width: 1000px; margin: 0 auto; align-items: start;
}

/* Form */
.contact-form-wrap { }
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.25rem; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.form-control {
    border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px;
    font-size: 14px; color: var(--text); background: var(--white);
    transition: border-color .15s; outline: none; width: 100%; font-family: inherit;
}
.form-control:focus { border-color: var(--brand-mid); box-shadow: 0 0 0 3px rgba(26,107,196,.08); }
.field-error { font-size: 12px; color: #E24B4A; }

/* Alerts */
.alert {
    display: flex; align-items: flex-start; gap: 10px;
    border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.25rem;
    font-size: 14px; line-height: 1.6;
}
.alert-success { background: var(--accent-light); color: #085041; border: 1px solid #9FE1CB; }
.alert-error   { background: #FCEBEB; color: #A32D2D; border: 1px solid #F7C1C1; }

/* Contact sidebar */
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 1.25rem;
}
.info-icon {
    width: 40px; height: 40px; border-radius: 10px; background: var(--brand-light);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-label { font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.info-value { font-size: 14px; font-weight: 500; color: var(--text); }
a.info-value { color: var(--brand-mid); }
.info-enterprise {
    background: var(--brand-light); border: 1px solid #B5D4F4;
    border-radius: var(--radius-lg); padding: 1.25rem;
}
.info-enterprise h4 { font-size: 13px; font-weight: 700; color: var(--brand); margin-bottom: 6px; }
.info-enterprise p  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .steps { grid-template-columns: 1fr 1fr; }
    .step-arrow { display: none; }
}
@media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; }
    .hero-illustration { display: none; }
    .hero-content { padding: 3rem 2rem 4rem; }
    .hero-title { font-size: 40px; }
    .hero-stats { grid-template-columns: repeat(2,1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .contact-inner { grid-template-columns: 1fr; }
    .section { padding: 3.5rem 2rem; }
    .how-section { padding: 3.5rem 2rem; }
    .footer { padding: 2rem; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 32px; }
    .nav-link { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-section { padding: 2.5rem 1.25rem; }
}
/* ══════════════════════════════════════════════════
   SUPPORT PAGES
   ══════════════════════════════════════════════════ */

/* Hero */
.support-hero {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
    padding: 4rem 2rem 3rem;
    text-align: center;
}
.support-hero-inner { max-width: 640px; margin: 0 auto; }
.support-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0.5rem 0 1rem;
}
.support-hero-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 0; }

/* Category grid */
.support-categories { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.support-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: box-shadow 0.2s, transform 0.2s;
}
.support-card:hover {
    box-shadow: 0 8px 28px rgba(10,50,96,0.12);
    transform: translateY(-2px);
}
.support-card-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.5rem;
}
.support-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--brand); margin: 0; }
.support-card p  { font-size: 0.88rem; color: #6B7A99; margin: 0; line-height: 1.5; }
.support-card-link { font-size: 0.85rem; font-weight: 600; color: var(--brand-mid); margin-top: auto; }

/* Quick links */
.support-quicklinks { max-width: 1200px; margin: 0 auto; padding: 0 2rem 3rem; }
.support-quicklinks h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--brand); }
.support-quicklist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0.5rem; }
.support-quicklist li a { font-size: 0.9rem; color: var(--brand-mid); text-decoration: none; padding: 0.4rem 0; display: block; }
.support-quicklist li a:hover { text-decoration: underline; }

/* Contact CTA strip */
.support-contact-cta {
    background: var(--brand);
    padding: 2rem;
}
.support-contact-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.support-contact-inner > div { flex: 1; min-width: 180px; }
.support-contact-inner h3 { color: #fff; font-size: 1.1rem; margin: 0 0 0.25rem; }
.support-contact-inner p  { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }

/* Layout: sidebar + article */
.support-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    align-items: start;
}
.support-sidebar {
    position: sticky;
    top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.support-sidenav { display: flex; flex-direction: column; gap: 2px; }
.support-sidenav-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6B7A99;
    padding: 0.35rem 0.75rem;
    margin-bottom: 0.25rem;
}
.support-sidenav a {
    font-size: 0.875rem;
    color: #6B7A99;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: background 0.12s, color 0.12s;
}
.support-sidenav a:hover { background: #EAF2FC; color: var(--brand-mid); }
.support-sidebar-links { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid #E2E8F0; padding-top: 1rem; }
.support-sidebar-links a { font-size: 0.825rem; color: var(--brand-mid); text-decoration: none; }
.support-sidebar-links a:hover { text-decoration: underline; }

/* Article */
.support-article { min-width: 0; }
.support-breadcrumb { font-size: 0.8rem; color: #6B7A99; margin-bottom: 1.25rem; }
.support-breadcrumb a { color: var(--brand-mid); text-decoration: none; }
.support-article h1 { font-size: 2rem; font-weight: 800; color: var(--brand); margin: 0 0 0.75rem; }
.support-article h2 { font-size: 1.25rem; font-weight: 700; color: var(--brand); margin: 2.5rem 0 0.75rem; padding-top: 2rem; border-top: 1px solid #E2E8F0; }
.support-article h2:first-of-type { border-top: none; padding-top: 0; }
.support-lead { font-size: 1.05rem; color: #6B7A99; line-height: 1.65; margin-bottom: 1.5rem; }

/* Steps */
.support-steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 1.5rem; }
.support-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.support-step-num {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-weight: 700; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.support-step-body { flex: 1; }
.support-step-body h2 { border-top: none; padding-top: 0; margin-top: 0; }

/* Mini step list */
.support-step-mini { display: flex; flex-direction: column; gap: 0.75rem; margin: 1rem 0; }
.support-step-mini-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.support-badge {
    width: 28px; height: 28px; border-radius: 50%;
    color: #fff; font-weight: 700; font-size: 0.8rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Feature row */
.support-feature-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; margin: 1rem 0; }
.support-feature-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #1A1A2E; }

/* Step type cards */
.support-type-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1rem 0; }
.support-type-card { background: #F8FAFD; border: 1px solid #E2E8F0; border-radius: 10px; padding: 1.1rem 1rem; }
.support-type-icon { margin-bottom: 0.5rem; }
.support-type-card h4 { font-size: 0.9rem; font-weight: 700; margin: 0 0 0.3rem; color: var(--brand); }
.support-type-card p  { font-size: 0.82rem; color: #6B7A99; margin: 0; line-height: 1.45; }

/* Tip, callout, inline link */
.support-tip {
    background: #EAF2FC;
    border-left: 3px solid var(--brand-mid);
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--brand);
    margin: 1rem 0;
}
.support-callout {
    background: rgba(29,184,126,0.08);
    border-left: 3px solid #1DB87E;
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #085041;
    margin: 1rem 0;
}
.support-inline-link { display: inline-block; margin-top: 0.75rem; font-weight: 600; font-size: 0.875rem; color: var(--brand-mid); text-decoration: none; }
.support-inline-link:hover { text-decoration: underline; }
.support-list  { padding-left: 1.25rem; font-size: 0.9rem; line-height: 1.8; }
.support-numbered { padding-left: 1.25rem; font-size: 0.9rem; line-height: 1.8; }

/* Next guides */
.support-next { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #E2E8F0; }
.support-next-card {
    display: flex; flex-direction: column; gap: 4px;
    background: #F8FAFD;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    transition: box-shadow 0.15s, background 0.15s;
}
.support-next-card:hover { background: #EAF2FC; box-shadow: 0 4px 12px rgba(10,50,96,0.08); }
.support-next-card span { font-size: 0.75rem; color: #6B7A99; text-transform: uppercase; letter-spacing: 0.05em; }
.support-next-card strong { font-size: 0.9rem; color: var(--brand); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
    background: #F8FAFD;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}
.faq-item summary {
    padding: 0.9rem 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--brand);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.1rem; color: var(--brand-mid); }
.faq-item[open] summary::after { content: '&#x2212;'; }
.faq-item p { padding: 0 1.1rem 0.9rem; margin: 0; font-size: 0.875rem; color: #6B7A99; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   MARKETING SECTIONS
   ══════════════════════════════════════════════════ */

/* Bilingual spotlight */
.bilingual-section { background: #F4F7FB; }
.bilingual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.bilingual-content h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--brand); margin: 0.5rem 0 1rem; }
.bilingual-content p  { color: #6B7A99; line-height: 1.7; margin-bottom: 1.5rem; }
.bilingual-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.bilingual-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: #1A1A2E; }
.bilingual-demo { display: flex; flex-direction: column; gap: 1rem; }
.bilingual-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(10,50,96,0.06);
}
.bilingual-card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #6B7A99; margin-bottom: 0.75rem; }
.bilingual-line { height: 10px; background: #E2E8F0; border-radius: 5px; margin-bottom: 8px; }
.bilingual-btns { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.bilingual-btn-approve { background: rgba(29,184,126,0.12); color: #085041; font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 6px; }
.bilingual-btn-reject  { background: rgba(220,53,69,0.08); color: #9b1c1c; font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 6px; }
.bilingual-tag-ltr { margin-top: 0.5rem; font-size: 0.75rem; color: #6B7A99; }
.bilingual-tag-rtl { margin-top: 0.5rem; font-size: 0.75rem; color: #6B7A99; text-align: left; }
.bilingual-card-ar { border-left: 3px solid var(--brand-mid); }

/* Comparison table */
.compare-section { background: #fff; }
.compare-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid #E2E8F0; margin-top: 1.5rem; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.compare-table th {
    padding: 0.9rem 1.1rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #F8FAFD;
    color: #6B7A99;
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
    padding: 0.8rem 1.1rem;
    border-bottom: 1px solid #F0F4F8;
    color: #1A1A2E;
    text-align: center;
    vertical-align: middle;
}
.compare-table td:first-child { text-align: left; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table th.compare-us,
.compare-table td.compare-us { background: rgba(26,107,196,0.05); font-weight: 700; color: var(--brand); }
.compare-table th.compare-us { color: var(--brand); }
.cmp-yes     { color: #1DB87E; font-size: 1.1rem; font-weight: 700; }
.cmp-no      { color: #DC3545; font-size: 1.1rem; }
.cmp-partial { color: #F0A830; font-size: 1.1rem; font-weight: 700; }
.compare-note { font-size: 0.78rem; color: #9AABBD; margin-top: 0.75rem; text-align: center; }

/* Industries */
.industries-section { background: #F4F7FB; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.industry-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.industry-card:hover { box-shadow: 0 8px 24px rgba(10,50,96,0.10); transform: translateY(-2px); }
.industry-icon { margin-bottom: 1rem; }
.industry-card h3 { font-size: 1rem; font-weight: 700; color: var(--brand); margin: 0 0 0.5rem; }
.industry-card p  { font-size: 0.875rem; color: #6B7A99; margin: 0; line-height: 1.55; }

/* ── responsive ── */
@media (max-width: 768px) {
    .support-layout { grid-template-columns: 1fr; }
    .support-sidebar { position: static; }
    .support-next { grid-template-columns: 1fr; }
    .bilingual-grid { grid-template-columns: 1fr; gap: 2rem; }
    .support-type-grid { grid-template-columns: 1fr; }
}
/* ══════════════════════════════════════════════════
   LEGAL PAGES  (Privacy Policy / Terms)
   ══════════════════════════════════════════════════ */

.legal-hero {
    background: linear-gradient(135deg, #060E1F 0%, #0A3260 50%, #1A6BC4 100%);
    padding: 120px 2.5rem 3.5rem;
    text-align: center;
}
.legal-hero-inner { max-width: 640px; margin: 0 auto; }
.legal-hero h1 { font-size: 38px; color: #fff; margin: 12px 0 10px; font-weight: 700; }
.legal-hero p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; margin: 0; }

/* Layout */
.legal-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 2.5rem;
    max-width: 1050px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    align-items: start;
}
.legal-layout--single {
    grid-template-columns: 1fr;
    max-width: 780px;
}

/* Sidebar */
.legal-sidebar {
    position: sticky;
    top: 1.5rem;
}
.legal-sidenav { display: flex; flex-direction: column; gap: 2px; }
.legal-sidenav-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6B7A99;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.35rem;
}
.legal-sidenav a {
    font-size: 0.83rem;
    color: #6B7A99;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    display: block;
    transition: background 0.12s, color 0.12s;
}
.legal-sidenav a:hover { background: #EAF2FC; color: var(--brand-mid); }

/* Article */
.legal-article { min-width: 0; }

.legal-section {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #E2E8F0;
}
.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand);
    margin: 0 0 0.75rem;
}
.legal-section h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1A1A2E;
    margin: 1.25rem 0 0.5rem;
}
.legal-section p { font-size: 0.9rem; color: #4A5568; line-height: 1.75; margin: 0 0 0.75rem; }
.legal-section p:last-child { margin-bottom: 0; }

.legal-list {
    padding-left: 1.25rem;
    margin: 0.5rem 0 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.legal-list li { font-size: 0.875rem; color: #4A5568; line-height: 1.7; }

.legal-callout {
    background: rgba(26,107,196,0.07);
    border-left: 3px solid var(--brand-mid);
    border-radius: 0 8px 8px 0;
    padding: 0.9rem 1.1rem;
    font-size: 0.875rem;
    color: var(--brand);
    font-weight: 500;
    margin-bottom: 1rem;
}

.legal-link { color: var(--brand-mid); text-decoration: none; }
.legal-link:hover { text-decoration: underline; }

.legal-address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 2;
    color: #4A5568;
    background: #F8FAFD;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: inline-block;
}

/* Cookie table */
.legal-table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    margin: 1rem 0;
}
.legal-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.legal-table th {
    background: #F8FAFD;
    color: #6B7A99;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}
.legal-table td {
    padding: 0.7rem 1rem;
    color: #4A5568;
    border-bottom: 1px solid #F0F4F8;
    vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table code {
    background: #EAF2FC;
    color: var(--brand);
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .legal-layout { grid-template-columns: 1fr; }
    .legal-sidebar { position: static; }
}