:root {
    --bg: #FAF7F1;
    --card: #FFFFFF;
    --text: #1F1F1F;
    --muted: #6F6A62;
    --beige: #D8C3A5;
    --brown: #8B6F47;
    --border: #E8DED1;
    --button: #1E1E1E;
    --button-hover: #8B6F47;
    --shadow: 0 16px 44px rgba(31, 31, 31, 0.065);
    --soft-shadow: 0 8px 24px rgba(31, 31, 31, 0.045);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.62;
    padding-bottom: 84px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

.bidi-isolate,
input[type="tel"] {
    direction: ltr;
    unicode-bidi: isolate;
}

a {
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
}

button,
input,
textarea {
    font: inherit;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img,
video {
    height: auto;
}

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

.narrow {
    width: min(820px, calc(100% - 32px));
    text-align: center;
}

.section {
    padding: 50px 0;
}

.page-hero {
    padding-top: 34px;
}

.page-hero .narrow {
    padding: 30px 20px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: var(--card);
    box-shadow: var(--soft-shadow);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 247, 241, 0.92);
    border-bottom: 1px solid rgba(232, 222, 209, 0.8);
    backdrop-filter: blur(18px);
}

.site-header.scrolled {
    box-shadow: 0 12px 30px rgba(31, 31, 31, 0.06);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 750;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card);
    color: var(--brown);
    font-size: 0.88rem;
    letter-spacing: -0.04em;
    box-shadow: 0 8px 22px rgba(31, 31, 31, 0.045);
}

.brand-name,
.brand-tagline {
    display: block;
    overflow-wrap: normal;
}

.brand-name {
    color: var(--text);
    font-size: 1.04rem;
    letter-spacing: -0.025em;
}

.brand-tagline {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 650;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
    background: #F3EADF;
}

