@font-face {
    font-display: swap;
    font-family: "Naked Power";
    font-style: normal;
    font-weight: 700;
    src: url("resources/fonts/Naked%20Power%20Bd.otf") format("opentype");
}

:root {
    --bg: #0D3F25;
    --bg-deep: #082f1b;
    --green: #165231;
    --surface: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.74);
    --gold: #DBBA00;
    --gold-deep: #A68D02;
    --highlight: #ffffff;
    --line: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#kezdolap,
#szolgaltatasaink,
#galeria,
#kapcsolat {
    scroll-margin-top: 105px;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: linear-gradient(145deg, var(--bg-deep) 0%, var(--green) 48%, var(--bg) 100%);
    color: var(--text);
    font-family: "Naked Power", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

a,
p,
li,
dd,
h1,
h2,
h3,
h4 {
    overflow-wrap: break-word;
}

:focus-visible {
    outline: 3px solid #ffe66a;
    outline-offset: 3px;
}

.ambient,
.grain {
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

.ambient {
    width: 28rem;
    height: 28rem;
    border-radius: 999px;
    filter: blur(42px);
    opacity: 0.45;
    animation: floatGlow 14s ease-in-out infinite alternate;
}

.ambient-one {
    top: 18%;
    left: -10rem;
    background: var(--gold);
}

.ambient-two {
    right: -12rem;
    bottom: 5%;
    background: var(--highlight);
    animation-delay: -5s;
}

.grain {
    inset: 0;
    opacity: 0.11;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 63, 37, 0.78);
    backdrop-filter: blur(18px);
    transition: background 220ms ease, box-shadow 220ms ease;
}

.navbar.is-scrolled {
    background: rgba(13, 63, 37, 0.9);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0;
    transition: padding 220ms ease;
}

.navbar.is-scrolled .nav-container {
    padding: 10px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
    transition: font-size 220ms ease;
}

.logo:hover,
.logo:focus,
.logo:visited {
    text-decoration: none;
}

.logo img {
    display: block;
    width: 62px;
    height: 62px;
    object-fit: contain;
    transition: width 220ms ease, height 220ms ease;
}

.navbar.is-scrolled .logo {
    font-size: 1.18rem;
}

.navbar.is-scrolled .logo img {
    width: 48px;
    height: 48px;
}

.logo-text {
    display: inline-flex;
    align-items: baseline;
}

.logo-gold {
    color: var(--gold);
}

.logo-white {
    color: white;
}

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

.nav-links a {
    position: relative;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(245, 247, 239, 0.82);
    font-size: 1.12rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease, min-height 220ms ease, padding 220ms ease, font-size 220ms ease;
}

.navbar.is-scrolled .nav-links a {
    min-height: 40px;
    padding: 0 16px;
    font-size: 1rem;
}

.nav-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(219, 186, 0, 0.4);
    background: rgba(219, 186, 0, 0.12);
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle span + span {
    margin-top: 6px;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 9rem max(20px, calc((100vw - 1180px) / 2)) 10rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.22) 42%, transparent 76%),
        url("resources/main/main_picture.png") center / cover no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V91 C1320 89.5 1200 89.5 1080 91 C960 92.5 840 92.5 720 91 C600 89.5 480 89.5 360 91 C240 92.5 120 92.5 0 91 Z' fill='white'/%3E%3C/svg%3E") top center / 100% 100% no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 0 H1440 V91 C1320 89.5 1200 89.5 1080 91 C960 92.5 840 92.5 720 91 C600 89.5 480 89.5 360 91 C240 92.5 120 92.5 0 91 Z' fill='white'/%3E%3C/svg%3E") top center / 100% 100% no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 100' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 91 C120 92.5 240 92.5 360 91 C480 89.5 600 89.5 720 91 C840 92.5 960 92.5 1080 91 C1200 89.5 1320 89.5 1440 91' fill='none' stroke='%230E3F25' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E") top center / 100% 100% no-repeat;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    margin-bottom: 7rem;
    padding: 1rem 0 2rem;
    text-align: left;
}

.eyebrow {
    margin: 0 0 1rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-content .eyebrow {
    color: #ffe66a;
}

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

h1 {
    max-width: 760px;
    margin-bottom: 1.35rem;
    font-size: clamp(3rem, 8vw, 6.7rem);
    line-height: 0.94;
    letter-spacing: 0;
}

.lead {
    max-width: 620px;
    margin-top: 1.35rem;
    color: #ffffff;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
    margin-top: 2.1rem;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .lead {
    position: relative;
    z-index: 1;
    text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.62);
}

.hero-content .lead {
    text-shadow:
        24px 2px 5px rgba(0, 0, 0, 0.78),
        12px 2px 2px rgba(8, 47, 27, 0.78);
}

.hero-content .eyebrow {
    text-shadow:
        11px 9px 7px rgba(0, 0, 0, 0.76),
        5px 5px 3px rgba(8, 47, 27, 0.76);
}

.hero-actions .button {
    position: relative;
    z-index: 1;
    min-height: 54px;
    border: 2px solid transparent;
    padding: 0 24px;
    text-shadow: none;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.28);
}

.hero-actions .button:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.34);
}

.hero-actions .button.primary {
    border-color: rgba(255, 240, 160, 0.68);
    background: #cfb000;
    color: #082f1b;
}

.hero-actions .button.secondary {
    border-color: rgba(255, 255, 255, 0.68);
    background: rgba(8, 47, 27, 0.86);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.hero-actions .button.primary:hover {
    background: #dbba00;
}

.hero-actions .button.secondary:hover {
    border-color: #ffe66a;
    background: #0D3F25;
    color: #ffe66a;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button.primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: var(--bg);
    box-shadow: 0 18px 48px rgba(219, 186, 0, 0.28);
}

.button.secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
    color: var(--text);
}

.hero-visual {
    display: none;
}

.sun {
    position: absolute;
    top: 44px;
    right: 74px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, #ffffff 0 16%, var(--gold) 17% 62%, rgba(219, 186, 0, 0) 63%);
    box-shadow: 0 0 70px rgba(219, 186, 0, 0.55);
    animation: sunPulse 5s ease-in-out infinite alternate;
}

.garden-scene {
    position: absolute;
    right: 0;
    bottom: 42px;
    left: 0;
    height: 390px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, rgba(13, 63, 37, 0.25) 0 45%, rgba(22, 82, 49, 0.92) 46% 100%);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.garden-scene::before,
.garden-scene::after {
    content: "";
    position: absolute;
    right: -10%;
    left: -10%;
    height: 140px;
    border-radius: 50% 50% 0 0;
}

.garden-scene::before {
    bottom: 120px;
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(-2deg);
}

.garden-scene::after {
    bottom: -18px;
    background:
        repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.14) 0 12px, rgba(255, 255, 255, 0) 12px 42px),
        linear-gradient(135deg, #165231, #0D3F25);
}

