:root {
    --bg: #f7f3ea;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --text: #191919;
    --muted: #5c5b57;
    --accent: #eba221;
    --accent-deep: #c67f09;
    --accent-soft: rgba(235, 162, 33, 0.14);
    --shadow: 0 24px 60px rgba(41, 32, 16, 0.12);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(127, 201, 141, 0.22), transparent 30%),
        linear-gradient(180deg, #eef9ef 0%, #e5f3e7 46%, #dbeedb 100%);
}

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

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

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

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: opacity 420ms ease, filter 420ms ease;
}

body.intro-playing .page-shell {
    opacity: 0.14;
    filter: blur(8px);
}

body.intro-playing .topbar-motto {
    opacity: 0;
}

body.intro-done .page-shell {
    opacity: 1;
    filter: none;
}

.intro-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    display: grid;
    place-items: center;
}

.intro-splash-pill {
    position: fixed;
    left: 50%;
    top: 50%;
    min-width: min(62vw, 540px);
    padding: 18px 28px;
    border: 3px solid rgba(196, 133, 20, 0.58);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 251, 241, 0.99), rgba(247, 236, 212, 0.98));
    box-shadow: 0 26px 70px rgba(120, 83, 17, 0.22), 0 0 80px rgba(214, 173, 87, 0.24);
    color: #1b1611;
    font-family: "Marcellus", serif;
    font-size: clamp(1.4rem, 3.2vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-align: center;
    white-space: nowrap;
    text-shadow:
        0 0 2px rgba(255, 248, 214, 0.9),
        0 0 10px rgba(255, 214, 102, 0.78),
        0 0 24px rgba(209, 139, 0, 0.58);
    transform: translate(-50%, -50%) scale(0.84);
    opacity: 0;
    animation: introLetters 900ms ease-in-out infinite alternate;
    transition:
        top 950ms cubic-bezier(0.2, 0.82, 0.2, 1),
        left 950ms cubic-bezier(0.2, 0.82, 0.2, 1),
        width 950ms cubic-bezier(0.2, 0.82, 0.2, 1),
        min-width 950ms cubic-bezier(0.2, 0.82, 0.2, 1),
        padding 950ms cubic-bezier(0.2, 0.82, 0.2, 1),
        font-size 950ms cubic-bezier(0.2, 0.82, 0.2, 1),
        opacity 320ms ease,
        transform 950ms cubic-bezier(0.2, 0.82, 0.2, 1),
        box-shadow 950ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.intro-splash-pill.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.intro-splash-pill.is-flying {
    min-width: 0;
    padding: 8px 21px;
    font-size: 1.2rem;
    animation: none;
    transform: translate(0, 0) scale(1);
    box-shadow: 0 14px 30px rgba(120, 83, 17, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.intro-splash-pill.is-hidden {
    opacity: 0;
}

@keyframes introLetters {
    0% {
        color: #231b12;
        text-shadow:
            0 0 3px rgba(255, 247, 212, 0.92),
            0 0 12px rgba(232, 177, 63, 0.46),
            0 0 24px rgba(175, 114, 7, 0.28);
    }
    33% {
        color: #c88612;
        text-shadow:
            0 0 4px rgba(255, 242, 203, 0.96),
            0 0 14px rgba(222, 166, 53, 0.54),
            0 0 28px rgba(192, 126, 11, 0.34);
    }
    66% {
        color: #1c1611;
        text-shadow:
            0 0 4px rgba(255, 244, 208, 0.95),
            0 0 14px rgba(228, 179, 74, 0.44),
            0 0 24px rgba(171, 119, 0, 0.26);
    }
    100% {
        color: #d89b23;
        text-shadow:
            0 0 5px rgba(255, 248, 222, 0.98),
            0 0 16px rgba(235, 184, 72, 0.58),
            0 0 30px rgba(196, 130, 10, 0.36);
    }
}

.hero {
    padding: 0 clamp(12px, 2vw, 24px) 0;
    background: linear-gradient(180deg, rgba(244, 251, 244, 0.96), rgba(228, 242, 229, 0.96));
    color: #17301c;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0 auto 2px;
    width: min(100%, 1160px);
    padding: 0 4px;
    max-width: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 262px;
    height: auto;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    padding: 4px 10px;
    box-shadow: 0 10px 24px rgba(34, 76, 42, 0.12);
}

.whatsapp-pill,
.primary-button,
.secondary-button,
.submit-button,
.product-tile {
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #30ca6b, #19a64e);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(31, 129, 64, 0.28);
}

.topbar-motto {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    padding: 4px 12px;
    border: 2px solid rgba(193, 136, 18, 0.46);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 251, 242, 0.97), rgba(245, 232, 203, 0.95));
    box-shadow: 0 8px 18px rgba(120, 83, 17, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    font-family: "Marcellus", serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #191511;
    text-align: center;
    position: relative;
    overflow: visible;
    animation: mottoPulse 2.8s ease-in-out infinite;
    margin-bottom: -2px;
}

.topbar-motto::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -35%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
    transform: skewX(-24deg);
    animation: mottoFlash 2.8s ease-in-out infinite;
    pointer-events: none;
}

.whatsapp-pill:hover,
.primary-button:hover,
.secondary-button:hover,
.submit-button:hover,
.product-tile:hover {
    transform: translateY(-2px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    width: min(100%, 1720px);
    margin: 0 auto;
}

.hero-intro {
    width: min(100%, 1180px);
    margin: 8px auto 8px;
    text-align: center;
    animation: fadeUp 760ms ease both;
}

.hero-intro h1 {
    margin: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.08rem, 1.65vw, 1.95rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: #2558a8;
    text-shadow: 0 8px 18px rgba(72, 112, 173, 0.12);
}

.hero-intro h1 span {
    display: block;
    min-width: 100%;
}

.hero-badge-row {
    display: flex;
    justify-content: center;
    animation: fadeUp 700ms ease both;
    margin-bottom: 0;
}

.hero-message-band {
    width: min(100%, 1320px);
    margin: 8px auto 10px;
}

.hero-flash-copy {
    width: min(100%, 1320px);
    padding: 5px 10px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 247, 239, 0.68)),
        radial-gradient(circle at top, rgba(255, 215, 125, 0.2), transparent 42%);
    border: 1px solid rgba(210, 158, 48, 0.18);
    box-shadow:
        0 16px 34px rgba(43, 73, 45, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-flash-copy::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -18%;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
    transform: skewX(-24deg);
    animation: flashSweep 4.2s ease-in-out infinite;
    pointer-events: none;
}

.hero-flash-copy span {
    position: relative;
    z-index: 1;
    display: block;
    color: #0f6d5f;
    font-family: "Marcellus", serif;
    font-size: clamp(0.96rem, 1.8vw, 1.92rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-shadow:
        0 0 2px rgba(255, 255, 255, 0.9),
        0 0 14px rgba(83, 194, 171, 0.16);
}

.hero-message-band .hero-flash-copy span + span {
    margin-top: 2px;
}

@keyframes flashSweep {
    0%,
    12% {
        transform: translateX(0) skewX(-24deg);
        opacity: 0;
    }
    20%,
    36% {
        transform: translateX(720%) skewX(-24deg);
        opacity: 1;
    }
    100% {
        transform: translateX(720%) skewX(-24deg);
        opacity: 0;
    }
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: min(100%, 1080px);
    margin: 0 auto;
    animation: fadeUp 850ms ease both;
}

.hero-copy h1 {
    margin: 0 0 8px;
    max-width: 34ch;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 1.8vw, 1.8rem);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: #18361d;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.36);
}

.eyebrow {
    margin: 0 0 4px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(0.82rem, 1vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2f8f45;
}

.hero-copy .eyebrow span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Marcellus", serif;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(229, 247, 231, 0.92));
    border: 1px solid rgba(47, 143, 69, 0.18);
    box-shadow: 0 12px 30px rgba(72, 138, 84, 0.12);
}

.hero-copy .eyebrow span::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #8ce39a, #2f8f45 68%);
    box-shadow: 0 0 0 6px rgba(47, 143, 69, 0.12);
}

