/* ===== CSS VARIABLES ===== */
:root {
    --primary: #F97316;
    --primary-hover: #EA580C;
    --primary-light: #FFF7ED;
    --primary-light-2: #FFEDD5;
    --navy: #1A2332;
    --navy-light: #1E293B;
    --navy-darker: #0F172A;
    --text-dark: #1E3461;
    --logo-blue: #1E3461;
    --text-body: #475569;
    --text-muted: #94A3B8;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --border: #E2E8F0;
    --bg: #FFFFFF;
    --bg-section: #F8FAFC;
    --card-bg: #FFFFFF;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --card-shadow-hover: 0 10px 25px rgba(0,0,0,0.08);
    --header-bg: rgba(255,255,255,0.95);
    --green: #22C55E;
    --blue: #3B82F6;
    --teal: #14B8A6;
    --purple: #8B5CF6;
    --red: #EF4444;
    --yellow: #EAB308;
}

[data-theme="dark"] {
    --text-dark: #F1F5F9;
    --text-body: #94A3B8;
    --text-muted: #64748B;
    --bg: #0F172A;
    --bg-section: #1A2332;
    --card-bg: #1E293B;
    --card-shadow: 0 1px 3px rgba(0,0,0,0.3);
    --card-shadow-hover: 0 10px 25px rgba(0,0,0,0.4);
    --border: #334155;
    --gray-50: #1A2332;
    --gray-100: #1E293B;
    --gray-200: #334155;
    --header-bg: rgba(15,23,42,0.95);
    --primary-light: #1C1410;
    --primary-light-2: #2A1A0E;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: 72px;
}
.header .container {
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.logo { display: flex; align-items: center; gap: 2px; }
.logo-q { font-size: 28px; font-weight: 800; color: var(--primary); }
.logo-text { font-size: 28px; font-weight: 800; color: var(--text-dark); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-size: 14px; font-weight: 500; color: var(--text-body);
    transition: color 0.2s; position: relative; padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--text-dark); }
.nav a.active::after {
    content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
    width: 6px; height: 6px; border-radius: 50%; background: var(--primary);
}
.header-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle, .theme-toggle {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); font-size: 14px;
    display: flex; align-items: center; gap: 4px; padding: 6px;
    transition: color 0.2s;
}
.lang-toggle:hover, .theme-toggle:hover { color: var(--text-dark); }

/* ===== BUTTONS ===== */
.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: white;
    padding: 10px 20px; border-radius: 8px;
    font-size: 14px; font-weight: 600;
    transition: background 0.2s, transform 0.1s;
    border: none; cursor: pointer;
}
.btn-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text-dark);
    padding: 10px 20px; border-radius: 8px;
    font-size: 14px; font-weight: 600;
    border: 1.5px solid var(--border);
    transition: all 0.2s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-cta.btn-lg, .btn-outline.btn-lg {
    padding: 14px 28px; font-size: 15px; border-radius: 10px;
}
.btn-cta.btn-block, .btn-outline.btn-block {
    width: 100%; justify-content: center;
}
.btn-disabled {
    background: var(--primary-light-2); color: var(--text-muted); cursor: not-allowed;
}
.btn-disabled:hover { background: var(--primary-light-2); transform: none; }

/* ===== HERO (homepage) ===== */
.hero {
    padding: 140px 0 80px; position: relative; overflow: hidden;
    background: var(--bg);
}
.hero .container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; max-width: 560px; }
.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; }
.badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-light); color: var(--primary);
    padding: 6px 16px; border-radius: 20px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
    margin-bottom: 20px; text-transform: uppercase;
}
.badge.outline {
    background: transparent;
    border: 1.5px solid var(--primary);
}
.badge .star { font-size: 14px; }
.hero h1 {
    font-size: 48px; font-weight: 800; color: var(--text-dark);
    line-height: 1.15; margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--primary); font-style: italic; }