.tree {
    position: absolute;
    bottom: 96px;
    z-index: 2;
    width: 112px;
    height: 170px;
}

.tree::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 18px;
    height: 86px;
    border-radius: 8px;
    background: #A68D02;
    transform: translateX(-50%);
}

.tree::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 112px;
    height: 112px;
    border-radius: 56% 44% 52% 48%;
    background: linear-gradient(135deg, #ffffff, #165231 28%, #0D3F25);
    box-shadow:
        -28px 46px 0 -18px #165231,
        34px 42px 0 -16px #0D3F25;
    transform: translateX(-50%);
    animation: leafSway 4s ease-in-out infinite alternate;
}

.tree-left {
    left: 44px;
}

.tree-right {
    right: 44px;
    transform: scale(0.82);
    transform-origin: bottom right;
}

.lawn-stripe {
    position: absolute;
    bottom: 24px;
    z-index: 3;
    width: 44%;
    height: 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(-8deg);
}

.stripe-one {
    left: 5%;
}

.stripe-two {
    right: 8%;
    bottom: 66px;
    width: 36%;
}

.stripe-three {
    left: 27%;
    bottom: 108px;
    width: 46%;
}

.flower-bed {
    position: absolute;
    right: 18%;
    bottom: 74px;
    z-index: 4;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.flower-bed span {
    display: block;
    width: 16px;
    height: 58px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
    box-shadow: 0 -16px 0 -5px #ffffff;
    animation: flowerBob 3s ease-in-out infinite alternate;
}

.flower-bed span:nth-child(2),
.flower-bed span:nth-child(4) {
    height: 44px;
    animation-delay: -1s;
}

.service-badge {
    position: absolute;
    display: grid;
    min-width: 104px;
    min-height: 52px;
    padding: 0 18px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(13, 63, 37, 0.78);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
    color: var(--gold);
    font-weight: 900;
    backdrop-filter: blur(16px);
}

.badge-one {
    top: 16%;
    left: 4%;
    animation: popFloat 5s ease-in-out infinite;
}

.badge-two {
    bottom: 16%;
    right: 4%;
    color: var(--highlight);
    animation: popFloat 6s ease-in-out infinite reverse;
}

.content {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 5rem 0 7rem;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

@media (min-width: 981px) {
    #szolgaltatasaink .section-heading {
        max-width: 1000px;
    }
}

.legal-panel {
    padding: clamp(24px, 5vw, 44px);
    border: 1px solid rgba(70, 204, 104, 0.34);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 48%),
        rgba(8, 47, 27, 0.72);
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-panel h3 {
    margin-bottom: 1.4rem;
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1;
}

.legal-panel + .legal-panel {
    margin-top: clamp(20px, 4vw, 34px);
}

.legal-table-wrap {
    overflow-x: auto;
    margin: 1.4rem 0;
    border: 1px solid rgba(113, 216, 138, 0.2);
    border-radius: 10px;
}

.legal-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: var(--text);
}

.legal-table th,
.legal-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(113, 216, 138, 0.16);
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
}

.legal-table th {
    background: rgba(13, 60, 35, 0.82);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-table tbody tr:last-child td {
    border-bottom: 0;
}

.legal-table td {
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.legal-table strong {
    color: #ffffff;
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 0.75rem clamp(1rem, 4vw, 2rem);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 48%),
        var(--announcement-bg, #0d3c23);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    transition: transform 220ms ease, opacity 220ms ease;
}

.announcement-bar.is-hidden-on-scroll {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

body.has-announcement-bar .navbar {
    top: var(--announcement-height, 0px);
}

body.has-announcement-bar {
    padding-top: var(--announcement-height, 0px);
}

body.has-announcement-bar.announcement-bar-hidden .navbar {
    top: 0;
}

body.has-announcement-bar.announcement-bar-hidden {
    padding-top: 0;
}

.announcement-bar-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    width: min(100%, 1120px);
    margin: 0 auto;
}

.announcement-bar-logo {
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.12);
}

.announcement-bar-copy {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
    color: var(--announcement-text, #ffffff);
}

.announcement-bar-copy strong {
    font-size: clamp(1.05rem, 2.4vw, 1.45rem);
    line-height: 1.1;
}

.announcement-bar-copy span {
    color: inherit;
    opacity: 0.82;
    line-height: 1.4;
}

.announcement-bar-close {
    display: grid;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    place-items: center;
    background: rgba(0, 0, 0, 0.24);
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.announcement-bar-close:hover {
    background: rgba(0, 0, 0, 0.42);
    transform: translateY(-1px);
}

.legal-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 2rem;
}

.legal-details div {
    padding: 16px 18px;
    border: 1px solid rgba(113, 216, 138, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.legal-details dt {
    margin-bottom: 0.25rem;
    color: #71d88a;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-details dd {
    margin: 0;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.4;
}

.legal-details a,
.legal-copy a {
    color: inherit;
}

.legal-copy {
    display: grid;
    gap: 1rem;
    max-width: 900px;
}

.legal-copy p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.65;
}

.legal-copy .legal-download {
    color: #ffe66a;
    font-weight: 700;
    text-underline-offset: 3px;
}

.legal-section {
    margin-top: 2.2rem;
    padding-top: 2.2rem;
    border-top: 1px solid rgba(113, 216, 138, 0.22);
}

.legal-section .legal-details {
    margin-bottom: 0;
}

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

.maintenance-price-highlight {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: clamp(12px, 2vw, 24px);
    align-items: end;
    margin: 0 0 1.4rem;
    min-height: clamp(150px, 18vw, 230px);
    padding: clamp(58px, 8vw, 92px) clamp(22px, 4vw, 42px) clamp(20px, 3vw, 32px);
    overflow: hidden;
    border: 1px solid rgba(219, 186, 0, 0.42);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(8, 47, 27, 0.72), rgba(8, 47, 27, 0.34) 48%, rgba(8, 47, 27, 0.6)),
        url("resources/service_opening/opening.jpg") center 42% / cover no-repeat;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
}

.maintenance-price-highlight::before {
    content: "";
    position: absolute;
    right: -4%;
    bottom: -22%;
    left: -4%;
    z-index: 0;
    height: 72%;
    background:
        linear-gradient(92deg, rgba(29, 87, 56, 0.98), rgba(29, 87, 56, 0.92)),
        #1D5738;
    transform: rotate(3deg);
    transform-origin: left bottom;
}

.maintenance-price-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(0.75rem, 1.4vw, 1.2rem);
    transform: rotate(2.5deg);
    transform-origin: left center;
}

.maintenance-price-copy span {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.96rem, 1.8vw, 1.28rem);
    line-height: 1.05;
    text-transform: uppercase;
    transform: translateY(-0.35rem);
}

