:root {
    --navy: #0c1421;
    --navy-2: #121d2d;
    --navy-3: #1d2a3b;
    --ink: #142033;
    --muted: #6c7688;
    --gold: #d8ab4e;
    --gold-2: #f1d180;
    --gold-dark: #9d6d1d;
    --ivory: #fffaf0;
    --paper: #f6f4ee;
    --white: #ffffff;
    --teal: #0d776f;
    --teal-soft: #dff4ee;
    --rose: #d97e63;
    --line: rgba(20, 32, 51, .12);
    --glass: rgba(255, 255, 255, .14);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow-soft: 0 18px 45px rgba(12, 20, 33, .10);
    --shadow: 0 28px 80px rgba(12, 20, 33, .22);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 250, 240, .92), rgba(246, 244, 238, .98));
    line-height: 1.55;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    border: 0;
}

svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.page-shell {
    overflow-x: clip;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    transition: transform .28s ease;
}

.site-header.is-hidden {
    transform: none;
}

.header-top {
    color: rgba(255, 255, 255, .84);
    background: linear-gradient(90deg, #08111d, #172436);
    font-size: 14px;
}

.header-top__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-top a {
    color: var(--gold-2);
    font-weight: 900;
}

.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: rgba(12, 20, 33, .55);
    backdrop-filter: blur(18px);
    transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.site-header.is-scrolled .navbar {
    border-color: rgba(216, 171, 78, .18);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 45px rgba(12, 20, 33, .11);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-menu,
.site-header.is-scrolled .menu-toggle {
    color: var(--ink);
}

.navbar__inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    transition: min-height .28s ease;
}

.site-header.is-scrolled .navbar__inner {
    min-height: 66px;
}

.brand {
    min-width: 218px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    line-height: 1.05;
}

.brand__mark {
    position: relative;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 18px;
    color: #111827;
    background:
        linear-gradient(135deg, #fff2be, var(--gold) 58%, #b98224),
        var(--gold);
    box-shadow: 0 16px 36px rgba(216, 171, 78, .28);
    font-weight: 950;
}

.brand__mark::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 13px;
}

.brand strong {
    display: block;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 0;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: currentColor;
    opacity: .72;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    font-weight: 850;
}

.nav-menu a {
    position: relative;
    padding: 11px 13px;
    border-radius: 999px;
    transition: color .2s ease, background .2s ease;
    white-space: nowrap;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 8px;
    left: 14px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform .24s ease;
}

.nav-menu a:hover {
    background: rgba(216, 171, 78, .12);
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.header-call,
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border-radius: 999px;
    font-weight: 950;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.header-call {
    color: #111827;
    background: linear-gradient(135deg, #f5d78a, var(--gold));
    box-shadow: 0 14px 30px rgba(216, 171, 78, .28);
}

.header-call svg {
    fill: currentColor;
    stroke: none;
}

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

.btn--gold {
    color: #111827;
    background: linear-gradient(135deg, #ffe8a6, var(--gold) 64%, #bd8428);
    box-shadow: 0 18px 40px rgba(216, 171, 78, .31);
}

.btn--gold:hover {
    box-shadow: 0 22px 48px rgba(216, 171, 78, .4);
}

.btn--light {
    color: var(--ink);
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 12px 30px rgba(12, 20, 33, .12);
}

.btn--ghost,
.btn--outline {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(14px);
}

.btn--outline {
    color: var(--ink);
    background: rgba(255, 255, 255, .88);
    border-color: rgba(20, 32, 51, .12);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: .55;
    transform: none;
}

.btn.is-loading {
    position: relative;
    color: transparent;
}

.btn.is-loading::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid rgba(17, 24, 39, .28);
    border-top-color: #111827;
    border-radius: 50%;
    animation: spin .72s linear infinite;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, .13);
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: calc(100vh - 46px);
    display: grid;
    align-items: center;
    color: #fff;
    background: var(--navy);
    overflow: hidden;
    padding: 104px 0 38px;
}

.hero__media,
.hero__texture,
.hero__light,
.hero__gold-path {
    position: absolute;
    pointer-events: none;
}

.hero__media {
    inset: 0;
    background:
        linear-gradient(96deg, rgba(5, 11, 20, .93) 0%, rgba(10, 20, 33, .76) 46%, rgba(12, 20, 33, .22) 100%),
        url("https://images.unsplash.com/photo-1604480132736-44c188fe4d20?auto=format&fit=crop&w=2100&q=84") center / cover;
    transform: scale(1.04);
    animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero__texture {
    inset: 0;
    opacity: .48;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .05), transparent 42%);
    mix-blend-mode: screen;
}

.hero__light {
    width: 48vw;
    height: 210px;
    background: linear-gradient(90deg, transparent, rgba(216, 171, 78, .34), transparent);
    filter: blur(28px);
    opacity: .62;
    transform: rotate(-12deg);
}

.hero__light--one {
    top: 18%;
    right: -12%;
}

.hero__light--two {
    bottom: 12%;
    left: -18%;
    opacity: .36;
    transform: rotate(16deg);
}

.hero__gold-path {
    right: 7%;
    bottom: 13%;
    width: 34vw;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: rotate(-23deg);
    box-shadow: 0 0 26px rgba(216, 171, 78, .8);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
    gap: 36px;
    align-items: center;
}

.hero__content {
    max-width: 810px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 18px rgba(216, 171, 78, .55);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 860px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(42px, 4.8vw, 62px);
    line-height: 1;
    letter-spacing: 0;
}

h1 span {
    color: var(--gold-2);
}

.hero p {
    max-width: 690px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(17px, 1.7vw, 21px);
    font-weight: 650;
}

.hero__actions,
.contact-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.trust-row {
    max-width: 820px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.trust-row span {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(255, 255, 255, .095);
    backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-weight: 850;
}

.trust-row b {
    color: var(--gold-2);
    font-size: 12px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-lg);
    padding: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .19), rgba(255, 255, 255, .07)),
        rgba(255, 255, 255, .08);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 242, 190, .75), transparent 42%, rgba(255, 255, 255, .2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-card__glow {
    position: absolute;
    top: 0;
    right: 12%;
    left: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
    box-shadow: 0 0 28px rgba(216, 171, 78, .9);
}

.hero-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.hero-card__top span {
    color: var(--gold-2);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.hero-card__top strong {
    color: #fff;
}

.hero-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px 0;
}

.hero-card__stats div {
    min-height: 82px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(9, 16, 28, .42);
}

.hero-card__stats strong {
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.hero-card__stats small,
.hero-flow p {
    color: rgba(255, 255, 255, .68);
    font-weight: 750;
}

.hero-flow {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-flow li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.hero-flow li span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, #ffe8a6, var(--gold));
    font-size: 12px;
    font-weight: 950;
}

.hero-flow p {
    margin: 0;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
}

.hero-card__link {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    border-radius: 999px;
    color: #111827;
    background: rgba(255, 255, 255, .9);
    font-weight: 950;
}

section {
    position: relative;
    padding: 96px 0;
}

.section-heading {
    max-width: 830px;
    margin-bottom: 36px;
}

.section-heading h2,
.price-copy h2,
.why-layout h2,
.contact-card h2 {
    margin-bottom: 14px;
    font-size: clamp(32px, 4.2vw, 54px);
    line-height: 1.06;
    letter-spacing: 0;
}

.section-heading p,
.price-copy p,
.why-layout p,
.contact-card p {
    color: var(--muted);
    font-size: 18px;
    font-weight: 650;
}

.services::before,
.areas::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(115deg, rgba(216, 171, 78, .08), transparent 38%),
        linear-gradient(245deg, rgba(13, 119, 111, .08), transparent 42%);
}

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

.service-card,
.area-grid article {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 250, 240, .72)),
        var(--white);
    box-shadow: var(--shadow-soft);
}

.service-card {
    min-height: 285px;
    display: grid;
    align-content: start;
    padding: 26px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(216, 171, 78, .18), transparent 38%),
        linear-gradient(315deg, rgba(13, 119, 111, .12), transparent 40%);
    opacity: 0;
    transition: opacity .24s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: 26px;
    bottom: 26px;
    left: 26px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .62;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 171, 78, .45);
    box-shadow: 0 30px 70px rgba(12, 20, 33, .16);
}

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

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card__number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(157, 109, 29, .22);
    font-size: 42px;
    font-weight: 950;
    line-height: 1;
}

.service-card__icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 20px;
    color: var(--gold-dark);
    background: linear-gradient(135deg, #fff3c8, #f5dd9c);
    box-shadow: 0 14px 30px rgba(216, 171, 78, .24);
    font-size: 32px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 23px;
}

.service-card p {
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 650;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    color: var(--teal);
    font-weight: 950;
}

.price-section {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(5, 11, 20, .96), rgba(18, 29, 45, .94)),
        url("https://images.unsplash.com/photo-1616047006789-b7af5afb8c20?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.price-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(216, 171, 78, .17), transparent 30%),
        linear-gradient(110deg, rgba(33, 133, 89, .18), transparent 38%);
    pointer-events: none;
}

.price-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(380px, 590px);
    gap: 36px;
    align-items: start;
}

.price-copy {
    position: sticky;
    top: 112px;
}

.price-copy p {
    color: rgba(255, 255, 255, .74);
}

.price-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.price-benefits article,
.price-note {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(16px);
}

.price-benefits article {
    min-height: 108px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 18px;
}

.price-benefits strong,
.price-note strong {
    color: #fff;
}

.price-benefits span,
.price-note span {
    color: rgba(255, 255, 255, .68);
    font-weight: 650;
}

.price-note {
    max-width: 520px;
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 18px;
}

.quote-form {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 250, 240, .9)),
        var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.quote-form::before {
    content: "";
    position: absolute;
    top: 0;
    right: 12%;
    left: 12%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 22px rgba(216, 171, 78, .75);
}

.quote-form > * {
    position: relative;
    z-index: 1;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 26px;
}

.form-progress span {
    min-height: 58px;
    display: grid;
    align-content: center;
    gap: 2px;
    border: 1px solid rgba(20, 32, 51, .08);
    border-radius: 18px;
    color: var(--muted);
    background: rgba(12, 20, 33, .05);
    font-weight: 950;
    text-align: center;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.form-progress b {
    font-size: 16px;
}

.form-progress small {
    font-size: 11px;
}

.form-progress span.is-active,
.form-progress span.is-done {
    color: #111827;
    background: linear-gradient(135deg, #ffe8a6, var(--gold));
    box-shadow: 0 12px 28px rgba(216, 171, 78, .24);
}

.form-step {
    display: none;
}

.form-step.is-active {
    display: block;
}

.form-step h3 {
    margin-bottom: 18px;
    font-size: 25px;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.choice-card {
    position: relative;
    min-height: 190px;
    display: grid;
    align-content: start;
    gap: 11px;
    padding: 20px;
    border: 1px solid rgba(20, 32, 51, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .74);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.choice-card:hover,
.choice-card:has(input:checked) {
    transform: translateY(-4px);
    border-color: rgba(216, 171, 78, .9);
    background: linear-gradient(145deg, #fff, #fff7df);
    box-shadow: 0 18px 44px rgba(216, 171, 78, .25);
}

.choice-card:has(input:checked)::after {
    content: "Seçildi";
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #111827;
    background: var(--gold);
    font-size: 11px;
    font-weight: 950;
}

.choice-card input {
    position: absolute;
    opacity: 0;
}

.choice-card span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--gold-dark);
    background: linear-gradient(135deg, #fff2bd, #eed083);
    font-size: 30px;
}

.choice-card strong,
.choice-card small {
    display: block;
}

.choice-card small {
    color: var(--muted);
    font-weight: 650;
}

.conditional-panel {
    display: none;
    gap: 14px;
}

.conditional-panel.is-active {
    display: grid;
}

label {
    display: grid;
    gap: 7px;
    color: #344052;
    font-size: 14px;
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(20, 32, 51, .15);
    border-radius: 16px;
    padding: 12px 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, .86);
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 5px rgba(216, 171, 78, .18);
}

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

.calc-box,
.summary-box {
    padding: 17px;
    border: 1px solid rgba(13, 119, 111, .18);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(223, 244, 238, .9), rgba(255, 255, 255, .72));
    color: #183b39;
    font-weight: 800;
}

.summary-box {
    display: grid;
    gap: 9px;
}

.summary-box dl {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 8px 12px;
    margin: 0;
}

.summary-box dt {
    color: var(--muted);
}

.summary-box dd {
    margin: 0;
    word-break: break-word;
}

.form-alert {
    display: none;
    margin-top: 16px;
    padding: 14px;
    border-radius: 18px;
    font-weight: 850;
}

.form-alert.is-visible {
    display: block;
}

.form-alert.is-success {
    color: #0d4f47;
    background: #dff6ef;
}

.form-alert.is-error {
    color: #7b1f1f;
    background: #ffe5e1;
}

.form-actions {
    margin-top: 22px;
    justify-content: space-between;
}

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

.area-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.area-grid article {
    min-height: 225px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px;
}

.area-grid article > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #111827;
    background: linear-gradient(135deg, #ffe8a6, var(--gold));
    font-size: 12px;
    font-weight: 950;
}

.area-grid h3 {
    margin-bottom: 0;
    color: var(--teal);
}

.area-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 650;
}

.why {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8, 17, 29, .98), rgba(18, 29, 45, .98)),
        url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1700&q=80") center / cover;
}