.site-nav a.active {
    box-shadow: inset 0 0 0 1px rgba(139, 111, 71, 0.12);
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 99px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open {
    background: #F3EADF;
    border-color: var(--beige);
}

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

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

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

.header-call {
    display: none;
}

.lang-switch {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    color: var(--brown);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(31, 31, 31, 0.045);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switch:hover {
    border-color: var(--beige);
    background: #F3EADF;
    color: var(--text);
    transform: translateY(-1px);
}

html[dir="rtl"] .brand,
html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] .hero-note a,
html[dir="rtl"] .mobile-contact-bar {
    direction: ltr;
    unicode-bidi: isolate;
}

html[dir="rtl"] .brand-name,
html[dir="rtl"] .brand-tagline {
    text-align: right;
}

html[dir="rtl"] .site-nav a {
    justify-content: flex-start;
}

html[dir="rtl"] .button-row,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .admin-topbar {
    direction: rtl;
}

html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form textarea {
    text-align: right;
}

html[dir="rtl"] .contact-form input[type="tel"] {
    text-align: left;
}

html[dir="rtl"] .check-list li {
    padding-right: 24px;
    padding-left: 0;
}

html[dir="rtl"] .check-list li::before {
    right: 0;
    left: auto;
}

.hero {
    padding-top: 34px;
}

.hero-shell {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    padding: 28px 18px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: #FFFFFF;
    box-shadow: var(--shadow);
}

.hero-copy {
    max-width: 780px;
}

.hero-note {
    max-width: 420px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #FBF6EE;
}

.hero-note p {
    margin: 0;
    color: var(--muted);
}

.hero-note .note-label {
    margin-bottom: 8px;
    color: var(--brown);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-note a {
    display: inline-block;
    margin-top: 14px;
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 800;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2.35rem, 9.4vw, 4.85rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.page-hero h1 {
    margin-inline: auto;
    font-size: clamp(2.15rem, 7.4vw, 4rem);
}

.hero-intro,
.page-hero p,
.section-heading p,
.content-block p,
.contact-form p,
.contact-card p,
.service-card p,
.feature-grid p,
.cta-card p,
.location-card p {
    color: var(--muted);
    font-size: 1rem;
}

.hero-intro {
    max-width: 650px;
    margin: 20px 0 0;
    font-size: 1.08rem;
}

.hero-location {
    display: inline-flex;
    max-width: 100%;
    margin: 18px 0 0;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #FFFCF8;
    color: var(--brown);
    font-size: 0.92rem;
    font-weight: 700;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--brown);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button-row.center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 49px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    box-shadow: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero .btn,
.page-hero .btn,
.cta-card .btn {
    width: 100%;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(31, 31, 31, 0.08);
}

.btn-primary {
    background: var(--button);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--button-hover);
}

.btn-outline {
    border-color: var(--border);
    background: #FFFFFF;
    color: var(--text);
}

.btn-outline:hover,
.btn-ghost:hover {
    border-color: var(--beige);
    background: #F3EADF;
}

.btn-ghost {
    border-color: transparent;
    color: var(--text);
}

.trust-row {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.trust-row li {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #FFFCF8;
    color: var(--text);
    font-weight: 650;
    text-align: center;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 24px;
}

.section-heading h2,
.content-block h2,
.highlight-panel h2,
.highlight-panel h3,
.location-card h3,
.cta-card h2,
.contact-card h2,
.contact-form h2,
.service-card h2,
.service-card h3,
.feature-grid h3 {
    margin: 0 0 10px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-heading h2,
.content-block h2,
.cta-card h2 {
    font-size: clamp(2rem, 7vw, 3.2rem);
}

.card-grid,
.feature-grid,
.split-grid,
.contact-grid,
.contact-action-grid,
.footer-grid {
    display: grid;
    gap: 18px;
}

.service-card,
.feature-grid article,
.highlight-panel,
.location-card,
.cta-card,
.contact-card,
.contact-form {
    border: 1px solid rgba(232, 222, 209, 0.92);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--soft-shadow);
}

.service-card,
.feature-grid article,
.highlight-panel,
.location-card,
.contact-card,
.contact-form {
    padding: 21px;
}

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

.action-card {
    display: flex;
    flex-direction: column;
    min-height: 190px;
}

.action-card h2 {
    font-size: 1.16rem;
}

.address-card address {
    font-size: 1.08rem;
    line-height: 1.75;
}

.contact-card .btn,
.contact-form .btn {
    width: 100%;
}

.service-card,
.feature-grid article {
    min-height: 172px;
}

.about-steps-grid article {
    min-height: 150px;
}

.services-list .service-card {
    min-height: 214px;
}

.service-card h2,
.service-card h3 {
    font-size: 1.12rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(31, 31, 31, 0.065);
}

.center-action {
    margin-top: 28px;
    text-align: center;
}

.text-link,
.large-link,
.card-link {
    color: var(--brown);
    font-weight: 760;
}

.text-link,
.card-link {
    border-bottom: 1px solid rgba(139, 111, 71, 0.35);
}

.card-link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 18px;
    font-size: 0.94rem;
}

.card-link:hover {
    color: var(--text);
    border-color: var(--text);
}

.split-section {
    background: rgba(255, 255, 255, 0.36);
    border-block: 1px solid var(--border);
}

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

.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--beige);
}

.step-number {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #F3EADF;
    color: var(--brown);
    font-weight: 800;
}

.location-card,
.cta-card {
    background: #FFFFFF;
}

.location-card {
    border-left: 4px solid var(--beige);
}

.cta-card {
    padding: 32px 22px;
    text-align: center;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.contact-card .large-link {
    display: inline-block;
    margin: 0 0 18px;
    font-size: 1.35rem;
    line-height: 1.2;
}

.contact-card .large-link:last-child {
    margin-bottom: 0;
}

address {
    margin: 0 0 18px;
    color: var(--muted);
    font-style: normal;
}

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

.contact-form label {
    color: var(--text);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #FFFCF8;
    color: var(--text);
    padding: 13px 14px;
    outline: none;
}

.contact-form button {
    margin-top: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brown);
    box-shadow: 0 0 0 4px rgba(216, 195, 165, 0.28);
}

.form-alert {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 0.95rem;
}

.form-alert ul {
    padding-left: 18px;
    margin: 0;
}

.form-alert.success {
    border: 1px solid var(--beige);
    background: #F3EADF;
    color: var(--text);
}

.form-alert.error {
    border: 1px solid #D8C3A5;
    background: #FFFCF8;
    color: var(--text);
}

.admin-page {
    padding-bottom: 0;
}

