/* ZBC — home (front page) styles. Loaded only on the front page.
   Navbar/footer variants + hero + services, why-us, order-builder, process,
   testimonials, cta. Base primitives live in base.css. */

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 0.7rem 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto; transition: all 0.3s; }
.navbar.scrolled .logo-img { height: 34px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--gray-500); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--text-primary); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-accent);
    color: var(--white) !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 16px rgba(0,146,221,0.25);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(0,146,221,0.35);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.navbar.scrolled .mobile-toggle span { background: var(--navy); }

/* Mobile nav panel (rendered by site.js toggle) */
.nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 2rem 2rem;
    background: rgba(6,14,31,0.98);
    backdrop-filter: blur(20px);
}
.navbar.scrolled .nav-links.open { background: rgba(255,255,255,0.98); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 50% at 60% 30%, rgba(0,146,221,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 45% 45% at 25% 75%, rgba(115,56,229,0.07) 0%, transparent 50%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}
.hero-rocket {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: auto;
    opacity: 0;
    overflow: visible;
    animation: rocketReveal 1.5s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes rocketReveal {
    from { opacity: 0; transform: translateY(-45%) translateX(20px); }
    to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.hero-rocket svg { width: 100%; height: auto; }

.rocket-trail {
    position: absolute;
    left: 50%;
    top: 86%;
    transform: translateX(-50%);
    width: 80px;
    height: 300px;
    pointer-events: none;
}
.trail-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    background: var(--blue-cyan);
}
.trail-dot:nth-child(1)  { width: 3px; height: 3px; left: 50%; top: 0;   animation: trailFloat 2.6s 0s ease-in-out infinite; }
.trail-dot:nth-child(2)  { width: 2px; height: 2px; left: 44%; top: 4%;  animation: trailFloat 2.8s 0.3s ease-in-out infinite; }
.trail-dot:nth-child(3)  { width: 2.5px; height: 2.5px; left: 56%; top: 2%;  animation: trailFloat 2.5s 0.7s ease-in-out infinite; }
.trail-dot:nth-child(4)  { width: 2px; height: 2px; left: 48%; top: 7%;  animation: trailFloat 3s 1.1s ease-in-out infinite; }
.trail-dot:nth-child(5)  { width: 3px; height: 3px; left: 52%; top: 1%;  animation: trailFloat 2.4s 1.5s ease-in-out infinite; }
.trail-dot:nth-child(6)  { width: 2px; height: 2px; left: 46%; top: 10%; animation: trailFloat 2.9s 0.2s ease-in-out infinite; }
.trail-dot:nth-child(7)  { width: 2.5px; height: 2.5px; left: 54%; top: 5%;  animation: trailFloat 2.7s 0.9s ease-in-out infinite; }
.trail-dot:nth-child(8)  { width: 1.5px; height: 1.5px; left: 50%; top: 3%;  animation: trailFloat 3.1s 1.8s ease-in-out infinite; background: var(--purple); }
.trail-dot:nth-child(9)  { width: 2px; height: 2px; left: 42%; top: 6%;  animation: trailFloat 2.6s 2.1s ease-in-out infinite; }
.trail-dot:nth-child(10) { width: 1.5px; height: 1.5px; left: 58%; top: 8%;  animation: trailFloat 3.2s 0.5s ease-in-out infinite; background: var(--purple); }
@keyframes trailFloat {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    15% { opacity: 0.8; }
    50% { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(100px) scale(0); }
}

.space-dust {
    position: absolute;
    top: 18%;
    width: 40px;
    height: 78%;
    pointer-events: none;
}
.space-dust-left { left: 18%; }
.space-dust-right { right: 18%; }
.dust {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    opacity: 0;
    animation: dustDrift ease-in-out infinite;
}
.space-dust-left .dust:nth-child(1) { width: 1.5px; height: 1.5px; left: 30%; top: 10%; animation-duration: 4s; animation-delay: 0s; }
.space-dust-left .dust:nth-child(2) { width: 1px; height: 1px; left: 70%; top: 25%; animation-duration: 3.5s; animation-delay: 1.2s; }
.space-dust-left .dust:nth-child(3) { width: 2px; height: 2px; left: 50%; top: 5%; animation-duration: 4.5s; animation-delay: 0.6s; background: rgba(0,146,221,0.2); }
.space-dust-left .dust:nth-child(4) { width: 1px; height: 1px; left: 20%; top: 40%; animation-duration: 3.8s; animation-delay: 2s; }
.space-dust-left .dust:nth-child(5) { width: 1.5px; height: 1.5px; left: 60%; top: 55%; animation-duration: 4.2s; animation-delay: 0.3s; background: rgba(115,56,229,0.17); }
.space-dust-right .dust:nth-child(1) { width: 1px; height: 1px; left: 40%; top: 15%; animation-duration: 3.8s; animation-delay: 0.8s; }
.space-dust-right .dust:nth-child(2) { width: 2px; height: 2px; left: 70%; top: 8%; animation-duration: 4.3s; animation-delay: 1.5s; background: rgba(0,146,221,0.17); }
.space-dust-right .dust:nth-child(3) { width: 1.5px; height: 1.5px; left: 20%; top: 35%; animation-duration: 3.6s; animation-delay: 0.1s; }
.space-dust-right .dust:nth-child(4) { width: 1px; height: 1px; left: 60%; top: 50%; animation-duration: 4.8s; animation-delay: 2.3s; background: rgba(115,56,229,0.15); }
.space-dust-right .dust:nth-child(5) { width: 1.5px; height: 1.5px; left: 35%; top: 65%; animation-duration: 4s; animation-delay: 1s; }
@keyframes dustDrift {
    0% { opacity: 0; transform: translateY(0); }
    10% { opacity: 0.72; }
    60% { opacity: 0.38; }
    100% { opacity: 0; transform: translateY(120px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 8rem 0 6rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(52,211,153,0.06);
    border: 1px solid rgba(52,211,153,0.18);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #6ee7b7;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease both;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 6px rgba(52,211,153,0.5);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.6vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s 0.15s ease both;
}
.h1-punch {
    display: block;
    margin-top: 0.2em;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray-400);
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    animation: fadeInUp 0.8s 0.45s ease both;
}

/* ===== SECTION COMMON ===== */
.section { padding: 7rem 0; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue-cyan);
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 560px;
}

/* ===== SERVICES ===== */
.services-header { margin-bottom: 4rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    position: relative;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.4s;
}
.service-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(0,55,152,0.07), 0 1px 3px rgba(0,55,152,0.05);
    transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-card:nth-child(1) .service-icon { background: rgba(0,55,152,0.08); }
.service-card:nth-child(2) .service-icon { background: rgba(0,146,221,0.08); }
.service-card:nth-child(3) .service-icon { background: rgba(115,56,229,0.08); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, rgba(0,146,221,0.08), rgba(115,56,229,0.08)); }
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
    padding: 0.3rem 0.75rem;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--gray-600);
}