.hero-text {
    max-width: 92ch;
    font-size: 0.76rem;
    line-height: 1.34;
    color: rgba(20, 47, 26, 0.9);
}

.hero-products {
    padding: 3px 4px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(247, 255, 247, 0.5));
    border: 1px solid rgba(47, 143, 69, 0.12);
    box-shadow: 0 16px 32px rgba(43, 73, 45, 0.07);
    width: min(100%, 1160px);
    margin: 12px auto 0;
    animation: fadeUp 780ms ease both;
}

.hero-products-head {
    margin-bottom: 1px;
    text-align: center;
}

.hero-products-head .eyebrow {
    margin-bottom: 1px;
    font-family: "Outfit", sans-serif;
    font-size: 12pt;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #17301c;
}

.hero-products-head p {
    margin: 0;
    color: var(--muted);
    font-size: 12pt;
    line-height: 1.1;
}

.primary-button,
.secondary-button,
.submit-button {
    border: none;
    cursor: pointer;
    border-radius: 18px;
    padding: 10px 15px;
    font-size: 0.82rem;
    font-weight: 700;
}

.primary-button {
    background: linear-gradient(135deg, #f6b03b, #df8f00);
    color: #111;
    box-shadow: 0 18px 40px rgba(223, 143, 0, 0.3);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(26, 64, 35, 0.18);
    color: #18311d;
}

.hero-inline-partners {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    padding: 2px 0;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    flex-wrap: nowrap;
    justify-content: flex-start;
    animation: marquee 28s linear infinite;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 161px;
    padding: 2px 0;
}

.partner-logo img {
    width: 154px;
    height: 41px;
    border-radius: 10px;
    object-fit: contain;
    background: #ffffff;
    padding: 3px 6px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.contact-logos {
    overflow: hidden;
    width: min(100%, 1872px);
    margin: auto auto 8px;
    padding: 0;
}

.contact-logos-track {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    animation: marquee 26s linear infinite;
}

main {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 0 clamp(10px, 1.6vw, 18px) 0;
}

.section-heading {
    max-width: 70ch;
    margin-bottom: 6px;
}

.section-heading h2,
.offer-copy h2 {
    margin: 0 0 6px;
    font-size: clamp(1rem, 1.8vw, 1.45rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #17301c;
}

.section-heading p,
.offer-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: 0.72rem;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.product-gallery-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.product-gallery-hero .product-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 30px) / 4);
    max-width: 100%;
    min-height: 88px;
}