.maintenance-price-copy strong {
    color: var(--gold);
    font-size: clamp(2.2rem, 6.4vw, 5.2rem);
    line-height: 0.9;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.48);
    text-transform: uppercase;
}

.maintenance-price-highlight p {
    position: relative;
    z-index: 1;
    margin: 0 0 0.2rem;
    color: var(--gold);
    font-size: clamp(0.82rem, 1.25vw, 1rem);
    font-weight: 800;
    line-height: 1.18;
    transform: rotate(2.5deg);
    transform-origin: left center;
}

.pricing-table-title {
    display: block;
    width: calc(100% - 0.35rem);
    margin: 0 0 1rem 0.35rem;
    color: var(--text);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1;
    text-align: left;
}

.pricing-table-wrap {
    position: relative;
    width: 100%;
    margin: 0 0 2.5rem;
    padding: 12px 12px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
    scrollbar-color: rgba(113, 216, 138, 0.7) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.pricing-table-wrap::-webkit-scrollbar {
    height: 12px;
}

.pricing-table-wrap::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.pricing-table-wrap::-webkit-scrollbar-thumb {
    border: 3px solid transparent;
    border-radius: 999px;
    background: rgba(113, 216, 138, 0.72);
    background-clip: padding-box;
}

.pricing-table {
    display: grid;
    grid-template-columns:
        minmax(320px, 1.55fr)
        14px
        minmax(210px, 0.85fr)
        14px
        minmax(235px, 1fr)
        14px
        minmax(225px, 0.95fr);
    width: max(100%, 1032px);
    overflow: hidden;
    border-radius: 8px;
    background: var(--green);
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.pricing-table * {
    overflow-wrap: normal;
}

.pricing-scroll-hint {
    display: none;
}

@keyframes pricing-scroll-nudge {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-7px);
    }
}

.pricing-label-column,
.pricing-package,
.pricing-divider {
    min-width: 0;
}

.pricing-label-column,
.pricing-package {
    display: flex;
    flex-direction: column;
}

.pricing-label-column,
.pricing-basic,
.pricing-premium {
    background: #0e3f25;
}

.pricing-standard {
    background: #174924;
}

.pricing-divider-basic {
    background: linear-gradient(180deg, #71d88a, #3fbf61);
}

.pricing-divider-standard {
    background: linear-gradient(180deg, #ffe76a, var(--gold));
}

.pricing-divider-premium {
    background: linear-gradient(180deg, #78c8ff, #3dacfd);
}

.pricing-package-header {
    height: 108px;
    position: relative;
    padding-left: 18px;
}

.pricing-logo-block {
    height: 108px;
    flex: 0 0 108px;
}

.pricing-package-title {
    position: absolute;
    top: 42px;
    left: 18px;
    color: #ffffff;
    font-size: 37px;
    line-height: 0.78;
}

.pricing-package-subtitle {
    position: absolute;
    top: 72px;
    left: 18px;
    color: #ffffff;
    font-size: 19px;
    line-height: 0.9;
}

.pricing-premium-header {
    padding-left: 17px;
    padding-right: 10px;
}

.pricing-popular-badge {
    position: absolute;
    top: 10px;
    left: 17px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 6px;
    border: 2px solid rgba(219, 186, 0, 0.82);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(219, 186, 0, 0.92), rgba(255, 230, 100, 0.78)),
        rgba(255, 255, 255, 0.16);
    box-shadow:
        0 0 0 3px rgba(219, 186, 0, 0.16),
        0 10px 26px rgba(219, 186, 0, 0.32);
    color: #ffffff;
    font-size: 10px;
    line-height: 0.88;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
}

.pricing-popular-icon {
    display: grid;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    place-items: center;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.38);
    color: var(--bg);
    font-size: 10px;
    line-height: 1;
}

.pricing-row {
    display: flex;
    height: 22px;
    align-items: center;
    color: #ffffff;
}

.pricing-label-column .pricing-row,
.pricing-basic .pricing-row,
.pricing-premium .pricing-row {
    background-color: #0e3f25;
}

.pricing-label-column .pricing-row:nth-child(even),
.pricing-basic .pricing-row:nth-child(even),
.pricing-premium .pricing-row:nth-child(even) {
    background-color: #1d5738;
}

.pricing-standard .pricing-row {
    background-color: #174924;
}

.pricing-standard .pricing-row:nth-child(even) {
    background-color: #285c31;
}

.pricing-frequency {
    height: 43px;
}

.pricing-label {
    justify-content: flex-start;
    padding-right: 10px;
    padding-left: 18px;
    font-size: 18px;
    line-height: 1.05;
    text-align: left;
}

.pricing-frequency.pricing-label {
    font-size: 20px;
}

.pricing-value {
    justify-content: center;
    padding: 0 8px;
    font-size: 22px;
    line-height: 1;
    text-align: center;
}

.pricing-icon {
    justify-content: center;
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.pricing-check {
    color: #ffffff;
}

.pricing-cross {
    color: #c5d4cc;
}

.pricing-price,
.pricing-price-label {
    font-size: 16px;
    line-height: 1.05;
}

.pricing-price {
    justify-content: center;
    padding: 0 6px;
    text-align: center;
}

.pricing-callout {
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    margin: 0 0 2.5rem;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.occasional-price-banner {
    position: relative;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin: -1rem 0 2.5rem;
    padding: 18px 22px 18px 28px;
    overflow: hidden;
    border: 1px solid rgba(219, 186, 0, 0.38);
    border-radius: 8px;
    background:
        linear-gradient(110deg, rgba(219, 186, 0, 0.14), transparent 48%),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.occasional-price-banner::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    background: var(--gold);
}

.occasional-price-text {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.occasional-price-label {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.occasional-price-text strong {
    color: #ffffff;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1;
}

.occasional-price-extra {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid rgba(219, 186, 0, 0.38);
    border-radius: 999px;
    background: rgba(219, 186, 0, 0.12);
    color: #ffe66a;
    font-size: 1rem;
    white-space: nowrap;
}

.package-details-toggle-wrap {
    display: flex;
    justify-content: center;
    margin: -0.75rem 0 1.4rem;
}

.package-details-toggle {
    min-width: min(420px, 100%);
    border: 1px solid rgba(255, 230, 106, 0.48);
    box-shadow:
        0 16px 42px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    font-size: 1.08rem;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.package-details-toggle:hover {
    box-shadow:
        0 20px 52px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(219, 186, 0, 0.12);
}

.package-details-toggle::after {
    content: "+";
    display: grid;
    width: 24px;
    height: 24px;
    margin-left: 12px;
    place-items: center;
    border-radius: 999px;
    background: rgba(8, 47, 27, 0.18);
    font-size: 1.15rem;
    line-height: 1;
}

.package-details-toggle[aria-expanded="true"]::after {
    content: "−";
}

.package-details {
    display: grid;
    grid-template-rows: 0fr;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(-8px);
    transition: grid-template-rows 420ms ease, opacity 280ms ease, transform 320ms ease;
}

.package-details.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.package-details-inner {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border: 0 solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 44%),
        rgba(8, 47, 27, 0.9);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
    padding: 0 28px;
    backdrop-filter: blur(18px);
    transition: padding 360ms ease, border-width 360ms ease;
}

.package-details.is-open .package-details-inner {
    padding: 32px;
    border-width: 1px;
}

.package-details-inner > h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
}

.package-details p,
.package-details li {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.package-details-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.package-details [data-modal-close] {
    display: none;
}

.pricing-callout-text {
    max-width: 720px;
    text-align: center;
}

.pricing-callout h3 {
    margin-bottom: 0.6rem;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1;
}

.pricing-callout p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

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

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(219, 186, 0, 0.18), transparent 42%);
    opacity: 0;
    transition: opacity 240ms ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(219, 186, 0, 0.42);
    background: rgba(255, 255, 255, 0.1);
}

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

.feature-icon {
    position: relative;
    z-index: 1;
    display: grid;
    flex: 0 0 auto;
    width: 100%;
    min-height: 190px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.18);
}

.feature-icon img {
    display: block;
    width: calc(100% - 32px);
    height: 158px;
    object-fit: contain;
}

.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 1;
    width: 100%;
}

.feature-card h3 {
    margin-bottom: 0.65rem;
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1.1;
    text-align: center;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
    text-align: center;
}

.other-service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 1.4rem;
}