.hero-subtitle {
    font-size: 16px; color: var(--text-body); line-height: 1.7;
    margin-bottom: 32px; max-width: 480px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Dashboard mockup */
.dashboard-card {
    background: var(--card-bg); border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    padding: 24px; width: 380px; position: relative;
    border: 1px solid var(--border);
}
.dashboard-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.dashboard-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--primary-light); display: flex; align-items: center; justify-content: center;
}
.dashboard-icon svg { width: 20px; height: 20px; color: var(--primary); }
.dashboard-title { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.dashboard-label { font-size: 12px; color: var(--text-muted); }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; margin-bottom: 16px; }
.chart-bar {
    flex: 1; border-radius: 6px 6px 0 0;
    transition: height 0.6s ease;
}
.chart-bar:nth-child(odd) { background: var(--primary); }
.chart-bar:nth-child(even) { background: var(--primary-light-2); }

.floating-card {
    position: absolute; background: var(--card-bg);
    border-radius: 12px; padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
}
.quality-card { top: -10px; right: -30px; }
.quality-label { font-size: 10px; color: var(--text-muted); }
.quality-value { font-size: 22px; font-weight: 800; color: var(--text-dark); }
.quality-icon { display: flex; align-items: center; gap: 6px; }
.quality-icon svg { width: 18px; height: 18px; color: var(--primary); }
.speed-card { bottom: 10px; left: -20px; display: flex; align-items: center; gap: 10px; }
.speed-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--primary); display: flex; align-items: center; justify-content: center;
}
.speed-icon svg { width: 16px; height: 16px; color: white; }
.speed-label { font-size: 10px; color: var(--text-muted); }
.speed-value { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.speed-change { font-size: 11px; color: #22C55E; font-weight: 600; }

.deco { position: absolute; border-radius: 6px; opacity: 0.6; pointer-events: none; }
.deco-1 { width: 50px; height: 50px; background: var(--primary-light-2); top: 120px; left: 40px; transform: rotate(15deg); }
.deco-2 { width: 35px; height: 35px; background: var(--primary-light-2); top: 100px; right: 60px; transform: rotate(30deg); border-radius: 8px; }
.deco-3 { width: 25px; height: 25px; background: var(--primary-light); bottom: 60px; left: 80px; transform: rotate(-10deg); }

/* ===== STATS BAR ===== */
.stats {
    padding: 40px 0; border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); background: var(--bg);
}
.stats .container { display: flex; justify-content: center; gap: 80px; }
.stat { text-align: center; }
.stat-value { font-size: 32px; font-weight: 800; color: var(--text-dark); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== GENERIC SECTIONS ===== */
.section { padding: 100px 0; background: var(--bg); }
.section.alt { background: var(--bg-section); }
.section-title {
    font-size: 32px; font-weight: 800; color: var(--text-dark);
    text-align: center; margin-bottom: 12px;
}
.section-subtitle {
    font-size: 16px; color: var(--text-muted);
    text-align: center; margin-bottom: 60px; max-width: 640px;
    margin-left: auto; margin-right: auto;
}
.section-cta { text-align: center; margin-top: 24px; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    padding: 130px 0 60px; text-align: center;
    background: var(--bg);
    position: relative; overflow: hidden;
}
.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 {
    font-size: 44px; font-weight: 800; color: var(--text-dark);
    line-height: 1.15; margin-bottom: 16px;
}
.page-hero h1 .highlight { color: var(--primary); }
.page-hero p {
    font-size: 17px; color: var(--text-body); line-height: 1.7;
    max-width: 620px; margin: 0 auto;
}
.back-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-muted); font-size: 14px; font-weight: 500;
    margin-bottom: 16px;
    transition: color 0.2s;
}
.back-link:hover { color: var(--primary); }

/* ===== CARDS GRID (4-col) ===== */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 24px;
    transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; color: white; }