.product-tile {
    position: relative;
    padding: 0;
    border: 1px solid rgba(32, 59, 36, 0.08);
    border-radius: 14px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 252, 245, 0.94));
    box-shadow:
        0 18px 34px rgba(27, 46, 23, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.82) inset;
    cursor: pointer;
    text-align: left;
    isolation: isolate;
}

.product-tile::before {
    content: "";
    position: absolute;
    inset: 0 0 38% 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, rgba(8, 19, 11, 0) 0%, rgba(8, 19, 11, 0.08) 100%);
    opacity: 0.9;
}

.product-tile img {
    width: 100%;
    aspect-ratio: 16 / 10.2;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    filter: saturate(1.14) contrast(1.06) brightness(1.02);
    transition: transform 320ms ease, filter 320ms ease;
}

.product-tile span {
    position: relative;
    z-index: 2;
    display: block;
    padding: 8px 12px 11px;
    font-size: 0.58rem;
    font-weight: 700;
    color: #18311d;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 251, 246, 0.98));
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-gallery-hero .product-tile img {
    width: 30%;
    aspect-ratio: 1 / 1;
    height: auto;
    padding: 0;
    margin-top: auto;
    margin-bottom: auto;
    align-self: center;
    object-fit: contain;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 241, 0.92));
}

.product-gallery-hero .product-tile span {
    flex: 1;
    padding: 4px 8px 6px;
    font-size: 11pt;
    display: flex;
    align-items: flex-end;
}

.product-gallery-hero .product-tile {
    animation: tileIn 500ms ease both;
}

.product-gallery-hero .product-tile:nth-child(1) { animation-delay: 40ms; }
.product-gallery-hero .product-tile:nth-child(2) { animation-delay: 80ms; }
.product-gallery-hero .product-tile:nth-child(3) { animation-delay: 120ms; }
.product-gallery-hero .product-tile:nth-child(4) { animation-delay: 160ms; }
.product-gallery-hero .product-tile:nth-child(5) { animation-delay: 200ms; }
.product-gallery-hero .product-tile:nth-child(6) { animation-delay: 240ms; }
.product-gallery-hero .product-tile:nth-child(7) { animation-delay: 280ms; }
.product-gallery-hero .product-tile:nth-child(8) { animation-delay: 320ms; }
.product-gallery-hero .product-tile:nth-child(9) { animation-delay: 360ms; }
.product-gallery-hero .product-tile:nth-child(10) { animation-delay: 400ms; }
.product-gallery-hero .product-tile:nth-child(11) { animation-delay: 440ms; }

.product-tile.active {
    border-color: rgba(235, 162, 33, 0.8);
    box-shadow:
        0 22px 40px rgba(223, 143, 0, 0.14),
        0 0 0 1px rgba(255, 207, 114, 0.55) inset;
}