.other-service-card {
    position: relative;
    display: flex;
    flex: 1 1 300px;
    min-height: 168px;
    max-width: calc((100% - 28px) / 3);
    flex-direction: column;
    align-items: center;
    padding: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.other-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(219, 186, 0, 0.12), transparent 48%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.other-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(219, 186, 0, 0.34);
    background: rgba(255, 255, 255, 0.1);
}

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

.other-service-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    min-height: 104px;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
}

.other-service-icon img {
    display: block;
    width: calc(100% - 22px);
    height: 82px;
    object-fit: contain;
}

.other-service-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.35;
    text-align: center;
}

.building-service {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    margin-top: 1.4rem;
    padding: clamp(22px, 4vw, 38px);
    overflow: hidden;
    border: 1px solid rgba(219, 186, 0, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(219, 186, 0, 0.12), transparent 48%),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.building-service::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--gold);
}

.building-service-icon {
    position: relative;
    display: grid;
    min-height: 190px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
}

.building-service-icon img {
    display: block;
    width: min(72%, 180px);
    height: 160px;
    object-fit: contain;
}

.building-service-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.building-service-content .eyebrow {
    margin-bottom: 0.75rem;
}

.building-service-content h2 {
    margin-bottom: 0.8rem;
    color: var(--text);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

.building-service-content > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.building-service-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.36fr);
}

.building-service-reverse .building-service-content {
    order: -1;
}

.waste-service {
    border-color: rgba(113, 216, 138, 0.34);
    background:
        linear-gradient(240deg, rgba(113, 216, 138, 0.12), transparent 48%),
        rgba(255, 255, 255, 0.07);
}

.waste-service::before {
    background: #71d88a;
}

.waste-service-mark {
    display: grid;
    min-height: 190px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14);
    color: #71d88a;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
}

.waste-service-mark img {
    display: block;
    width: min(72%, 180px);
    height: 160px;
    object-fit: contain;
}

.gallery-section {
    margin-top: 4rem;
}

.gallery-heading {
    max-width: 720px;
    margin-bottom: 1.6rem;
}

.gallery-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

.gallery-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 14px;
    align-items: center;
}

.gallery-viewport {
    height: clamp(320px, 46vw, 540px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 320ms ease;
}

.gallery-item {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: clamp(10px, 2vw, 18px);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    transform-origin: center;
    transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    filter: saturate(1.08);
}

.gallery-control {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 2.4rem;
    line-height: 1;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.gallery-control:hover {
    transform: translateY(-2px);
    border-color: rgba(219, 186, 0, 0.42);
    background: rgba(219, 186, 0, 0.14);
}

.comparison-section {
    margin-top: 4rem;
}

.comparison-heading {
    max-width: 720px;
    margin-bottom: 1.6rem;
}

.comparison-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

.image-comparison {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 620px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg-deep);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.comparison-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-after-wrap {
    position: absolute;
    inset: 0;
    width: var(--comparison-position);
    overflow: hidden;
}

.comparison-after {
    width: calc(100vw - 40px);
    max-width: 1180px;
}

.comparison-label {
    position: absolute;
    top: 18px;
    z-index: 3;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(8, 47, 27, 0.78);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    color: #ffffff;
    font-size: 0.86rem;
    backdrop-filter: blur(10px);
}

.comparison-label-before {
    right: 18px;
}

.comparison-label-after {
    left: 18px;
    color: #ffe66a;
}

.comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--comparison-position);
    z-index: 3;
    width: 3px;
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(8, 47, 27, 0.24), 0 0 18px rgba(0, 0, 0, 0.28);
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 3px solid #ffffff;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
    color: var(--bg-deep);
    font-size: 0.95rem;
    transform: translate(-50%, -50%);
}