/* ===== WHY US ===== */
.why-us {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 45% at 75% 50%, rgba(0,146,221,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 15% 30%, rgba(115,56,229,0.05) 0%, transparent 50%);
}
.why-us .section-label { color: var(--blue-cyan); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: var(--gray-400); }
.why-us-header { margin-bottom: 4rem; position: relative; }
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
}
.why-card {
    padding: 2.25rem;
    padding-left: 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 0;
    width: 2px;
    background: var(--gradient-brand);
    opacity: 0.25;
    transition: opacity 0.4s;
}
.why-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.why-card:hover::before { opacity: 1; }
.why-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.85rem;
}
.why-card-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-card-icon svg {
    width: 22px; height: 22px;
    stroke: rgba(255,255,255,0.45);
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}
.why-card:hover .why-card-icon svg { stroke: var(--blue-cyan); }
.why-card-num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.08);
    font-variant-numeric: tabular-nums;
}
.why-card h3 {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}
.why-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
}

/* ===== ORDER BUILDER ===== */
.order-builder { background: var(--gray-50); overflow: hidden; }
.order-header { text-align: center; margin-bottom: 3rem; }
.order-header .section-subtitle { margin: 0 auto; }
.order-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
}
.order-configurator {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,55,152,0.04);
}
.config-row { margin-bottom: 1.5rem; }
.config-row:last-child { margin-bottom: 0; }
.config-row label {
    display: block; font-size: 0.72rem; font-weight: 700;
    color: var(--gray-500); text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.config-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.config-pill {
    padding: 0.4rem 0.85rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.8rem; font-weight: 500; color: var(--text-secondary);
    cursor: pointer; transition: all 0.25s;
    font-family: var(--font-body);
}
.config-pill:hover { border-color: var(--blue-cyan); color: var(--text-primary); }
.config-pill.selected {
    background: rgba(0,146,221,0.1);
    border-color: var(--blue-cyan);
    color: var(--blue-dark);
}
.config-qty {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 0.5rem;
}
.qty-btn {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--blue-dark); font-size: 1.1rem;
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body);
}
.qty-btn:hover { background: rgba(0,146,221,0.1); border-color: var(--blue-cyan); }
.qty-value {
    font-size: 1.2rem; font-weight: 700; color: var(--text-primary);
    min-width: 24px; text-align: center;
}
.add-to-cart-btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.6rem;
    background: var(--gradient-accent); color: var(--white);
    font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
    border: none; border-radius: 100px; cursor: pointer;
    transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,146,221,0.2);
}
.add-to-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,146,221,0.3); }
.order-cart {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    position: sticky; top: 100px;
    box-shadow: 0 4px 20px rgba(0,55,152,0.04);
}
.cart-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.25rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}
.cart-header h3 {
    font-size: 0.95rem; font-weight: 700; color: var(--text-primary);
    display: flex; align-items: center; gap: 0.5rem;
}
.cart-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; padding: 0 6px;
    border-radius: 100px; font-size: 0.68rem; font-weight: 800;
    background: var(--gradient-accent); color: var(--white);
    transition: transform 0.3s;
}
.cart-count.bump { animation: cartBump 0.35s ease; }
@keyframes cartBump {
    0% { transform: scale(1); }
    40% { transform: scale(1.4); }
    100% { transform: scale(1); }
}
.cart-items { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.cart-empty {
    text-align: center; padding: 1.5rem 0;
    font-size: 0.82rem; color: var(--gray-400);
}
.cart-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.6rem 0.75rem;
    background: var(--gray-50);
    border-radius: 10px;
    animation: cartItemIn 0.3s ease;
}
@keyframes cartItemIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}
.cart-item-info h4 { font-size: 0.78rem; font-weight: 600; color: var(--text-primary); }
.cart-item-info span { font-size: 0.68rem; color: var(--gray-500); }
.cart-item-right { display: flex; align-items: center; gap: 0.5rem; }
.cart-item-qty {
    font-size: 0.75rem; font-weight: 700; color: var(--blue-dark);
    background: rgba(0,146,221,0.1); padding: 0.15rem 0.5rem; border-radius: 100px;
}
.cart-item-remove {
    width: 22px; height: 22px; border-radius: 50%;
    border: none; background: var(--gray-100);
    color: var(--gray-500); font-size: 0.75rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; font-family: var(--font-body);
}
.cart-item-remove:hover { background: rgba(248,113,113,0.15); color: #f87171; }
.cart-submit {
    width: 100%;
    padding: 0.75rem;
    background: var(--gradient-accent); color: var(--white);
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
    border: none; border-radius: 100px; cursor: pointer;
    transition: all 0.3s; box-shadow: 0 4px 12px rgba(0,146,221,0.2);
    opacity: 0.4; pointer-events: none;
}
.cart-submit.active { opacity: 1; pointer-events: auto; }
.cart-submit.active:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,146,221,0.3); }