.product-tile:hover,
.product-tile:focus-visible {
    box-shadow:
        0 24px 44px rgba(25, 60, 32, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.product-tile:hover img,
.product-tile:focus-visible img {
    transform: scale(1.06);
    filter: saturate(1.24) contrast(1.1) brightness(1.04);
}

.offer-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 22px;
    margin-top: 14px;
}

.offer-copy,
.offer-form,
.contact-card {
    backdrop-filter: blur(12px);
}

.offer-copy,
.offer-form {
    padding: 18px 20px;
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.offer-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.offer-highlights div {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #fff7e8);
    border: 1px solid rgba(235, 162, 33, 0.18);
}

.offer-highlights span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.offer-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.offer-form-3col {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-form label {
    display: grid;
    gap: 4px;
    color: #302d28;
    font-weight: 800;
    font-size: 0.92rem;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
    width: 100%;
    border: 3px solid #8ecbff;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f8fff7);
    padding: 8px 11px;
    color: var(--text);
    font-weight: 700;
    outline: none;
    box-shadow: 0 8px 18px rgba(74, 155, 86, 0.08);
}

.offer-form input,
.offer-form select {
    min-height: 50px;
}

.offer-form .submit-button,
.offer-form .offer-form-hint,
.offer-form .form-note,
.offer-form .form-status {
    grid-column: 1 / -1;
}

.offer-form-hint {
    margin: -2px 0 2px;
    text-align: center;
    color: #36563b;
    font-size: 12pt;
    font-weight: 900;
    line-height: 1.4;
}

.offer-form-hint-soft {
    margin-top: -6px;
    color: #4b6650;
    font-size: 10.5pt;
    font-weight: 800;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
    border-color: #57aef8;
    box-shadow: 0 0 0 4px rgba(87, 174, 248, 0.16);
}

.offer-form input[readonly] {
    background: linear-gradient(180deg, #f6fbf5, #eff8ee);
    color: #24432a;
    cursor: default;
}

.offer-form input[data-dask-popup-trigger="uavt"] {
    cursor: pointer;
}

.offer-form select:disabled {
    background: linear-gradient(180deg, #f3f5f2, #edf1eb);
    color: #7b867a;
    cursor: not-allowed;
    box-shadow: none;
}

.submit-button {
    background: linear-gradient(135deg, #151515, #2d2d2d);
    color: #fff;
    box-shadow: 0 18px 34px rgba(22, 22, 22, 0.16);
    width: fit-content;
    min-width: 170px;
    justify-self: center;
    padding-inline: 28px;
}

.form-note,
.form-status {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
}

.form-note {
    color: #36563b;
    text-align: center;
    font-weight: 800;
}

.form-status[data-state="success"] {
    color: #157347;
}

.form-status[data-state="error"] {
    color: #b42318;
}

.contact-section {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 0 4px 2px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 22px rgba(48, 83, 47, 0.08);
    backdrop-filter: blur(10px);
}

.contact-heading {
    max-width: 560px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-heading h2 {
    font-size: clamp(0.92rem, 1.3vw, 1.18rem);
    line-height: 1.1;
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 16px;
}

.contact-card {
    min-height: 34px;
    padding: 3px 5px;
    border-radius: 0;
    color: #fff;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card span {
    display: block;
    margin-bottom: 1px;
    font-family: "Cormorant Garamond", serif;
    font-size: 10pt;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff6cf;
}

.contact-card strong,
.contact-card a {
    font-family: "Marcellus", serif;
    font-size: 10pt;
    line-height: 1.08;
    font-weight: 700;
    color: #f9fffd;
    letter-spacing: 0.01em;
}

.contact-card-address {
    background: linear-gradient(135deg, #121826, #2f3f68);
}

.contact-card-email {
    background: linear-gradient(135deg, #9a3412, #f97316);
}

.contact-card-phone {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.contact-card-offer {
    background: linear-gradient(135deg, #15803d, #22c55e);
}

.product-page {
    min-height: 100vh;
    width: min(100%, 1720px);
    margin: 0 auto;
    padding: 14px clamp(14px, 1.8vw, 26px) 18px;
    background:
        radial-gradient(circle at top left, rgba(127, 201, 141, 0.18), transparent 30%),
        linear-gradient(180deg, #eef9ef 0%, #e5f3e7 46%, #dbeedb 100%);
    zoom: 0.8;
    overflow: visible;
}

.product-page-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
    min-height: calc(100vh - 48px);
    height: auto;
}

.product-page-hero-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    line-height: 0.98;
    font-weight: 900;
    color: #17301c;
    text-align: center;
    letter-spacing: 0.06em;
    text-wrap: balance;
}

.product-page-card {
    display: grid;
    grid-template-columns: minmax(208px, 272px) minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    min-height: 100%;
    width: 100%;
    align-self: stretch;
    height: 100%;
}

.product-page-card-detailed {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
    height: auto;
    min-height: auto;
    align-self: start;
}

.product-page-card-detailed.product-page-card {
    height: auto;
    min-height: auto;
    align-self: start;
}

.product-page-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    grid-auto-rows: min-content;
}

.product-page-card-traffic {
    grid-template-columns: 1fr;
    align-items: start;
    min-width: 0;
    gap: 14px;
}

.product-page-copy {
    display: flex;
    flex-direction: column;
    height: auto;
    min-width: 0;
    justify-content: flex-start;
    align-items: center;
    padding: 14px 16px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(129, 201, 143, 0.22), transparent 34%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 244, 0.98));
    border: 1px solid rgba(47, 143, 69, 0.14);
    box-shadow: 0 18px 36px rgba(21, 66, 35, 0.12);
}

.product-page-visual {
    width: min(100%, 300px);
    margin: 0 auto 10px;
    border-radius: 26px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 34px rgba(18, 56, 32, 0.18);
}

.product-page-visual img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.product-page-tss .product-page-visual {
    width: min(100%, 620px);
    padding: 20px 24px;
    background: linear-gradient(180deg, #cfe7fb 0%, #bdddf6 100%);
    border: 0;
    box-shadow: 0 22px 34px rgba(25, 77, 122, 0.18);
}

.tss-visual {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
}

.tss-visual-badge {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 20px 14px;
    text-align: center;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    font-size: clamp(0.82rem, 1.18vw, 1rem);
    line-height: 1.08;
    font-weight: 900;
    word-break: keep-all;
    overflow-wrap: normal;
    background: radial-gradient(circle at 30% 28%, #16a8cf 0%, #007dac 42%, #0d3f8b 100%);
    clip-path: polygon(50% 0%, 56% 4%, 63% 1%, 69% 6%, 76% 3%, 81% 9%, 88% 7%, 91% 14%, 97% 18%, 96% 25%, 100% 31%, 97% 38%, 100% 45%, 95% 51%, 97% 58%, 91% 63%, 92% 70%, 85% 74%, 84% 82%, 76% 84%, 72% 91%, 64% 90%, 58% 97%, 50% 94%, 43% 98%, 36% 93%, 29% 96%, 24% 90%, 17% 92%, 13% 85%, 6% 83%, 5% 75%, 0% 70%, 2% 62%, 0% 55%, 4% 49%, 1% 42%, 5% 36%, 2% 29%, 8% 24%, 8% 16%, 15% 13%, 18% 6%, 26% 5%, 31% 0%, 38% 3%, 44% 0%);
    box-shadow: inset 0 6px 12px rgba(255, 255, 255, 0.16), 0 10px 18px rgba(10, 48, 104, 0.18);
}

.tss-visual-badge:last-child {
    min-width: 132px;
    transform: scale(1.08);
}

.product-page-copy h1 {
    margin: 0 0 8px;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.4rem, 2.15vw, 2rem);
    line-height: 1;
    font-weight: 900;
    color: #0f4c81;
    text-align: center;
    letter-spacing: 0.01em;
    text-transform: none;
}

.product-page-back {
    display: block;
    margin-bottom: 8px;
    color: #2f8f45;
    font-weight: 800;
    text-align: center;
}

.product-page-back-top {
    width: fit-content;
    margin: 0 auto 8px;
}

.product-page-text {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 1.08rem;
    line-height: 1.38;
    font-weight: 800;
    color: #1b3526;
    text-align: center;
    max-width: 92%;
}

.product-page-info {
    margin-top: 6px;
    display: grid;
    gap: 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: 10pt;
    line-height: 1.35;
    font-weight: 800;
    color: rgba(20, 47, 26, 0.92);
    text-align: center;
}

.product-page-info h2 {
    margin: 4px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: 10pt;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #17301c;
}

.product-page-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    align-items: start;
}

.product-page-info-card {
    padding: 12px 14px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.96));
    border: 1px solid rgba(43, 106, 69, 0.1);
    box-shadow: 0 14px 28px rgba(32, 54, 31, 0.1);
    min-height: 170px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
}

.product-page-info-card ul,
.product-page-info-card li {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 800;
}

.product-page-copy .eyebrow {
    color: #0f8b6d;
    text-align: left;
}

.product-page-info-card-limit h2 {
    color: #c56b00;
    font-size: clamp(1.18rem, 1.7vw, 1.55rem);
    font-weight: 900;
    letter-spacing: 0.01em;
}

.product-page-info-card:last-child h2 {
    color: #7a2cbf;
}

.product-page-info-card-limit {
    min-height: 100%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(250, 188, 88, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(255, 245, 232, 0.98));
    border: 1px solid rgba(223, 148, 29, 0.18);
    box-shadow: 0 18px 34px rgba(197, 107, 0, 0.12);
}

.product-page-info-card-limit::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.product-page-info-card:first-child {
    justify-self: start;
}

.product-page-info-card:last-child {
    justify-self: end;
    overflow: visible;
}

.product-page-info p,
.product-page-info ul,
.product-page-info li {
    margin: 0;
    font-size: 10pt;
    font-weight: 800;
}

.product-page-copy h1,
.product-page-info-card h2 {
    font-family: "Marcellus", serif;
    font-weight: 800;
    line-height: 1.06;
}

.product-page-info-card h2 {
    margin: 0 0 8px;
    font-size: clamp(1.12rem, 1.45vw, 1.4rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
    word-break: break-word;
    letter-spacing: 0.01em;
}

.product-page-info ul {
    padding-left: 18px;
    margin: 0 auto;
    display: block;
    width: fit-content;
    text-align: left;
}

.product-page-info-card ul {
    max-width: 100%;
    list-style: none;
    padding-left: 0;
}

.product-page-info-card li {
    font-size: 0.98rem;
    font-family: "Outfit", sans-serif;
    line-height: 1.32;
    font-weight: 800;
    text-align: center;
    overflow-wrap: normal;
    word-break: normal;
}

.product-page-info-card-limit li + li {
    margin-top: 6px;
}

.product-page-info-card-limit li:nth-child(-n + 2) {
    width: 100%;
    padding: 10px 14px 10px 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 20px rgba(104, 70, 15, 0.08);
    font-size: 11.5pt;
    font-weight: 800;
    line-height: 1.22;
    position: relative;
}

.product-page-info-card-limit li:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: linear-gradient(180deg, #f59e0b, #ea580c);
    box-shadow: 0 8px 16px rgba(234, 88, 12, 0.18);
}

.product-page-info-card-limit li:nth-child(-n + 2)::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: #fff;
}

.product-page-info-card-limit li:last-child {
    margin-top: 10px;
    padding: 12px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 238, 232, 1), rgba(255, 220, 205, 0.98));
    border: 1px solid rgba(184, 58, 35, 0.36);
    color: #962715;
    box-shadow: 0 16px 28px rgba(184, 58, 35, 0.18);
    font-size: 12.5pt;
    font-weight: 900;
    line-height: 1.28;
    width: 100%;
}

.product-page-info-note {
    color: #405a4b;
    margin-top: 4px;
    margin-bottom: 10px;
    font-family: "Outfit", sans-serif;
    font-size: 0.82rem;
    line-height: 1.35;
    font-weight: 700;
}

.product-page-bottom-alert {
    width: 100%;
    padding: 16px 18px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 209, 128, 0.28), transparent 32%),
        linear-gradient(135deg, rgba(255, 249, 240, 0.98), rgba(255, 237, 220, 0.98));
    border: 1px solid rgba(222, 137, 26, 0.24);
    box-shadow: 0 18px 34px rgba(184, 102, 11, 0.14);
    text-align: center;
}

.product-page-kasko .product-page-info p {
    font-family: "Outfit", sans-serif;
    font-size: 1.08rem;
    line-height: 1.38;
    font-weight: 800;
    color: #1b3526;
    text-align: center;
    max-width: 92%;
    margin: 0 auto;
}

.product-page-bottom-alert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-page-bottom-alert h3 {
    margin: 0 0 10px;
    color: #b45309;
    font-family: "Marcellus", serif;
    font-size: clamp(1.18rem, 1.8vw, 1.6rem);
    font-weight: 900;
    line-height: 1.1;
}

.product-page-bottom-alert p {
    margin: 0;
    color: #473124;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.22;
}

.product-page-bottom-alert p + p {
    margin-top: 6px;
}

.product-page-bottom-alert strong {
    display: block;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 236, 232, 1), rgba(255, 220, 214, 0.98));
    border: 1px solid rgba(183, 58, 35, 0.28);
    color: #98261a;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.25;
    box-shadow: 0 12px 24px rgba(183, 58, 35, 0.12);
}