.card-icon.orange { background: var(--primary); }
.card-icon.navy { background: var(--navy); }
.card-icon.green { background: var(--green); }
.card-icon.blue { background: var(--blue); }
.card-icon.teal { background: var(--teal); }
.card-icon.purple { background: var(--purple); }
.card-icon.red { background: var(--red); }
.card-icon.yellow { background: var(--yellow); }
.card-icon.soft-orange { background: var(--primary-light); }
.card-icon.soft-orange svg { color: var(--primary); }
.card-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== SERVICE ROW (alternating layout) ===== */
.service-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    padding: 40px 0;
}
.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-visual { order: 1; }
.service-text .card-icon { margin-bottom: 24px; }
.service-text h3 {
    font-size: 26px; font-weight: 800; color: var(--text-dark);
    margin-bottom: 12px;
}
.service-text p {
    font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px;
}
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0; font-size: 14px; color: var(--text-body);
}
.feature-list li::before {
    content: ''; flex-shrink: 0;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--primary-light); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px; background-repeat: no-repeat; background-position: center;
    margin-top: 2px;
}
.service-visual {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 60px 40px;
    display: flex; align-items: center; justify-content: center;
    min-height: 280px;
    position: relative; overflow: hidden;
}
.service-visual-icon {
    width: 100px; height: 100px; border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
}
.service-visual-icon svg { width: 56px; height: 56px; color: white; }
.service-visual::before {
    content: ''; position: absolute;
    top: -20px; right: -20px; width: 80px; height: 80px;
    border-radius: 14px; background: var(--primary-light-2);
    transform: rotate(20deg); opacity: 0.6;
}
.service-visual::after {
    content: ''; position: absolute;
    bottom: -15px; left: -15px; width: 60px; height: 60px;
    border-radius: 12px; background: var(--primary-light);
    transform: rotate(-10deg); opacity: 0.7;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; position: relative;
}
.process-step {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px 24px; text-align: center;
    position: relative;
}
.process-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary); color: white;
    font-weight: 800; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.process-step h4 {
    font-size: 18px; font-weight: 700; color: var(--text-dark);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 14px; color: var(--text-muted); line-height: 1.6;
}
.process-step:not(:last-child)::after {
    content: '→';
    position: absolute; right: -22px; top: 50%; transform: translateY(-50%);
    color: var(--primary); font-size: 24px; font-weight: 700;
    z-index: 1;
}

/* ===== QUICKSTARTS ===== */
.quickstarts-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px; max-width: 720px; margin: 0 auto;
}
.quickstart {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px;
    display: flex; align-items: center; gap: 20px;
    transition: box-shadow 0.3s, transform 0.2s;
}
.quickstart:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.quickstart-logo {
    width: 64px; height: 64px; border-radius: 12px;
    background: var(--primary-light); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px; color: var(--primary);
    text-align: center; padding: 6px;
}
.quickstart h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.quickstart p { font-size: 13px; color: var(--text-muted); }

/* ===== REVIEWS MARQUEE ===== */
.reviews-marquee {
    overflow: hidden; padding: 24px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.reviews-track {
    display: flex; gap: 20px; width: max-content;
    animation: marquee 35s linear infinite;
}
.review-pill {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 12px; padding: 16px 22px;
    display: flex; align-items: center; gap: 12px;
    flex-shrink: 0; max-width: 360px;
}
.review-pill .stars { color: var(--primary); font-size: 14px; flex-shrink: 0; }
.review-pill .text { font-size: 14px; color: var(--text-body); font-style: italic; }
.review-pill .author { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== TWO-CARD SPLIT (mission/vision) ===== */
.split-cards {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.split-card {
    border-radius: 20px; padding: 40px;
    border: 1px solid var(--border);
    background: var(--card-bg);
    position: relative;
}
.split-card.glow {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}
.split-card.dark {
    background: #1A3A6C; color: white; border-color: #1A3A6C;
}
.split-card.dark h3 { color: white; }
.split-card.dark p { color: #94A3B8; }
.split-card .card-icon { margin-bottom: 24px; }
.split-card h3 {
    font-size: 22px; font-weight: 800; color: var(--text-dark);
    margin-bottom: 12px;
}
.split-card p {
    font-size: 15px; line-height: 1.7; color: var(--text-body);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; align-items: stretch;
}
.price-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px 28px;
    display: flex; flex-direction: column;
    transition: box-shadow 0.3s, transform 0.2s;
    position: relative;
}
.price-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.price-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(249,115,22,0.15);
    transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-12px); }
.price-card-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white;
    padding: 6px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}