/* Order modal */
.order-modal-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(6,14,31,0.85);
    backdrop-filter: blur(6px);
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.order-modal-overlay.open { display: flex; opacity: 1; }
.order-modal {
    background: var(--white); border-radius: 20px;
    padding: 2.5rem; max-width: 520px; width: 90%;
    max-height: 85vh; overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    transform: translateY(20px); transition: transform 0.3s;
}
.order-modal-overlay.open .order-modal { transform: translateY(0); }
.modal-close {
    float: right; width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--gray-200); background: var(--white);
    font-size: 1rem; cursor: pointer; display: flex;
    align-items: center; justify-content: center; color: var(--gray-500);
    transition: all 0.2s; font-family: var(--font-body);
}
.modal-close:hover { background: var(--gray-50); color: var(--text-primary); }
.modal-title {
    font-family: var(--font-display); font-size: 1.4rem;
    font-weight: 600; color: var(--text-primary); margin-bottom: 0.35rem;
}
.modal-subtitle { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.modal-summary {
    background: var(--gray-50); border-radius: 12px;
    padding: 1rem; margin-bottom: 1.5rem;
}
.modal-summary h4 {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 0.6rem;
}
.modal-summary-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.35rem 0; font-size: 0.82rem; color: var(--text-primary);
}
.modal-summary-item span:last-child { font-weight: 600; color: var(--blue-dark); }
.modal-form { display: flex; flex-direction: column; gap: 1rem; }
.modal-field label {
    display: block; font-size: 0.78rem; font-weight: 600;
    color: var(--text-primary); margin-bottom: 0.35rem;
}
.modal-field input, .modal-field textarea {
    width: 100%; padding: 0.65rem 0.9rem;
    border: 1px solid var(--gray-200); border-radius: 10px;
    font-family: var(--font-body); font-size: 0.88rem;
    color: var(--text-primary); background: var(--white);
    transition: border-color 0.2s; outline: none;
}
.modal-field input:focus, .modal-field textarea:focus { border-color: var(--blue-cyan); }
.modal-field textarea { resize: vertical; min-height: 90px; }
.modal-submit {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-accent); color: var(--white);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    border: none; border-radius: 100px; cursor: pointer;
    transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,146,221,0.2);
}
.modal-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,146,221,0.3); }

