:root {
    --bg: #020617;
    --bg-alt: #02091b;
    --bg-elevated: rgba(15, 23, 42, 0.95);
    --primary: #38bdf8;
    --primary-soft: rgba(56, 189, 248, 0.2);
    --accent: #a855f7;
    --accent-soft: rgba(168, 85, 247, 0.25);
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --border-subtle: rgba(148, 163, 184, 0.2);
    --radius-xl: 24px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.9);
    --container-width: 1180px;
    --nav-height: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #0f172a 0, #020617 55%, #020617 100%);
    color: var(--text);
    overflow-x: hidden;
}

/* Arka plan grid & glow */
.page-bg-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.08), transparent 55%),
        radial-gradient(circle at 90% 10%, rgba(168, 85, 247, 0.12), transparent 60%);
    mix-blend-mode: screen;
    z-index: -2;
}

.page-bg-grid {
    position: fixed;
    inset: 0;
    opacity: 0.2;
    background-image: linear-gradient(rgba(15, 23, 42, 0.6) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(15, 23, 42, 0.6) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at top, rgba(0, 0, 0, 0.8), transparent 70%);
    z-index: -3;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.8), transparent);
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    transition: all 0.25s ease;
}

.site-header.scrolled {
    background: rgba(15, 23, 42, 0.97);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.brand-logo-wrap {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, rgba(56, 189, 248, 0.35), rgba(15, 23, 42, 1));
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo {
    width: 28px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.6));
}

.brand-text {
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
}

/* NAV */
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    position: relative;
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.2s ease;
}

.nav-list a:hover {
    color: var(--text);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Dil switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.lang-link {
    text-decoration: none;
    color: var(--text-muted);
    padding: 4px 6px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.lang-link.active {
    color: var(--primary);
    border-color: rgba(56, 189, 248, 0.6);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.42);
}

.lang-divider {
    color: rgba(148, 163, 184, 0.6);
}

/* NAV TOGGLE (MOBILE) */
.nav-toggle {
    display: none;
    flex-direction: column;
    border: none;
    background: transparent;
    padding: 4px;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

/* HERO */
.hero-section {
    padding: 72px 0 90px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px 4px 6px;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.45), rgba(15, 23, 42, 0.98));
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.4);
    margin-bottom: 18px;
}

.hero-badge-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #e0f2fe, #38bdf8);
    box-shadow:
        0 0 14px rgba(56, 189, 248, 0.9),
        0 0 32px rgba(56, 189, 248, 0.7);
}

.hero-badge-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.4rem;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: 0.01em;
}