.price-tier {
    font-size: 12px; font-weight: 700; color: var(--primary);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.price-name {
    font-size: 24px; font-weight: 800; color: var(--text-dark);
    margin-bottom: 16px;
}
.price-amount {
    font-size: 40px; font-weight: 800; color: var(--text-dark);
    line-height: 1; margin-bottom: 4px;
}
.price-amount .period {
    font-size: 14px; font-weight: 500; color: var(--text-muted);
}
.price-desc {
    font-size: 14px; color: var(--text-muted);
    margin-bottom: 24px; padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.price-features { list-style: none; padding: 0; margin-bottom: 32px; flex: 1; }
.price-features li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0; font-size: 14px; color: var(--text-body);
}
.price-features li svg {
    width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px;
}

/* ===== PROJECT WORK ===== */
.project-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.project-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px;
}
.project-card h4 {
    font-size: 18px; font-weight: 700; color: var(--text-dark);
    margin-bottom: 12px;
}
.project-card .price-amount { font-size: 32px; margin-bottom: 12px; }
.project-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== ACTION BANNER (assessment promo) ===== */
.action-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white; border-radius: 20px;
    padding: 32px 40px;
    display: grid; grid-template-columns: 1fr auto;
    gap: 24px; align-items: center;
    margin-bottom: 60px;
    box-shadow: 0 20px 50px rgba(249,115,22,0.25);
}
.action-banner .label {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; opacity: 0.9; margin-bottom: 8px;
}
.action-banner h3 {
    font-size: 24px; font-weight: 800; margin-bottom: 6px;
}
.action-banner p { font-size: 14px; opacity: 0.95; }
.action-banner .price-row {
    display: flex; align-items: baseline; gap: 12px; margin-top: 12px;
}
.action-banner .new-price { font-size: 32px; font-weight: 800; }
.action-banner .old-price {
    font-size: 16px; opacity: 0.7;
    text-decoration: line-through;
}
.action-banner .discount {
    background: white; color: var(--primary);
    padding: 4px 10px; border-radius: 6px;
    font-size: 12px; font-weight: 800;
}
.action-banner .btn-cta {
    background: white; color: var(--primary);
}
.action-banner .btn-cta:hover { background: rgba(255,255,255,0.9); }

/* ===== REFERENCE CARDS ===== */
.review-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px;
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 32px;
    margin-bottom: 24px;
    transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--card-shadow-hover); }
.review-company .company-logo {
    width: 56px; height: 56px; border-radius: 12px;
    background: var(--gray-100); display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.review-company .company-logo svg { width: 28px; height: 28px; color: var(--text-muted); }
.review-company h4 {
    font-size: 18px; font-weight: 800; color: var(--text-dark);
    margin-bottom: 4px;
}
.review-company .sector {
    font-size: 13px; color: var(--primary); font-weight: 600;
    margin-bottom: 12px;
}
.review-company .stars {
    color: var(--primary); font-size: 16px; margin-bottom: 16px;
}
.review-company .project-label {
    font-size: 11px; color: var(--text-muted); text-transform: uppercase;
    letter-spacing: 0.5px; font-weight: 700; margin-bottom: 4px;
}
.review-company .project-name {
    font-size: 14px; color: var(--text-body); font-weight: 600;
}
.review-quote {
    position: relative; padding-left: 32px;
}
.review-quote::before {
    content: '"'; position: absolute;
    top: -10px; left: 0;
    font-size: 64px; color: var(--primary);
    font-family: Georgia, serif; line-height: 1;
    opacity: 0.5;
}
.review-quote .quote-text {
    font-size: 16px; color: var(--text-body); line-height: 1.7;
    font-style: italic; margin-bottom: 24px;
}
.review-author {
    display: flex; align-items: center; gap: 12px;
}
.review-author .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.review-author .name {
    font-size: 14px; font-weight: 700; color: var(--text-dark);
}
.review-author .role {
    font-size: 13px; color: var(--text-muted);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 60px; align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--text-dark); margin-bottom: 8px;
}
.form-group label .req { color: var(--primary); }
.form-input, .form-textarea, .form-select {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid var(--border); border-radius: 8px;
    font-family: inherit; font-size: 15px;
    background: var(--bg); color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.form-textarea { resize: vertical; min-height: 140px; }

.contact-info {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px;
}
.contact-info h3 {
    font-size: 18px; font-weight: 800; color: var(--text-dark);
    margin-bottom: 24px;
}
.contact-info .info-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 22px;
}
.contact-info .info-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info .info-icon svg { width: 18px; height: 18px; color: var(--primary); }
.contact-info .info-label {
    font-size: 12px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
    margin-bottom: 2px;
}
.contact-info .info-value {
    font-size: 15px; color: var(--text-dark); font-weight: 500;
}
.contact-info .info-value a { color: var(--primary); }
.contact-info .info-value a:hover { text-decoration: underline; }