.why::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 16%, rgba(216, 171, 78, .14), transparent 30%),
        linear-gradient(90deg, rgba(33, 133, 89, .16), transparent 42%);
}

.why-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(380px, 1fr);
    gap: 38px;
    align-items: center;
}

.why-layout p {
    color: rgba(255, 255, 255, .72);
}

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

.why-grid article {
    min-height: 94px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 22px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(16px);
    font-weight: 950;
}

.why-grid span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #111827;
    background: var(--gold);
    font-size: 12px;
}

.process {
    background: #fff;
}

.process-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.process-line::before {
    content: "";
    position: absolute;
    top: 48px;
    right: 10%;
    left: 10%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
}

.process-line article {
    position: relative;
    min-height: 245px;
    padding: 24px;
    border: 1px solid rgba(20, 32, 51, .1);
    border-radius: 28px;
    background:
        linear-gradient(145deg, #fff, #fff9ea),
        #fff;
    box-shadow: var(--shadow-soft);
}

.process-line article > span {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 6px solid #fff;
    border-radius: 20px;
    color: #111827;
    background: linear-gradient(135deg, #ffe8a6, var(--gold));
    box-shadow: 0 14px 26px rgba(216, 171, 78, .24);
    font-weight: 950;
}

.process-line h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.process-line p {
    color: var(--muted);
    font-weight: 650;
}

.contact {
    padding-top: 70;
}

.contact-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 48px;
    border-radius: 32px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 17, 29, .96), rgba(12, 20, 33, .82)),
        url("https://images.unsplash.com/photo-1616046229478-9901c5536a45?auto=format&fit=crop&w=1700&q=82") center / cover;
    box-shadow: var(--shadow);
}

.contact-card::after {
    content: "";
    position: absolute;
    right: 38px;
    bottom: 30px;
    width: 240px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: rotate(-18deg);
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-card p {
    color: rgba(255, 255, 255, .72);
}

.footer {
    padding: 48px 0;
    color: rgba(255, 255, 255, .72);
    background: #08111d;
}

.footer__inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
}

.footer strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 20px;
}

.footer p {
    max-width: 560px;
    margin-bottom: 0;
}

.footer__inner > div:last-child {
    display: grid;
    gap: 8px;
    text-align: right;
    font-weight: 850;
}

.float-contact {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 55;
}

.float-contact button {
    position: relative;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #111827;
    background: linear-gradient(135deg, #ffe8a6, var(--gold));
    box-shadow: 0 20px 46px rgba(12, 20, 33, .22);
    cursor: pointer;
}

.float-contact button::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(216, 171, 78, .45);
    border-radius: 27px;
    animation: pulseRing 2.4s ease-out infinite;
}

.float-contact button svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
    stroke: none;
}

.float-contact__options {
    position: absolute;
    right: 0;
    bottom: 80px;
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.float-contact__options a {
    min-width: 174px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    color: #fff;
    background: rgba(13, 119, 111, .96);
    box-shadow: var(--shadow-soft);
    font-weight: 950;
    opacity: 0;
    transform: translateY(12px) scale(.96);
}

.float-contact__options a:last-child {
    background: rgba(18, 29, 45, .96);
}

.float-contact__options span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #111827;
    background: var(--gold);
    font-size: 13px;
    font-weight: 950;
}

.float-contact.is-open .float-contact__options {
    pointer-events: auto;
}

.float-contact.is-open .float-contact__options a {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.to-top {
    position: fixed;
    right: 96px;
    bottom: 34px;
    z-index: 54;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: rgba(18, 29, 45, .92);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.to-top:hover {
    background: var(--teal);
    transform: translateY(6px);
}

.to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-popup {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(12, 20, 33, .58);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
}

.site-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.site-popup > div {
    width: min(430px, 100%);
    padding: 26px;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(10px);
    transition: transform .18s ease;
}

.site-popup.is-visible > div {
    transform: translateY(0);
}

.site-popup strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
}

.site-popup p {
    color: var(--muted);
    font-weight: 650;
}

.site-popup button {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    color: #111827;
    background: var(--gold);
    font-weight: 950;
    cursor: pointer;
}

.section-reveal {
    opacity: 0;
    transform: translateY(28px);
}

.section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slowZoom {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.08);
    }
}

@keyframes pulseRing {
    0% {
        opacity: .72;
        transform: scale(.92);
    }
    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

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

@media (max-width: 1100px) {
    .nav-menu {
        gap: 2px;
        font-size: 14px;
    }

    .nav-menu a {
        padding-right: 10px;
        padding-left: 10px;
    }

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

    h1 {
        font-size: clamp(44px, 5vw, 64px);
    }
}

@media (max-width: 940px) {
    .site-header.is-hidden {
        transform: none;
    }

    .header-top {
        display: none;
    }

    .navbar__inner {
        min-height: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-call {
        display: none;
    }

    .nav-menu {
        position: fixed;
        inset: 78px 14px auto;
        display: grid;
        gap: 8px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: 28px;
        color: var(--ink);
        background: rgba(255, 255, 255, .9);
        backdrop-filter: blur(18px);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px) scale(.98);
    }

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

    .nav-menu a {
        min-height: 50px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        border-radius: 18px;
    }

    .nav-menu a:hover {
        background: rgba(216, 171, 78, .16);
    }

    .nav-menu a::after {
        display: none;
    }

    .hero {
        padding-top: 104px;
    }

    .hero__inner,
    .price-layout,
    .why-layout {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .price-copy {
        position: static;
    }

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

    .process-line::before {
        display: none;
    }

    .contact-card,
    .footer__inner {
        display: grid;
        align-items: start;
    }

    .footer__inner > div:last-child {
        text-align: left;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand {
        min-width: 0;
    }

    .brand__mark {
        width: 44px;
        height: 44px;
        border-radius: 16px;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small {
        font-size: 11px;
    }

    .hero {
        min-height: auto;
        padding: 84px 0 34px;
    }

    .hero__light,
    .hero__gold-path {
        display: none;
    }

    h1 {
        font-size: clamp(35px, 10.6vw, 46px);
        line-height: 1;
    }

    .hero p {
        margin-bottom: 18px;
        font-size: 16px;
    }

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

    .hero__actions .btn:first-child {
        grid-column: 1 / -1;
    }

    .hero__actions .btn {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 14px;
    }

    .trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin-top: 18px;
    }

    .trust-row span {
        min-height: 50px;
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        font-size: 13px;
    }

    .hero-card {
        display: none;
    }

    section {
        padding: 66px 0;
    }

    .section-heading h2,
    .price-copy h2,
    .why-layout h2,
    .contact-card h2 {
        font-size: clamp(29px, 9vw, 40px);
    }

    .section-heading p,
    .price-copy p,
    .why-layout p,
    .contact-card p {
        font-size: 16px;
    }

    .service-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 4px 12px 18px 0;
        margin-right: -12px;
    }

    .service-card {
        flex: 0 0 min(84vw, 330px);
        scroll-snap-align: start;
    }

    .area-grid,
    .why-grid,
    .process-line,
    .choice-grid,
    .field-row,
    .price-benefits {
        grid-template-columns: 1fr;
    }

    .price-layout {
        gap: 24px;
    }

    .quote-form,
    .contact-card {
        padding: 18px;
        border-radius: 24px;
    }

    .form-progress {
        gap: 7px;
    }

    .form-progress span {
        min-height: 50px;
    }

    .form-progress small {
        display: none;
    }

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

    .form-actions .btn[data-submit] {
        grid-column: 1 / -1;
        width: 100%;
    }

    .summary-box dl {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .float-contact {
        right: 14px;
        bottom: 14px;
    }

    .float-contact button {
        width: 62px;
        height: 62px;
    }

    .to-top {
        right: 86px;
        bottom: 20px;
    }
}

@media (min-width: 941px) {
    .nav-menu {
        gap: 0;
        font-size: 14px;
    }

    .nav-menu a {
        padding-right: 10px;
        padding-left: 10px;
        white-space: nowrap;
    }

    .navbar__inner {
        gap: 12px;
    }
}

@media (max-width: 1180px) and (min-width: 941px) {
    .brand {
        min-width: 190px;
    }

    .brand strong {
        font-size: 17px;
    }

    .nav-menu {
        font-size: 13px;
    }

    .header-call {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (max-width: 1030px) and (min-width: 941px) {
    .nav-menu a {
        padding-right: 7px;
        padding-left: 7px;
    }
}

@media (max-width: 940px) {
    .nav-menu a {
        white-space: normal;
    }
}

/* Final overrides: logo has no wrapper box, note reads as an editorial info note. */
.brand__mark,
.site-header.is-scrolled .brand__mark {
    width: 58px;
    height: 58px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand__mark::after {
    display: none;
}

.brand__mark img,
.site-header.is-scrolled .brand__mark img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(39, 50, 37, .14));
}

.care-note {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 4px;
    padding: 20px 22px 20px 70px;
    border: 1px solid rgba(216, 171, 78, .26);
    border-left: 5px solid var(--kg-gold);
    border-radius: 22px;
    background: #fffaf0;
    box-shadow: 0 12px 30px rgba(39, 50, 37, .06);
}

.care-note::before {
    content: "i";
    position: absolute;
    left: 22px;
    top: 20px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--kg-olive);
    background: #f2d98a;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
}

.care-note strong {
    color: #75581b;
}

.care-note span {
    grid-column: 1 / -1;
    color: #4d5142;
}

.float-contact {
    right: 24px;
    bottom: 92px;
}

.to-top {
    right: 32px;
    bottom: 24px;
}

@media (max-width: 940px) {
    .brand__mark,
    .site-header.is-scrolled .brand__mark,
    .brand__mark img,
    .site-header.is-scrolled .brand__mark img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 700px) {
    .care-note {
        grid-template-columns: 1fr;
        padding: 66px 18px 18px;
    }

    .care-note::before {
        top: 20px;
        left: 18px;
    }

    .float-contact {
        right: 18px;
        bottom: 88px;
    }

    .to-top {
        right: 26px;
        bottom: 22px;
    }
}

/* Premium interaction layer: sharper controls, cinematic hero, sliders and rebuilt footer. */
:root {
    --kg-radius-xs: 10px;
    --kg-radius-sm: 14px;
    --kg-radius-md: 18px;
    --kg-radius-lg: 24px;
    --kg-shadow-premium: 0 26px 70px rgba(17, 27, 20, .18);
}

.btn,
.header-call,
.float-contact button,
.float-contact__options a,
.to-top,
.choice-card,
.form-progress span,
input,
select,
textarea {
    border-radius: var(--kg-radius-sm) !important;
}

.btn {
    gap: 10px;
    min-height: 52px;
    box-shadow: 0 16px 34px rgba(17, 27, 20, .14);
}

.btn--gold,
.header-call {
    background: linear-gradient(135deg, #e2bb5c, #c9962f 48%, #8f6920);
    color: #172116;
}

.btn--light {
    color: #172116;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .35);
}

.site-header {
    will-change: transform, backdrop-filter;
}

.site-header.is-scrolled .navbar {
    background: rgba(247, 245, 234, .84);
    border-color: rgba(39, 50, 37, .08);
    box-shadow: 0 18px 45px rgba(17, 27, 20, .12);
}

.site-header.is-scrolled .navbar__inner {
    min-height: 70px;
}

.site-header.is-scrolled .nav-menu a {
    color: var(--kg-olive);
}

.header-call {
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .24);
}

.header-call i,
.btn i,
.footer-panel i,
.float-contact i {
    font-size: 1em;
}

.hero {
    min-height: 760px;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 24%, rgba(226, 187, 92, .26), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(15, 159, 102, .18), transparent 28%),
        linear-gradient(90deg, rgba(10, 16, 12, .88), rgba(17, 27, 20, .62) 50%, rgba(17, 27, 20, .82));
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(120deg, transparent 0 18px, rgba(255, 255, 255, .18) 19px, transparent 20px),
        radial-gradient(circle, rgba(255, 255, 255, .28) 1px, transparent 1px);
    background-size: 120px 120px, 20px 20px;
    mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.hero__media {
    z-index: 0;
}

.hero-slide {
    filter: saturate(1.06) contrast(1.08);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    gap: 54px;
    align-items: center;
    min-height: inherit;
}

.hero__content {
    max-width: 860px;
}

.hero h1 {
    max-width: 940px;
    color: #fff;
    font-size: clamp(48px, 6vw, 92px);
}

.hero h1 .word,
[data-split] .word {
    display: inline-block;
    overflow: hidden;
    transform-origin: 0 100%;
}

.hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .9);
}

.hero__actions {
    align-items: center;
}

.hero__proof {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--kg-radius-lg);
    color: #fff;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .075)),
        rgba(16, 26, 19, .62);
    backdrop-filter: blur(18px);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}