/* ===== PROCESS ===== */
.process { background: var(--navy); overflow: hidden; }
.process-header { text-align: center; margin-bottom: 3rem; }
.process-header .section-label { color: var(--blue-cyan); }
.process-header .section-title { color: var(--white); }
.process-header .section-subtitle { margin: 0 auto; color: var(--gray-400); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 0 0.75rem;
}
.step-illustration {
    width: 76px; height: 76px;
    margin: 0 auto 1.1rem;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
}
.step-illustration::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,146,221,0.06), transparent 68%);
}
.step-illustration svg {
    position: relative;
    width: 74px; height: 74px;
    opacity: 1;
    filter: none;
}
.step-label {
    display: inline-block;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    background: var(--gradient-accent);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}
.process-step h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.35rem;
}
.process-step p {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ===== TESTIMONIALS (chat style) ===== */
.testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-subtitle { margin: 0 auto; }
.chat-window {
    max-width: 680px;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.chat-toolbar {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}
.chat-dot { width: 8px; height: 8px; border-radius: 50%; }
.chat-dot.green { background: #34d399; }
.chat-dot.yellow { background: #fbbf24; }
.chat-dot.red { background: #f87171; }
.chat-channel {
    font-size: 0.82rem; font-weight: 700; color: var(--text-primary);
    margin-left: 0.5rem;
}
.chat-channel::before { content: '# '; color: var(--gray-400); }
.chat-messages { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.chat-msg { display: flex; align-items: flex-start; gap: 0.75rem; }
.chat-avatar {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800; color: var(--white);
}
.avatar-blue { background: var(--blue-cyan); }
.avatar-purple { background: var(--purple); }
.avatar-dark { background: var(--blue-dark); }
.avatar-teal { background: #0d9488; }
.chat-body { flex: 1; min-width: 0; }
.chat-meta {
    display: flex; align-items: baseline; gap: 0.5rem;
    margin-bottom: 0.25rem;
}
.chat-name { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.chat-role { font-size: 0.7rem; color: var(--gray-400); }
.chat-time { font-size: 0.68rem; color: var(--gray-400); margin-left: auto; }
.chat-text {
    font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6;
}
.chat-text strong { color: var(--text-primary); font-weight: 600; }
.chat-reaction {
    display: inline-flex; align-items: center; gap: 0.3rem;
    margin-top: 0.4rem;
    padding: 0.2rem 0.55rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.72rem; color: var(--gray-500);
}
.chat-divider {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.7rem; color: var(--gray-400); font-weight: 600;
}
.chat-divider::before, .chat-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--gray-200);
}

/* ===== CTA ===== */
.cta-section { background: var(--gray-50); padding: 7rem 0; }
.cta-box {
    position: relative;
    padding: 3.5rem 4rem;
    background: var(--navy);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    align-items: center;
    gap: 2.5rem;
}
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 45% 70% at 10% 100%, rgba(0,146,221,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 45% 55% at 90% 0%, rgba(115,56,229,0.1) 0%, transparent 50%);
}
.cta-rocket {
    position: relative;
    z-index: 2;
    opacity: 0.1;
    transform: rotate(8deg);
}
.cta-center { position: relative; z-index: 2; }
.cta-center h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.cta-center p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 380px;
}
.cta-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.cta-right .btn-primary { font-size: 0.95rem; padding: 1rem 2.25rem; }
.cta-contact-info { display: flex; flex-direction: column; gap: 0.6rem; }
.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
    color: var(--gray-400);
}
.cta-contact-item svg { opacity: 0.5; }

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--gray-50);
    padding: 2.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-bar-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-400);
}
.trust-bar .trust-logos {
    flex: 1 1 620px;
    min-width: min(100%, 280px);
    max-width: 820px;
}
.trust-bar .trust-logos-slider {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-bar .trust-logo-track {
    display: flex;
    width: max-content;
    animation: homeTrustMarquee 34s linear infinite;
}
.trust-bar .trust-logos-slider:hover .trust-logo-track { animation-play-state: paused; }
.trust-bar .trust-logo-set {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    flex: 0 0 auto;
    padding-right: 2.25rem;
}
@keyframes homeTrustMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.trust-bar .trust-logo {
    width: 132px; height: 54px;
    background: transparent;
    border-radius: 6px;
    opacity: 0.66;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    filter: grayscale(1);
    transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}
.trust-bar .trust-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.trust-bar .trust-logo-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.trust-bar .trust-logo-fallback {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gray-500);
    letter-spacing: 0.04em;
}
@media (prefers-reduced-motion: reduce) {
    .trust-bar .trust-logo-track { animation: none; }
    .trust-bar .trust-logos-slider { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2.75rem 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.footer .logo-img { height: 28px; }
.footer-copy { font-size: 0.8rem; color: var(--gray-500); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gray-300); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-rocket { width: 240px; right: 3%; opacity: 0.5; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .order-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero-rocket { display: none; }
    .rocket-trail { display: none; }
    .space-dust { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 2rem; }
    .order-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 2.5rem 1.75rem; grid-template-columns: 1fr; text-align: center; }
    .cta-rocket { display: none; }
    .cta-right { align-items: center; }
    .cta-contact-info { align-items: center; flex-direction: column; gap: 0.75rem; }
    .hero-content { padding: 7rem 0 4rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .footer-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
    .footer-left { flex-direction: column; }
}