.product-page-table-wrap {
    overflow-x: auto;
    width: 100%;
}

.product-page-table-duo {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    align-items: start;
}

.product-page-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(32, 54, 31, 0.08);
    margin: 0;
}

.product-page-table th,
.product-page-table td {
    padding: 3px 5px;
    text-align: left;
    font-size: 0.92rem;
    font-weight: 800;
    border-bottom: 1px solid rgba(23, 48, 28, 0.08);
}

.product-page-table th {
    background: linear-gradient(180deg, rgba(223, 239, 229, 0.92), rgba(236, 246, 240, 0.92));
    color: #17301c;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
}

.product-page-table-wrap + .product-page-table-wrap {
    border-left: 2px solid rgba(23, 48, 28, 0.12);
    padding-left: 8px;
}

.product-page-table tbody tr + tr td {
    border-top: 1px solid rgba(23, 48, 28, 0.08);
}

.product-page-table tbody tr:last-child td {
    border-bottom: none;
}

.product-page-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.product-page-highlights div {
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #fff7e8);
    border: 1px solid rgba(235, 162, 33, 0.18);
}

.product-page-highlights span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.product-page-form-wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 0;
    display: grid;
    gap: 0;
    align-self: stretch;
    order: -1;
    min-height: 100%;
    height: 100%;
}