.admin-shell {
    width: min(620px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
}

.admin-shell.wide {
    width: min(1180px, calc(100% - 32px));
}

.admin-card,
.admin-table-wrap {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--soft-shadow);
    padding: 24px;
}

.admin-card h1,
.admin-topbar h1 {
    margin: 0 0 12px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.admin-card p,
.admin-topbar p {
    color: var(--muted);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--brown);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--text);
    overflow-wrap: anywhere;
}

.admin-table a {
    color: var(--brown);
    font-weight: 700;
}

.site-footer {
    padding: 48px 0 104px;
    border-top: 1px solid var(--border);
    background: #FFFFFF;
}

.footer-brand {
    margin-bottom: 16px;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.site-footer p,
.site-footer li {
    color: var(--muted);
}

.site-footer ul {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a:hover {
    color: var(--brown);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    margin: 0;
}

.mobile-contact-bar {
    position: fixed;
    right: 14px;
    bottom: 12px;
    left: 14px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(31, 31, 31, 0.12);
    backdrop-filter: blur(18px);
}

.mobile-contact-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 8px;
    text-align: center;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 800;
}

.mobile-contact-bar a:hover {
    background: #F3EADF;
}

.mobile-contact-bar a:nth-child(2):hover {
    background: var(--button-hover);
}

@media (max-width: 1024px) {
    .container,
    .narrow,
    .admin-shell,
    .admin-shell.wide {
        width: min(100% - 32px, 1100px);
    }

    .section {
        padding: 64px 0;
    }

    .hero-shell {
        padding: 42px 32px;
    }

    .page-hero .narrow {
        padding: 40px 32px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.1rem, 6.3vw, 4rem);
    }

    .services-list,
    .services-preview-grid,
    .feature-grid,
    .contact-action-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .split-grid,
    .contact-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.98rem;
    }

    .header-inner {
        min-height: 68px;
        gap: 12px;
    }

    .site-nav {
        inset: 70px 16px auto 16px;
    }

    .section {
        padding: 48px 0;
    }

    .hero,
    .page-hero {
        padding-top: 22px;
    }

    .hero-shell {
        gap: 24px;
        padding: 34px 24px;
    }

    .hero-note {
        max-width: none;
    }

    .hero-intro,
    .page-hero p,
    .section-heading p,
    .content-block p,
    .contact-form p,
    .contact-card p,
    .service-card p,
    .feature-grid p,
    .cta-card p,
    .location-card p {
        font-size: 0.98rem;
    }

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

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

    .contact-form button {
        width: 100%;
    }

    .admin-shell {
        padding: 42px 0;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-topbar .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .container,
    .narrow,
    .admin-shell,
    .admin-shell.wide {
        width: min(100% - 28px, 1100px);
    }

    body {
        padding-bottom: 78px;
    }

    .brand {
        max-width: calc(100vw - 104px);
    }

    .lang-switch {
        padding-inline: 12px;
        font-size: 0.84rem;
    }

    .brand-mark {
        flex: 0 0 auto;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-tagline {
        font-size: 0.74rem;
        line-height: 1.2;
    }

    .site-nav {
        inset: 70px 14px auto 14px;
    }

    .section {
        padding: 40px 0;
    }

    .page-hero .narrow,
    .hero-shell,
    .cta-card {
        border-radius: 22px;
    }

    .hero-shell {
        padding: 28px 18px;
    }

    .page-hero .narrow {
        padding: 28px 18px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2rem, 10.6vw, 2.85rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .section-heading h2,
    .content-block h2,
    .cta-card h2 {
        font-size: clamp(1.72rem, 8.6vw, 2.35rem);
    }

    .hero-intro {
        margin-top: 16px;
    }

    .hero-location {
        border-radius: 16px;
        line-height: 1.45;
    }

    .button-row,
    .button-row.center {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .button-row .btn,
    .hero .btn,
    .page-hero .btn,
    .cta-card .btn,
    .contact-card .btn,
    .contact-form .btn {
        width: 100%;
    }

    .trust-row,
    .card-grid,
    .services-list,
    .services-preview-grid,
    .feature-grid,
    .contact-action-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .feature-grid article,
    .highlight-panel,
    .location-card,
    .contact-card,
    .contact-form {
        min-height: 0;
        padding: 20px;
    }

    .action-card {
        min-height: 0;
    }

    .contact-action-grid .card-link,
    .contact-card .card-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 1rem;
    }

    .admin-card,
    .admin-table-wrap {
        padding: 18px;
    }

    .admin-card h1,
    .admin-topbar h1 {
        font-size: clamp(1.9rem, 9vw, 2.45rem);
    }

    .admin-table-wrap {
        overflow-x: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }

    .admin-table,
    .admin-table thead,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 14px;
    }

    .admin-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .admin-table tr {
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--card);
        box-shadow: var(--soft-shadow);
    }

    .admin-table td {
        display: grid;
        grid-template-columns: minmax(86px, 32%) minmax(0, 1fr);
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }

    .admin-table td:last-child {
        border-bottom: 0;
    }

    .admin-table td::before {
        content: attr(data-label);
        color: var(--brown);
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .site-footer {
        padding: 40px 0 94px;
    }
}

@media (max-width: 379px) {
    .container,
    .narrow {
        width: min(100% - 24px, 1100px);
    }

    .brand {
        gap: 9px;
        max-width: calc(100vw - 146px);
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 0.98rem;
    }

    .brand-tagline {
        font-size: 0.72rem;
    }

    .hero-shell {
        padding: 24px 14px;
        border-radius: 22px;
    }

    .page-hero .narrow {
        padding: 24px 14px;
        border-radius: 22px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(1.82rem, 10.2vw, 2.35rem);
        letter-spacing: -0.045em;
    }

    .hero-intro,
    .page-hero p,
    .section-heading p,
    .content-block p,
    .contact-form p,
    .contact-card p,
    .service-card p,
    .feature-grid p,
    .cta-card p,
    .location-card p {
        font-size: 0.95rem;
    }

    .service-card,
    .feature-grid article,
    .highlight-panel,
    .location-card,
    .contact-card,
    .contact-form {
        padding: 18px;
    }

    .services-list .service-card {
        min-height: 0;
    }

    .about-steps-grid article {
        min-height: 0;
    }

    .mobile-contact-bar {
        right: 10px;
        left: 10px;
    }

    .mobile-contact-bar a {
        padding-inline: 4px;
        font-size: 0.8rem;
    }

    .lang-switch {
        padding-inline: 10px;
        font-size: 0.8rem;
    }
}

.mobile-contact-bar a:nth-child(2) {
    background: var(--button);
    color: #FFFFFF;
}

.mobile-contact-bar a:nth-child(2):hover {
    background: var(--button-hover);
}

@media (min-width: 680px) {
    body {
        padding-bottom: 0;
    }

    .trust-row,
    .card-grid,
    .feature-grid,
    .contact-action-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero .btn,
    .page-hero .btn,
    .cta-card .btn {
        width: auto;
    }

    .mobile-contact-bar {
        display: none;
    }
}

@media (min-width: 900px) {
    .section {
        padding: 78px 0;
    }

    .page-hero {
        padding-top: 46px;
    }

    .page-hero .narrow {
        padding: 48px;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .site-nav a {
        padding: 10px 12px;
    }

    .header-call {
        display: inline-flex;
        padding: 10px 18px;
        border: 1px solid var(--button);
        border-radius: 999px;
        background: var(--button);
        color: #FFFFFF;
        font-size: 0.9rem;
        font-weight: 750;
        transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }

    .header-call:hover {
        border-color: var(--button-hover);
        background: var(--button-hover);
        transform: translateY(-1px);
    }

    .hero {
        padding-top: 46px;
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1fr) 360px;
        align-items: end;
        padding: 54px;
        gap: 36px;
    }

    .trust-row {
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, 1fr);
    }

    .split-grid,
    .contact-grid {
        grid-template-columns: 1.08fr 0.92fr;
        align-items: start;
        gap: 32px;
    }

    .card-grid.three,
    .services-list,
    .services-preview-grid,
    .feature-grid,
    .contact-action-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-action-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-card .btn,
    .contact-form .btn {
        width: auto;
    }

    .cta-card {
        padding: 44px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 1024px) {
    .services-list,
    .services-preview-grid,
    .feature-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-shell {
        padding: 42px 32px;
    }
}