.hero-subtitle {
    margin: 0 0 18px;
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-trust {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* BUTONLAR */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.btn-primary {
    color: #0b1120;
    background: linear-gradient(135deg, #38bdf8, #22d3ee);
    box-shadow:
        0 15px 35px rgba(56, 189, 248, 0.55),
        0 0 0 1px rgba(8, 47, 73, 0.9);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow:
        0 18px 40px rgba(56, 189, 248, 0.7),
        0 0 0 1px rgba(8, 47, 73, 1);
}

.btn-ghost {
    color: var(--text);
    border-color: rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
}

.btn-ghost:hover {
    border-color: rgba(148, 163, 184, 0.9);
    background: rgba(15, 23, 42, 1);
}

.btn-full {
    width: 100%;
}

/* HERO GRSEL  ORBT ANMASYONU */
.hero-visual {
    position: relative;
    height: 320px;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.11), rgba(15, 23, 42, 0.97));
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.hero-orbit {
    position: absolute;
    inset: 18%;
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.38);
    transform-origin: center;
    animation: orbit-spin 32s linear infinite;
}

.hero-orbit-middle {
    inset: 28%;
    animation-duration: 24s;
    animation-direction: reverse;
}

.hero-orbit-inner {
    inset: 38%;
    animation-duration: 16s;
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-node {
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: radial-gradient(circle at 25% 0%, #e0f2fe, #38bdf8);
    box-shadow:
        0 0 25px rgba(56, 189, 248, 0.8),
        0 0 60px rgba(56, 189, 248, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: node-float 6s ease-in-out infinite;
}

.hero-node-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #0b1120;
}

.hero-node-1 { top: 25%; left: 14%; }
.hero-node-2 { top: 16%; right: 12%; animation-delay: 0.8s; }
.hero-node-3 { bottom: 17%; left: 20%; animation-delay: 1.4s; }
.hero-node-4 { bottom: 12%; right: 18%; animation-delay: 2.0s; }

@keyframes node-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-core {
    position: absolute;
    inset: 50%;
    width: 130px;
    height: 130px;
    margin: -65px auto 0;
    left: 0;
    right: 0;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0%, #f9fafb, #38bdf8, #0f172a);
    box-shadow:
        0 0 40px rgba(56, 189, 248, 0.9),
        0 0 80px rgba(56, 189, 248, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-core-inner {
    text-align: center;
    color: #020617;
}

.hero-core-title {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-core-sub {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* GENEL SEKSYONLAR */
.section {
    padding: 40px 0 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 26px;
}

.section-header.left {
    text-align: left;
}

.section-title {
    font-size: 1.6rem;
    margin: 0 0 6px;
}

.section-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* KARTLAR */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.card {
    position: relative;
    padding: 16px 15px;
    border-radius: 18px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
    border: 1px solid var(--border-subtle);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.95);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: conic-gradient(from 160deg, rgba(56, 189, 248, 0.18), transparent, rgba(168, 85, 247, 0.16), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, rgba(56, 189, 248, 0.9), rgba(15, 23, 42, 1));
    margin-bottom: 10px;
}

.card-title {
    font-size: 0.98rem;
    margin: 0 0 6px;
}

.card-text {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* ZMLER */
.section-solutions {
    background: radial-gradient(circle at top, #020617, #020617 55%, #020617 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.solution-card {
    position: relative;
    padding: 18px 16px;
    border-radius: 20px;
    background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.16), rgba(15, 23, 42, 0.97));
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: var(--shadow-soft);
}

.solution-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: rgba(224, 231, 255, 0.9);
    margin-bottom: 8px;
}

.solution-title {
    margin: 0 0 6px;
    font-size: 1rem;
}

.solution-text {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* NEDEN BZ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.why-card {
    padding: 16px 16px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.why-title {
    margin: 0 0 6px;
    font-size: 0.98rem;
}

.why-text {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* LETM */
.section-contact {
    padding-bottom: 70px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
}

.contact-details {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-row {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.contact-row p {
    margin: 2px 0 0;
    font-size: 0.9rem;
}

.contact-row a {
    color: var(--primary);
    text-decoration: none;
}

.contact-form-wrap {
    max-width: none;
    width: 100%;
    margin-left: auto;
}

.contact-form {
    width: 100%;
    padding: 24px 24px 26px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.form-row label {
    font-size: 0.82rem;
}

.form-row input,
.form-row textarea {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.9);
    color: var(--text);
    padding: 8px 10px;
    font-family: inherit;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: rgba(56, 189, 248, 0.8);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
}

.form-note {
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* FOOTER */
.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.98);
    padding: 16px 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-brand {
    margin: 0 0 2px;
    font-weight: 500;
    color: var(--text);
}

.footer-copy {
    margin: 0;
}

.footer-contact-line {
    margin: 0;
}

.footer-contact-line a {
    color: var(--primary);
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        height: 260px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        margin-left: 0;
    }
}

@media (max-width: 720px) {
    .header-inner {
        height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        inset: 64px 12px auto 12px;
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.97);
        border: 1px solid rgba(148, 163, 184, 0.4);
        padding: 12px 14px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }

    .nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cards-grid,
    .solutions-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 14px 0 18px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.brand-logo-wrap {
    width: 72px !important;
    height: 72px !important;
}

.brand-logo {
    width: 60px !important;
    height: auto !important;
}
:root {
    --nav-height: 92px !important;
}

.header-inner {
    height: 92px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

.brand {
    align-items: center !important;
}

.brand-logo-wrap {
    margin-top: 4px !important;
}
:root {
    --nav-height: 100px !important;
}

.site-header {
    height: 100px !important;
    line-height: 100px !important;
}

.header-inner {
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
}

.brand-logo-wrap {
    margin-top: 0 !important;
}

.nav-list a {
    line-height: 100px !important;
}
.nav-list a {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 100px !important;
    display: flex !important;
    align-items: center !important;
}

.lang-switch {
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
}

.lang-link {
    line-height: normal !important;
    padding: 6px 10px !important;
}

/* === AAMA 4  HEADER PREMIUM STYLING === */

/* Neon glow at bottom line */
.site-header {
    border-bottom: 1px solid rgba(56,189,248,0.30) !important;
    box-shadow: 0 1px 18px rgba(56,189,248,0.18);
}

/* Menu hover glow */
.nav-list a:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(56,189,248,0.8);
}

/* Gradient underline animation */
.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    border-radius: 50px;
    transition: width 0.25s ease-in-out;
}
.nav-list a:hover::after {
    width: 100%;
}

/* Logo glow improvement */
.brand-logo-wrap {
    transition: all 0.25s ease-in-out;
}
.brand-logo-wrap:hover {
    box-shadow: 0 0 22px rgba(56,189,248,0.65);
    transform: scale(1.06);
}

/* Active language highlight */
.lang-link.active {
    color: var(--primary) !important;
    box-shadow: 0 0 12px rgba(56,189,248,0.55);
    border-color: rgba(56,189,248,0.6);
}


/* === AAMA 4  HERO PREMIUM VISUAL UPGRADE === */

/* Hero subtle glow background */
.hero-section {
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56,189,248,0.15), transparent 70%);
    z-index: 0;
}

/* Ensure hero content stays above glow */
.hero-inner {
    position: relative;
    z-index: 5 !important;
}

/* HERO TEXT FADE + SLIDE ANIMATION */
.hero-title, 
.hero-subtitle,
.hero-actions,
.hero-badge {
    opacity: 0;
    transform: translateY(12px);
    animation: heroFade 1.1s ease-out forwards;
}
.hero-title { animation-delay: .1s; }
.hero-subtitle { animation-delay: .25s; }
.hero-actions { animation-delay: .45s; }
.hero-badge { animation-delay: 0s; }

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ORBIT GLOW BOOST */
.hero-orbit {
    border-color: rgba(56,189,248,0.30) !important;
    box-shadow: 0 0 25px rgba(56,189,248,0.25);
}

/* CORE SHINE EFFECT */
.hero-core {
    box-shadow:
        0 0 50px rgba(56,189,248,0.75),
        0 0 100px rgba(56,189,248,0.55),
        inset 0 0 40px rgba(56,189,248,0.2);
    transition: transform .3s ease;
}
.hero-core:hover {
    transform: scale(1.04);
}

/* FLOATING NODES FADE */
.hero-node {
    animation: nodeFade 1.5s ease forwards;
    opacity: 0;
}
@keyframes nodeFade {
    to { opacity: 1; }
}



/* ===== ZWCAD LANDING CLEAN OVERRIDES ===== */
.nav-list a.is-active { color: var(--text); }
.nav-list a.is-active::after { width: 100%; }
.zwcad-page .site-header { background: rgba(5, 11, 24, 0.82); }
.zwcad-page .page-bg-grid { opacity: .12; }
.zwcad-page .container { max-width: 1240px; }
.zwcad-hero { padding: 54px 0 28px; position: relative; }
.zwcad-grid { display:grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 36px; align-items:center; }
.zwcad-badge { display:inline-flex; align-items:center; gap:10px; padding:10px 16px; border-radius:999px; border:1px solid rgba(56,189,248,.35); background:rgba(56,189,248,.12); color:#dff6ff; font-size:.92rem; font-weight:600; box-shadow:0 0 20px rgba(56,189,248,.15); }
.zwcad-badge::before { content:""; width:10px; height:10px; border-radius:50%; background:#38bdf8; box-shadow:0 0 16px rgba(56,189,248,.9); }
.zwcad-title { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height:1.04; margin:18px 0 14px; letter-spacing:-.03em; }
.zwcad-title span { background:linear-gradient(90deg,#d7f4ff 0%, #38bdf8 48%, #a855f7 100%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.zwcad-subtitle { color:rgba(229,231,235,.82); font-size:1.03rem; line-height:1.8; max-width:720px; }
.zwcad-actions { display:flex; gap:14px; flex-wrap:wrap; margin:28px 0 28px; }
.btn.light { border-color: rgba(168,85,247,.35); color: #ece9ff; }
.zwcad-micro { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px; }
.zwcad-micro-item { padding:16px 18px; border-radius:20px; background:rgba(10,18,33,.88); border:1px solid rgba(148,163,184,.14); color:rgba(229,231,235,.92); box-shadow:0 18px 40px rgba(2,6,23,.38); }
.zwcad-visual-wrap { position:relative; }
.zwcad-hero-visual, .comparison-visual { width:100%; height:auto; display:block; }
.zwcad-logos { padding: 10px 0 10px; }
.section-head.center { text-align:center; max-width:840px; margin:0 auto 28px; }
.section-kicker { color:#7dd3fc; font-size:.84rem; letter-spacing:.22em; text-transform:uppercase; font-weight:600; margin-bottom:10px; }
.section-title.small { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.section-desc { color:rgba(229,231,235,.7); line-height:1.8; }
.zwcad-logo-row { display:grid; grid-template-columns:repeat(6, minmax(0,1fr)); gap:12px; margin-top:24px; }
.zwcad-logo-row span { display:flex; align-items:center; justify-content:center; min-height:68px; padding:16px; text-align:center; border-radius:18px; border:1px solid rgba(148,163,184,.14); background:rgba(12,20,36,.85); color:#dbeafe; font-weight:600; }
.zwcad-section { padding: 36px 0 28px; }
.clean-grid { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:20px; }
.zwcad-card, .zwcad-panel, .zwcad-form-wrap, .zwcad-info-box { border-radius:26px; border:1px solid rgba(148,163,184,.15); background:rgba(11,18,33,.92); box-shadow:0 24px 50px rgba(2,6,23,.42); }
.zwcad-card { padding:28px; }
.zwcad-card .icon { display:inline-flex; align-items:center; justify-content:center; width:58px; height:58px; border-radius:16px; background:linear-gradient(135deg, rgba(56,189,248,.18), rgba(168,85,247,.18)); border:1px solid rgba(56,189,248,.2); color:#e0f2fe; font-weight:700; margin-bottom:16px; }
.zwcad-card h3, .zwcad-panel h3 { margin:0 0 10px; font-size:1.28rem; }
.zwcad-card p, .zwcad-panel p { margin:0; color:rgba(229,231,235,.75); line-height:1.75; }
.zwcad-compare-grid { display:grid; grid-template-columns:minmax(0,.88fr) minmax(0,1.12fr); gap:28px; align-items:center; }
.zwcad-point-list { display:grid; gap:14px; margin-top:24px; }
.zwcad-point { display:flex; gap:14px; align-items:flex-start; padding:18px 18px; border-radius:20px; background:rgba(11,18,33,.86); border:1px solid rgba(148,163,184,.14); }
.zwcad-point strong { min-width:96px; color:#c9f3ff; }
.zwcad-point span { color:rgba(229,231,235,.82); line-height:1.6; }
.zwcad-license-grid.modern { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:22px; }
.zwcad-panel { padding:30px; position:relative; overflow:hidden; }
.zwcad-panel .label { display:inline-flex; padding:8px 12px; border-radius:999px; background:rgba(56,189,248,.12); border:1px solid rgba(56,189,248,.22); color:#dff6ff; font-size:.78rem; text-transform:uppercase; letter-spacing:.14em; font-weight:600; }
.zwcad-panel.featured { border-color: rgba(56,189,248,.35); background:linear-gradient(180deg, rgba(56,189,248,.10), rgba(11,18,33,.94)); }
.zwcad-list { margin:18px 0 0; padding-left:20px; color:rgba(229,231,235,.86); line-height:1.8; }
.zwcad-bottom-band { padding: 10px 0 18px; }
.zwcad-bottom-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:28px 30px; border-radius:28px; border:1px solid rgba(56,189,248,.18); background:linear-gradient(90deg, rgba(8,18,38,.96), rgba(20,12,44,.96)); }
.zwcad-contact-grid { display:grid; grid-template-columns: minmax(0,.84fr) minmax(0,1.16fr); gap:26px; }
.zwcad-info-box { padding:30px; }
.zwcad-info-list { display:grid; gap:14px; margin-top:22px; }
.zwcad-info-item { padding:16px 18px; border-radius:18px; background:rgba(255,255,255,.03); border:1px solid rgba(148,163,184,.12); color:rgba(229,231,235,.82); line-height:1.7; }
.zwcad-info-item strong { display:block; color:#dff6ff; margin-bottom:4px; }
.zwcad-info-item a { color:#fff; text-decoration:none; }
.zwcad-form-wrap { padding:28px; }
.zwcad-form .grid-2 { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.zwcad-form .form-row { margin-bottom:16px; }
.zwcad-form label { display:block; margin-bottom:8px; color:#d8e2f0; font-size:.92rem; }
.zwcad-form input, .zwcad-form textarea, .zwcad-form select { width:100%; border-radius:16px; border:1px solid rgba(148,163,184,.15); background:#09111f; color:#fff; padding:14px 16px; font:inherit; }
.zwcad-form textarea { min-height:148px; resize:vertical; }
.zwcad-form input:focus, .zwcad-form textarea:focus, .zwcad-form select:focus { outline:none; border-color:rgba(56,189,248,.45); box-shadow:0 0 0 3px rgba(56,189,248,.12); }
.btn-full { width:100%; justify-content:center; }
.zwcad-disclaimer { margin:14px 4px 0; color:rgba(229,231,235,.62); font-size:.92rem; line-height:1.65; }
@media (max-width: 1100px) {
  .zwcad-grid, .zwcad-compare-grid, .zwcad-contact-grid { grid-template-columns:1fr; }
  .clean-grid { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .zwcad-license-grid.modern { grid-template-columns:1fr; }
  .zwcad-logo-row { grid-template-columns:repeat(3, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .zwcad-hero { padding-top: 28px; }
  .zwcad-micro, .zwcad-form .grid-2, .clean-grid, .zwcad-logo-row { grid-template-columns:1fr; }
  .zwcad-bottom-inner { flex-direction:column; align-items:flex-start; }
}

/* === CONTACT FORM WIDTH FIX === */
.section-contact .contact-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr) !important;
    gap: 32px !important;
    align-items: start !important;
}

.section-contact .contact-form-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    justify-self: stretch !important;
    align-self: start !important;
}

.section-contact .contact-form {
    width: 100% !important;
    max-width: none !important;
    padding: 24px 24px 26px !important;
}

.section-contact .form-row,
.section-contact .form-row label {
    width: 100% !important;
}

.section-contact .form-row input,
.section-contact .form-row textarea,
.section-contact .form-row select {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
}

.section-contact .form-row textarea {
    min-height: 120px !important;
}

@media (max-width: 960px) {
    .section-contact .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .section-contact .contact-form-wrap,
    .section-contact .contact-form {
        max-width: 100% !important;
        width: 100% !important;
    }
}