.product-page-form-intro {
    padding: 2px 0 6px;
}

.product-page-form-intro + .offer-form {
    margin-top: 0;
    border-radius: 0 0 28px 28px;
}

.product-page-kasko .product-page-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: start;
}

.product-page-kasko .product-page-card-detailed {
    gap: 14px;
}

.product-page-kasko .product-page-copy {
    min-height: 100%;
    justify-content: center;
}

.product-page-kasko .product-page-detail-grid {
    align-content: start;
}

.product-page-kasko .product-page-info-card {
    min-height: 0;
    padding: 18px 20px;
}

.product-page-kasko .offer-form {
    align-content: start;
}

.product-page-kasko .offer-form textarea {
    min-height: 110px;
}

.product-page-kasko .submit-button {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    letter-spacing: 0.08em;
}

.product-page-konut {
    zoom: 0.68;
    padding: 6px 10px 8px;
    min-height: 100vh;
    height: auto;
    overflow: visible;
}

.product-page-konut .product-page-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: calc(100vh - 14px);
    height: auto;
    align-items: stretch;
}

.product-page-konut .product-page-back-top {
    margin-bottom: 4px;
}

.product-page-konut .product-page-form-intro {
    display: block;
    padding: 0 0 10px;
    text-align: center;
}

.product-page-konut .product-page-hero-title {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    letter-spacing: 0.06em;
}

