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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: linear-gradient(180deg, #efefef 0%, #e9eaec 100%);
    color: #111;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container,
.container-narrow {
    width: min(100%, 94vw);
    margin: 0 auto;
}

.section {
    padding: 0;
}

.section-light {
    background: #ececec;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(239, 239, 239, 0.92);
    border-bottom: 1px solid #dedede;
    backdrop-filter: blur(6px);
}

.topbar-inner {
    width: min(100%, 94vw);
    margin: 0 auto;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 2px;
}

.topbar-inner a {
    text-decoration: none;
    color: #68798b;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.topbar-inner a:hover,
.topbar-inner a.active {
    color: #111f33;
    font-weight: 600;
}

.hero-intro {
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: blur(6px);
    transform: scale(1.03);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(245, 245, 245, 0.66);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 48px 0 42px;
}

.hero-content h1 {
    font-size: clamp(30px, 9vw, 46px);
    line-height: 1;
    margin-bottom: 14px;
}

.hero-content p {
    font-size: clamp(16px, 4.5vw, 22px);
    max-width: 980px;
    text-wrap: balance;
}

.about-top {
    padding: 28px 0 12px;
}

.about-top h2 {
    font-size: clamp(30px, 10vw, 44px);
    margin-bottom: 14px;
}

.about-copy p {
    font-size: 16px;
    margin-bottom: 14px;
    max-width: 980px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
}

.split-grid img {
    min-height: 240px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.text-block {
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 24px 12px;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 14px;
}

.stacked-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
}

.stacked-images img {
    min-height: 220px;
    object-fit: cover;
}

.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0 34px;
}

.insight-text h3 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.08;
    margin-bottom: 10px;
}

.insight-text p {
    font-size: 16px;
}

