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

html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
}

:root {
    /* Palette — KÖBE green, cool neutrals */
    --bg: #f3f6f4;
    --bg-elevated: #ffffff;
    --bg-soft: #e8f0eb;
    --bg-muted: #f0f4f1;
    --text: #0c1a12;
    --text-secondary: #3d4f45;
    --muted: #5a6b61;
    --green: #1a8a4a;
    --green-dark: #146b3a;
    --green-soft: rgba(26, 138, 74, 0.1);
    --green-glow: rgba(26, 138, 74, 0.22);
    --border: rgba(12, 26, 18, 0.08);
    --border-strong: rgba(12, 26, 18, 0.14);
    --ring: rgba(26, 138, 74, 0.35);

    /* Elevation */
    --shadow-xs: 0 1px 2px rgba(12, 26, 18, 0.04);
    --shadow-sm: 0 4px 12px rgba(12, 26, 18, 0.05);
    --shadow-md: 0 12px 32px rgba(12, 26, 18, 0.08);
    --shadow-lg: 0 24px 48px rgba(12, 26, 18, 0.1);
    --shadow-green: 0 12px 28px rgba(26, 138, 74, 0.22);

    /* Geometry & motion */
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 72px;
    --container: 1120px;
    --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 150ms ease;

    font-family: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-feature-settings: "ss01" on, "cv11" on;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    min-height: 100vh;
    padding: var(--space-5) clamp(16px, 3.5vw, 40px) var(--space-8);
    position: relative;
    isolation: isolate;
    overflow-x: hidden;
}

/* Soft atmospheric backdrop */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(26, 138, 74, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 95% 15%, rgba(26, 138, 74, 0.07), transparent 50%),
        radial-gradient(ellipse 50% 35% at 50% 100%, rgba(26, 138, 74, 0.06), transparent 55%),
        linear-gradient(180deg, #f7faf8 0%, var(--bg) 40%, #eef3f0 100%);
    pointer-events: none;
}

header,
main,
footer {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin-inline: auto;
}

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

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

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

/* ——— Navigation ——— */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: sticky;
    top: 12px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    transition:
        box-shadow var(--transition),
        background var(--transition);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    background: var(--bg-elevated);
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    transition:
        box-shadow var(--transition),
        transform var(--transition),
        border-color var(--transition);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: var(--radius-full);
    transition:
        transform var(--transition-fast),
        opacity var(--transition-fast);
}

.nav-toggle:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
    border-color: var(--green);
}

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

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

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

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-xs);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.brand-name {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand-tag {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav nav {
    display: flex;
    gap: 4px;
    font-weight: 600;
    font-size: 0.935rem;
}

.nav nav a {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition:
        background var(--transition),
        color var(--transition);
}

.nav nav a:hover {
    color: var(--green);
    background: var(--green-soft);
}

/* ——— Buttons ——— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.935rem;
    letter-spacing: -0.01em;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn.primary {
    background: linear-gradient(165deg, #22a356 0%, var(--green) 55%, var(--green-dark) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-green);
}

.btn.primary:hover {
    box-shadow: 0 16px 36px rgba(26, 138, 74, 0.32);
    transform: translateY(-2px);
}

.btn.outline {
    border: 1.5px solid var(--border-strong);
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.7);
}

.btn.outline:hover {
    border-color: var(--green);
    background: var(--green-soft);
    color: var(--green-dark);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.btn.ghost {
    padding: 10px 16px;
    border: 1.5px solid var(--border);
    color: var(--text);
    background: var(--bg-elevated);
}

.btn.ghost:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-soft);
    transform: translateY(-1px);
    box-shadow: var(--shadow-xs);
}

.btn.full {
    width: 100%;
}

.btn:active {
    transform: translateY(0);
}

/* ——— Hero ——— */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
    padding: clamp(48px, 8vw, 80px) 8px var(--space-6);
}

.hero-text > * {
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-text > *:nth-child(1) {
    animation-delay: 60ms;
}
.hero-text > *:nth-child(2) {
    animation-delay: 140ms;
}
.hero-text > *:nth-child(3) {
    animation-delay: 220ms;
}
.hero-text > *:nth-child(4) {
    animation-delay: 300ms;
}
.hero-text > *:nth-child(5) {
    animation-delay: 380ms;
}

.hero-text h1 {
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 800;
    margin: 14px 0 18px;
    color: var(--text);
}

.hero .lede {
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 34em;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--green);
}

.lede {
    color: var(--muted);
    max-width: 40em;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.hero-highlight div {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    padding: 16px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xs);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.hero-highlight div:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(26, 138, 74, 0.2);
}

.hero-highlight strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--green-dark);
    line-height: 1.2;
}

.hero-highlight span {
    display: block;
    margin-top: 4px;
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.35;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.card-stack {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: 400px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 138, 74, 0.22);
}

.card-primary {
    box-shadow: var(--shadow-green);
    border-color: rgba(26, 138, 74, 0.18);
}
.card-secondary {
    box-shadow: 0 12px 28px rgba(26, 138, 74, 0.12);
}
.card-tertiary {
    box-shadow: var(--shadow-md);
}

.card-stack .glass-card:nth-child(1) {
    animation-delay: 240ms;
}
.card-stack .glass-card:nth-child(2) {
    animation-delay: 320ms;
}
.card-stack .glass-card:nth-child(3) {
    animation-delay: 400ms;
}

.glass-card h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.glass-card p {
    color: var(--muted);
    margin-bottom: 14px;
    font-size: 0.9375rem;
    line-height: 1.55;
}