/* ===== BOOKING ===== */
.step-indicator {
    display: flex; justify-content: center; gap: 0;
    margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.step-item {
    display: flex; align-items: center; gap: 12px;
    flex: 1; position: relative;
}
.step-item:not(:last-child)::after {
    content: ''; flex: 1; height: 2px; background: var(--border);
    margin: 0 12px;
}
.step-item.active:not(:last-child)::after,
.step-item.done:not(:last-child)::after { background: var(--primary); }
.step-circle {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gray-100); color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; flex-shrink: 0;
    border: 2px solid var(--border);
    transition: all 0.2s;
}
.step-item.active .step-circle {
    background: var(--primary); color: white; border-color: var(--primary);
}
.step-item.done .step-circle {
    background: var(--primary-light); color: var(--primary); border-color: var(--primary);
}
.step-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.step-item.active .step-label { color: var(--text-dark); }

.booking-grid {
    display: grid; grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}
.booking-form {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px;
}
.booking-form h3 {
    font-size: 18px; font-weight: 800; color: var(--text-dark);
    margin-bottom: 6px;
}
.booking-form .subtle {
    font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
}

/* Calendar */
.calendar {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 12px; padding: 16px; margin-bottom: 20px;
}
.calendar-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
}
.calendar-head .month {
    font-size: 14px; font-weight: 700; color: var(--text-dark);
}
.calendar-head .nav-btn {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted); padding: 6px;
}
.calendar-head .nav-btn:hover { color: var(--primary); }
.calendar-grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.calendar-grid .day-name {
    text-align: center; font-size: 11px; font-weight: 700;
    color: var(--text-muted); padding: 6px 0; text-transform: uppercase;
}
.calendar-grid .day {
    text-align: center; padding: 8px 0;
    font-size: 13px; font-weight: 500; color: var(--text-dark);
    border-radius: 8px; cursor: pointer;
    transition: background 0.15s;
}
.calendar-grid .day:hover { background: var(--primary-light); color: var(--primary); }
.calendar-grid .day.muted { color: var(--text-muted); opacity: 0.4; cursor: default; }
.calendar-grid .day.muted:hover { background: transparent; }
.calendar-grid .day.today { font-weight: 800; color: var(--primary); }
.calendar-grid .day.selected { background: var(--primary); color: white; }
.calendar-grid .day.selected:hover { background: var(--primary-hover); color: white; }