.comparison-range {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.image-comparison:focus-within {
    outline: 3px solid rgba(219, 186, 0, 0.52);
    outline-offset: 4px;
}

.location-section {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-top: 4rem;
    padding: 22px 26px;
    border: 1px solid rgba(113, 216, 138, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(110deg, rgba(113, 216, 138, 0.11), transparent 48%),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.location-icon {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.location-icon img {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.location-content .eyebrow {
    margin-bottom: 0.5rem;
}

.location-content h2 {
    margin-bottom: 0.45rem;
    color: var(--text);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
}

.location-content > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    column-gap: clamp(28px, 6vw, 80px);
    row-gap: 24px;
    align-items: center;
    margin-top: 4rem;
    padding: clamp(24px, 5vw, 46px);
    border: 1px solid rgba(219, 186, 0, 0.32);
    border-radius: 8px;
    background:
        linear-gradient(125deg, rgba(219, 186, 0, 0.1), transparent 48%),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.contact-section-heading .eyebrow {
    margin-bottom: 0.7rem;
}

.contact-section-heading h2 {
    margin-bottom: 0;
    color: var(--text);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1;
}

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

.contact-option {
    display: flex;
    min-width: 0;
    min-height: 112px;
    gap: 14px;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 47, 27, 0.62);
    color: var(--text);
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contact-option-icon {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.contact-option-icon img {
    display: block;
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.contact-option-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-option:hover {
    transform: translateY(-3px);
    border-color: rgba(219, 186, 0, 0.52);
    background: rgba(13, 63, 37, 0.82);
}

.contact-option-label {
    margin-bottom: 8px;
    color: #ffe66a;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-option strong {
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.contact-form {
    display: grid;
    grid-column: 1 / -1;
    gap: 18px;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 47, 27, 0.62);
}

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

.contact-field {
    display: grid;
    min-width: 0;
    gap: 8px;
    color: #ffe66a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-field-wide {
    grid-column: 1 / -1;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font: inherit;
    font-size: 1rem;
    letter-spacing: normal;
    outline: none;
    text-transform: none;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-field input {
    min-height: 50px;
    padding: 10px 14px;
}

.contact-field textarea {
    min-height: 130px;
    padding: 14px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(255, 230, 106, 0.72);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(219, 186, 0, 0.14);
}

.contact-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.contact-consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 1px;
    accent-color: var(--gold);
}

.contact-consent a {
    color: #ffe66a;
}

.contact-form-message {
    margin: 0;
    padding: 12px 14px;
    border: 1px solid;
    border-radius: 6px;
    font-size: 0.95rem;
}

.contact-form-error {
    border-color: rgba(255, 120, 120, 0.5);
    background: rgba(130, 25, 25, 0.28);
    color: #ffd0d0;
}

.contact-form-success {
    border-color: rgba(113, 216, 138, 0.5);
    background: rgba(20, 105, 55, 0.28);
    color: #c8ffd5;
}

.contact-submit {
    justify-self: start;
    border: 0;
    cursor: pointer;
}

.newsletter-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
    margin-top: 4rem;
    padding: clamp(24px, 5vw, 46px);
    border: 1px solid rgba(113, 216, 138, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(110deg, rgba(113, 216, 138, 0.12), transparent 52%),
        rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.newsletter-copy .eyebrow {
    margin-bottom: 0.7rem;
}

.newsletter-copy h2 {
    margin-bottom: 0.8rem;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.newsletter-copy > p:last-child {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.newsletter-form {
    display: grid;
    gap: 16px;
}

.newsletter-field {
    display: grid;
    gap: 8px;
    color: #ffe66a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-field input {
    width: 100%;
    min-height: 52px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(8, 47, 27, 0.62);
    color: var(--text);
    font: inherit;
    font-size: 1rem;
    letter-spacing: normal;
    outline: none;
    text-transform: none;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.newsletter-field input:focus {
    border-color: rgba(255, 230, 106, 0.72);
    background: rgba(8, 47, 27, 0.82);
    box-shadow: 0 0 0 3px rgba(219, 186, 0, 0.14);
}

.newsletter-submit {
    justify-self: start;
    border: 0;
    cursor: pointer;
}

.unsubscribe-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    min-height: 430px;
    border-color: rgba(219, 186, 0, 0.34);
    background:
        radial-gradient(circle at 12% 20%, rgba(219, 186, 0, 0.14), transparent 34%),
        linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 55%),
        rgba(8, 47, 27, 0.76);
}

.unsubscribe-copy {
    max-width: 540px;
}

.unsubscribe-card {
    display: grid;
    gap: 18px;
    justify-items: center;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 70%),
        rgba(8, 47, 27, 0.82);
    box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    text-align: center;
}

.unsubscribe-status-icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border: 1px solid rgba(255, 230, 106, 0.48);
    border-radius: 50%;
    background: rgba(219, 186, 0, 0.14);
    color: #ffe66a;
    font-size: 2rem;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.unsubscribe-status-error {
    border-color: rgba(255, 120, 120, 0.5);
    background: rgba(130, 25, 25, 0.28);
    color: #ffd0d0;
}

.unsubscribe-card h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
}

.unsubscribe-card-copy {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.unsubscribe-card .newsletter-form,
.unsubscribe-card .contact-form-message {
    width: 100%;
}

.unsubscribe-card .newsletter-submit {
    width: 100%;
    min-height: 64px;
    justify-content: center;
    font-size: 1.08rem;
}

.unsubscribe-back-link {
    color: var(--muted);
    font-size: 0.92rem;
    text-decoration-color: rgba(255, 255, 255, 0.34);
    text-underline-offset: 4px;
    transition: color 180ms ease;
}

.unsubscribe-back-link:hover {
    color: #ffe66a;
}

.site-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    place-items: center;
    padding: 24px;
}

.site-modal.is-open {
    display: grid;
}

.site-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 47, 27, 0.76);
    backdrop-filter: blur(10px);
}

.site-modal-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(86vh, 920px);
    overflow-y: auto;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 63, 37, 0.94);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.site-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 1.8rem;
    line-height: 1;
}

.site-modal-panel h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1;
}

.site-modal-panel p:not(.eyebrow),
.site-modal-panel li {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.package-modal-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.package-details-header {
    max-width: none;
    margin-bottom: 1.8rem;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(70, 204, 104, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 48%),
        rgba(8, 47, 27, 0.72);
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.package-details-header .eyebrow {
    margin-bottom: 0.55rem;
}

.package-details-header h2 {
    margin-bottom: 0.65rem;
    color: var(--text);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1;
}

.package-details-header > p:last-child {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.55;
}

.package-modal-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(13, 63, 37, 0.58);
    box-shadow:
        0 16px 46px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.package-modal-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.24);
}

.package-modal-card h3 {
    margin-bottom: 0.22rem;
    color: var(--text);
    font-size: 1.45rem;
    line-height: 1.08;
}

.package-modal-card h4 {
    margin: 1.4rem 0 0.65rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffe66a;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.package-card-header {
    display: flex;
    gap: 12px;
    align-items: center;
    min-height: 52px;
    margin-bottom: 1rem;
}

.package-card-header > div {
    min-width: 0;
}

.package-tier-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1;
}

.package-modal-card ul {
    display: grid;
    gap: 0.32rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.package-modal-card li + li,
.package-modal-card p + p {
    margin-top: 0.35rem;
}

.package-note {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

.package-feature-list {
    grid-template-columns: 1fr;
}

.package-feature-list li,
.package-contact-list li {
    position: relative;
    padding-left: 1.35rem;
}

.package-feature-list li::before,
.package-contact-list li::before {
    content: "\2713";
    position: absolute;
    top: 0;
    left: 0;
    color: #71d88a;
    font-weight: 800;
}

.package-feature-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
}

.package-prices {
    display: grid;
    gap: 8px;
    margin-top: 1rem;
    padding-top: 0;
}

.package-prices li {
    display: grid;
    grid-template-columns: minmax(80px, 0.7fr) minmax(140px, 1fr);
    gap: 2px 12px;
    align-items: center;
    padding: 11px 13px;
    border: 1px solid rgba(219, 186, 0, 0.26);
    border-radius: 8px;
    background: rgba(219, 186, 0, 0.08);
    color: #ffffff;
    line-height: 1.25;
}

.package-prices li span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
}

.package-prices li strong {
    color: #ffffff;
    font-size: 1.03rem;
    text-align: right;
}

.package-prices li small {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
}

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

.package-price-columns li {
    grid-template-columns: 1fr;
}

.package-price-columns li strong {
    text-align: left;
}

.package-rate,
.package-popular {
    color: #ffffff;
}

.package-popular {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 10px 14px;
    border: 1px solid rgba(61, 172, 253, 0.48);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(61, 172, 253, 0.26), rgba(219, 186, 0, 0.16)),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 34px rgba(61, 172, 253, 0.18);
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.1;
}

.package-rate {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 0.75rem;
    padding: 10px 12px;
    border: 1px solid rgba(219, 186, 0, 0.32);
    border-radius: 8px;
    background: rgba(219, 186, 0, 0.12);
    color: #ffffff;
}

.package-rate span {
    color: var(--muted);
}

.package-rate strong {
    color: #ffe66a;
    text-align: right;
}

.package-warning {
    margin-top: 0.75rem;
    padding: 10px 12px;
    border: 1px solid rgba(255, 110, 110, 0.34);
    border-radius: 8px;
    background: rgba(255, 76, 76, 0.11);
    color: #ffd6d6;
    line-height: 1.35;
}

.package-warning-group {
    display: grid;
    gap: 8px;
    margin-top: 0.75rem;
}

.package-warning-group .package-warning {
    margin-top: 0;
}

.package-contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px !important;
}