.insight-wide,
.insight-tall {
    border-radius: 8px;
    object-fit: cover;
    min-height: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.full-photo {
    height: 260px;
    position: relative;
    background-size: cover;
    background-position: center;
    border-top: 1px solid #f2f2f2;
}

.full-photo-title {
    position: absolute;
    top: 12px;
    left: 14px;
    font-size: clamp(24px, 7vw, 34px);
    font-weight: 500;
    color: #111;
    background: rgba(255, 255, 255, 0.55);
    padding: 4px 10px;
    border-radius: 999px;
}

.region-slideshow {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
    align-items: center;
    padding: 22px 0 30px;
}

.slides {
    position: relative;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.slide {
    margin: 0;
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #111;
    font-size: 16px;
    font-weight: 600;
}

.slide-nav {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 31, 51, 0.84);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.slide-nav:hover {
    transform: scale(1.04);
    background: rgba(17, 31, 51, 1);
}

.slide-locations {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.location-chip {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #c0c8d2;
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.location-chip:hover {
    background: #8a93a1;
}

.location-chip.is-active {
    background: #1f334b;
    transform: scale(1.25);
}

.offer-cloud {
    position: relative;
    min-height: 460px;
    padding: 36px 0 30px;
}

.offer-cloud-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
}

.offer-cloud-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(239, 239, 239, 0.64);
}

.offer-cloud .container {
    position: relative;
    z-index: 1;
}

.offer-cloud h2,
.offer-detail h2 {
    font-size: clamp(34px, 10vw, 58px);
    text-align: center;
    margin-bottom: 20px;
}

.offer-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.offer-cards article {
    text-align: center;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 14px 12px 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.offer-cards img {
    max-width: 160px;
    margin: 0 auto 10px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #333;
}

.offer-cards h4 {
    font-size: clamp(24px, 7vw, 34px);
    margin-bottom: 8px;
}

.offer-cards p {
    font-size: 16px;
}

.offer-detail {
    padding: 38px 0 20px;
}

.split-three {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.split-three > div {
    background: rgba(255, 255, 255, 0.34);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 12px;
}

.split-three h3 {
    font-size: clamp(30px, 8.8vw, 44px);
    line-height: 1.08;
    margin-bottom: 8px;
}

.split-three p {
    font-size: 16px;
    margin-bottom: 10px;
}

.split-three img {
    border-radius: 8px;
    min-height: 160px;
    object-fit: cover;
}

.offer-blur {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.offer-blur-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    transform: scale(1.04);
}

.offer-blur-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(237, 237, 237, 0.58);
}

.offer-blur-copy {
    position: relative;
    z-index: 1;
    padding: 28px 0;
}

.offer-blur-copy h3 {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 8px;
}

.offer-blur-copy p {
    font-size: 16px;
    margin-bottom: 12px;
    max-width: 1020px;
}

.price-table-wrap {
    padding: 34px 0 38px;
}

.price-table-wrap h3 {
    font-size: clamp(30px, 8vw, 46px);
    margin-bottom: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ececec;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

thead th {
    text-align: left;
    font-size: 17px;
    padding: 10px 10px;
    border-bottom: 2px solid #1b1b1b;
    background: #e7e2e6;
}

tbody td {
    font-size: 17px;
    padding: 10px 10px;
    border-bottom: 1px solid #d8d8d8;
}

tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.26);
}

tbody td:last-child {
    text-align: right;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
    padding-top: 26px;
}

.contact-copy {
    padding: 4px 4px;
}

.contact-copy h2 {
    font-size: clamp(30px, 8vw, 44px);
    margin-bottom: 12px;
}

.contact-copy p {
    font-size: 16px;
    margin-bottom: 10px;
}

.location {
    margin-top: 24px;
}

.map-mock {
    min-height: 220px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.map-mock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    padding: 38px 0 24px;
}

.social-copy h2 {
    font-size: clamp(34px, 10vw, 60px);
    line-height: 1;
    margin-bottom: 8px;
}

.social-copy h3 {
    font-size: clamp(26px, 8vw, 40px);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 12px;
}

.social-copy p {
    font-size: 16px;
}

.social-btn {
    margin: 14px 0 16px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background: #57595d;
    padding: 9px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
    background: #44474c;
    transform: translateY(-1px);
}

.social-handle {
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(17, 17, 17, 0.14);
    width: fit-content;
    max-width: 100%;
}

.social-handle a {
    color: #1a3555;
    font-weight: 600;
    text-decoration: none;
    word-break: break-word;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.icon {
    text-decoration: none;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 700;
}

.icon.ig {
    color: #fff;
    background: linear-gradient(35deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.phone-mock {
    width: 250px;
    max-width: 100%;
    height: 460px;
    border-radius: 36px;
    border: 4px solid #777;
    overflow: hidden;
    background: #1f2024;
    margin: 0;
}

.phone-mock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-shell {
    margin-top: 16px;
    margin-bottom: 38px;
    border: 2px solid #2c6544;
    border-radius: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.form-shell h3 {
    font-size: clamp(30px, 8vw, 44px);
    margin-bottom: 10px;
}

.form-shell form {
    display: grid;
    gap: 6px;
}

.form-shell label {
    font-size: 15px;
}

.form-shell input,
.form-shell textarea {
    background: transparent;
    border: 1px solid #9ea4ad;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-shell input:focus,
.form-shell textarea:focus {
    outline: none;
    border-color: #6a93c0;
    box-shadow: 0 0 0 3px rgba(106, 147, 192, 0.18);
}

.form-shell button {
    margin-top: 10px;
    border: none;
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 20px;
    font-family: inherit;
    background: #d5d9eb;
    color: #272727;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-shell button:hover {
    background: #c8cee6;
    transform: translateY(-1px);
}

.form-status {
    min-height: 22px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
}

.form-status.success {
    color: #1e6a3f;
}

.form-status.error {
    color: #b31212;
}

.site-footer {
    border-top: 1px solid #d4d6db;
    background: #e4e6ea;
    padding: 18px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-inner p {
    font-size: 14px;
    color: #273241;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #1a3555;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.legal-main {
    min-height: calc(100vh - 170px);
    padding: 32px 0 46px;
}

.legal-content {
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 18px 14px;
}

.legal-content h1 {
    font-size: clamp(30px, 8vw, 44px);
    margin-bottom: 12px;
}

.legal-content h2 {
    font-size: clamp(22px, 6vw, 30px);
    margin: 18px 0 8px;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    margin-bottom: 10px;
}

.legal-content ul {
    margin-left: 18px;
}

.legal-note {
    font-size: 14px;
    color: #35475d;
}

.missing-data {
    color: #b31212;
    font-weight: 700;
}

/* iPhone-focused tuning */
@media (min-width: 390px) and (max-width: 899px) {
    .container,
    .container-narrow {
        width: min(100%, 92vw);
    }

    .topbar-inner {
        min-height: 54px;
        gap: 18px;
    }

    .topbar-inner a {
        font-size: 15px;
    }

    .hero-intro {
        min-height: 360px;
    }

    .hero-content {
        padding: 54px 0 46px;
    }

    .about-copy p,
    .insight-text p,
    .offer-cards p,
    .split-three p,
    .offer-blur-copy p,
    .contact-copy p {
        font-size: 17px;
    }

    .offer-cards img {
        max-width: 176px;
    }

    .split-three img {
        min-height: 190px;
    }

    .full-photo {
        height: 300px;
    }

    .region-slideshow {
        grid-template-columns: 52px 1fr 52px;
        gap: 12px;
        padding: 28px 0 34px;
    }

    .slides {
        min-height: 340px;
    }

    .slide-nav {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .slide figcaption {
        font-size: 18px;
    }

    .location-chip {
        width: 14px;
        height: 14px;
    }

    .price-table-wrap {
        padding: 38px 0 42px;
    }

    thead th {
        font-size: 18px;
    }

    tbody td {
        font-size: 18px;
    }

    .map-mock {
        min-height: 260px;
    }

    .phone-mock {
        width: 270px;
        height: 510px;
    }

    .footer-inner p,
    .footer-links a {
        font-size: 15px;
    }
}

/* Desktop second */
@media (min-width: 900px) {
    .container,
    .container-narrow {
        width: min(1160px, 92vw);
    }

    .topbar-inner {
        justify-content: flex-end;
        gap: 28px;
        overflow-x: visible;
    }

    .topbar-inner a {
        font-size: 21px;
    }

    .hero-intro {
        min-height: 540px;
    }

    .hero-content {
        padding: 90px 0 70px;
    }

    .hero-content h1 {
        font-size: 68px;
        margin-bottom: 24px;
    }

    .hero-content p {
        font-size: 36px;
    }

    .about-top {
        padding: 50px 0 20px;
    }

    .about-top h2 {
        font-size: 62px;
        margin-bottom: 20px;
    }

    .about-copy p {
        font-size: 18px;
        margin-bottom: 20px;
    }

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

    .split-grid img {
        height: 100%;
        min-height: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .text-block {
        padding: 50px 42px;
        border-radius: 0;
        border: none;
        background: #ececec;
    }

    .text-block p {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .stacked-images img {
        min-height: 320px;
    }

    .insights-grid {
        grid-template-columns: 1fr 1.3fr 1fr;
        gap: 26px;
        padding: 80px 0 66px;
    }

    .insight-text h3 {
        font-size: 52px;
        margin-bottom: 16px;
    }

    .insight-text p {
        font-size: 18px;
    }

    .insight-wide {
        min-height: 340px;
    }

    .insight-tall {
        min-height: 360px;
    }

    .full-photo {
        height: 620px;
    }

    .full-photo-title {
        top: 24px;
        left: min(280px, 10vw);
        font-size: 52px;
    }

    .offer-cloud {
        min-height: 780px;
        padding: 90px 0 80px;
    }

    .region-slideshow {
        grid-template-columns: 64px 1fr 64px;
        gap: 16px;
        padding: 54px 0 58px;
    }

    .slides {
        min-height: 540px;
        border-radius: 16px;
    }

    .slide-nav {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }

    .slide figcaption {
        left: 24px;
        bottom: 24px;
        font-size: 24px;
        padding: 10px 18px;
    }

    .slide-locations {
        gap: 10px;
    }

    .location-chip {
        width: 14px;
        height: 14px;
    }

    .offer-cloud h2,
    .offer-detail h2 {
        font-size: 72px;
        margin-bottom: 38px;
    }

    .offer-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 42px;
    }

    .offer-cards article {
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .offer-cards img {
        max-width: 210px;
        margin: 0 auto 14px;
    }

    .offer-cards h4 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .offer-cards p {
        font-size: 17px;
    }

    .offer-detail {
        padding: 72px 0 46px;
    }

    .split-three {
        grid-template-columns: 1fr 1.1fr 1fr;
        gap: 34px;
    }

    .split-three > div {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
    }

    .split-three h3 {
        font-size: 50px;
        margin-bottom: 12px;
    }

    .split-three p {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .split-three img {
        min-height: 184px;
    }

    .offer-blur {
        min-height: 620px;
    }

    .offer-blur-copy {
        padding: 72px 0;
    }

    .offer-blur-copy h3 {
        font-size: 60px;
        margin-bottom: 10px;
    }

    .offer-blur-copy p {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .price-table-wrap {
        padding: 72px 0 80px;
    }

    .price-table-wrap h3 {
        font-size: 56px;
        margin-bottom: 18px;
    }

    thead th {
        font-size: 24px;
        padding: 14px 22px;
    }

    tbody td {
        font-size: 22px;
        padding: 16px 22px;
    }

    .contact-grid {
        grid-template-columns: 0.95fr 1.45fr;
        gap: 34px;
        padding-top: 42px;
    }

    .contact-copy {
        padding: 30px 8px;
    }

    .contact-copy h2 {
        font-size: 58px;
        margin-bottom: 20px;
    }

    .contact-copy p {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .location {
        margin-top: 80px;
    }

    .map-mock {
        min-height: 420px;
        font-size: 58px;
    }

    .social-grid {
        grid-template-columns: 1fr 320px;
        grid-template-areas:
            "copy phone"
            "icons phone";
        gap: 22px;
        padding: 90px 0 50px;
        align-items: start;
    }

    .social-copy {
        grid-area: copy;
    }

    .social-copy h2 {
        font-size: 84px;
        margin-bottom: 10px;
    }

    .social-copy h3 {
        font-size: 58px;
        margin-bottom: 16px;
    }

    .social-copy p {
        font-size: 20px;
    }

    .social-btn {
        margin: 20px 0 28px;
        padding: 10px 28px;
        font-size: 20px;
    }

    .social-handle {
        padding: 14px 16px;
    }

    .social-icons {
        grid-area: icons;
        display: flex;
        gap: 18px;
        align-items: center;
    }

    .icon {
        width: 110px;
        height: 110px;
        font-size: 42px;
    }

    .phone-mock {
        grid-area: phone;
        width: 320px;
        height: 640px;
        border-radius: 44px;
        margin: 0 0 0 auto;
    }

    .form-shell {
        margin-top: 24px;
        margin-bottom: 48px;
        padding: 20px;
    }

    .form-shell h3 {
        font-size: 52px;
        margin-bottom: 14px;
    }

    .form-shell form {
        gap: 8px;
    }

    .form-shell label {
        font-size: 17px;
    }

    .form-shell input,
    .form-shell textarea {
        padding: 12px;
        font-size: 18px;
    }

    .form-shell button {
        margin-top: 14px;
        padding: 12px 20px;
        font-size: 28px;
    }

    .form-status {
        font-size: 16px;
    }

    .site-footer {
        padding: 24px 0;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
    }

    .footer-inner p {
        font-size: 16px;
    }

    .footer-links {
        gap: 22px;
    }

    .footer-links a {
        font-size: 17px;
    }

    .legal-main {
        padding: 54px 0 72px;
    }

    .legal-content {
        padding: 28px 24px;
    }

    .legal-content h1 {
        font-size: 54px;
        margin-bottom: 16px;
    }

    .legal-content h2 {
        font-size: 34px;
        margin: 26px 0 10px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

/* Large desktop tuning */
@media (min-width: 1440px) {
    .container {
        width: min(1320px, 90vw);
    }

    .container-narrow {
        width: min(1240px, 86vw);
    }

    .topbar-inner {
        width: min(1320px, 90vw);
    }

    .topbar-inner a {
        font-size: 18px;
    }

    .hero-intro {
        min-height: 660px;
    }

    .hero-content h1 {
        font-size: 82px;
    }

    .hero-content p {
        font-size: 42px;
        max-width: 1100px;
    }

    .full-photo {
        height: 700px;
    }

    .full-photo-title {
        font-size: 56px;
    }

    .offer-cloud {
        min-height: 860px;
    }

    .offer-cloud h2,
    .offer-detail h2 {
        font-size: 78px;
    }

    .offer-cards h4 {
        font-size: 42px;
    }

    .split-three h3 {
        font-size: 54px;
    }

    .offer-blur {
        min-height: 680px;
    }

    .offer-blur-copy h3 {
        font-size: 64px;
    }

    .price-table-wrap h3 {
        font-size: 60px;
    }

    .contact-copy h2 {
        font-size: 62px;
    }

    .social-copy h2 {
        font-size: 92px;
    }

    .social-copy h3 {
        font-size: 62px;
    }

    .phone-mock {
        width: 350px;
        height: 680px;
    }
}

/* === FAQ-Sektion === */
#faq-section {
    padding: 80px 0;
}

#faq-section h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 40px;
    color: #111;
}

#faq-section details {
    border-bottom: 1px solid #d0d0d0;
    padding: 6px 0;
}

#faq-section details:first-of-type {
    border-top: 1px solid #d0d0d0;
}

#faq-section summary {
    cursor: pointer;
    padding: 18px 8px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

#faq-section summary::-webkit-details-marker { display: none; }

#faq-section summary h3 {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 600;
    color: #111;
    margin: 0;
    flex: 1;
}

#faq-section summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: #555;
    flex-shrink: 0;
    transition: transform 0.2s;
}

#faq-section details[open] > summary::after {
    transform: rotate(45deg);
}

#faq-section details p,
#faq-section details ul {
    padding: 0 8px 20px;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #333;
    line-height: 1.7;
}

#faq-section details ul {
    padding-left: 28px;
}

#faq-section details a {
    color: #222;
    text-decoration: underline;
}

#faq-section details a:hover {
    color: #555;
}

/* Kontakt-Links */
address a {
    color: inherit;
    text-decoration: none;
}
address a:hover {
    text-decoration: underline;
}

/* === FAQ-Seite (faq.html) === */
.faq-content {
    padding: 32px 28px 48px;
}

.faq-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 36px;
}

.faq-group {
    margin-bottom: 40px;
}

.faq-group > h2 {
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.faq-group details {
    border-bottom: 1px solid #e8e8e8;
}

.faq-group details summary {
    cursor: pointer;
    padding: 16px 4px;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 500;
    color: #111;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.faq-group details summary::-webkit-details-marker { display: none; }

.faq-group details summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: #aaa;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-group details[open] > summary::after {
    transform: rotate(45deg);
}

.faq-group details[open] > summary {
    color: #000;
}

.faq-answer {
    padding: 4px 4px 20px;
}

.faq-answer p,
.faq-answer li {
    font-size: 15px;
    color: #333;
    line-height: 1.75;
    margin-bottom: 8px;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 20px;
    margin-bottom: 8px;
}

.faq-answer a {
    color: #222;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 14px;
    font-size: 15px;
}

.faq-table th,
.faq-table td {
    text-align: left;
    padding: 8px 12px;
    border-bottom: 1px solid #e4e4e4;
}

.faq-table th {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #666;
}

.faq-cta {
    margin-top: 40px;
    font-size: 15px;
    color: #444;
}

.faq-cta a {
    color: #111;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