.hero__proof::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .35;
    background:
        linear-gradient(135deg, rgba(226, 187, 92, .35), transparent 36%),
        radial-gradient(circle at 85% 12%, rgba(35, 195, 124, .35), transparent 28%);
    pointer-events: none;
}

.hero__proof > * {
    position: relative;
    z-index: 1;
}

.hero__proof span {
    display: block;
    margin-top: 14px;
    color: #efd27b;
    font-weight: 900;
}

.hero__proof h2 {
    margin: 10px 0 22px;
    font-size: 28px;
    line-height: 1.12;
}

.hero__proof ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero__proof li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--kg-radius-sm);
    background: rgba(255, 255, 255, .08);
}

.hero__proof b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 34px;
    border-radius: 11px;
    color: #152016;
    background: #e3bd62;
    font-size: 12px;
}

.lottie-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: var(--kg-radius-md);
    background:
        radial-gradient(circle at 32% 25%, rgba(255, 255, 255, .46), transparent 32%),
        linear-gradient(145deg, rgba(226, 187, 92, .95), rgba(15, 159, 102, .55));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28), 0 16px 36px rgba(17, 27, 20, .16);
}

.service-swiper,
.testimonial-swiper {
    overflow: visible;
}

.service-swiper .swiper-wrapper {
    align-items: stretch;
}

.service-card.swiper-slide {
    height: auto;
}

.slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    color: var(--kg-khaki);
    font-weight: 850;
}

.swiper-pagination {
    position: static;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 26px;
    height: 4px;
    border-radius: 999px;
    background: rgba(39, 50, 37, .22);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--kg-gold);
}

.team-section {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(247, 245, 234, .95), rgba(232, 238, 222, .8)),
        radial-gradient(circle at 84% 12%, rgba(216, 171, 78, .2), transparent 28%);
}

.team-layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1fr);
    gap: 58px;
    align-items: center;
}

.team-copy p {
    max-width: 560px;
    color: #596252;
    font-size: 18px;
    font-weight: 660;
}

.team-copy .btn {
    width: fit-content;
    margin-top: 22px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    perspective: 1200px;
}

.team-card,
.testimonial-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(39, 50, 37, .10);
    border-radius: var(--kg-radius-lg);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, .86), rgba(255, 250, 240, .62)),
        rgba(255, 255, 255, .7);
    box-shadow: 0 24px 56px rgba(17, 27, 20, .10);
}

.team-card {
    min-height: 310px;
    padding: 24px;
}

.team-card::after,
.testimonial-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--kg-green), var(--kg-gold));
}

.team-card h3 {
    margin-top: 22px;
    color: var(--kg-olive);
    font-size: 24px;
}

.team-card p {
    color: #5e6658;
    font-weight: 650;
}

.testimonials {
    overflow: hidden;
    background:
        linear-gradient(180deg, #101a14, #273225),
        radial-gradient(circle at 18% 20%, rgba(216, 171, 78, .16), transparent 28%);
}

.testimonials .section-heading h2,
.testimonials .section-heading p {
    color: #fff;
}

.testimonials .section-heading p {
    color: rgba(255, 255, 255, .68);
}

.testimonial-card {
    height: auto;
    min-height: 250px;
    padding: 30px;
    color: #fff;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055)),
        rgba(255, 255, 255, .045);
    border-color: rgba(255, 255, 255, .12);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    color: #e3bd62;
}

.testimonial-card p {
    margin: 22px 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    font-weight: 650;
}

.testimonial-card strong {
    color: #fff;
}

.testimonials .slider-footer {
    color: rgba(255, 255, 255, .72);
}

.footer-premium {
    position: relative;
    overflow: hidden;
    padding: 72px 0 28px;
    color: rgba(255, 255, 255, .82);
    background:
        radial-gradient(circle at 16% 0%, rgba(216, 171, 78, .18), transparent 28%),
        radial-gradient(circle at 84% 8%, rgba(15, 159, 102, .18), transparent 30%),
        linear-gradient(140deg, #0e1711, #1f2b1b 52%, #111b14);
}

.footer-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .7) 1px, transparent 1px);
    background-size: 18px 18px;
}

.footer__top,
.footer__bottom {
    position: relative;
    z-index: 1;
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(300px, 1.1fr) minmax(260px, .82fr) minmax(190px, .58fr) minmax(300px, .95fr);
    gap: 18px;
    align-items: stretch;
}

.footer-panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: var(--kg-radius-lg);
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: #e3bd62;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-panel h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    line-height: 1.16;
}

.footer-panel p {
    max-width: none;
    color: rgba(255, 255, 255, .68);
    font-weight: 620;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-badges span,
.footer-phone,
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--kg-radius-sm);
}

.footer-badges span {
    padding: 10px 12px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .08);
    font-weight: 820;
}

.footer-whatsapp {
    width: 100%;
    min-height: 58px;
    justify-content: center;
    margin: 14px 0 10px;
    color: #102018;
    background: linear-gradient(135deg, #34d37f, #e3bd62);
    font-size: 18px;
    font-weight: 950;
}

.footer-phone {
    color: rgba(255, 255, 255, .76);
    font-weight: 820;
}

.footer-service ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.footer-service li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, .72);
    font-weight: 680;
}

.footer-service li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--kg-gold);
}

.footer-premium .footer-nav {
    align-content: start;
    gap: 11px;
}

.footer-premium .footer-nav a {
    width: 100%;
    padding: 9px 0;
    color: rgba(255, 255, 255, .78);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .56);
    font-size: 14px;
    font-weight: 720;
}

@media (min-width: 1180px) {
    .hero__content {
        padding-top: 0;
    }
}

@media (max-width: 1180px) {
    .hero__inner,
    .team-layout,
    .footer__top {
        grid-template-columns: 1fr;
    }

    .hero__proof {
        max-width: 620px;
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .team-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 700px) {
    .btn,
    .header-call {
        min-height: 50px;
        padding-inline: 14px;
    }

    .hero {
        min-height: auto;
        padding: 118px 0 58px;
    }

    .hero__inner {
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero__actions {
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__proof {
        padding: 20px;
        border-radius: 20px;
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(250px, 82vw));
    }

    .slider-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .swiper-pagination {
        justify-content: flex-start;
    }

    .footer__bottom {
        flex-direction: column;
    }
}

/* Locked final layer. Keep these at the end so older theme blocks cannot override the polish. */
.header-top {
    background: linear-gradient(90deg, #111b14, var(--kg-olive) 56%, #1a2517);
}

.header-top a {
    color: #f0d47a;
}

.section-heading {
    max-width: 940px;
}

.areas .section-heading,
.services .section-heading {
    max-width: 990px;
}

.hero__content {
    max-width: 900px;
}

.hero p {
    max-width: 760px;
}

.area-route__map {
    box-shadow: 0 34px 90px rgba(17, 27, 20, .22);
}

.area-route__map::before {
    border-color: rgba(247, 245, 234, .16);
}

.area-route__map span {
    background: rgba(247, 245, 234, .12);
    box-shadow: inset 0 0 0 1px rgba(247, 245, 234, .16), 0 12px 28px rgba(0, 0, 0, .12);
}

.area-route__list article > span {
    background: linear-gradient(145deg, var(--kg-olive), #162014);
    box-shadow: 0 0 0 8px #f7f5ea, 0 14px 28px rgba(39, 50, 37, .16);
}

.footer-seo {
    position: relative;
    overflow: hidden;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035)),
        rgba(255, 255, 255, .035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}

.footer-seo::before {
    content: "";
    display: block;
    width: 58px;
    height: 3px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #d8ab4e;
    opacity: .82;
}

.footer-seo strong {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .94);
    font-size: 16px;
    letter-spacing: .02em;
}

.footer-seo p {
    max-width: none;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 620;
}

@media (min-width: 1180px) {
    .container {
        width: min(1320px, calc(100% - 64px));
    }

    .service-grid {
        gap: 34px;
    }

    .price-layout {
        grid-template-columns: minmax(0, .92fr) minmax(520px, 660px);
        gap: 56px;
    }

    .area-route {
        grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
        gap: 58px;
    }

    .area-route__map {
        min-height: 480px;
    }

    .why-layout {
        grid-template-columns: minmax(480px, .96fr) minmax(540px, .94fr);
        gap: 62px;
    }

    .footer__inner {
        grid-template-columns: minmax(360px, 1.05fr) minmax(220px, .62fr) minmax(390px, .96fr);
        gap: 48px;
    }
}

@media (max-width: 700px) {
    .section-heading {
        max-width: 100%;
    }

    .footer-seo {
        padding: 22px;
        border-radius: 22px;
    }
}

/* Final polish: calmer SEO language, wider desktop rhythm, less template-like spacing. */
.header-top {
    background: linear-gradient(90deg, #111b14, var(--kg-olive) 56%, #1a2517);
}

.header-top a {
    color: #f0d47a;
}

.section-heading {
    max-width: 940px;
}

.areas .section-heading,
.services .section-heading {
    max-width: 990px;
}

.hero__content {
    max-width: 900px;
}

.hero p {
    max-width: 760px;
}

.area-route__map {
    box-shadow: 0 34px 90px rgba(17, 27, 20, .22);
}

.area-route__map::before {
    border-color: rgba(247, 245, 234, .16);
}

.area-route__map::after {
    color: rgba(255, 255, 255, .62);
}

.area-route__map span {
    background: rgba(247, 245, 234, .12);
    box-shadow: inset 0 0 0 1px rgba(247, 245, 234, .16), 0 12px 28px rgba(0, 0, 0, .12);
}

.area-route__list article {
    padding-bottom: 28px;
}

.area-route__list article > span {
    background: linear-gradient(145deg, var(--kg-olive), #162014);
    box-shadow: 0 0 0 8px #f7f5ea, 0 14px 28px rgba(39, 50, 37, .16);
}

.footer-seo {
    position: relative;
    overflow: hidden;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035)),
        rgba(255, 255, 255, .035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}

.footer-seo::before {
    content: "";
    display: block;
    width: 58px;
    height: 3px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #d8ab4e;
    opacity: .82;
}

.footer-seo strong {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .94);
    font-size: 16px;
    letter-spacing: .02em;
}

.footer-seo p {
    max-width: none;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 620;
}

.service-card,
.area-route__map,
.area-route__list article,
.why-grid article,
.why-meter,
.why-proof,
.process-line article,
.price-benefits article,
.care-grid article,
.care-note {
    will-change: transform, opacity;
}

@media (min-width: 1180px) {
    .container {
        width: min(1320px, calc(100% - 64px));
    }

    .hero__content {
        padding-top: 38px;
    }

    .service-grid {
        gap: 34px;
    }

    .price-layout {
        grid-template-columns: minmax(0, .92fr) minmax(520px, 660px);
        gap: 56px;
    }

    .area-route {
        grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
        gap: 58px;
    }

    .area-route__map {
        min-height: 480px;
    }

    .why-layout {
        grid-template-columns: minmax(480px, .96fr) minmax(540px, .94fr);
        gap: 62px;
    }

    .footer__inner {
        grid-template-columns: minmax(360px, 1.05fr) minmax(220px, .62fr) minmax(390px, .96fr);
        gap: 48px;
    }
}

@media (max-width: 700px) {
    .section-heading {
        max-width: 100%;
    }

    .footer-seo {
        padding: 22px;
        border-radius: 22px;
    }
}

.brand__mark {
    width: 58px;
    height: 58px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand__mark::after {
    display: none;
}

.brand__mark img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(39, 50, 37, .14));
}

.site-header.is-scrolled .brand__mark {
    width: 52px;
    height: 52px;
}

.site-header.is-scrolled .brand__mark img {
    width: 52px;
    height: 52px;
}

.footer {
    padding: 54px 0 34px;
    color: rgba(255, 255, 255, .82);
    background:
        radial-gradient(circle at 12% 0%, rgba(15, 159, 102, .18), transparent 30%),
        linear-gradient(135deg, #111b14, #273225 58%, #182114);
}

.footer__inner {
    display: grid;
    grid-template-columns: minmax(260px, 1.1fr) minmax(180px, .7fr) minmax(260px, .9fr);
    gap: 34px;
    align-items: start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .16));
}

