* {
    box-sizing: border-box;
}

:root {
    --bg: #070811;
    --bg-2: #0b0d18;
    --panel: rgba(15, 18, 32, .82);
    --panel-2: rgba(10, 12, 24, .92);
    --text: #f4f7ff;
    --muted: #9fa9bf;
    --blue: #00b8ff;
    --blue-2: #78e5ff;
    --purple: #ad2cff;
    --purple-2: #e767ff;
    --line: rgba(128, 167, 255, .16);
    --shadow-blue: 0 0 42px rgba(0, 184, 255, .22);
    --shadow-purple: 0 0 42px rgba(173, 44, 255, .20);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        linear-gradient(rgba(6, 8, 17, .95), rgba(6, 8, 17, .97)),
        url('assets/background-pattern.png') center / 700px auto fixed;
    font-family: "Rajdhani", system-ui, sans-serif;
    font-size: 18px;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button, input, select, textarea {
    font: inherit;
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(5, 7, 15, .78);
    border-bottom: 1px solid rgba(95, 169, 255, .12);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    width: min(1220px, calc(100% - 32px));
    min-height: 82px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    letter-spacing: -.04em;
    font-size: 20px;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(72, 204, 255, .30));
}

.brand > span > span {
    color: #a65cff;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.main-nav > a:not(.nav-cta) {
    color: #c9d0e1;
    transition: color .2s ease;
}

.main-nav > a:not(.nav-cta):hover {
    color: var(--blue-2);
}

.nav-cta {
    padding: 11px 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 0 24px rgba(105, 91, 255, .28);
}

.nav-toggle {
    display: none;
    border: 0;
    color: #fff;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 920px;
    padding: 160px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 38%, rgba(0, 184, 255, .18), transparent 32%),
        radial-gradient(circle at 86% 27%, rgba(173, 44, 255, .20), transparent 32%),
        linear-gradient(180deg, rgba(6, 8, 17, .25), rgba(6, 8, 17, .92));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background: url('assets/background-pattern.png') center / cover no-repeat;
    mix-blend-mode: screen;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 7, 14, .95) 0%, rgba(4, 7, 14, .72) 48%, rgba(4, 7, 14, .38) 100%),
        linear-gradient(180deg, transparent 62%, #070811 100%);
}

.hero-glow {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .16;
}

.hero-glow-blue {
    background: var(--blue);
    left: -180px;
    top: 190px;
}

.hero-glow-purple {
    background: var(--purple);
    right: -160px;
    top: 240px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #b4c1db;
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .22em;
}

.eyebrow span {
    width: 38px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    box-shadow: 0 0 12px rgba(0, 184, 255, .45);
}

.hero h1,
.section h2,
.content-block h2,
.tow-content h2,
.project-banner h2,
.contact-copy h2 {
    margin: 0;
    font-family: "Oxanium", sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: .98;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 86px);
}

.hero h1 .ice {
    color: #d8f6ff;
    text-shadow: 0 0 18px rgba(0, 184, 255, .65);
}

.hero h1 .purple,
h2 span {
    color: #cd72ff;
    text-shadow: 0 0 20px rgba(173, 44, 255, .30);
}

.hero p {
    max-width: 680px;
    margin: 28px 0 0;
    color: #aeb8cc;
    line-height: 1.75;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.btn {
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Oxanium", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(120deg, #00aeea 0%, #6171ff 46%, #b32dff 100%);
    box-shadow: 0 0 30px rgba(80, 89, 255, .25);
}

.btn-primary:hover {
    box-shadow: 0 0 36px rgba(123, 83, 255, .42);
}

.btn-ghost {
    border: 1px solid rgba(147, 183, 255, .26);
    background: rgba(18, 22, 40, .65);
}

.hero-points {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
    color: #8fa0bc;
    font-size: 14px;
    font-weight: 700;
}

.hero-points span::first-letter {
    color: var(--blue);
}

.hero-logo-card {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-card::before {
    content: "";
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(113, 189, 255, .17);
    box-shadow:
        0 0 80px rgba(0, 184, 255, .10),
        inset 0 0 70px rgba(173, 44, 255, .08);
}

.hero-logo-card img {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    filter: drop-shadow(0 0 24px rgba(0, 184, 255, .20))
            drop-shadow(0 0 30px rgba(173, 44, 255, .18));
}

.logo-orbit {
    position: absolute;
    width: 510px;
    height: 510px;
    border-radius: 50%;
    border: 1px solid rgba(197, 111, 255, .12);
    animation: spin 18s linear infinite;
}

.logo-orbit::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    right: 39px;
    top: 88px;
    border-radius: 50%;
    background: var(--purple-2);
    box-shadow: 0 0 22px var(--purple-2);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.stats {
    position: relative;
    z-index: 2;
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(9, 12, 24, .66);
    border: 1px solid rgba(110, 155, 239, .14);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.stats > div {
    min-height: 96px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(110, 155, 239, .12);
}

.stats > div:last-child {
    border-right: 0;
}

.stats strong {
    font-family: "Oxanium", sans-serif;
    font-size: 22px;
    color: #dff7ff;
}

.stats span {
    color: #7f8da9;
    font-size: 14px;
}

.section {
    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.section-heading h2,
.content-block h2,
.tow-content h2,
.contact-copy h2 {
    font-size: clamp(40px, 5vw, 64px);
}

.section-heading > p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-heading.centered {
    justify-content: center;
    text-align: center;
}

.centered-eyebrow {
    justify-content: center;
}

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

.service-card {
    position: relative;
    min-height: 310px;
    padding: 28px;
    border: 1px solid rgba(98, 142, 230, .15);
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(17, 22, 41, .88), rgba(8, 11, 23, .92));
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(173, 44, 255, .20), transparent 70%);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(89, 191, 255, .34);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22), var(--shadow-blue);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(97, 196, 255, .24);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(0, 184, 255, .10), rgba(173, 44, 255, .12));
    font-size: 27px;
    box-shadow: inset 0 0 20px rgba(99, 92, 255, .08);
}

.service-card h3 {
    margin: 0 0 12px;
    font-family: "Oxanium", sans-serif;
    font-size: 21px;
}