.product-page-konut .product-page-copy {
    padding: 8px 10px;
    border-radius: 18px;
}

.product-page-konut .product-page-card-detailed,
.product-page-konut .product-page-form-wrap {
    height: 100%;
    min-height: calc(100vh - 28px);
    align-self: stretch;
}

.product-page-konut .product-page-detail-grid {
    gap: 8px;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-content: stretch;
    flex: 1 1 auto;
}

.product-page-konut .product-page-visual {
    width: min(100%, 270px);
    margin-bottom: 6px;
}

.product-page-konut .product-page-copy h1 {
    margin-bottom: 4px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.product-page-konut .product-page-text {
    font-family: "PT Serif", serif;
    font-size: 1.12rem;
    line-height: 1.34;
    max-width: 100%;
    color: #123f66;
}

.product-page-konut .product-page-info {
    margin-top: 2px;
    gap: 2px;
}

.product-page-konut .product-page-info-card {
    min-height: 100%;
    height: 100%;
    padding: 8px 10px;
    border-radius: 16px;
}

.product-page-konut .product-page-info-card-kapsam {
    background:
        radial-gradient(circle at top left, rgba(17, 94, 89, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(247, 252, 251, 0.98), rgba(236, 246, 243, 0.98));
    border: 1px solid rgba(17, 94, 89, 0.16);
    box-shadow: 0 16px 30px rgba(17, 94, 89, 0.08);
}

.product-page-konut .product-page-info-card-avantajlar {
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.10), transparent 32%),
        linear-gradient(180deg, rgba(252, 249, 255, 0.98), rgba(245, 238, 255, 0.98));
    border: 1px solid rgba(124, 58, 237, 0.14);
    box-shadow: 0 16px 30px rgba(91, 33, 182, 0.08);
}

.product-page-konut .product-page-info-card h2 {
    margin-bottom: 2px;
    font-size: 1.14rem;
}

.product-page-konut .product-page-info-card-kapsam h2 {
    font-family: "Marcellus", serif;
    color: #0f766e;
    letter-spacing: 0.02em;
}

.product-page-konut .product-page-info-card-avantajlar h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.28rem;
    font-weight: 900;
    color: #7c3aed;
    letter-spacing: 0.01em;
}

.product-page-konut .product-page-info-card ul,
.product-page-konut .product-page-info-card li {
    font-size: 0.82rem;
    line-height: 1.22;
}

.product-page-konut .product-page-info-card-kapsam li {
    font-family: "PT Serif", serif;
    color: #0f4f4a;
}

.product-page-konut .product-page-info-card-avantajlar li {
    font-family: "PT Serif", serif;
    font-size: 1.16rem;
    font-weight: 900;
    line-height: 1.14;
    color: #5b2ca0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.product-page-konut .offer-form {
    gap: 4px 6px;
    align-content: start;
    height: 100%;
}

.product-page-konut .offer-form,
.product-page-konut .offer-copy {
    padding: 8px 10px;
}

.product-page-konut .product-page-form-wrap {
    display: grid;
    justify-items: center;
}

.product-page-konut .offer-form {
    width: min(100%, 96%);
}

.product-page-konut .offer-form label {
    gap: 2px;
    font-size: 1.08rem;
}

.product-page-konut .offer-form > label:nth-of-type(-n+9) {
    font-size: 1.16rem;
}

.product-page-konut .offer-form input,
.product-page-konut .offer-form select {
    min-height: 44px;
    padding: 7px 11px;
    font-size: 1.05rem;
}

.product-page-konut .offer-form > label:nth-of-type(-n+9) input,
.product-page-konut .offer-form > label:nth-of-type(-n+9) select {
    min-height: 50px;
    padding: 8px 12px;
    font-size: 1.12rem;
}