.footer-logo strong,
.footer-seo strong {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 950;
}

.footer-logo small {
    display: block;
    margin-top: 4px;
    color: #e7c46b;
    font-weight: 850;
}

.footer p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-weight: 650;
}

.footer-nav {
    display: grid;
    gap: 10px;
}

.footer-nav a {
    width: fit-content;
    color: rgba(255, 255, 255, .82);
    font-weight: 850;
    transition: color .18s ease, transform .18s ease;
}

.footer-nav a:hover {
    color: #e7c46b;
    transform: translateX(4px);
}

.footer-seo {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background: rgba(255, 255, 255, .07);
    text-align: left;
    font-weight: initial;
}

.footer-seo strong {
    margin-bottom: 10px;
}

.care-note {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 4px;
    padding: 20px 22px 20px 70px;
    border: 1px solid rgba(216, 171, 78, .26);
    border-left: 5px solid var(--kg-gold);
    border-radius: 22px;
    background: #fffaf0;
    box-shadow: 0 12px 30px rgba(39, 50, 37, .06);
}

.care-note::before {
    content: "i";
    position: absolute;
    left: 22px;
    top: 20px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--kg-olive);
    background: #f2d98a;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
}

.care-note strong {
    color: #75581b;
}

.care-note span {
    grid-column: 1 / -1;
    color: #4d5142;
}

.float-contact {
    right: 24px;
    bottom: 92px;
}

.to-top {
    right: 32px;
    bottom: 24px;
}

@media (max-width: 940px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

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

    .brand__mark,
    .site-header.is-scrolled .brand__mark {
        width: 50px;
        height: 50px;
    }

    .brand__mark img,
    .site-header.is-scrolled .brand__mark img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 700px) {
    .footer {
        padding-bottom: 112px;
    }

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

    .care-note {
        grid-template-columns: 1fr;
        padding: 66px 18px 18px;
    }

    .care-note::before {
        top: 20px;
        left: 18px;
    }

    .float-contact {
        right: 18px;
        bottom: 88px;
    }

    .to-top {
        right: 26px;
        bottom: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Alfa-inspired visual pass */
:root {
    --sp-primary: #0f9f66;
    --sp-primary-2: #29cf85;
    --sp-gradient1: linear-gradient(135deg, #28d987 0%, #0f9f66 58%, #d6a72f 100%);
    --sp-gradient2: linear-gradient(135deg, #0b1712 0%, #0c724c 54%, #22c77c 100%);
    --sp-dark: #0b1712;
    --sp-light: #f6fff9;
}

.header-top {
    background: var(--sp-gradient2);
}

.header-top a {
    color: #fff;
}

.navbar {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(15, 159, 102, .18);
    box-shadow: 0 12px 34px rgba(8, 24, 45, .08);
}

.brand,
.nav-menu,
.menu-toggle,
.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-menu,
.site-header.is-scrolled .menu-toggle {
    color: #0b1523;
}

.brand__mark {
    color: #fff;
    background: var(--sp-gradient1);
    box-shadow: 0 12px 26px rgba(15, 159, 102, .25);
}

.brand__mark::after {
    border-color: rgba(255, 255, 255, .6);
}

.nav-menu a::after {
    background: var(--sp-gradient1);
}

.nav-menu a:hover {
    color: var(--sp-primary);
    background: rgba(15, 159, 102, .09);
}

.header-call,
.btn--gold {
    color: #fff;
    background: var(--sp-gradient1);
    box-shadow: 0 15px 30px rgba(15, 159, 102, .24);
}

.hero {
    min-height: 680px;
    padding: 132px 0 72px;
    background: #07111e;
}

.hero__media {
    inset: 0;
    background: none;
    transform: none;
    animation: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center right;
    background-size: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity .75s ease, transform 5.8s ease;
}

.hero-slide--one {
    background-image:
        linear-gradient(90deg, rgba(3, 13, 26, .88) 0%, rgba(3, 13, 26, .54) 42%, rgba(3, 13, 26, 0) 82%),
        linear-gradient(180deg, rgba(3, 13, 26, .08), rgba(3, 13, 26, .2)),
        url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-SLAYT-1111.jpg");
}

.hero-slide--two {
    background-image:
        linear-gradient(90deg, rgba(3, 13, 26, .88) 0%, rgba(3, 13, 26, .54) 42%, rgba(3, 13, 26, 0) 82%),
        linear-gradient(180deg, rgba(3, 13, 26, .08), rgba(3, 13, 26, .2)),
        url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-SLAYT-2.jpg");
}

.hero-slide--three {
    background-image:
        linear-gradient(90deg, rgba(3, 13, 26, .88) 0%, rgba(3, 13, 26, .54) 42%, rgba(3, 13, 26, 0) 82%),
        linear-gradient(180deg, rgba(3, 13, 26, .08), rgba(3, 13, 26, .2)),
        url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-SLAYT-3.jpg");
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__texture {
    display: none;
}

.hero__light,
.hero__gold-path {
    display: none;
}

.hero__inner {
    display: block;
}

.hero__content {
    max-width: 790px;
    padding-top: 28px;
}

.section-kicker {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0;
    text-transform: none;
}

.section-kicker::before {
    width: 46px;
    height: 3px;
    background: var(--sp-gradient1);
    box-shadow: 0 0 18px rgba(0, 208, 132, .55);
}

.hero h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(52px, 6.4vw, 86px);
    line-height: 1.04;
    text-shadow: 0 12px 30px rgba(0, 0, 0, .24);
}

.hero h1 span,
.primary-color {
    color: transparent;
    background: var(--sp-gradient1);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .92);
    font-size: 19px;
    font-weight: 700;
}

.hero__actions {
    gap: 14px;
}

.btn-bubble {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.btn-bubble::before,
.btn-bubble::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .36);
    transform: scale(0);
    opacity: 0;
}

.btn-bubble::before {
    top: 8px;
    left: 16px;
}

.btn-bubble::after {
    right: 18px;
    bottom: 8px;
}

.btn-bubble:hover::before,
.btn-bubble:hover::after {
    animation: bubblePop .65s ease-out forwards;
}

.btn-arrow {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
}

.trust-row {
    max-width: 760px;
    margin-top: 26px;
}

.trust-row span {
    border-color: rgba(255, 255, 255, .22);
    border-radius: 6px;
    background: rgba(0, 0, 0, .18);
}

.trust-row b {
    color: #65f3c4;
}

.services {
    overflow: hidden;
}

.services .section-kicker {
    color: var(--sp-primary);
    text-shadow: none;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    perspective: 1400px;
}

.service-card {
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    padding: 34px 32px;
    color: #fff;
    background: #071812;
    box-shadow: 0 28px 70px rgba(7, 24, 18, .2);
    transform-style: preserve-3d;
    isolation: isolate;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.service-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
}

.service-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform .55s ease, filter .55s ease;
}

.service-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .38), rgba(4, 15, 29, .92)),
        linear-gradient(135deg, rgba(15, 159, 102, .24), rgba(216, 171, 78, .15));
}

.service-card::before {
    inset: 18px;
    opacity: .75;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, .14), transparent 26%);
    transform: translateZ(10px);
}

.service-card::after {
    right: 34px;
    bottom: 28px;
    left: 34px;
    height: 4px;
    background: var(--sp-gradient1);
    opacity: .95;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    border-color: rgba(41, 207, 133, .36);
    box-shadow: 0 34px 86px rgba(6, 35, 23, .32);
}

.service-card:hover .service-overlay img {
    transform: scale(1.18) rotate(1deg);
    filter: saturate(1.15);
}

.service-card__number {
    color: rgba(255, 255, 255, .22);
    transform: translateZ(24px);
}

.service-card__icon {
    color: #fff;
    background: var(--sp-gradient1);
    border-radius: 50%;
    box-shadow: 0 16px 30px rgba(15, 159, 102, .28);
    transform: translateZ(34px);
}

.service-card h3 {
    color: #fff;
    font-size: 25px;
    transform: translateZ(30px);
}

.service-card p {
    color: rgba(255, 255, 255, .82);
}

.service-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 9px;
    margin: 2px 0 22px;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    font-weight: 750;
    transform: translateZ(24px);
}

.service-card li {
    position: relative;
    padding-left: 19px;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: .58em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00d084;
    box-shadow: 0 0 0 5px rgba(0, 208, 132, .13), 0 0 16px rgba(0, 208, 132, .7);
}

.service-card a {
    display: none;
}

.alfa-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 0;
    color: #fff;
    background:
        linear-gradient(100deg, rgba(8, 91, 61, .96), rgba(19, 178, 111, .92)),
        url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-SLAYT-3.jpg") center / cover;
}

.alfa-cta::before {
    content: "";
    position: absolute;
    inset: -35%;
    z-index: -1;
    background:
        radial-gradient(circle at 24% 28%, rgba(255, 255, 255, .18), transparent 22%),
        radial-gradient(circle at 72% 62%, rgba(255, 210, 92, .22), transparent 24%);
    opacity: .62;
    animation: ctaDrift 15s ease-in-out infinite alternate;
}

.alfa-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(2, 20, 40, .18), rgba(2, 20, 40, .05)),
        radial-gradient(circle at 50% 100%, rgba(255, 196, 67, .28), transparent 38%);
}

.alfa-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    min-height: 220px;
    padding-block: 44px;
}

.call-wrapper,
.cta-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.call-wrapper {
    display: none;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 28px;
    background: rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 24px 55px rgba(3, 28, 46, .16);
    backdrop-filter: blur(16px);
}

.call-icon-box,
.cta-icon-wrap {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22), 0 18px 38px rgba(0, 0, 0, .12);
    font-size: 32px;
}

.cta-icon-wrap {
    width: 82px;
    height: 82px;
    color: #0b1b2d;
    background: linear-gradient(135deg, #fff4c7, #e6a718);
}

.call-title {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
}

.call-phone a {
    color: #fff;
    font-size: clamp(22px, 2.4vw, 31px);
    font-weight: 950;
    letter-spacing: .01em;
    text-decoration: none;
}

.cta-content h2 {
    max-width: 620px;
    margin: 0 0 7px;
    color: #fff;
    font-size: clamp(27px, 3.1vw, 42px);
    line-height: 1.12;
}

.cta-content p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
}