.package-contact-list li {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    padding: 72px 22px 22px;
    border: 1px solid rgba(113, 216, 138, 0.24);
    border-radius: 12px;
    background:
        radial-gradient(circle at 20% 0%, rgba(113, 216, 138, 0.16), transparent 46%),
        rgba(255, 255, 255, 0.055);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.03rem;
    line-height: 1.45;
    text-align: center;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.package-contact-list li::before {
    display: none;
}

.package-contact-icon {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(113, 216, 138, 0.42);
    border-radius: 10px;
    background-color: rgba(113, 216, 138, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
}

.package-contact-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: auto;
    height: auto;
    max-width: 32px;
    max-height: 32px;
    transform: translate(-50%, -50%);
}

.package-contact-list li::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #46cc68, rgba(113, 216, 138, 0.08));
}

.package-contact-list li strong {
    display: block;
    margin-bottom: 0.28rem;
    color: #ffffff;
    font-size: 1.12rem;
}

.package-contact-list li:hover {
    transform: translateY(-5px);
    border-color: rgba(113, 216, 138, 0.58);
    background:
        radial-gradient(circle at 20% 0%, rgba(113, 216, 138, 0.25), transparent 52%),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        0 24px 44px rgba(0, 0, 0, 0.24),
        0 0 0 3px rgba(70, 204, 104, 0.08);
}

.package-basic {
    border-color: rgba(70, 204, 104, 0.42);
    grid-column: span 1;
}

.package-basic::before {
    background: #46cc68;
}

.package-standard {
    border-color: rgba(219, 186, 0, 0.48);
    grid-column: span 2;
}

.package-standard::before {
    background: var(--gold);
}

.package-premium {
    border-color: rgba(61, 172, 253, 0.5);
    background:
        linear-gradient(145deg, rgba(61, 172, 253, 0.13), rgba(255, 255, 255, 0.035)),
        rgba(13, 63, 37, 0.64);
}

.package-premium::before {
    background: #3dacfd;
}

.package-premium,
.package-custom,
.package-occasional,
.package-contact {
    grid-column: span 3;
}

.package-contact {
    padding: clamp(28px, 4vw, 42px);
    border-color: rgba(70, 204, 104, 0.34);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 48%),
        rgba(8, 47, 27, 0.72);
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.package-contact::before {
    display: none;
}

.package-contact .package-card-header {
    display: block;
    min-height: 0;
    margin-bottom: 1.4rem;
}

.package-contact .package-card-header h3 {
    max-width: 880px;
    margin-bottom: 0;
    font-size: clamp(2.2rem, 5vw, 3.35rem);
    line-height: 0.98;
}

.package-custom {
    padding: clamp(28px, 4vw, 42px);
    border-color: rgba(70, 204, 104, 0.34);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 48%),
        rgba(8, 47, 27, 0.72);
    box-shadow:
        0 18px 52px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.package-custom::before {
    display: none;
}

.package-custom .package-card-header {
    display: block;
    min-height: 0;
    margin-bottom: 1rem;
}

.package-custom .package-tier-icon {
    display: none;
}

.package-custom .package-card-header h3 {
    max-width: 880px;
    margin-bottom: 0.65rem;
    font-size: clamp(2.2rem, 5vw, 3.35rem);
    line-height: 0.98;
}

.package-custom .package-note {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.16rem);
    font-weight: 700;
    line-height: 1.45;
}

.package-custom > p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.55;
}

.package-occasional::before {
    background: #a97852;
}

.site-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.8rem;
}

.site-footer {
    position: relative;
    border-top: 1px solid rgba(219, 186, 0, 0.24);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 45%),
        #082f1b;
    box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.18);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(230px, 1fr) auto minmax(190px, 0.65fr);
    gap: 36px;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 32px;
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--muted);
}

.footer-logo {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.footer-brand-copy {
    display: flex;
    max-width: 280px;
    flex-direction: column;
    gap: 5px;
}

.footer-brand-copy .logo-text {
    font-size: 1.75rem;
    line-height: 1;
}

.footer-motto {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.footer-navigation {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.footer-navigation a {
    padding: 7px 0;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-navigation a:hover {
    transform: translateX(3px);
    color: #ffe66a;
}

.footer-trust-badge {
    display: flex;
    justify-content: flex-end;
}

.footer-trust-badge img {
    display: block;
    width: min(100%, 210px);
    height: 110px;
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
}

.footer-social-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    color: #ffe66a;
}

.footer-social-link img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

body.modal-open {
    overflow: hidden;
}

body.cookie-panel-open {
    overflow: hidden;
}

.cookie-settings-trigger {
    position: fixed;
    bottom: 18px;
    left: 18px;
    z-index: 2990;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 230, 106, 0.5);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.18), transparent 42%),
        #0e3f25;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    appearance: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cookie-settings-trigger img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    user-select: none;
}

body.cookie-panel-open .cookie-settings-trigger {
    opacity: 0;
    pointer-events: none;
}

.cookie-settings-trigger:hover {
    transform: translateY(-3px);
    background-color: #165231;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.cookie-controller {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 0s linear 200ms;
}

.cookie-controller.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
}

.cookie-controller-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 24, 13, 0.82);
    backdrop-filter: blur(10px);
}

.cookie-panel {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(90vh, 900px);
    overflow-y: auto;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(113, 216, 138, 0.34);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 44%),
        #082f1b;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
    scrollbar-color: rgba(113, 216, 138, 0.68) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
}