/* Time slots */
.timeslots {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.timeslot, .appt-type {
    border: 1.5px solid var(--border); border-radius: 10px;
    padding: 14px 12px; text-align: center; cursor: pointer;
    transition: all 0.15s;
    background: var(--bg);
}
.timeslot:hover, .appt-type:hover { border-color: var(--primary); }
.timeslot.selected, .appt-type.selected {
    border-color: var(--primary); background: var(--primary-light);
}
.timeslot .ts-label, .appt-type .ts-label {
    font-size: 13px; font-weight: 700; color: var(--text-dark);
    margin-bottom: 2px;
}
.timeslot .ts-time, .appt-type .ts-time {
    font-size: 12px; color: var(--text-muted);
}

/* Summary panel */
.booking-summary {
    background: var(--primary-light); border: 1.5px solid var(--primary-light-2);
    border-radius: 16px; padding: 24px;
    position: sticky; top: 96px;
}
.booking-summary h4 {
    font-size: 14px; font-weight: 800; color: var(--text-dark);
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px;
}
.summary-item {
    display: flex; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
    font-size: 14px;
}
.summary-item:last-of-type { border-bottom: none; }
.summary-item .key { color: var(--text-muted); font-weight: 500; }
.summary-item .val { color: var(--text-dark); font-weight: 600; text-align: right; }
.summary-item .val.empty { color: var(--text-muted); font-style: italic; font-weight: 400; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--navy); padding: 80px 0; text-align: center;
}
.cta-section h2 { font-size: 32px; font-weight: 800; color: white; margin-bottom: 16px; }
.cta-section p { font-size: 16px; color: #94A3B8; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-darker); padding: 60px 0 30px; color: #94A3B8; }
.footer .container { display: flex; flex-direction: column; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 2px; margin-bottom: 16px; }
.footer-logo .logo-q { color: var(--primary); font-size: 24px; font-weight: 800; }
.footer-logo .logo-text { color: white; font-size: 24px; font-weight: 800; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: #64748B; }
.footer-tagline { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 16px; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--navy); transition: background 0.2s;
}
.footer-social a:hover { background: var(--primary); }
.footer-social svg { width: 18px; height: 18px; color: white; }
.footer h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: #64748B; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    border-top: 1px solid #1E293B; padding-top: 24px;
    font-size: 13px; color: #475569;
}

/* ===== MOBILE MENU ===== */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text-dark); }
.mobile-toggle svg { width: 24px; height: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 36px; }
    .hero .container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .stats .container { gap: 40px; flex-wrap: wrap; }
    .dashboard-card { width: 320px; }
    .service-row { grid-template-columns: 1fr; gap: 32px; }
    .service-row.reverse .service-text { order: 1; }
    .service-row.reverse .service-visual { order: 2; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
    .contact-grid, .booking-grid, .split-cards, .quickstarts-grid, .project-grid {
        grid-template-columns: 1fr;
    }
    .review-card { grid-template-columns: 1fr; gap: 24px; }
    .process-flow { grid-template-columns: 1fr; }
    .process-step:not(:last-child)::after {
        content: '↓'; right: 50%; top: auto; bottom: -20px; transform: translateX(50%);
    }
    .action-banner { grid-template-columns: 1fr; text-align: center; }
    .page-hero h1 { font-size: 34px; }
}
@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 72px; left: 0; right: 0;
        flex-direction: column; background: var(--header-bg); padding: 20px;
        border-bottom: 1px solid var(--border); gap: 16px;
        backdrop-filter: blur(12px);
    }
    .nav.open { display: flex; }
    .nav a.active::after { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 110px 0 60px; }
    .hero h1 { font-size: 30px; }
    .cards-grid, .cards-grid.cols-3, .cards-grid.cols-2 { grid-template-columns: 1fr; }
    .stats .container { gap: 24px; }
    .stat-value { font-size: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .quality-card { right: -10px; }
    .speed-card { left: -5px; }
    .dashboard-card { width: 280px; }
    .section { padding: 70px 0; }
    .page-hero { padding: 110px 0 40px; }
    .page-hero h1 { font-size: 28px; }
    .review-card { padding: 28px; }
    .action-banner { padding: 28px; }
    .step-label { display: none; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn-cta, .btn-outline { justify-content: center; }
    .header-right .lang-toggle span,
    .header-right .theme-toggle span { display: none; }
    .timeslots { grid-template-columns: 1fr; }
    .timeslots:has(.appt-type) { grid-template-columns: 1fr 1fr; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--white); border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1); padding: 16px 0;
}
[data-theme="dark"] #cookie-banner { background: var(--navy-light); }
.cookie-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-inner p { margin: 0; font-size: 14px; color: var(--text-body); flex: 1; min-width: 200px; }
.cookie-inner a { color: var(--primary); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-buttons .btn-cta, .cookie-buttons .btn-outline {
    padding: 8px 18px; font-size: 13px;
}