.alfa-cta .btn {
    min-width: 178px;
    color: #102033;
    background: linear-gradient(135deg, #fff2bd, #d9a31d);
    box-shadow: 0 22px 44px rgba(39, 27, 5, .18);
    white-space: nowrap;
}

.care-guide {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(41, 207, 133, .13), transparent 28%),
        linear-gradient(180deg, #fffdf7, #f3f6ee);
}

.care-guide .section-kicker,
.services .section-kicker,
.areas .section-kicker,
.process .section-kicker {
    color: var(--sp-primary) !important;
    text-shadow: none;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.care-grid article {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 32px;
    border: 1px solid rgba(15, 159, 102, .14);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(246, 255, 249, .84)),
        #fff;
    box-shadow: 0 26px 62px rgba(16, 43, 31, .1);
}

.care-grid article::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(41, 207, 133, .14);
}

.care-grid article > span {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 18px;
    color: #fff;
    background: var(--sp-gradient1);
    box-shadow: 0 16px 32px rgba(15, 159, 102, .2);
    font-weight: 950;
}

.care-grid h3 {
    max-width: 520px;
    margin-bottom: 14px;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.12;
}

.care-grid p {
    color: var(--muted);
    font-weight: 650;
}

.care-grid ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.care-grid li {
    position: relative;
    padding-left: 22px;
    color: #294037;
    font-weight: 750;
}

.care-grid li::before {
    content: "";
    position: absolute;
    top: .66em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sp-primary);
}

.care-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 22px;
    padding: 20px 22px;
    border: 1px solid rgba(216, 171, 78, .22);
    border-radius: 24px;
    background: rgba(255, 248, 228, .8);
    box-shadow: 0 18px 40px rgba(16, 43, 31, .07);
}

.care-note strong {
    flex: 0 0 auto;
    color: #8a6418;
}

.care-note span {
    color: #33433b;
    font-weight: 650;
}

.bg-elements {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: .55;
}

.bg-elements img {
    display: block;
    max-width: 100%;
    animation: shapeFloat 7s ease-in-out infinite;
}

.shape1 {
    top: 9%;
    left: 3%;
}

.shape2 {
    top: 16%;
    right: 6%;
}

.shape3 {
    bottom: 9%;
    left: 8%;
}

.shape4 {
    right: 12%;
    bottom: 3%;
}

.price-section {
    background:
        linear-gradient(135deg, rgba(5, 11, 20, .88), rgba(5, 60, 88, .88)),
        url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-SLAYT-2.jpg") center / cover;
}

.float-contact button {
    color: #fff;
    background: var(--sp-gradient1);
    border-radius: 50%;
}

.float-contact button::before {
    border-color: rgba(15, 159, 102, .55);
    border-radius: 50%;
}

.float-contact__options a {
    background: var(--sp-gradient1);
    border-radius: 999px;
}

.to-top {
    background: var(--sp-gradient2);
}

@keyframes bubblePop {
    0% {
        opacity: .8;
        transform: scale(0);
    }
    60% {
        opacity: .45;
        transform: scale(5.5);
    }
    100% {
        opacity: 0;
        transform: scale(8);
    }
}

@keyframes shapeFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-16px) rotate(4deg);
    }
}

@keyframes ctaDrift {
    0% {
        transform: translate3d(-18px, -8px, 0) rotate(-2deg);
    }
    100% {
        transform: translate3d(18px, 10px, 0) rotate(2deg);
    }
}

@media (max-width: 940px) {
    .hero {
        min-height: 650px;
        padding-top: 116px;
    }

    .alfa-cta__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 0;
        padding-block: 38px;
    }

    .alfa-cta .btn {
        justify-self: start;
    }

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

    .care-note {
        display: grid;
    }
}

@media (max-width: 700px) {
    .hero {
        min-height: 710px;
        padding: 100px 0 88px;
    }

    .hero-slide {
        background-position: 58% center;
    }

    .hero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .section-kicker {
        font-size: 15px;
    }

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

    .hero__actions .btn:first-child {
        grid-column: auto;
    }

    .trust-row {
        grid-template-columns: 1fr 1fr;
    }

    .service-grid {
        display: flex;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .service-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex-basis: min(86vw, 340px);
        min-height: 430px;
        border-radius: 26px;
    }

    .service-card ul {
        font-size: 14px;
    }

    .call-wrapper,
    .cta-content {
        align-items: flex-start;
    }

    .call-icon-box,
    .cta-icon-wrap {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .call-wrapper {
        padding: 16px;
        border-radius: 22px;
    }

    .cta-content h2 {
        font-size: 27px;
    }

    .alfa-cta__inner {
        gap: 26px;
    }

    .alfa-cta .btn {
        width: 100%;
    }

    .care-grid article {
        min-height: 0;
        padding: 24px;
        border-radius: 24px;
    }

    .care-grid article > span {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .care-note {
        padding: 18px;
        border-radius: 20px;
    }
}

/* Kazan Gold brand refresh */
:root {
    --kg-olive: #273225;
    --kg-olive-2: #3f4b37;
    --kg-khaki: #6f7654;
    --kg-green: #0f9f66;
    --kg-green-2: #23c37c;
    --kg-cream: #f7f5ea;
    --kg-gold: #d8ab4e;
    --sp-primary: var(--kg-green);
    --sp-primary-2: var(--kg-green-2);
    --sp-gradient1: linear-gradient(135deg, var(--kg-green-2) 0%, var(--kg-green) 54%, var(--kg-olive) 100%);
    --sp-gradient2: linear-gradient(135deg, #172116 0%, var(--kg-olive) 48%, var(--kg-green) 100%);
    --sp-dark: #111b14;
    --sp-light: #f7fbf1;
}

body {
    background: linear-gradient(180deg, #fbfaf4 0%, #f2f3e9 100%);
}

.header-top {
    max-height: 38px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--kg-olive), #182114);
    transition: max-height .28s ease, opacity .22s ease, transform .28s ease;
}

.site-header.is-scrolled .header-top {
    max-height: 0;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.navbar {
    border-bottom-color: rgba(39, 50, 37, .12);
    background: rgba(250, 250, 244, .96);
}

.site-header.is-scrolled .navbar {
    border-color: rgba(39, 50, 37, .13);
    background: rgba(250, 250, 244, .94);
}

.brand {
    min-width: 226px;
}

.brand__mark {
    width: 56px;
    height: 56px;
    overflow: hidden;
    border: 1px solid rgba(216, 171, 78, .26);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(39, 50, 37, .13);
}

.brand__mark::after {
    display: none;
}

.brand__mark img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.brand small {
    color: var(--kg-khaki);
    opacity: 1;
}

.nav-menu a:hover {
    color: var(--kg-green);
    background: rgba(15, 159, 102, .08);
}

.nav-menu a::after {
    background: var(--kg-green);
}

.menu-toggle {
    color: var(--kg-olive);
    background: rgba(39, 50, 37, .07);
}

.hero {
    min-height: 690px;
    background: #121b14;
}

.hero-slide--one,
.hero-slide--two {
    background-image:
        linear-gradient(90deg, rgba(17, 27, 20, .92) 0%, rgba(17, 27, 20, .72) 45%, rgba(17, 27, 20, .18) 100%),
        linear-gradient(180deg, rgba(17, 27, 20, .08), rgba(17, 27, 20, .22)),
        var(--slide-image);
}

.hero-slide--one {
    --slide-image: url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-SLAYT-1111.jpg");
}

.hero-slide--two {
    --slide-image: url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-SLAYT-2.jpg");
}

.hero h1 {
    max-width: 820px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.hero h1 span,
.primary-color {
    color: var(--kg-green-2);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.section-kicker::before {
    background: var(--kg-green);
    box-shadow: none;
}

.btn--gold,
.header-call {
    background: linear-gradient(135deg, var(--kg-green-2), var(--kg-green) 58%, var(--kg-olive));
    box-shadow: 0 16px 34px rgba(15, 159, 102, .22);
}

.btn-arrow {
    background: rgba(216, 171, 78, .34);
}

.service-card {
    border-radius: 28px;
}

.service-card::after {
    background: var(--kg-gold);
}

.service-card__icon {
    background: linear-gradient(135deg, var(--kg-green-2), var(--kg-green));
}

.service-card li::before {
    background: var(--kg-green-2);
    box-shadow: 0 0 0 5px rgba(35, 195, 124, .13);
}

.area-route {
    display: grid;
    grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
    gap: 34px;
    align-items: stretch;
}

.area-route__map {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(39, 50, 37, .94), rgba(17, 27, 20, .94)),
        url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-4.jpg") center / cover;
    box-shadow: 0 30px 70px rgba(39, 50, 37, .18);
}

.area-route__map::before {
    content: "";
    position: absolute;
    inset: 46px;
    border: 2px dashed rgba(247, 245, 234, .24);
    border-radius: 45% 55% 42% 58%;
    transform: rotate(-8deg);
}

.area-route__map::after {
    content: "Servis rotası";
    position: absolute;
    left: 28px;
    bottom: 28px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.area-route__map span {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(12px);
    font-weight: 900;
}

.area-route__map span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--kg-gold);
}

.area-route__map span:nth-child(1) { top: 58px; left: 42px; }
.area-route__map span:nth-child(2) { top: 126px; right: 42px; }
.area-route__map span:nth-child(3) { left: 58px; bottom: 142px; }
.area-route__map span:nth-child(4) { right: 34px; bottom: 82px; }

.area-route__list {
    position: relative;
    display: grid;
}

.area-route__list::before {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 24px;
    width: 2px;
    background: linear-gradient(var(--kg-green), rgba(15, 159, 102, .1));
}

.area-route__list article {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 0 0 24px;
}

.area-route__list article:not(:last-child) {
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(39, 50, 37, .1);
}

.area-route__list article > span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    background: var(--kg-olive);
    box-shadow: 0 0 0 8px #f7f5ea;
    font-size: 12px;
    font-weight: 950;
}

.area-route__list h3 {
    margin-bottom: 6px;
    color: var(--kg-olive);
    font-size: 24px;
}

.area-route__list p {
    margin: 0;
    color: #5e6658;
    font-weight: 680;
}

.why {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(18, 27, 20, .96), rgba(39, 50, 37, .94)),
        url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent.jpg") center / cover;
}

.why::before {
    background:
        radial-gradient(circle at 12% 20%, rgba(15, 159, 102, .2), transparent 32%),
        linear-gradient(90deg, rgba(17, 27, 20, .4), transparent);
}

.why-copy h2 {
    max-width: 680px;
}

.why-proof {
    display: grid;
    gap: 4px;
    max-width: 470px;
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 4px solid var(--kg-gold);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}

.why-proof strong {
    color: #fff;
    font-size: 18px;
}

.why-proof span {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.why-panel {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 32px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .2);
    backdrop-filter: blur(18px);
}

.why-meter {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .1);
}

.why-meter > span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: var(--kg-olive);
    background: #f4d98d;
    font-weight: 950;
}

.why-meter strong,
.why-meter small {
    display: block;
}

.why-meter small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .68);
    font-weight: 700;
}

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

.why-grid article {
    min-height: auto;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .13);
}

.why-grid h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 18px;
}

.why-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-weight: 680;
}

.why-grid span {
    color: var(--kg-olive);
    background: #f4d98d;
}

.alfa-cta {
    background:
        linear-gradient(100deg, rgba(39, 50, 37, .96), rgba(15, 159, 102, .9)),
        url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-SLAYT-3.jpg") center / cover;
}

.price-section {
    background:
        linear-gradient(135deg, rgba(17, 27, 20, .9), rgba(39, 50, 37, .86)),
        url("../img/alfa-style/alfa-hali-yikama-ankara-sincan-yenikent-SLAYT-2.jpg") center / cover;
}

@media (max-width: 1100px) {
    .area-route {
        grid-template-columns: 1fr;
    }

    .area-route__map {
        min-height: 300px;
    }
}