.cookie-panel-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.cookie-panel-header {
    max-width: 760px;
    padding-right: 42px;
}

.cookie-panel-header h2 {
    margin-bottom: 0.75rem;
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 0.95;
}

.cookie-panel-header > p:last-child,
.cookie-option p,
.cookie-information p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.55;
}

.cookie-options,
.cookie-information {
    display: grid;
    gap: 14px;
    margin-top: 1.6rem;
}

.cookie-option,
.cookie-information section {
    padding: 18px;
    border: 1px solid rgba(113, 216, 138, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.cookie-option p + p {
    margin-top: 0.75rem;
}

.cookie-storage-list {
    display: grid;
    gap: 0.65rem;
    margin: 0.9rem 0 0;
    padding-left: 1.15rem;
    color: var(--muted);
    line-height: 1.55;
}

.cookie-storage-list strong {
    color: #ffffff;
}

.cookie-option-heading {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.cookie-option-heading h3,
.cookie-information h3 {
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.2;
}

.cookie-option-heading span {
    color: #71d88a;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.cookie-information a {
    color: #ffe66a;
    font-weight: 700;
    text-underline-offset: 3px;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    cursor: pointer;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-switch > span {
    position: relative;
    display: block;
    width: 54px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    transition: background 180ms ease, border-color 180ms ease;
}

.cookie-switch > span::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
    transition: transform 180ms ease;
}

.cookie-switch input:checked + span {
    border-color: rgba(113, 216, 138, 0.68);
    background: #27884c;
}

.cookie-switch input:checked + span::after {
    transform: translateX(24px);
}

.cookie-switch input:focus-visible + span {
    outline: 3px solid #ffe66a;
    outline-offset: 3px;
}

.cookie-switch-required {
    cursor: not-allowed;
    opacity: 0.78;
}

.cookie-actions {
    position: sticky;
    bottom: -1px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 1.6rem -6px -8px;
    padding: 14px 6px 8px;
    background: linear-gradient(to top, #082f1b 72%, transparent);
}

.cookie-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 8px 14px;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
}

@keyframes floatGlow {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(80px, -40px, 0) scale(1.12);
    }
}

@keyframes sunPulse {
    from {
        transform: scale(0.96);
        opacity: 0.82;
    }

    to {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes leafSway {
    from {
        transform: translateX(-50%) rotate(-2deg);
    }

    to {
        transform: translateX(-50%) rotate(3deg);
    }
}

@keyframes flowerBob {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-8px);
    }
}

@keyframes popFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.04);
    }
}

@media (max-width: 980px) {
    body.nav-menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 900;
        background: rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(2px);
    }

    .navbar {
        overflow: visible;
        background: rgba(8, 47, 27, 0.96);
    }

    .nav-container {
        position: relative;
        padding: 10px 0;
    }

    .logo {
        font-size: 1.18rem;
    }

    .logo img,
    .navbar.is-scrolled .logo img {
        width: 48px;
        height: 48px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
        flex: 0 0 46px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 10;
        display: grid;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        gap: 6px;
        padding: 0 12px;
        border: 0 solid rgba(113, 216, 138, 0.3);
        border-radius: 0 0 14px 14px;
        background: rgba(8, 47, 27, 0.98);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        visibility: hidden;
        transition: max-height 260ms ease, padding 260ms ease, border-width 260ms ease, opacity 180ms ease, transform 220ms ease, visibility 0s linear 260ms;
    }

    .nav-open .nav-links {
        max-height: 420px;
        padding: 12px;
        border-width: 1px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
        transition-delay: 0s;
    }

    .nav-links a,
    .navbar.is-scrolled .nav-links a {
        width: 100%;
        min-height: 50px;
        justify-content: flex-start;
        padding: 0 16px;
        border-color: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.045);
        font-size: 1.05rem;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        transform: none;
        border-color: rgba(219, 186, 0, 0.42);
        background: rgba(219, 186, 0, 0.13);
    }

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

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

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