.service-card p {
    margin: 0;
    color: #8f9bb2;
    line-height: 1.65;
}

.service-card a {
    position: absolute;
    left: 28px;
    bottom: 26px;
    color: #c4edff;
    font-weight: 700;
    font-size: 15px;
}

.service-card a span {
    color: var(--purple-2);
}

.split-section {
    padding: 105px 0;
    border-block: 1px solid rgba(104, 148, 224, .09);
    background: linear-gradient(90deg, rgba(0, 184, 255, .035), rgba(173, 44, 255, .045));
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}

.visual-card {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(96, 173, 255, .17);
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 184, 255, .15), transparent 38%),
        radial-gradient(circle at 78% 72%, rgba(173, 44, 255, .18), transparent 42%),
        #0a0e1a;
    box-shadow: 0 28px 80px rgba(0,0,0,.32);
}

.scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        180deg,
        rgba(255,255,255,.018) 0,
        rgba(255,255,255,.018) 1px,
        transparent 1px,
        transparent 5px
    );
    pointer-events: none;
}

.terminal {
    width: min(78%, 430px);
    border-radius: 16px;
    background: rgba(1, 5, 12, .9);
    border: 1px solid rgba(91, 185, 255, .22);
    box-shadow: 0 0 40px rgba(0, 184, 255, .13), 0 0 55px rgba(173, 44, 255, .10);
    overflow: hidden;
    transform: perspective(800px) rotateY(-7deg) rotateX(3deg);
}

.terminal-top {
    display: flex;
    gap: 7px;
    padding: 13px 15px;
    border-bottom: 1px solid rgba(117, 146, 203, .13);
}

.terminal-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #526078;
}

.terminal-code {
    min-height: 260px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #69ddff;
    font-family: Consolas, monospace;
    font-size: 13px;
}

.terminal-code b {
    margin: 9px 0 16px;
    color: #d483ff;
    font-size: 20px;
    text-shadow: 0 0 16px rgba(173,44,255,.55);
}

.content-block p,
.tow-content p,
.contact-copy p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 19px;
}

.check-list {
    padding: 0;
    margin: 28px 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin: 12px 0;
    padding-left: 28px;
    color: #c0c9db;
}

.check-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--blue);
    text-shadow: 0 0 12px rgba(0,184,255,.45);
}

.text-link {
    color: #d8f4ff;
    font-weight: 700;
}

.tow-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    border-bottom: 1px solid rgba(95, 146, 237, .10);
}

.tow-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 8, 17, .96), rgba(5, 8, 17, .62)),
        url('assets/background-pattern.png') center / cover;
    opacity: .85;
}

.tow-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.tow-content > div {
    max-width: 760px;
}

.btn-large {
    min-width: 220px;
    min-height: 58px;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.steps::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, var(--blue), rgba(116,108,255,.55), var(--purple));
    opacity: .34;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.step-no {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(112, 181, 255, .23);
    border-radius: 50%;
    background: #0a0d18;
    color: #dff6ff;
    font-family: "Oxanium", sans-serif;
    font-weight: 800;
    box-shadow: 0 0 28px rgba(0,184,255,.09);
}

.step:nth-child(even) .step-no {
    border-color: rgba(194, 89, 255, .25);
    box-shadow: 0 0 28px rgba(173,44,255,.10);
}

.step h3 {
    margin: 0 0 8px;
    font-family: "Oxanium", sans-serif;
}

.step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.project-banner {
    padding: 34px 0;
    border-block: 1px solid rgba(126, 152, 232, .13);
    background:
        linear-gradient(100deg, rgba(0, 184, 255, .10), rgba(173, 44, 255, .12)),
        #0b0e1a;
}

.project-banner-inner {
    display: grid;
    grid-template-columns: 1fr 170px auto;
    align-items: center;
    gap: 40px;
}

.project-banner small {
    color: #84cfff;
    font-family: "Oxanium", sans-serif;
    letter-spacing: .15em;
}

.project-banner h2 {
    margin-top: 5px;
    font-size: clamp(30px, 4vw, 48px);
}

.project-banner img {
    width: 155px;
    filter: drop-shadow(0 0 14px rgba(126, 78, 255, .22));
}

.contact-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-cards {
    margin-top: 36px;
    display: grid;
    gap: 12px;
}

.contact-cards div {
    padding: 16px 18px;
    border-left: 2px solid var(--blue);
    background: rgba(14, 18, 33, .55);
}

.contact-cards div:nth-child(even) {
    border-left-color: var(--purple);
}

.contact-cards small {
    display: block;
    margin-bottom: 3px;
    color: #75829b;
    font-size: 11px;
    letter-spacing: .18em;
}

.contact-cards strong {
    font-family: "Oxanium", sans-serif;
    font-size: 15px;
}

.form-card {
    padding: 30px;
    border: 1px solid rgba(114, 159, 238, .16);
    border-radius: 20px;
    background: rgba(10, 13, 25, .86);
    box-shadow: 0 30px 80px rgba(0,0,0,.26);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    margin-bottom: 16px;
}

label > span {
    display: block;
    margin: 0 0 8px;
    color: #aeb8cb;
    font-size: 13px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(121, 157, 219, .18);
    border-radius: 11px;
    outline: none;
    background: rgba(3, 6, 15, .74);
    color: #edf4ff;
    padding: 13px 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(75, 196, 255, .55);
    box-shadow: 0 0 0 3px rgba(0, 184, 255, .08);
}

.form-submit {
    width: 100%;
    margin-top: 4px;
}

.alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
}

.alert.success {
    border: 1px solid rgba(82, 211, 194, .24);
    background: rgba(25, 125, 110, .10);
    color: #b7fff0;
}

.alert.success strong,
.alert.success span {
    display: block;
}

.alert.error {
    border: 1px solid rgba(255, 88, 122, .26);
    background: rgba(171, 28, 59, .12);
    color: #ffc4d2;
}

footer {
    border-top: 1px solid rgba(122, 153, 219, .12);
    background: #05070d;
    padding: 28px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    font-family: "Oxanium", sans-serif;
}