@media (max-width: 940px) {
    .header-top {
        display: none;
    }

    .brand {
        min-width: 0;
    }

    .brand__mark {
        width: 50px;
        height: 50px;
        border-radius: 18px;
    }

    .brand__mark img {
        width: 42px;
        height: 42px;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        right: 14px;
        left: 14px;
        z-index: 90;
        display: flex;
        flex-direction: column;
        max-height: calc(100dvh - 98px);
        padding: 18px;
        overflow-y: auto;
        border: 1px solid rgba(39, 50, 37, .12);
        border-radius: 26px;
        color: var(--kg-olive);
        background: rgba(250, 250, 244, .98);
        box-shadow: 0 26px 70px rgba(17, 27, 20, .2);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

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

    .nav-menu a {
        flex: 0 0 auto;
        min-height: 52px;
        justify-content: flex-start;
        border-radius: 18px;
        background: rgba(39, 50, 37, .04);
    }

    .why-panel {
        padding: 18px;
    }
}

@media (max-width: 700px) {
    .hero {
        min-height: 650px;
        padding-top: 92px;
    }

    .hero-slide {
        background-position: 62% center;
    }

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

    .area-route__map {
        min-height: 260px;
        border-radius: 26px;
    }

    .area-route__map span {
        padding: 8px 10px;
        font-size: 12px;
    }

    .area-route__map span:nth-child(1) { top: 34px; left: 24px; }
    .area-route__map span:nth-child(2) { top: 92px; right: 20px; }
    .area-route__map span:nth-child(3) { left: 28px; bottom: 98px; }
    .area-route__map span:nth-child(4) { right: 20px; bottom: 42px; }

    .area-route__list article {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
    }

    .area-route__list article > span {
        width: 42px;
        height: 42px;
        box-shadow: 0 0 0 6px #f7f5ea;
    }

    .area-route__list::before {
        left: 20px;
    }

    .why-meter {
        align-items: flex-start;
    }

    .why-grid article {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 16px;
    }

    .why-grid span {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }
}

/* Locked final layer. Keep these after the old theme blocks. */
.header-top {
    background: linear-gradient(90deg, #111b14, var(--kg-olive) 56%, #1a2517);
}

.header-top a {
    color: #f0d47a;
}

.section-heading {
    max-width: 940px;
}

.areas .section-heading,
.services .section-heading {
    max-width: 990px;
}

.hero__content {
    max-width: 900px;
}

.hero p {
    max-width: 760px;
}

.area-route__map {
    box-shadow: 0 34px 90px rgba(17, 27, 20, .22);
}

.area-route__map::before {
    border-color: rgba(247, 245, 234, .16);
}

.area-route__map span {
    background: rgba(247, 245, 234, .12);
    box-shadow: inset 0 0 0 1px rgba(247, 245, 234, .16), 0 12px 28px rgba(0, 0, 0, .12);
}

.area-route__list article > span {
    background: linear-gradient(145deg, var(--kg-olive), #162014);
    box-shadow: 0 0 0 8px #f7f5ea, 0 14px 28px rgba(39, 50, 37, .16);
}

.footer-seo {
    position: relative;
    overflow: hidden;
    padding: 24px 26px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035)),
        rgba(255, 255, 255, .035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}

.footer-seo::before {
    content: "";
    display: block;
    width: 58px;
    height: 3px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #d8ab4e;
    opacity: .82;
}

.footer-seo strong {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .94);
    font-size: 16px;
    letter-spacing: .02em;
}

.footer-seo p {
    max-width: none;
    color: rgba(255, 255, 255, .68);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 620;
}

@media (min-width: 1180px) {
    .container {
        width: min(1320px, calc(100% - 64px));
    }

    .service-grid {
        gap: 34px;
    }

    .price-layout {
        grid-template-columns: minmax(0, .92fr) minmax(520px, 660px);
        gap: 56px;
    }

    .area-route {
        grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
        gap: 58px;
    }

    .area-route__map {
        min-height: 480px;
    }

    .why-layout {
        grid-template-columns: minmax(480px, .96fr) minmax(540px, .94fr);
        gap: 62px;
    }

    .footer__inner {
        grid-template-columns: minmax(360px, 1.05fr) minmax(220px, .62fr) minmax(390px, .96fr);
        gap: 48px;
    }
}

@media (max-width: 700px) {
    .section-heading {
        max-width: 100%;
    }

    .footer-seo {
        padding: 22px;
        border-radius: 22px;
    }
}

/* Final overrides: logo has no wrapper box, note reads as an editorial info note. */
.brand__mark,
.site-header.is-scrolled .brand__mark {
    width: 58px;
    height: 58px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand__mark::after {
    display: none;
}

.brand__mark img,
.site-header.is-scrolled .brand__mark img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(39, 50, 37, .14));
}

.care-note {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 4px;
    padding: 20px 22px 20px 70px;
    border: 1px solid rgba(216, 171, 78, .26);
    border-left: 5px solid var(--kg-gold);
    border-radius: 22px;
    background: #fffaf0;
    box-shadow: 0 12px 30px rgba(39, 50, 37, .06);
}

.care-note::before {
    content: "i";
    position: absolute;
    left: 22px;
    top: 20px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--kg-olive);
    background: #f2d98a;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
}

.care-note strong {
    color: #75581b;
}

.care-note span {
    grid-column: 1 / -1;
    color: #4d5142;
}

.float-contact {
    right: 24px;
    bottom: 92px;
}

.to-top {
    right: 32px;
    bottom: 24px;
}

@media (max-width: 940px) {
    .brand__mark,
    .site-header.is-scrolled .brand__mark,
    .brand__mark img,
    .site-header.is-scrolled .brand__mark img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 700px) {
    .care-note {
        grid-template-columns: 1fr;
        padding: 66px 18px 18px;
    }

    .care-note::before {
        top: 20px;
        left: 18px;
    }

    .float-contact {
        right: 18px;
        bottom: 88px;
    }

    .to-top {
        right: 26px;
        bottom: 22px;
    }
}
/* Premium locked EOF layer. */
.btn,
.header-call,
.float-contact button,
.float-contact__options a,
.to-top,
.choice-card,
.form-progress span,
input,
select,
textarea {
    border-radius: var(--kg-radius-sm, 14px) !important;
}

.btn,
.header-call {
    min-height: 52px;
}

.btn--gold,
.header-call {
    color: #172116;
    background: linear-gradient(135deg, #e2bb5c, #c9962f 48%, #8f6920);
}

.header-call {
    border: 1px solid rgba(255, 255, 255, .24);
}

.site-header.is-scrolled .navbar {
    background: rgba(247, 245, 234, .84);
    border-color: rgba(39, 50, 37, .08);
    box-shadow: 0 18px 45px rgba(17, 27, 20, .12);
}

.site-header.is-scrolled .navbar__inner {
    min-height: 70px;
}

.hero {
    min-height: 760px;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 24%, rgba(226, 187, 92, .26), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(15, 159, 102, .18), transparent 28%),
        linear-gradient(90deg, rgba(10, 16, 12, .88), rgba(17, 27, 20, .62) 50%, rgba(17, 27, 20, .82));
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(120deg, transparent 0 18px, rgba(255, 255, 255, .18) 19px, transparent 20px),
        radial-gradient(circle, rgba(255, 255, 255, .28) 1px, transparent 1px);
    background-size: 120px 120px, 20px 20px;
    mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    gap: 54px;
    align-items: center;
    min-height: inherit;
}

.hero__content {
    max-width: 860px;
}

.hero h1 {
    max-width: 940px;
    color: #fff;
    font-size: clamp(48px, 6vw, 92px);
}

.hero h1 .word,
[data-split] .word {
    display: inline-block;
    overflow: hidden;
    transform-origin: 0 100%;
}

.hero__proof {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(160deg, rgba(255, 255, 255, .20), rgba(255, 255, 255, .075)), rgba(16, 26, 19, .62);
    backdrop-filter: blur(18px);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}

.hero__proof > * {
    position: relative;
    z-index: 1;
}

.hero__proof span {
    display: block;
    margin-top: 14px;
    color: #efd27b;
    font-weight: 900;
}

.hero__proof h2 {
    margin: 10px 0 22px;
    font-size: 28px;
    line-height: 1.12;
}

.hero__proof ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero__proof li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 54px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
}

.hero__proof b {
    display: grid;
    place-items: center;
    width: 38px;
    height: 34px;
    border-radius: 11px;
    color: #152016;
    background: #e3bd62;
    font-size: 12px;
}

.lottie-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: radial-gradient(circle at 32% 25%, rgba(255, 255, 255, .46), transparent 32%), linear-gradient(145deg, rgba(226, 187, 92, .95), rgba(15, 159, 102, .55));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28), 0 16px 36px rgba(17, 27, 20, .16);
}

.service-swiper,
.testimonial-swiper {
    overflow: visible;
}

.service-swiper .swiper-wrapper {
    align-items: stretch;
}

.service-card.swiper-slide,
.testimonial-card.swiper-slide {
    height: auto;
}

.slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    color: var(--kg-khaki);
    font-weight: 850;
}

.swiper-pagination {
    position: static;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 26px;
    height: 4px;
    border-radius: 999px;
    background: rgba(39, 50, 37, .22);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--kg-gold);
}

.team-section {
    overflow: hidden;
    background: linear-gradient(135deg, rgba(247, 245, 234, .95), rgba(232, 238, 222, .8)), radial-gradient(circle at 84% 12%, rgba(216, 171, 78, .2), transparent 28%);
}

.team-layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1fr);
    gap: 58px;
    align-items: center;
}

.team-copy p {
    max-width: 560px;
    color: #596252;
    font-size: 18px;
    font-weight: 660;
}

.team-copy .btn {
    width: fit-content;
    margin-top: 22px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    perspective: 1200px;
}

.team-card,
.testimonial-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(39, 50, 37, .10);
    border-radius: 24px;
    background: linear-gradient(150deg, rgba(255, 255, 255, .86), rgba(255, 250, 240, .62)), rgba(255, 255, 255, .7);
    box-shadow: 0 24px 56px rgba(17, 27, 20, .10);
}

.team-card {
    min-height: 310px;
    padding: 24px;
}

.team-card h3 {
    margin-top: 22px;
    color: var(--kg-olive);
    font-size: 24px;
}

.team-card p {
    color: #5e6658;
    font-weight: 650;
}

.testimonials {
    overflow: hidden;
    background: linear-gradient(180deg, #101a14, #273225), radial-gradient(circle at 18% 20%, rgba(216, 171, 78, .16), transparent 28%);
}

.testimonials .section-heading h2,
.testimonials .section-heading p {
    color: #fff;
}

.testimonials .section-heading p {
    color: rgba(255, 255, 255, .68);
}

.testimonial-card {
    min-height: 250px;
    padding: 30px;
    color: #fff;
    background: linear-gradient(150deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .055)), rgba(255, 255, 255, .045);
    border-color: rgba(255, 255, 255, .12);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    color: #e3bd62;
}

.testimonial-card p {
    margin: 22px 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    font-weight: 650;
}

.footer-premium {
    position: relative;
    overflow: hidden;
    padding: 72px 0 28px;
    color: rgba(255, 255, 255, .82);
    background: radial-gradient(circle at 16% 0%, rgba(216, 171, 78, .18), transparent 28%), radial-gradient(circle at 84% 8%, rgba(15, 159, 102, .18), transparent 30%), linear-gradient(140deg, #0e1711, #1f2b1b 52%, #111b14);
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(300px, 1.1fr) minmax(260px, .82fr) minmax(190px, .58fr) minmax(300px, .95fr);
    gap: 18px;
    align-items: stretch;
}

.footer-panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 24px;
    background: rgba(255, 255, 255, .055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}

.footer-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: #e3bd62;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-panel h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    line-height: 1.16;
}

.footer-panel p {
    max-width: none;
    color: rgba(255, 255, 255, .68);
    font-weight: 620;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-badges span,
.footer-phone,
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
}

.footer-badges span {
    padding: 10px 12px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .08);
    font-weight: 820;
}

.footer-whatsapp {
    width: 100%;
    min-height: 58px;
    justify-content: center;
    margin: 14px 0 10px;
    color: #102018;
    background: linear-gradient(135deg, #34d37f, #e3bd62);
    font-size: 18px;
    font-weight: 950;
}

.footer-phone {
    color: rgba(255, 255, 255, .76);
    font-weight: 820;
}

.footer-service ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.footer-service li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, .72);
    font-weight: 680;
}