@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: 100svh;
        padding-top: 8rem;
        padding-bottom: 7rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

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

    .pricing-table-wrap {
        margin-bottom: 2rem;
        padding: 8px;
    }

    .pricing-table {
        min-width: 1054px;
    }

    .pricing-callout {
        flex-direction: column;
    }

    .other-service-grid {
        display: flex;
    }

    .other-service-card {
        max-width: calc((100% - 14px) / 2);
    }

    .building-service {
        grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr);
    }

    .building-service-reverse {
        grid-template-columns: minmax(0, 1fr) minmax(150px, 0.4fr);
    }

    .gallery-carousel {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 10px;
    }

    .gallery-control {
        width: 42px;
        height: 42px;
        font-size: 2rem;
    }

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

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

    .package-feature-columns,
    .package-price-columns,
    .package-contact-list {
        grid-template-columns: 1fr;
    }

    .legal-details-compact {
        grid-template-columns: 1fr;
    }

    .cookie-information {
        grid-template-columns: 1fr;
    }

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

    .package-premium-header {
        flex-wrap: wrap;
    }

    .package-premium-header .package-popular {
        width: 100%;
        margin-left: 54px;
    }

    .package-basic,
    .package-standard,
    .package-premium,
    .package-custom,
    .package-occasional,
    .package-contact {
        grid-column: auto;
    }

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

    .footer-trust-badge {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .ambient {
        display: none;
    }

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

    .legal-details,
    .legal-details-compact {
        grid-template-columns: 1fr;
    }

    .content {
        padding: 3.5rem 0 5rem;
    }

    .cookie-controller {
        align-items: end;
        padding: 0;
    }

    .cookie-panel {
        width: 100%;
        max-height: 92svh;
        padding: 24px 14px 14px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 16px 16px 0 0;
    }

    .cookie-panel-header {
        padding-right: 36px;
    }

    .cookie-panel-header h2 {
        font-size: clamp(2rem, 12vw, 2.8rem);
    }

    .cookie-option,
    .cookie-information section {
        padding: 15px;
    }

    .cookie-option-heading {
        align-items: flex-start;
    }

    .cookie-actions {
        margin-right: -4px;
        margin-left: -4px;
    }

    .cookie-settings-trigger {
        bottom: 12px;
        left: 12px;
        width: 48px;
        height: 48px;
    }

    h1 {
        font-size: clamp(2.55rem, 15vw, 3rem);
    }

    .hero {
        min-height: 100svh;
        padding: 7rem 14px 6rem;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .hero-content .eyebrow {
        font-size: 0.7rem;
        line-height: 1.5;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .occasional-price-banner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .maintenance-price-highlight {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 1.1rem;
        min-height: 190px;
        padding: 54px 18px 22px;
    }

    .maintenance-price-highlight::before {
        right: -12%;
        bottom: -14%;
        left: -12%;
        height: 78%;
        transform: rotate(4deg);
    }

    .maintenance-price-copy strong {
        max-width: 15.5ch;
        font-size: clamp(1.85rem, 9.4vw, 3.1rem);
        line-height: 0.92;
    }

    .maintenance-price-highlight p {
        max-width: 34ch;
    }

    .button {
        width: 100%;
    }

    .pricing-table-wrap {
        margin-right: -14px;
        margin-left: -14px;
        width: calc(100% + 28px);
        padding: 8px 8px 34px;
        border-radius: 0;
    }

    .pricing-table-title {
        margin-bottom: 0.75rem;
        font-size: 1.2rem;
    }

    .pricing-table {
        grid-template-columns:
            minmax(250px, 1.45fr)
            10px
            minmax(165px, 0.85fr)
            10px
            minmax(180px, 0.95fr)
            10px
            minmax(175px, 0.9fr);
        width: max(100%, 900px);
        min-width: 900px;
    }

    .pricing-package-header,
    .pricing-logo-block {
        height: 92px;
    }

    .pricing-logo-block {
        flex-basis: 92px;
    }

    .pricing-package-header {
        padding-left: 14px;
    }

    .pricing-package-title {
        top: 36px;
        left: 14px;
        font-size: 31px;
    }

    .pricing-package-subtitle {
        top: 61px;
        left: 14px;
        font-size: 16px;
    }

    .pricing-premium-header {
        padding-left: 14px;
        padding-right: 8px;
    }

    .pricing-popular-badge {
        left: 14px;
    }

    .pricing-popular-badge {
        top: 8px;
        gap: 4px;
        padding: 2px 5px;
        font-size: 8px;
    }

    .pricing-popular-icon {
        width: 13px;
        height: 13px;
        flex-basis: 13px;
        font-size: 8px;
    }

    .pricing-row {
        height: 20px;
    }

    .pricing-frequency {
        height: 36px;
    }

    .pricing-label {
        padding-right: 8px;
        padding-left: 14px;
        font-size: 15px;
    }

    .pricing-frequency.pricing-label {
        font-size: 17px;
    }

    .pricing-value {
        font-size: 18px;
    }

    .pricing-icon {
        font-size: 19px;
    }

    .pricing-price,
    .pricing-price-label {
        font-size: 14px;
    }

    .pricing-scroll-hint {
        position: absolute;
        right: 14px;
        bottom: 10px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 7px 10px;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 999px;
        background: rgba(14, 63, 37, 0.92);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
        color: #ffffff;
        font-size: 0.78rem;
        line-height: 1;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .pricing-scroll-hand {
        display: inline-block;
        font-size: 1rem;
        animation: pricing-scroll-nudge 1.15s ease-in-out infinite;
    }

    .pricing-table-wrap.is-scroll-hint-hidden .pricing-scroll-hint {
        visibility: hidden;
        opacity: 0;
        transform: translateX(8px);
    }

    .package-details-header,
    .package-custom,
    .package-contact,
    .legal-panel {
        padding: 22px 16px;
    }

    .package-details-header h2 {
        font-size: clamp(1.55rem, 8vw, 1.8rem);
        white-space: nowrap;
    }

    .package-custom .package-card-header h3,
    .package-contact .package-card-header h3 {
        font-size: clamp(1.8rem, 11vw, 2.35rem);
    }

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

    .other-service-card {
        flex-basis: 100%;
        max-width: 100%;
    }

    .building-service {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .building-service-reverse .building-service-content {
        order: initial;
    }

    .building-service-icon {
        min-height: 150px;
    }

    .building-service-icon img {
        height: 125px;
    }

    .waste-service-mark {
        min-height: 150px;
    }

    .waste-service-mark img {
        height: 125px;
    }

    .gallery-carousel {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-viewport {
        grid-column: 1 / -1;
        order: -1;
    }

    .gallery-control {
        width: 100%;
    }

    .comparison-after {
        width: calc(100vw - 28px);
    }

    .comparison-label {
        top: 12px;
        padding: 6px 9px;
        font-size: 0.76rem;
    }

    .comparison-label-before {
        right: 12px;
    }

    .comparison-label-after {
        left: 12px;
    }

    .comparison-handle {
        width: 46px;
        height: 46px;
    }

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

    .unsubscribe-section {
        min-height: auto;
    }

    .unsubscribe-card {
        padding: 24px 18px;
    }

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

    .location-section {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
    }

    .location-icon {
        width: 70px;
        height: 70px;
    }

    .location-icon img {
        width: 46px;
        height: 46px;
    }

    .contact-option {
        justify-content: flex-start;
    }

    .site-modal {
        padding: 14px;
    }

    .site-modal-panel {
        padding: 28px 18px 20px;
    }

    .package-details.is-open .package-details-inner {
        padding: 22px 16px;
    }

    .package-card-header {
        align-items: flex-start;
    }

    .package-premium-header .package-popular {
        margin-left: 0;
    }

    .package-prices li {
        grid-template-columns: 1fr;
    }

    .package-prices li strong {
        text-align: left;
    }

    .package-rate {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .package-rate strong {
        text-align: left;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        width: min(100% - 28px, 1180px);
        padding: 32px 0 24px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        justify-content: center;
    }

    .footer-logo {
        flex-direction: column;
        gap: 8px;
    }

    .footer-logo img {
        width: 88px;
        height: 88px;
    }

    .footer-brand-copy {
        align-items: center;
    }

    .footer-navigation {
        display: grid;
        gap: 8px;
        width: 100%;
    }

    .footer-navigation a {
        padding: 12px 14px;
        border: 1px solid rgba(113, 216, 138, 0.2);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.045);
    }

    .footer-navigation a:hover {
        transform: none;
    }

    .footer-trust-badge {
        grid-column: auto;
        justify-content: center;
        padding-top: 4px;
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column-reverse;
        gap: 12px;
        width: min(100% - 28px, 1180px);
        padding: 18px 0 22px;
        text-align: center;
    }

    .footer-social-link {
        min-height: 44px;
        padding: 8px 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.055);
    }

    .sun {
        right: 28px;
        width: 92px;
        height: 92px;
    }

    .tree-left {
        left: 16px;
    }

    .tree-right {
        right: 8px;
    }
}

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

.n-main {
    display: inline;
    margin-bottom: 0;
    color: white;
}

.o-main {
    display: inline;
    margin-bottom: 0;
    color: #DBBA00;
}

@media (max-width: 640px) {
    .announcement-bar {
        padding: 0.7rem 1rem;
    }

    .announcement-bar-inner {
        gap: 0.75rem;
    }

    .announcement-bar-logo {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }

    .announcement-bar-copy strong {
        font-size: 1rem;
    }

    .announcement-bar-copy span {
        font-size: 0.88rem;
    }
}