.product-page-konut .offer-form textarea {
    min-height: 54px;
    font-size: 1.05rem;
}

.product-page-konut .submit-button {
    min-height: 44px;
    min-width: 210px;
    font-size: 1.06rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    margin-top: 10px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(22, 22, 22, 0.22);
}

.product-page-konut .form-note,
.product-page-konut .form-status,
.product-page-konut .offer-form-hint,
.product-page-konut .offer-form-hint-soft {
    margin: 0;
    font-family: "Outfit", sans-serif;
    line-height: 1.12;
    font-size: 0.98rem;
    font-weight: 900;
    width: 100%;
    display: block;
    text-align: center;
    justify-self: center;
    align-self: center;
}

.product-page-konut .offer-form-hint-soft {
    margin-top: 4px;
    color: #1f5d3a;
    max-width: 92%;
    justify-self: center;
}

.product-page-konut .form-note {
    margin-top: 10px;
    color: #155e75;
    max-width: 86%;
    justify-self: center;
}


.offer-form textarea {
    min-height: 78px;
    resize: none;
}

.offer-form-full {
    grid-column: 1 / -1;
}

.offer-form-conditional {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 10px;
    padding: 4px 0 2px;
}

.offer-form-conditional.is-hidden {
    display: none !important;
}

.tsb-result-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    align-self: end;
    width: 100%;
    min-height: 100%;
}

.tsb-result-item {
    display: grid;
    gap: 6px;
    align-content: start;
    min-height: auto;
    padding: 0;
    border: none;
    background: transparent;
    width: 100%;
}

.tsb-result-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #302d28;
    line-height: 1.2;
}

.tsb-result-item strong {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 50px;
    padding: 8px 12px;
    border: 3px solid #87c987;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f8fff7);
    box-shadow: 0 8px 18px rgba(74, 155, 86, 0.08);
    font-size: 0.9rem;
    font-weight: 800;
    color: #17301c;
    line-height: 1.1;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tileIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mottoFlash {
    0%, 58%, 100% {
        left: -40%;
        opacity: 0;
    }
    12%, 32% {
        opacity: 0.92;
    }
    46% {
        left: 112%;
        opacity: 0;
    }
}

@keyframes mottoPulse {
    0%, 100% {
        box-shadow: 0 14px 30px rgba(31, 138, 60, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
        border-color: rgba(31, 138, 60, 0.44);
    }
    22% {
        box-shadow: 0 16px 34px rgba(31, 138, 60, 0.22), 0 0 0 4px rgba(117, 201, 140, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.82);
        border-color: rgba(31, 138, 60, 0.62);
    }
}


@media (max-width: 1120px) {
    .product-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-gallery-hero .product-tile {
        width: calc((100% - 16px) / 3);
        min-width: 260px;
    }

    .offer-section {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .topbar,
    .offer-highlights {
        display: grid;
        grid-template-columns: 1fr;
    }

    .topbar {
        justify-content: stretch;
    }

    .brand {
        justify-content: center;
    }

    .brand img {
        width: 220px;
    }

    .topbar-left {
        align-items: center;
    }

    .intro-splash-text {
        top: calc(50% + 88px);
        width: min(92vw, 760px);
        font-size: clamp(1.05rem, 4.8vw, 1.65rem);
        line-height: 1.02;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }

    .contact-section {
        padding: 18px;
        border-radius: 26px;
    }

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

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

    .product-gallery-hero .product-tile {
        width: calc((100% - 8px) / 2);
        min-width: 0;
        
    }

    .partner-logo,
    .partner-logo img {
        min-width: 140px;
        width: 140px;
        height: 43px;
    }

    .product-page-card,
    .product-page-highlights,
    .product-page-layout {
        grid-template-columns: 1fr;
    }

    .product-page-card-traffic {
        grid-template-columns: 1fr;
    }

    .product-page-side {
        grid-template-columns: 1fr;
    }

    .product-page-info-grid {
        grid-template-columns: 1fr;
    }

    .product-page-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-page-form-wrap {
        position: static;
        width: min(100%, 540px);
        margin: 0 auto;
    }

    .product-page-kasko .product-page-layout {
        grid-template-columns: 1fr;
    }

    .tss-visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-page-tss .product-page-visual {
        padding: 14px;
        border-radius: 22px;
    }

    .tss-visual-badge {
        font-size: 0.8rem;
        padding: 16px 12px;
    }

    .tss-visual-badge:last-child {
        min-width: 0;
        transform: none;
    }

    .offer-form {
        grid-template-columns: 1fr;
    }

    .tsb-result-box {
        grid-template-columns: 1fr;
    }

    .product-page-table-duo {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 1200px) {
    .product-page {
        zoom: 1;
    }
}