/* ——— Pills ——— */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.pill-green {
    background: var(--green-soft);
    border-color: rgba(26, 138, 74, 0.28);
    color: var(--green-dark);
}

.pill.subtle {
    font-weight: 600;
    opacity: 0.95;
}

/* ——— Partner ——— */
.partner-section {
    text-align: center;
    padding: clamp(48px, 7vw, 72px) var(--space-5);
    background: linear-gradient(160deg, #f0faf3 0%, #e6f4eb 100%);
    border: 1px solid rgba(26, 138, 74, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: var(--space-4);
}

.partner-section .eyebrow {
    margin-bottom: var(--space-6);
}

.partner-logo-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo-large img {
    max-width: min(100%, 380px);
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(12, 26, 18, 0.08));
    transition: transform var(--transition);
}

.partner-logo-large img:hover {
    transform: scale(1.02);
}

/* ——— Sections ——— */
.section {
    padding: clamp(56px, 9vw, 88px) 8px;
    scroll-margin-top: 100px;
}

.section-header {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 640px;
}

.section h2 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 800;
}

/* ——— Services ——— */
.grid.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--green-soft), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(26, 138, 74, 0.28);
    box-shadow: var(--shadow-lg);
}

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

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--muted);
    font-size: 0.9375rem;
    margin-bottom: 16px;
    line-height: 1.55;
}

.icon-ring {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-soft);
    border: 1px solid rgba(26, 138, 74, 0.18);
    color: var(--green-dark);
    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.service-card:hover .icon-ring {
    transform: scale(1.06);
    background: rgba(26, 138, 74, 0.16);
    box-shadow: 0 6px 16px rgba(26, 138, 74, 0.15);
}

.icon-ring svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-emoji {
    line-height: 1;
    pointer-events: none;
    font-size: 1.35rem;
}

/* ——— Photos ——— */
.photo-section {
    background: linear-gradient(165deg, #ffffff 0%, #f0f5f7 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: clamp(28px, 4vw, 40px);
}

.photo-section .section-header {
    margin-bottom: 32px;
}

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

.photo-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.photo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.photo {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-card:hover .photo {
    transform: scale(1.03);
}

.photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 26, 18, 0.18) 100%);
    pointer-events: none;
}

[data-photo="office-1"] {
    background-image: url("iroda.webp");
    background-position: center 30%;
}
[data-photo="office-2"] {
    background-image: url("targyalo.webp");
}
[data-photo="office-3"] {
    background-image: url("parkolo.webp");
}

.photo-meta {
    padding: 18px 20px 22px;
}

.photo-meta h3 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.photo-meta p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ——— Highlight / Why us ——— */
.highlight {
    padding-top: 40px;
}

.highlight-card {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 28px;
    align-items: stretch;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--shadow-md);
}

.highlight-body h2 {
    margin-top: 10px;
    margin-bottom: 8px;
}

.checklist {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 22px;
    color: var(--text-secondary);
}

.checklist li {
    position: relative;
    padding: 12px 14px 12px 44px;
    background: var(--bg-muted);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-size: 0.95rem;
    transition:
        border-color var(--transition),
        background var(--transition);
}

.checklist li:hover {
    border-color: rgba(26, 138, 74, 0.2);
    background: var(--green-soft);
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / 12px no-repeat;
}

.cta-card {
    background: linear-gradient(165deg, #f0faf3 0%, #e4f3ea 100%);
    border: 1px solid rgba(26, 138, 74, 0.2);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.cta-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 10px 0 10px;
}

.cta-card > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 20px;
}

.cta-card .btn {
    margin-top: auto;
}

/* ——— Contact ——— */
.contact {
    padding-bottom: 32px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--shadow-md);
}

.contact-card > div .lede {
    margin-top: 12px;
}

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

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

label {
    display: grid;
    gap: 7px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

input,
select,
textarea {
    width: 100%;
    background: var(--bg-muted);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 13px 15px;
    color: var(--text);
    font: inherit;
    min-height: 52px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--border-strong);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--green);
    background: #ffffff;
    box-shadow: 0 0 0 4px var(--ring);
}

select {
    padding-right: 40px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6b61' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

input::placeholder,
textarea::placeholder {
    color: rgba(90, 107, 97, 0.75);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.note {
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* ——— Footer ——— */
.footer {
    margin-top: 48px;
    padding: 28px 8px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

.footer .brand-mark {
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 8px 20px;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-links a {
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition:
        color var(--transition),
        border-color var(--transition);
}

.footer-links a:hover {
    color: var(--green);
    border-bottom-color: rgba(26, 138, 74, 0.4);
}

.small {
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* ——— Shared motion ——— */
.tilt {
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

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

/* ——— Responsive ——— */
@media (max-width: 1024px) {
    .grid.services {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        justify-content: center;
    }

    .card-stack {
        max-width: 100%;
    }

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

@media (max-width: 900px) {
    .highlight-card {
        grid-template-columns: 1fr;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }

    .nav {
        flex-wrap: wrap;
        align-items: center;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 6px;
        padding-top: 8px;
    }

    .nav.open nav {
        display: flex;
        animation: fadeUp 280ms ease forwards;
    }

    .nav nav a {
        padding: 13px 14px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        background: var(--bg-muted);
    }

    .nav nav a:hover {
        background: var(--green-soft);
    }

    .nav .btn.ghost {
        display: none;
        width: 100%;
        justify-content: center;
    }

    .nav.open .btn.ghost {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    body {
        padding: 14px 12px 40px;
    }

    .hero {
        padding-top: 36px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

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

    .brand-tag {
        display: none;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .partner-section {
        padding: 40px 20px;
    }
}

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

    .hero-text > *,
    .glass-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}