.footer-brand span {
    color: #6f7b92;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
    color: #8b96aa;
    font-size: 14px;
}

.footer-links a:hover {
    color: #d4f6ff;
}

.copyright {
    color: #59657a;
    font-size: 13px;
}

@media (max-width: 980px) {
    .main-nav {
        position: absolute;
        top: 74px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        border: 1px solid rgba(117, 154, 224, .16);
        border-radius: 14px;
        background: rgba(7, 10, 20, .98);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-logo-card {
        min-height: 380px;
    }

    .hero-logo-card::before {
        width: 340px;
        height: 340px;
    }

    .logo-orbit {
        width: 390px;
        height: 390px;
    }

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

    .stats > div:nth-child(2) {
        border-right: 0;
    }

    .stats > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(110, 155, 239, .12);
    }

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

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

    .tow-content {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .steps::before {
        display: none;
    }

    .project-banner-inner {
        grid-template-columns: 1fr auto;
    }

    .project-banner img {
        display: none;
    }

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

@media (max-width: 680px) {
    body {
        font-size: 17px;
    }

    .shell {
        width: min(100% - 28px, 1180px);
    }

    .brand > span {
        display: none;
    }

    .hero {
        padding: 120px 0 70px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-logo-card {
        min-height: 290px;
    }

    .hero-logo-card img {
        width: 340px;
    }

    .hero-logo-card::before {
        width: 240px;
        height: 240px;
    }

    .logo-orbit {
        width: 280px;
        height: 280px;
    }

    .stats,
    .service-grid,
    .steps,
    .form-row {
        grid-template-columns: 1fr;
    }

    .stats > div {
        border-right: 0;
        border-bottom: 1px solid rgba(110, 155, 239, .12);
    }

    .section,
    .split-section,
    .tow-section,
    .contact-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 24px;
    }

    .visual-card {
        min-height: 340px;
    }

    .terminal {
        width: 88%;
    }

    .project-banner-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}


/* ===== IceLine Public Offers & Pricebook v2.0 ===== */
.nav-dropdown{position:relative}
.nav-dropdown-toggle{
    border:0;background:transparent;color:#c9d0e1;padding:12px 0;
    font-family:"Rajdhani",sans-serif;font-weight:700;font-size:15px;
    letter-spacing:.05em;text-transform:uppercase;cursor:pointer
}
.nav-dropdown-toggle span{color:#b75cff;margin-left:3px}
.nav-dropdown-menu{
    position:absolute;top:48px;left:-18px;width:260px;padding:10px;
    display:none;z-index:50;border:1px solid rgba(90,168,255,.18);
    border-radius:14px;background:rgba(7,10,20,.97);
    box-shadow:0 24px 70px rgba(0,0,0,.45),0 0 40px rgba(88,72,255,.10);
    backdrop-filter:blur(18px)
}
.nav-dropdown.open .nav-dropdown-menu{display:grid}
.nav-dropdown-menu a{
    display:block;padding:11px 12px;border-radius:10px;
    text-transform:none;letter-spacing:0
}
.nav-dropdown-menu a:hover{background:linear-gradient(90deg,rgba(0,186,255,.08),rgba(169,39,255,.08))}
.nav-dropdown-menu b{display:block;color:#eaf7ff;font-size:13px}
.nav-dropdown-menu small{display:block;color:#727f96;font-size:10px;margin-top:2px}

.info-showcase,.price-section{padding:110px 0}
.info-showcase{
    border-top:1px solid rgba(88,145,229,.09);
    background:
      radial-gradient(circle at 7% 20%,rgba(0,184,255,.07),transparent 28%),
      radial-gradient(circle at 93% 65%,rgba(173,44,255,.07),transparent 32%),
      #070a12
}
.tow-showcase-grid{
    display:grid;grid-template-columns:.9fr 1.1fr;gap:24px;align-items:stretch
}
.feature-visual{
    position:relative;overflow:hidden;min-height:450px;border-radius:22px;
    border:1px solid rgba(92,174,255,.19);
    background:
      radial-gradient(circle at 10% 10%,rgba(0,184,255,.14),transparent 36%),
      radial-gradient(circle at 88% 78%,rgba(173,44,255,.16),transparent 40%),
      linear-gradient(145deg,#0a1020,#050812);
    box-shadow:0 28px 80px rgba(0,0,0,.32)
}
.visual-grid{
    position:absolute;inset:0;opacity:.22;
    background-image:
      linear-gradient(rgba(89,166,255,.08) 1px,transparent 1px),
      linear-gradient(90deg,rgba(89,166,255,.08) 1px,transparent 1px);
    background-size:34px 34px;
    transform:perspective(500px) rotateX(58deg) scale(1.6);
    transform-origin:center bottom
}
.visual-icon svg,.offer-icon svg,.mini-custom-icon svg,.price-svg-icon svg{
    width:100%;height:100%;fill:none;stroke:currentColor;stroke-width:1.65;
    stroke-linecap:round;stroke-linejoin:round
}
.visual-icon-large{
    position:absolute;left:50%;top:42%;transform:translate(-50%,-50%);
    width:170px;height:170px;color:#a5edff;
    filter:drop-shadow(0 0 25px rgba(0,184,255,.32)) drop-shadow(0 0 36px rgba(173,44,255,.20))
}
.visual-road{
    position:absolute;left:-5%;right:-5%;bottom:70px;height:2px;
    background:linear-gradient(90deg,transparent,#00baff 20%,#a12dff 80%,transparent);
    box-shadow:0 0 16px rgba(83,96,255,.5)
}
.visual-car{position:absolute;left:18%;right:18%;bottom:82px;height:75px}
.visual-car .car-body{
    position:absolute;left:7%;right:7%;bottom:8px;height:32px;border:2px solid rgba(156,231,255,.65);
    border-radius:20px 28px 10px 10px;transform:skewX(-9deg)
}
.visual-car .car-roof{
    position:absolute;left:29%;right:25%;bottom:35px;height:28px;border:2px solid rgba(203,112,255,.6);
    border-bottom:0;border-radius:34px 45px 0 0;transform:skewX(-12deg)
}
.visual-car i{position:absolute;bottom:0;width:26px;height:26px;border:2px solid #9e62ff;border-radius:50%;box-shadow:0 0 16px rgba(162,66,255,.32)}
.visual-car i:nth-of-type(1){left:20%}.visual-car i:nth-of-type(2){right:19%}
.visual-label{
    position:absolute;left:24px;bottom:22px;font-family:"Oxanium",sans-serif;font-size:11px;
    letter-spacing:.2em;color:#85ddff
}
.visual-label b{color:#cd73ff}
.offer-panel{
    padding:25px;border:1px solid rgba(99,154,237,.16);border-radius:22px;
    background:linear-gradient(145deg,rgba(14,19,33,.96),rgba(8,11,22,.97))
}
.offer-panel-top{display:flex;align-items:center;gap:14px}
.offer-icon{
    width:58px;height:58px;padding:12px;border-radius:15px;color:#b7f0ff;
    background:linear-gradient(145deg,rgba(0,184,255,.11),rgba(173,44,255,.12));
    border:1px solid rgba(89,186,255,.20)
}
.offer-panel-top small{color:#75d8ff;font-size:9px;font-weight:900;letter-spacing:.16em}
.offer-panel-top h3{margin:4px 0 0;font-family:"Oxanium",sans-serif;font-size:24px}
.price-highlight-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:22px 0 14px}
.price-highlight{
    padding:17px;border:1px solid rgba(97,143,218,.13);border-radius:14px;background:#090e19
}
.price-highlight small{display:block;color:#728098;font-size:8px;font-weight:900;letter-spacing:.12em}
.price-highlight strong{
    display:block;margin:6px 0 3px;font-family:"Oxanium",sans-serif;font-size:30px;
    background:linear-gradient(90deg,#73deff,#cd62ff);-webkit-background-clip:text;background-clip:text;color:transparent
}
.price-highlight span{color:#657289;font-size:9px}
.tow-zone-list{display:grid;gap:7px}
.tow-zone-list div{
    display:flex;justify-content:space-between;gap:20px;padding:10px 12px;
    border-radius:10px;background:rgba(255,255,255,.018);border:1px solid rgba(103,139,201,.09)
}
.tow-zone-list span{color:#9aa6ba;font-size:12px}.tow-zone-list strong{color:#8ae3ff;font-size:12px}
.offer-features{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin:17px 0}
.offer-features span{color:#8391a8;font-size:10px}
.call-strip{
    min-height:55px;padding:0 17px;border-radius:13px;display:flex;align-items:center;justify-content:space-between;
    background:linear-gradient(100deg,rgba(0,184,255,.10),rgba(173,44,255,.14));
    border:1px solid rgba(103,164,244,.20)
}
.call-strip span{color:#8ddfff;font-weight:900;font-size:11px;letter-spacing:.1em}
.call-strip strong{font-family:"Oxanium",sans-serif;font-size:28px;color:#cf73ff}

.laptop-section{
    padding:110px 0;border-block:1px solid rgba(89,145,229,.09);
    background:
      radial-gradient(circle at 80% 20%,rgba(169,39,255,.10),transparent 30%),
      radial-gradient(circle at 15% 80%,rgba(0,184,255,.08),transparent 34%),
      linear-gradient(145deg,#070a13,#090a16)
}
.laptop-showcase{display:grid;grid-template-columns:1fr 1fr;gap:55px;align-items:center}
.laptop-copy h2{font-family:"Oxanium",sans-serif;text-transform:uppercase;font-size:clamp(40px,5vw,64px);line-height:.98;margin:0}
.laptop-copy h2 span{color:#cb68ff}
.laptop-copy>p{color:#929db2;line-height:1.7}
.laptop-feature-list{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin:24px 0}
.laptop-feature{
    min-height:72px;padding:12px;display:grid;grid-template-columns:36px 1fr;gap:10px;align-items:center;
    border:1px solid rgba(101,145,217,.12);border-radius:12px;background:rgba(9,14,25,.75)
}
.mini-custom-icon{width:34px;height:34px;padding:6px;color:#b266ff}
.laptop-feature b{display:block;font-size:11px}.laptop-feature small{display:block;color:#748198;font-size:9px;margin-top:3px;line-height:1.35}
.custom-note{padding:12px 14px;border-radius:11px;border:1px solid rgba(166,70,255,.17);background:rgba(169,39,255,.05);color:#a892bc;font-size:10px}
.laptop-custom-visual{min-height:500px}
.fake-laptop{
    position:absolute;left:12%;right:12%;top:16%;height:290px;transform:perspective(700px) rotateX(4deg) rotateY(-5deg);
    filter:drop-shadow(0 30px 40px rgba(0,0,0,.45))
}
.fake-screen{
    height:235px;padding:15px;border:2px solid #29364d;border-radius:14px 14px 8px 8px;background:#05070c;
    box-shadow:0 0 24px rgba(0,184,255,.12),0 0 38px rgba(169,39,255,.09)
}
.screen-head{color:#70ddff;font:10px Consolas,monospace}
.map-chart{height:125px;margin:19px 0 10px;display:flex;align-items:end;gap:6px;padding:10px;background:linear-gradient(180deg,rgba(0,184,255,.03),rgba(169,39,255,.04))}
.map-chart i{flex:1;background:linear-gradient(180deg,#d34cff,#316fff,#00c5ff);border-radius:3px 3px 0 0;box-shadow:0 0 10px rgba(86,86,255,.20)}
.screen-lines{display:grid;gap:5px}.screen-lines span{height:4px;border-radius:99px;background:linear-gradient(90deg,#00baff,rgba(97,110,255,.5),transparent)}
.screen-lines span:nth-child(2){width:68%}.screen-lines span:nth-child(3){width:43%}
.fake-keyboard{height:55px;margin:0 -18px;background:linear-gradient(180deg,#131b29,#070a11);clip-path:polygon(7% 0,93% 0,100% 100%,0 100%);border-bottom:2px solid #934cff}
.price-floating{
    position:absolute;right:6%;bottom:8%;min-width:245px;padding:18px;text-align:center;border-radius:15px;
    border:1px solid rgba(129,94,255,.35);background:rgba(6,8,17,.9);
    box-shadow:0 0 30px rgba(0,184,255,.10),0 0 35px rgba(169,39,255,.14)
}
.price-floating small,.price-floating span{display:block;color:#8d98ae;font-size:9px;font-weight:900;letter-spacing:.12em}
.price-floating strong{
    display:block;margin:4px 0;font-family:"Oxanium",sans-serif;font-size:43px;
    background:linear-gradient(90deg,#4dcfff,#b337ff);-webkit-background-clip:text;background-clip:text;color:transparent
}

.price-section{
    background:
      radial-gradient(circle at 50% 0,rgba(72,94,255,.06),transparent 34%),
      #060912
}
.price-toolbar{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:18px}
.price-filter{
    min-height:38px;padding:0 14px;border-radius:10px;cursor:pointer;
    border:1px solid rgba(99,144,219,.15);background:#0b101c;color:#78869e;font-weight:800
}
.price-filter.active,.price-filter:hover{
    color:#eaf9ff;border-color:rgba(74,184,255,.28);
    background:linear-gradient(110deg,rgba(0,184,255,.10),rgba(169,39,255,.11))
}
.public-price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;align-items:start}
.public-price-category{
    overflow:hidden;border:1px solid rgba(95,139,211,.14);border-radius:15px;background:linear-gradient(145deg,#0d1320,#090d18)
}
.public-price-category[open]{border-color:rgba(80,178,245,.24);box-shadow:0 14px 34px rgba(0,0,0,.18)}
.public-price-category summary{
    list-style:none;cursor:pointer;padding:14px;display:flex;align-items:center;justify-content:space-between;gap:12px
}
.public-price-category summary::-webkit-details-marker{display:none}
.public-price-title{display:flex;align-items:center;gap:11px}
.price-svg-icon{
    width:38px;height:38px;padding:8px;display:grid;place-items:center;border-radius:11px;
    color:#8ee4ff;border:1px solid rgba(82,183,247,.17);background:linear-gradient(145deg,rgba(0,184,255,.08),rgba(169,39,255,.08))
}
.public-price-title b{display:block;font-family:"Oxanium",sans-serif;font-size:16px;line-height:1.2}
.public-price-title small{display:block;margin-top:4px;color:#718099;font-size:10px}
.public-price-arrow{color:#c96cff;transition:transform .2s}
.public-price-category[open] .public-price-arrow{transform:rotate(180deg)}
.public-price-items{padding:0 13px 13px;border-top:1px solid rgba(96,130,191,.08)}
.public-price-row{display:grid;grid-template-columns:auto 1fr auto;gap:12px;align-items:center;padding:13px 4px;border-bottom:1px solid rgba(89,123,181,.08)}
.public-price-row:last-child{border-bottom:0}
.public-price-row span{color:#b4bfd0;font-size:14px;font-weight:700;line-height:1.3}
.public-price-row i{height:1px;border-top:1px dotted rgba(94,135,200,.18)}
.public-price-row strong{color:#79e0ff;font-size:19px;font-weight:900;font-family:"Oxanium",sans-serif;letter-spacing:-.02em;white-space:nowrap;text-shadow:0 0 14px rgba(0,184,255,.20)}
.price-disclaimer{
    margin-top:18px;padding:16px;display:grid;grid-template-columns:42px 1fr auto;gap:13px;align-items:center;
    border-radius:15px;border:1px solid rgba(98,146,223,.15);background:linear-gradient(100deg,rgba(0,184,255,.04),rgba(169,39,255,.05))
}
.price-disclaimer b{display:block;font-size:12px}.price-disclaimer small{display:block;color:#6f7c91;font-size:9px;margin-top:2px}

@media(max-width:1040px){
    .tow-showcase-grid,.laptop-showcase{grid-template-columns:1fr}
    .public-price-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:980px){
    .nav-dropdown{width:100%}
    .nav-dropdown-toggle{width:100%;text-align:left;padding:12px}
    .nav-dropdown-menu{position:static;width:100%;margin:4px 0 8px;box-shadow:none}
}
@media(max-width:680px){
    .info-showcase,.laptop-section,.price-section{padding:76px 0}
    .feature-visual{min-height:360px}
    .price-highlight-row,.offer-features,.laptop-feature-list{grid-template-columns:1fr}
    .public-price-grid{grid-template-columns:1fr}
    .price-disclaimer{grid-template-columns:38px 1fr}.price-disclaimer .btn{grid-column:1/-1}
    .fake-laptop{left:7%;right:7%;top:13%}
    .price-floating{right:5%;left:5%;min-width:0}
}


/* ===== Editable Offer Images v2.1 ===== */
.offer-custom-image{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:1
}
.offer-image-overlay{
  position:absolute;inset:0;z-index:2;
  background:
    linear-gradient(180deg,rgba(4,7,15,.06),rgba(4,7,15,.25)),
    linear-gradient(110deg,rgba(0,184,255,.06),rgba(169,39,255,.08));
  box-shadow:inset 0 0 70px rgba(0,0,0,.25)
}
.has-offer-image:after{
  content:"";position:absolute;inset:0;z-index:3;pointer-events:none;
  border:1px solid rgba(107,178,255,.10);border-radius:inherit;
  box-shadow:inset 0 0 45px rgba(0,184,255,.04),inset 0 0 55px rgba(169,39,255,.04)
}
.offer-description{
  margin:14px 0 0;color:#8290a7;font-size:11px;line-height:1.55
}
.laptop-subtitle-inline{color:#b8edff;font-weight:800}


/* ===== Preise größer v2.4 ===== */
@media(max-width:680px){
    .public-price-row{
        gap:9px;
        padding:12px 2px;
    }
    .public-price-row span{
        font-size:13px;
    }
    .public-price-row strong{
        font-size:17px;
    }
    .public-price-title b{
        font-size:15px;
    }
}

/* ===== Tow Requests Public v2.8 ===== */
.tow-request-cta{
  width:min(1180px,calc(100% - 40px));
  margin:18px auto 0;
  min-height:72px;
  padding:0 20px;
  display:grid;
  grid-template-columns:46px 1fr auto;
  gap:14px;
  align-items:center;
  text-decoration:none;
  border:1px solid rgba(72,181,255,.25);
  border-radius:15px;
  color:#eaf7ff;
  background:
    linear-gradient(100deg,rgba(0,184,255,.11),rgba(169,39,255,.13)),
    #0a0f1b;
  box-shadow:0 15px 42px rgba(0,0,0,.22),0 0 26px rgba(72,102,255,.07);
  transition:.2s ease;
}
.tow-request-cta:hover{
  transform:translateY(-2px);
  border-color:rgba(94,201,255,.38);
}
.tow-request-cta-icon{
  width:46px;height:46px;
  display:grid;place-items:center;
  border-radius:12px;
  background:rgba(0,184,255,.08);
  border:1px solid rgba(93,190,255,.18);
}
.tow-request-cta small{
  display:block;
  color:#7adfff;
  font-size:9px;
  font-weight:900;
  letter-spacing:.15em;
}
.tow-request-cta strong{
  display:block;
  margin-top:3px;
  font-size:16px;
  font-family:"Oxanium",sans-serif;
}
.tow-request-cta>b{
  font-size:25px;
  color:#c869ff;
}

.tow-request-section{
  padding:110px 0;
  border-block:1px solid rgba(92,146,224,.09);
  background:
    radial-gradient(circle at 10% 20%,rgba(0,184,255,.08),transparent 30%),
    radial-gradient(circle at 90% 80%,rgba(169,39,255,.08),transparent 34%),
    #070a12;
}
.tow-request-layout{
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:55px;
  align-items:center;
}
.tow-request-copy h2{
  margin:8px 0 15px;
  font-family:"Oxanium",sans-serif;
  font-size:clamp(38px,5vw,62px);
  line-height:1;
  text-transform:uppercase;
}
.tow-request-copy h2 span{color:#c965ff}
.tow-request-copy>p{
  max-width:550px;
  color:#8a97ac;
  line-height:1.7;
}
.tow-request-points{
  margin-top:24px;
  display:grid;
  gap:9px;
}
.tow-request-points span{
  color:#9eabc0;
  font-size:12px;
}
.tow-request-form-card{
  padding:24px;
  border:1px solid rgba(88,163,240,.17);
  border-radius:20px;
  background:linear-gradient(145deg,#0d1422,#090d18);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
}
.tow-public-form{display:grid;gap:13px}
.tow-public-form label{display:grid;gap:6px}
.tow-public-form label>span{
  color:#8491a7;
  font-size:10px;
  font-weight:800;
}
.tow-public-form input,
.tow-public-form textarea{
  width:100%;
  box-sizing:border-box;
  border:1px solid rgba(95,138,205,.16);
  border-radius:11px;
  background:#070c15;
  color:#edf7ff;
  padding:13px 14px;
  outline:none;
  font:inherit;
}
.tow-public-form input:focus,
.tow-public-form textarea:focus{
  border-color:rgba(83,188,255,.40);
  box-shadow:0 0 0 3px rgba(0,184,255,.05);
}
.tow-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:11px;
}
.tow-submit-btn{
  min-height:54px;
  padding:0 17px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:0;
  border-radius:12px;
  cursor:pointer;
  color:#fff;
  font-weight:900;
  background:linear-gradient(100deg,#079ee2,#723eff,#b42dee);
  box-shadow:0 10px 28px rgba(96,66,255,.18);
}
.tow-submit-btn b{font-size:22px}
.tow-form-note{
  color:#64728a;
  font-size:9px;
  line-height:1.5;
}
.tow-honeypot{
  position:absolute!important;
  left:-10000px!important;
  width:1px!important;height:1px!important;
  overflow:hidden!important;
}
.tow-request-message{
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:11px;
}
.tow-request-message strong{display:block;font-size:12px}
.tow-request-message span{display:block;margin-top:3px;font-size:9px}
.tow-request-message.success{
  color:#8af1cf;
  background:rgba(57,215,171,.07);
  border:1px solid rgba(57,215,171,.16);
}
.tow-request-message.error{
  color:#ff9db2;
  background:rgba(255,88,125,.07);
  border:1px solid rgba(255,88,125,.16);
}
@media(max-width:900px){
  .tow-request-layout{grid-template-columns:1fr}
}
@media(max-width:650px){
  .tow-request-section{padding:75px 0}
  .tow-form-row{grid-template-columns:1fr}
  .tow-request-cta{width:min(100% - 24px,1180px)}
}

/* ===== Tow PLZ Damage Upload v2.11 ===== */
.tow-postcode-row{
  grid-template-columns:1fr 1fr;
}

.tow-upload-field>span{
  display:flex!important;
  align-items:center;
  gap:7px;
}
.tow-upload-field>span em{
  padding:4px 7px;
  border-radius:999px;
  color:#c97cff;
  font-size:8px;
  font-style:normal;
  font-weight:900;
  background:rgba(169,39,255,.07);
  border:1px solid rgba(169,39,255,.15);
}
.tow-upload-box{
  position:relative;
  min-height:88px;
  display:grid;
  grid-template-columns:48px 1fr auto;
  gap:13px;
  align-items:center;
  padding:14px;
  overflow:hidden;
  border:1px dashed rgba(83,181,245,.23);
  border-radius:13px;
  background:
    radial-gradient(circle at 0 0,rgba(0,184,255,.055),transparent 42%),
    radial-gradient(circle at 100% 100%,rgba(169,39,255,.055),transparent 42%),
    #080d17;
}
.tow-upload-icon{
  width:48px;height:48px;
  display:grid;place-items:center;
  border-radius:12px;
  font-size:22px;
  background:linear-gradient(145deg,rgba(0,184,255,.09),rgba(169,39,255,.09));
  border:1px solid rgba(92,180,245,.15);
}
.tow-upload-copy strong{
  display:block;
  color:#dceaff;
  font-size:11px;
}
.tow-upload-copy small{
  display:block;
  margin-top:4px;
  color:#6f7e95;
  font-size:9px;
  line-height:1.45;
}
.tow-upload-box input[type=file]{
  width:210px;
  padding:8px;
  font-size:9px;
  background:#070b13;
}
.tow-upload-note{
  color:#5f6d84!important;
  font-size:8px!important;
}

@media(max-width:650px){
  .tow-upload-box{
    grid-template-columns:46px 1fr;
  }
  .tow-upload-box input[type=file]{
    grid-column:1/-1;
    width:100%;
  }
}

/* ===== Tow Confirmation v2.12 ===== */
.tow-confirmation-id{
  display:block;
  width:max-content;
  max-width:100%;
  margin-top:9px;
  padding:7px 9px;
  border-radius:8px;
  color:#d8f7ff;
  font-size:10px;
  background:rgba(0,184,255,.07);
  border:1px solid rgba(67,190,247,.14);
}

/* ===== Abschlepp-Schadensbild Schrift größer v2.13 ===== */

/* "Unfall-/Schadensbild" */
.tow-upload-field > span{
  font-size:13px !important;
  font-weight:800 !important;
}

/* "freiwillig" Badge */
.tow-upload-field > span em{
  font-size:10px !important;
  padding:5px 8px !important;
}

/* "Screenshot oder Foto hochladen" */
.tow-upload-copy strong{
  font-size:14px !important;
  line-height:1.35 !important;
}

/* Erklärung darunter */
.tow-upload-copy small{
  font-size:11px !important;
  line-height:1.5 !important;
}

/* Dateiauswahl */
.tow-upload-box input[type=file]{
  font-size:11px !important;
}

/* Hinweis JPG / PNG / WEBP */
.tow-upload-note{
  font-size:10px !important;
}

/* Etwas größere Upload-Box, damit die größere Schrift Luft hat */
.tow-upload-box{
  min-height:105px !important;
  padding:17px !important;
  grid-template-columns:54px 1fr auto !important;
  gap:15px !important;
}

/* Kamera-Icon ebenfalls etwas größer */
.tow-upload-icon{
  width:54px !important;
  height:54px !important;
  font-size:25px !important;
}

@media(max-width:650px){
  .tow-upload-box{
    grid-template-columns:54px 1fr !important;
  }

  .tow-upload-copy strong{
    font-size:13px !important;
  }

  .tow-upload-copy small{
    font-size:10px !important;
  }
}

/* ===== Work Impressions Public v2.14 ===== */
.work-impressions-section{
  position:relative;
  overflow:hidden;
  padding:110px 0;
  border-block:1px solid rgba(91,146,224,.09);
  background:
    radial-gradient(circle at 8% 12%,rgba(0,184,255,.08),transparent 28%),
    radial-gradient(circle at 91% 82%,rgba(169,39,255,.09),transparent 30%),
    linear-gradient(145deg,#070a12,#090a15);
}
.work-impressions-section:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.14;
  background-image:
    linear-gradient(rgba(74,150,235,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(74,150,235,.05) 1px,transparent 1px);
  background-size:44px 44px;
}
.work-impressions-section>.shell{
  position:relative;
  z-index:1;
}
.work-impressions-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:15px;
}
.work-impression-card{
  overflow:hidden;
  border:1px solid rgba(91,148,225,.15);
  border-radius:18px;
  background:linear-gradient(145deg,#0d1422,#090d18);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.work-impression-card:hover{
  transform:translateY(-5px);
  border-color:rgba(77,184,249,.30);
  box-shadow:0 24px 65px rgba(0,0,0,.30),0 0 28px rgba(88,85,255,.06);
}
.work-impression-image{
  position:relative;
  width:100%;
  height:245px;
  padding:0;
  border:0;
  overflow:hidden;
  cursor:pointer;
  background:#070b13;
}
.work-impression-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease,filter .35s ease;
}
.work-impression-card:hover .work-impression-image img{
  transform:scale(1.045);
  filter:saturate(1.08);
}
.work-impression-image:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,transparent 48%,rgba(5,8,15,.80)),
    linear-gradient(120deg,rgba(0,184,255,.05),rgba(169,39,255,.06));
}
.work-category{
  position:absolute;
  left:13px;
  bottom:13px;
  z-index:2;
  padding:6px 9px;
  border-radius:999px;
  color:#c7f4ff;
  font-size:8px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  border:1px solid rgba(87,192,255,.20);
  background:rgba(7,12,22,.78);
  backdrop-filter:blur(10px);
}
.work-image-zoom{
  position:absolute;
  right:13px;
  top:13px;
  z-index:2;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:10px;
  color:#e4f8ff;
  font-size:18px;
  border:1px solid rgba(91,184,247,.20);
  background:rgba(7,12,22,.72);
  backdrop-filter:blur(10px);
}
.work-impression-copy{
  padding:17px;
}
.work-impression-copy small{
  display:block;
  color:#68778e;
  font-size:8px;
  font-weight:800;
  letter-spacing:.08em;
}
.work-impression-copy h3{
  margin:6px 0 8px;
  color:#eef8ff;
  font-family:"Oxanium",sans-serif;
  font-size:17px;
}
.work-impression-copy p{
  margin:0;
  color:#8794a9;
  font-size:11px;
  line-height:1.62;
}
.work-impressions-empty{
  min-height:210px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border:1px dashed rgba(89,149,227,.16);
  border-radius:18px;
  background:rgba(8,12,21,.55);
}
.work-impressions-empty span{
  color:#6fdcff;
  font-size:8px;
  font-weight:900;
  letter-spacing:.18em;
}
.work-impressions-empty strong{
  margin-top:7px;
  color:#b8c4d6;
  font-size:15px;
}

.work-lightbox{
  position:fixed;
  inset:0;
  z-index:10000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:25px;
}
.work-lightbox.open{
  display:flex;
}
.work-lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(1,4,10,.88);
  backdrop-filter:blur(12px);
}
.work-lightbox-card{
  position:relative;
  z-index:2;
  width:min(1180px,100%);
  max-height:92vh;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(83,177,246,.23);
  background:#090e18;
  box-shadow:0 35px 110px rgba(0,0,0,.58),0 0 50px rgba(93,75,255,.10);
}
.work-lightbox-head{
  min-height:62px;
  padding:12px 15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  border-bottom:1px solid rgba(95,132,197,.10);
}
.work-lightbox-head strong{
  font-family:"Oxanium",sans-serif;
  font-size:13px;
}
.work-lightbox-head button{
  width:38px;
  height:38px;
  border:1px solid rgba(100,143,209,.14);
  border-radius:10px;
  cursor:pointer;
  color:#e4edf9;
  background:#0d1421;
  font-size:23px;
}
.work-lightbox-card>img{
  width:100%;
  max-height:calc(92vh - 62px);
  object-fit:contain;
  display:block;
  background:#05080e;
}

@media(max-width:1000px){
  .work-impressions-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:650px){
  .work-impressions-section{
    padding:75px 0;
  }
  .work-impressions-grid{
    grid-template-columns:1fr;
  }
  .work-impression-image{
    height:230px;
  }
}

/* ===== Contact Tow Fields v2.16b ===== */
.contact-tow-fields{
  margin:12px 0 14px;
  padding:15px;
  border:1px solid rgba(77,181,247,.20);
  border-radius:13px;
  background:
    radial-gradient(circle at 0 0,rgba(0,184,255,.07),transparent 42%),
    radial-gradient(circle at 100% 100%,rgba(169,39,255,.06),transparent 42%),
    #080d17;
}
.contact-tow-fields[hidden]{display:none!important}
.contact-tow-head{
  margin-bottom:11px;
  display:grid;
  grid-template-columns:43px 1fr;
  gap:11px;
  align-items:center;
}
.contact-tow-icon{
  width:43px;height:43px;
  display:grid;place-items:center;
  border-radius:11px;
  font-size:20px;
  border:1px solid rgba(85,185,247,.17);
  background:linear-gradient(145deg,rgba(0,184,255,.08),rgba(169,39,255,.09));
}
.contact-tow-head strong{display:block;color:#e4f4ff;font-size:12px}
.contact-tow-head small{display:block;margin-top:3px;color:#6f7d93;font-size:9px;line-height:1.45}
.contact-confirmation-id{
  display:block;
  width:max-content;
  max-width:100%;
  margin-top:8px;
  padding:6px 8px;
  border-radius:8px;
  color:#d9f7ff;
  font-size:10px;
  background:rgba(0,184,255,.07);
  border:1px solid rgba(72,188,247,.14);
}
.contact-honeypot{
  position:absolute!important;
  left:-10000px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
}

/* ===== Contact Damage Upload v2.17 ===== */
.contact-damage-upload{
  display:grid;
  gap:7px;
  margin-top:12px;
}
.contact-damage-upload>span{
  display:flex!important;
  align-items:center;
  gap:7px;
  font-size:12px!important;
  font-weight:800!important;
}
.contact-damage-upload>span em{
  padding:4px 7px;
  border-radius:999px;
  color:#c97cff;
  font-size:9px;
  font-style:normal;
  font-weight:900;
  background:rgba(169,39,255,.07);
  border:1px solid rgba(169,39,255,.15);
}
.contact-damage-upload-box{
  min-height:92px;
  display:grid;
  grid-template-columns:48px 1fr auto;
  gap:13px;
  align-items:center;
  padding:14px;
  border:1px dashed rgba(83,181,245,.23);
  border-radius:13px;
  background:
    radial-gradient(circle at 0 0,rgba(0,184,255,.055),transparent 42%),
    radial-gradient(circle at 100% 100%,rgba(169,39,255,.055),transparent 42%),
    #080d17;
}
.contact-damage-upload-icon{
  width:48px;height:48px;
  display:grid;place-items:center;
  border-radius:12px;
  font-size:22px;
  background:linear-gradient(145deg,rgba(0,184,255,.09),rgba(169,39,255,.09));
  border:1px solid rgba(92,180,245,.15);
}
.contact-damage-upload-copy strong{
  display:block;
  color:#dceaff;
  font-size:12px;
}
.contact-damage-upload-copy small{
  display:block;
  margin-top:4px;
  color:#6f7e95;
  font-size:9px;
  line-height:1.45;
}
.contact-damage-upload-box input[type=file]{
  width:220px;
  padding:8px;
  font-size:9px;
  background:#070b13;
}
.contact-damage-upload-note{
  color:#5f6d84!important;
  font-size:8px!important;
}

@media(max-width:650px){
  .contact-damage-upload-box{
    grid-template-columns:48px 1fr;
  }
  .contact-damage-upload-box input[type=file]{
    grid-column:1/-1;
    width:100%;
  }
}
\n\n/* ===== IceLinePerformance UI polish v2.21 ===== */\n:focus-visible{\n  outline:2px solid var(--blue-2);\n  outline-offset:3px;\n}\n::selection{\n  background:rgba(0,184,255,.28);\n  color:#fff;\n}\n.nav-dropdown-toggle{\n  color:#c9d0e1;\n  transition:color .2s ease,transform .2s ease;\n}\n.nav-dropdown-toggle:hover{color:var(--blue-2)}\n.nav-dropdown-menu{\n  border:1px solid rgba(108,166,255,.22);\n  box-shadow:0 22px 70px rgba(0,0,0,.48),0 0 34px rgba(0,184,255,.06);\n  backdrop-filter:blur(18px);\n}\n.btn,.service-card,.price-card,.project-card,.contact-card,.tow-card{\n  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;\n}\n.btn:active{transform:translateY(0) scale(.98)}\n@media(max-width:680px){\n  .nav-wrap{min-height:70px}\n  .site-header{background:rgba(5,7,15,.9)}\n  .main-nav{top:70px;left:12px;right:12px;max-height:calc(100vh - 84px);overflow:auto}\n  .main-nav .nav-cta{text-align:center;margin-top:6px}\n  .nav-dropdown-menu a{padding:11px 10px!important}\n  .hero h1{font-size:clamp(40px,12vw,62px);line-height:.98}\n  .hero-actions{display:grid;grid-template-columns:1fr;gap:10px}\n  .hero-actions .btn{width:100%}\n}\n@media(prefers-reduced-motion:reduce){\n  html{scroll-behavior:auto}\n  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}\n}\n