.footer-service li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--kg-gold);
}

.footer-premium .footer-nav {
    align-content: start;
    gap: 11px;
}

.footer-premium .footer-nav a {
    width: 100%;
    padding: 9px 0;
    color: rgba(255, 255, 255, .78);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .56);
    font-size: 14px;
    font-weight: 720;
}

@media (max-width: 1180px) {
    .hero__inner,
    .team-layout,
    .footer__top {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(220px, 1fr));
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .team-card {
        scroll-snap-align: start;
    }
}

@media (max-width: 700px) {
    .hero {
        min-height: auto;
        padding: 118px 0 58px;
    }

    .hero__inner {
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .hero__actions {
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__proof {
        padding: 20px;
        border-radius: 20px;
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(250px, 82vw));
    }

    .slider-footer,
    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .swiper-pagination {
        justify-content: flex-start;
    }
}

/* Targeted fixes from final review. */
.hero::after {
    display: none !important;
}

.hero {
    min-height: 760px !important;
    padding: 0 !important;
}

.btn,
.header-call,
.process-line article,
.footer-panel,
.service-card {
    box-shadow: 0 14px 34px rgba(39, 50, 37, .10) !important;
}

.btn-bubble::before,
.btn-bubble::after {
    display: none !important;
}

.btn:hover,
.header-call:hover {
    box-shadow: 0 16px 32px rgba(15, 159, 102, .16) !important;
}

.process-line article {
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(247, 245, 234, .82)) !important;
}

.footer-contact .footer-whatsapp,
.footer-contact .btn {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 0;
    border-radius: 14px !important;
    font-weight: 950;
}

.footer-contact .btn {
    color: #f7f5ea;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .08);
}

.footer-logo {
    gap: 10px !important;
    margin-bottom: 14px !important;
}

.footer-logo strong {
    line-height: 1;
}

.footer-logo small {
    margin-top: 2px !important;
    font-size: 15px !important;
    line-height: 1.15;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 70px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 38px;
    height: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
    transition: width .22s ease, background .22s ease, border-color .22s ease;
}

.hero-dots button.is-active {
    width: 52px;
    border-color: rgba(226, 187, 92, .78);
    background: #e2bb5c;
}

.services {
    position: relative;
    min-height: auto;
    padding: 110px 0;
    overflow: hidden;
}

.services > .container {
    position: relative;
    top: auto;
}

.services {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.services > .container {
    position: relative;
}

.service-swiper {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.service-swiper .service-grid {
    position: relative;
    width: 100%;
    height: 520px;
    display: block !important;
}

.service-card.swiper-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(920px, 100%) !important;
    min-height: 430px;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.service-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.service-swiper {
    height: min(580px, calc(100vh - 170px));
    min-height: 500px;
    overflow: hidden;
}

.service-swiper .service-grid {
    position: relative;
    display: block !important;
    height: 100%;
    min-width: 0;
    transform: none !important;
}

.service-card.swiper-slide {
    position: absolute;
    inset: 0;
    width: min(760px, 100%) !important;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(70px) scale(.94);
    transition: opacity .44s ease, transform .54s cubic-bezier(.2, .9, .2, 1);
}

.service-card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.service-card.is-before {
    opacity: 0;
    transform: translateY(-58px) scale(.96);
}

.hero {
    overflow: hidden !important;
}

.services[data-scroll-cards="true"] .service-card.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

.services[data-scroll-cards="true"] .service-card:not(.is-active) {
    opacity: 0 !important;
    pointer-events: none !important;
}

.service-swiper .slider-footer {
    display: none;
}

@media (max-width: 940px) {
    .header-top__inner {
        justify-content: center;
    }

    .header-top__inner > span {
        display: none;
    }

    .header-top__inner a {
        font-size: 13px;
        white-space: nowrap;
    }

    .services {
    min-height: auto;
    }

    .services > .container {
        position: relative;
        top: auto;
    }

    .service-swiper {
        height: min(560px, calc(100vh - 124px));
        min-height: 500px;
    }
}

@media (max-width: 700px) {
    .hero {
        padding: 104px 0 84px !important;
        min-height: auto !important;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 52px) !important;
        line-height: 1.06;
    }

    .hero p {
        font-size: 16px !important;
        line-height: 1.58;
    }

    .hero__inner {
        gap: 22px !important;
    }

    .hero__proof {
        width: 100%;
        padding: 16px !important;
    }

    .hero__proof h2 {
        font-size: 21px !important;
    }

    .hero__proof li {
        min-height: 46px;
        font-size: 13px;
    }

    .hero-dots {
        top: 558px;
        bottom: auto;
    }

    .service-card.swiper-slide {
        width: 100% !important;
        padding: 24px 22px;
    }

    .service-card ul {
        gap: 8px;
    }
}

@media (max-width: 940px) {
    body.menu-open .nav-menu.is-open {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important;
        transition: none !important;
        animation: none !important;
    }
}

@media (max-width: 760px) {
    .services {
        padding: 70px 0;
    }

    .service-swiper {
        min-height: auto;
        display: block;
    }

    .service-swiper .service-grid {
        height: auto;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card.swiper-slide {
        position: relative;
        top: auto;
        left: auto;
        width: 100% !important;
        min-height: auto;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }
}

/* FINAL SERVICE PIN CARD DESIGN */
.services[data-scroll-cards="true"] {
    padding: 92px 0 !important;
    overflow: hidden !important;
}

.services[data-scroll-cards="true"] .container {
    width: 100% !important;
    max-width: none !important;
    padding-inline: clamp(14px, 3vw, 42px) !important;
}

.services[data-scroll-cards="true"] .section-heading {
    max-width: 1180px !important;
    margin-inline: auto !important;
}

.services[data-scroll-cards="true"] .service-grid {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: min(620px, calc(100vh - 210px)) !important;
    min-height: 500px !important;
    overflow: visible !important;
}

.services[data-scroll-cards="true"] .service-card {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: none !important;
    min-height: auto !important;
    height: 100% !important;
    margin: 0 !important;
    padding: clamp(30px, 4vw, 70px) !important;
    border-radius: clamp(26px, 3vw, 44px) !important;
    display: grid !important;
    align-content: center !important;
    grid-template-columns: minmax(0, .75fr) minmax(240px, .25fr) !important;
    gap: clamp(20px, 4vw, 70px) !important;
    background:
        radial-gradient(circle at 88% 18%, rgba(216,171,78,.32), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #fff7dd 58%, #f3e2ad 100%) !important;
    box-shadow: 0 40px 100px rgba(12,20,33,.18) !important;
    overflow: hidden !important;
}

.services[data-scroll-cards="true"] .service-card::before {
    opacity: 1 !important;
    background:
        linear-gradient(135deg, rgba(216,171,78,.16), transparent 38%),
        radial-gradient(circle at 92% 86%, rgba(13,119,111,.14), transparent 30%) !important;
}

.services[data-scroll-cards="true"] .service-card::after {
    right: 46px !important;
    left: 46px !important;
    bottom: 36px !important;
    height: 4px !important;
}

.services[data-scroll-cards="true"] .service-card__number {
    top: 34px !important;
    right: 46px !important;
    font-size: clamp(62px, 9vw, 130px) !important;
    opacity: .45 !important;
}

.services[data-scroll-cards="true"] .service-card__icon {
    width: clamp(74px, 8vw, 120px) !important;
    height: clamp(74px, 8vw, 120px) !important;
    border-radius: 30px !important;
    font-size: clamp(38px, 5vw, 64px) !important;
}

.services[data-scroll-cards="true"] .service-card h3 {
    max-width: 760px !important;
    font-size: clamp(42px, 6vw, 86px) !important;
    line-height: .95 !important;
    letter-spacing: -.04em !important;
}

.services[data-scroll-cards="true"] .service-card p {
    max-width: 760px !important;
    font-size: clamp(18px, 1.7vw, 25px) !important;
    line-height: 1.5 !important;
}

.services[data-scroll-cards="true"] .service-card a {
    margin-top: 10px !important;
    font-size: 18px !important;
}

/* Mobile pinned cards */
@media (max-width: 760px) {
    .services[data-scroll-cards="true"] {
        padding: 74px 0 !important;
    }

    .services[data-scroll-cards="true"] .container {
        width: 100% !important;
        padding-inline: 0 !important;
    }

    .services[data-scroll-cards="true"] .section-heading {
        width: calc(100% - 28px) !important;
        margin-inline: auto !important;
    }

    .services[data-scroll-cards="true"] .service-grid {
        display: block !important;
        height: 470px !important;
        min-height: 470px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }

    .services[data-scroll-cards="true"] .service-card {
        inset: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 470px !important;
        padding: 28px 20px !important;
        border-radius: 0 !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .services[data-scroll-cards="true"] .service-card__number {
        top: 18px !important;
        right: 20px !important;
        font-size: 78px !important;
    }

    .services[data-scroll-cards="true"] .service-card__icon {
        width: 68px !important;
        height: 68px !important;
        border-radius: 22px !important;
        font-size: 36px !important;
        margin-bottom: 10px !important;
    }

    .services[data-scroll-cards="true"] .service-card h3 {
        font-size: clamp(36px, 12vw, 54px) !important;
        line-height: .95 !important;
    }

    .services[data-scroll-cards="true"] .service-card p {
        font-size: 16px !important;
        line-height: 1.45 !important;
    }

    .services[data-scroll-cards="true"] .service-card a {
        font-size: 16px !important;
    }
}

/* FINAL 3D FULL-WIDTH SERVICE STACK */
.services[data-scroll-cards="true"] {
    padding: 88px 0 !important;
    overflow: hidden !important;
    perspective: 1600px !important;
}

.services[data-scroll-cards="true"] .container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-inline: 0 !important;
}

.services[data-scroll-cards="true"] .section-heading {
    width: min(1180px, calc(100vw - 32px)) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
}

.services[data-scroll-cards="true"] .service-grid {
    position: relative !important;
    display: block !important;
    width: 100vw !important;
    height: min(680px, calc(100vh - 175px)) !important;
    min-height: 560px !important;
    overflow: visible !important;
    perspective: 1600px !important;
}

.services[data-scroll-cards="true"] .service-card {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: clamp(42px, 5vw, 86px) clamp(26px, 6vw, 96px) !important;

    display: grid !important;
    grid-template-columns: minmax(0, .72fr) minmax(260px, .28fr) !important;
    align-content: center !important;
    gap: clamp(26px, 5vw, 80px) !important;

    border-radius: 0 !important;
    border-top: 1px solid rgba(216,171,78,.34) !important;
    border-bottom: 1px solid rgba(216,171,78,.34) !important;
    border-left: 0 !important;
    border-right: 0 !important;

    background:
        radial-gradient(circle at 82% 18%, rgba(216,171,78,.38), transparent 28%),
        radial-gradient(circle at 12% 86%, rgba(13,119,111,.16), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #fff8df 48%, #ecd38b 100%) !important;

    box-shadow:
        0 50px 120px rgba(12,20,33,.26),
        inset 0 1px 0 rgba(255,255,255,.72) !important;

    transform-style: preserve-3d !important;
    transform-origin: center center !important;
    will-change: transform, opacity !important;
    overflow: hidden !important;
}

.services[data-scroll-cards="true"] .service-card::before {
    opacity: 1 !important;
    background:
        linear-gradient(120deg, rgba(255,255,255,.52), transparent 32%),
        linear-gradient(315deg, rgba(12,20,33,.08), transparent 45%) !important;
}

.services[data-scroll-cards="true"] .service-card::after {
    left: clamp(26px, 6vw, 96px) !important;
    right: clamp(26px, 6vw, 96px) !important;
    bottom: 42px !important;
    height: 5px !important;
    background: linear-gradient(90deg, transparent, var(--gold), var(--teal), transparent) !important;
}

.services[data-scroll-cards="true"] .service-card__number {
    top: 34px !important;
    right: clamp(28px, 5vw, 90px) !important;
    font-size: clamp(82px, 12vw, 180px) !important;
    opacity: .28 !important;
}

.services[data-scroll-cards="true"] .service-card__icon {
    width: clamp(82px, 8vw, 132px) !important;
    height: clamp(82px, 8vw, 132px) !important;
    border-radius: 32px !important;
    font-size: clamp(42px, 5vw, 72px) !important;
}

.services[data-scroll-cards="true"] .service-card h3 {
    max-width: 840px !important;
    font-size: clamp(52px, 7vw, 104px) !important;
    line-height: .9 !important;
    letter-spacing: -.055em !important;
}

.services[data-scroll-cards="true"] .service-card p {
    max-width: 820px !important;
    font-size: clamp(19px, 1.8vw, 28px) !important;
    line-height: 1.45 !important;
}

.services[data-scroll-cards="true"] .service-card a {
    margin-top: 10px !important;
    font-size: 20px !important;
}

/* mobile */
@media (max-width: 760px) {
    .services[data-scroll-cards="true"] {
        padding: 70px 0 !important;
        perspective: 1100px !important;
    }

    .services[data-scroll-cards="true"] .section-heading {
        width: calc(100vw - 28px) !important;
    }

    .services[data-scroll-cards="true"] .service-grid {
        height: 520px !important;
        min-height: 520px !important;
        perspective: 1100px !important;
    }

    .services[data-scroll-cards="true"] .service-card {
        width: 100vw !important;
        height: 520px !important;
        padding: 34px 20px !important;
        grid-template-columns: 1fr !important;
        align-content: center !important;
        gap: 12px !important;
    }

    .services[data-scroll-cards="true"] .service-card__number {
        top: 18px !important;
        right: 18px !important;
        font-size: 92px !important;
        opacity: .23 !important;
    }

    .services[data-scroll-cards="true"] .service-card__icon {
        width: 74px !important;
        height: 74px !important;
        border-radius: 24px !important;
        font-size: 38px !important;
        margin-bottom: 10px !important;
    }

    .services[data-scroll-cards="true"] .service-card h3 {
        font-size: clamp(42px, 13vw, 62px) !important;
        line-height: .92 !important;
    }

    .services[data-scroll-cards="true"] .service-card p {
        font-size: 16.5px !important;
        line-height: 1.45 !important;
    }

    .services[data-scroll-cards="true"] .service-card a {
        font-size: 16px !important;
    }
}

/* =========================================================
   MOBILE HERO V2 - CENTERED PREMIUM COMPOSITION
   Put this at the very bottom of style.css
========================================================= */

@media (max-width: 760px) {
    .hero {
        position: relative !important;
        min-height: 100svh !important;
        display: grid !important;
        place-items: center !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: #08111d !important;
        isolation: isolate !important;
    }

    .hero__media {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        transform: none !important;
        animation: none !important;
        background: none !important;
    }

    .hero-slide {
        position: absolute !important;
        inset: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        background-size: cover !important;
        background-position: center 34% !important;
        filter: saturate(1.1) contrast(1.06) brightness(1.02) !important;
        transform: scale(1.02) !important;
        transition: opacity .7s ease, visibility .7s ease, transform 5.5s ease !important;
    }

    .hero-slide.is-active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1.065) !important;
    }

    .hero::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        pointer-events: none !important;
        background:
            radial-gradient(circle at 50% 34%, rgba(216, 171, 78, .16), transparent 34%),
            linear-gradient(
                180deg,
                rgba(8, 17, 29, .18) 0%,
                rgba(8, 17, 29, .22) 28%,
                rgba(8, 17, 29, .48) 66%,
                rgba(8, 17, 29, .82) 100%
            ) !important;
    }

    .hero::after {
        content: "" !important;
        position: absolute !important;
        z-index: 2 !important;
        left: 50% !important;
        bottom: 34px !important;
        width: min(210px, 58vw) !important;
        height: 2px !important;
        transform: translateX(-50%) !important;
        background: linear-gradient(90deg, transparent, var(--gold), transparent) !important;
        box-shadow: 0 0 22px rgba(216, 171, 78, .8) !important;
        opacity: .85 !important;
        mask-image: none !important;
    }

    .hero__texture,
    .hero__light,
    .hero__gold-path {
        display: none !important;
    }

    .hero__inner {
        position: relative !important;
        z-index: 4 !important;
        width: 100% !important;
        min-height: 100svh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 96px 16px 74px !important;
        text-align: center !important;
    }

    .hero__content {
        width: min(100%, 430px) !important;
        max-width: 430px !important;
        margin: 0 auto !important;
        padding: 22px 18px 18px !important;
        border-radius: 30px !important;
        box-shadow:
            0 28px 78px rgba(0, 0, 0, .28),
            inset 0 1px 0 rgba(255, 255, 255, .14) !important;
    }

    .hero__content::before {
        content: "" !important;
        display: block !important;
        width: 64px !important;
        height: 4px !important;
        margin: 0 auto 16px !important;
        border-radius: 999px !important;
        background: linear-gradient(90deg, var(--gold), var(--gold-2)) !important;
        box-shadow: 0 0 18px rgba(216, 171, 78, .75) !important;
    }

    .hero .section-kicker {
        justify-content: center !important;
        width: fit-content !important;
        max-width: 100% !important;
        margin: 0 auto 12px !important;
        padding: 8px 12px !important;
        border: 1px solid rgba(241, 209, 128, .28) !important;
        border-radius: 999px !important;
        color: #ffe8a6 !important;
        background: rgba(8, 17, 29, .32) !important;
        backdrop-filter: blur(10px) !important;
        font-size: 10.8px !important;
        line-height: 1.2 !important;
        letter-spacing: .085em !important;
        text-align: center !important;
        text-shadow: 0 2px 12px rgba(0, 0, 0, .5) !important;
    }

    .hero .section-kicker::before {
        display: none !important;
    }

    .hero h1 {
        max-width: 100% !important;
        margin: 0 auto 12px !important;
        color: #fff !important;
        font-size: clamp(39px, 11.5vw, 60px) !important;
        line-height: .92 !important;
        letter-spacing: -.06em !important;
        text-align: center !important;
        text-wrap: balance !important;
        text-shadow:
            0 5px 24px rgba(0, 0, 0, .55),
            0 1px 0 rgba(255, 255, 255, .08) !important;
    }

    .hero h1 .word {
        display: inline-block !important;
        overflow: visible !important;
    }

    .hero p {
        max-width: 100% !important;
        margin: 0 auto 18px !important;
        color: rgba(255, 255, 255, .86) !important;
        font-size: 15.5px !important;
        line-height: 1.48 !important;
        font-weight: 650 !important;
        text-align: center !important;
        text-shadow: 0 3px 15px rgba(0, 0, 0, .48) !important;
        display: block !important;
        overflow: visible !important;
        -webkit-line-clamp: initial !important;
        -webkit-box-orient: initial !important;
    }

    .hero__actions {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1.15fr .85fr !important;
        gap: 10px !important;
    }

    .hero__actions .btn {
        width: 100% !important;
        min-height: 54px !important;
        justify-content: center !important;
        border-radius: 18px !important;
        padding-inline: 12px !important;
        font-size: 14.5px !important;
        position: relative !important;
        z-index: 8 !important;
    }

    .hero__actions .btn--gold {
        color: #111827 !important;
        background: linear-gradient(135deg, #fff0b8 0%, #d8ab4e 56%, #9d6d1d 100%) !important;
        box-shadow:
            0 18px 44px rgba(216, 171, 78, .28),
            inset 0 1px 0 rgba(255, 255, 255, .42) !important;
    }

    .hero__actions .btn--light {
        color: #fff !important;
        background: rgba(255, 255, 255, .13) !important;
        border: 1px solid rgba(255, 255, 255, .22) !important;
        backdrop-filter: blur(12px) !important;
        box-shadow: 0 12px 32px rgba(0, 0, 0, .18) !important;
    }

    .hero__proof {
        width: min(100%, 430px) !important;
        max-width: 430px !important;
        margin: 0 auto !important;
        padding: 10px !important;
        border-radius: 24px !important;
        border: 1px solid rgba(255, 255, 255, .13) !important;
        background: rgba(8, 17, 29, .30) !important;
        backdrop-filter: blur(12px) saturate(120%) !important;
        box-shadow: 0 18px 46px rgba(0, 0, 0, .22) !important;
    }

    .hero__proof .lottie-icon,
    .hero__proof > span,
    .hero__proof h2 {
        display: none !important;
    }

    .hero__proof ol {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 7px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .hero__proof li {
        min-height: 58px !important;
        display: grid !important;
        place-items: center !important;
        grid-template-columns: 1fr !important;
        gap: 3px !important;
        padding: 8px 6px !important;
        border-radius: 17px !important;
        color: rgba(255, 255, 255, .78) !important;
        background: rgba(255, 255, 255, .075) !important;
        border: 1px solid rgba(255, 255, 255, .09) !important;
        font-size: 10.5px !important;
        line-height: 1.18 !important;
        text-align: center !important;
    }

    .hero__proof b {
        width: auto !important;
        height: auto !important;
        display: block !important;
        color: var(--gold-2) !important;
        background: transparent !important;
        font-size: 11px !important;
        line-height: 1 !important;
        font-weight: 950 !important;
    }

    .hero-dots {
        position: absolute !important;
        z-index: 9 !important;
        left: 50% !important;
        right: auto !important;
        bottom: 24px !important;
        top: auto !important;
        transform: translateX(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 8px 10px !important;
        border: 1px solid rgba(255, 255, 255, .15) !important;
        border-radius: 999px !important;
        background: rgba(8, 17, 29, .42) !important;
        backdrop-filter: blur(12px) !important;
        pointer-events: auto !important;
    }

    .hero-dots button {
        width: 24px !important;
        height: 5px !important;
        padding: 0 !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, .38) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transition: width .25s ease, background .25s ease, box-shadow .25s ease !important;
    }

    .hero-dots button.is-active {
        width: 42px !important;
        background: var(--gold) !important;
        box-shadow: 0 0 18px rgba(216, 171, 78, .82) !important;
    }
}

@media (max-width: 390px) {
    .hero__inner {
        padding: 88px 14px 68px !important;
    }

    .hero__content {
        padding: 18px 15px 15px !important;
        border-radius: 26px !important;
    }

    .hero h1 {
        font-size: clamp(35px, 11vw, 52px) !important;
    }

    .hero p {
        font-size: 14.5px !important;
        line-height: 1.42 !important;
    }

    .hero__actions {
        grid-template-columns: 1fr !important;
    }

    .hero__actions .btn {
        min-height: 51px !important;
    }

    .hero__proof {
        display: none !important;
    }
}

/* =========================================================
   FLOAT CONTACT + TO TOP APPEAR TOGETHER
========================================================= */

.float-contact,
.to-top {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(18px) scale(.94) !important;
    transition:
        opacity .24s ease,
        transform .24s ease,
        background .2s ease,
        box-shadow .2s ease !important;
}

.float-contact.is-visible,
.to-top.is-visible {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

.float-contact:not(.is-visible) .float-contact__options {
    pointer-events: none !important;
}

@media (max-width: 760px) {
    .float-contact {
        right: 18px !important;
        bottom: 88px !important;
    }

    .to-top {
        right: 26px !important;
        bottom: 22px !important;
    }
}

/* MOBILE HERO PROOF SHARPNESS FIX */
@media (max-width: 760px) {
    .hero__proof,
    .hero__proof *,
    .hero__proof li,
    .hero__proof b {
        transform: none !important;
        perspective: none !important;
        transform-style: flat !important;
        filter: none !important;
        backface-visibility: visible !important;
        -webkit-font-smoothing: antialiased !important;
        text-rendering: geometricPrecision !important;
    }

    .hero__proof li {
        color: rgba(255, 255, 255, .92) !important;
        text-shadow: none !important;
    }

    .hero__proof b {
        color: var(--gold-2) !important;
        opacity: 1 !important;
    }
}

/* REMOVE FOOTER DOT GRID */
.footer-premium::before,
.footer::before {
    display: none !important;
    content: none !important;
    background: none !important;
    background-image: none !important;
    opacity: 0 !important;
}