:root {
    --navy: #0f2744;
    --blue: #02066f;
    --accent: #ff8a00;
    --bg: #f5f8fc;
    --text: #233142;
    --muted: #64748b;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    line-height: 1.6;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5ecf5;
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    padding: 0;
}

.brand-name {
    font-weight: 700;
    color: var(--navy);
}

.brand-tag {
    font-size: 0.85rem;
    color: var(--muted);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.header-nav {
    flex-basis: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.75rem;
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid #d7e2ef;
    background: #eef5ff;
    color: var(--navy);
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.menu-icon {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.menu-icon span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
}

.section-menu {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.section-menu a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    background: #eef5ff;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
}

.section-menu a:hover,
.section-menu a:focus-visible {
    background: #dfeafb;
    border-color: #cfdcf0;
}

@media (max-width: 1024px) {
    .site-header {
        align-items: center;
    }

    .header-actions {
        display: contents;
    }

    .language-toggle {
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
    }

    .phone-pill {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        text-align: center;
        white-space: nowrap;
    }

    .header-nav {
        order: 4;
        width: 100%;
        margin-top: 0.5rem;
    }
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    background: #eef5ff;
    border-radius: 999px;
}

.lang-option {
    border: 0;
    background: transparent;
    color: var(--navy);
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.lang-option.active {
    background: white;
    box-shadow: 0 2px 6px rgba(15, 39, 68, 0.08);
}

.phone-pill {
    text-decoration: none;
    color: var(--navy);
    font-weight: 700;
    background: #eef5ff;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    text-align: center;
    padding: 3.5rem 1.25rem 2.75rem;
    background: linear-gradient(135deg, var(--navy) 0%, #02066f 60%, #205ea7 100%);
    color: #fff;
}

.hero,
.quote-form-card,
.services-section,
.value-proposition,
.service-camera-section,
.process-section,
.results-section,
.trust-factors {
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.hero p {
    margin: 0 auto 1.25rem;
    max-width: 650px;
    font-size: 1.05rem;
    color: #dce8f8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cta-button,
.secondary-button,
.quote-form button {
    display: inline-block;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-button,
.quote-form button {
    background: linear-gradient(135deg, var(--accent), #ff9d2c);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 138, 0, 0.25);
}

.secondary-button {
    background: #4EFD54;
    color: #103314;
}

.cta-button:hover,
.secondary-button:hover,
.quote-form button:hover {
    transform: translateY(-1px);
}

.quote-form button:disabled,
.quote-form button[disabled] {
    background: linear-gradient(135deg, #b8c4d3, #8d9bad);
    color: #f7f9fc;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.78;
    transform: none;
    filter: grayscale(0.15);
}

.quote-form button:disabled:hover,
.quote-form button[disabled]:hover {
    transform: none;
}

.quote-form-note {
    margin: 0.85rem 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #5f6f81;
    text-align: center;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: #eaf2fb;
    margin-top: 1rem;
}

.quote-form-card {
    max-width: 1100px;
    margin: -1.2rem auto 0;
    padding: 1.25rem;
    position: relative;
    z-index: 2;
}

.intro-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.25rem 0.25rem;
}

.intro-section-card {
    background: white;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 7px 20px rgba(15, 39, 68, 0.06);
    border: 1px solid #e6edf5;
}

.intro-copy {
    display: grid;
    gap: 0.9rem;
    color: var(--muted);
}

.intro-copy p {
    margin: 0;
}

.form-intro {
    background: white;
    padding: 1rem 1.25rem 0;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.form-intro h2 {
    margin: 0 0 0.3rem;
    color: var(--navy);
}

.form-intro p {
    margin: 0;
    color: var(--muted);
}

.quote-form {
    background: white;
    padding: 1.25rem;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 18px 40px rgba(15, 39, 68, 0.12);
    display: grid;
    gap: 0.9rem;
}

.form-row {
    display: grid;
    gap: 0.9rem;
}

.form-field {
    display: grid;
    gap: 0.35rem;
}

.full-width {
    grid-column: 1 / -1;
}

.field-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

.field-label.required::after {
    content: "*";
    display: inline-block;
    color: #d9480f;
    margin-left: 0.25rem;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    vertical-align: text-top;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 0.9rem 0.95rem;
    border: 1px solid #d7e2ef;
    border-radius: 10px;
    font: inherit;
    color: var(--text);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: 2px solid rgba(31, 111, 235, 0.22);
    border-color: var(--blue);
}

.quote-form textarea {
    min-height: 110px;
    resize: vertical;
}

.services-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.25rem 0.25rem;
}

.services-list-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.services-list-box {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 7px 20px rgba(15, 39, 68, 0.06);
    border: 1px solid #e6edf5;
}

.service-list-content {
    display: grid;
    gap: 1rem;
    align-items: center;
}

.service-list-text {
    min-width: 0;
}

.service-list-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    display: block;
}

.service-list-media {
    border-radius: 16px;
    overflow: hidden;
    background: #f3f7fc;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.services-list li {
    background: transparent;
    border-radius: 0;
    padding: 0.2rem 0 0.2rem 1.2rem;
    box-shadow: none;
    border: none;
    color: var(--navy);
    font-weight: 600;
    position: relative;
    cursor: pointer;
    transition: color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.services-list li::before {
    content: "•";
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0.35rem;
}

.services-list li:hover,
.services-list li.active {
    color: #091c31;
}

.services-list li.active {
    background: rgba(255, 138, 0, 0.08);
    border-radius: 12px;
    padding-left: 1.15rem;
    margin-left: -0.2rem;
    margin-right: -0.2rem;
}

.services-list li:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 12px;
}

.value-proposition {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    padding: 2.25rem 1.25rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    background: white;
    border: 1px solid #eaeff6;
    border-radius: 16px;
    padding: 1.1rem;
    box-shadow: 0 7px 20px rgba(15, 39, 68, 0.06);
}

.value-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef5ff, #dfeeff);
    position: relative;
    margin-bottom: 0.4rem;
}

.icon-clock::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2.5px solid var(--blue);
    border-radius: 50%;
}

.icon-clock::after {
    content: "";
    position: absolute;
    width: 2.5px;
    height: 10px;
    background: var(--blue);
    top: 12px;
    left: 24px;
    transform-origin: bottom center;
    transform: rotate(45deg);
}

.icon-price::before {
    content: "$";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    font-family: inherit;
}

.icon-shield::before {
    content: "";
    position: absolute;
    inset: 6px 8px;
    clip-path: polygon(50% 0%, 100% 15%, 92% 100%, 50% 86%, 8% 100%, 0% 15%);
    background: var(--blue);
}

.icon-shield::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    left: 20px;
    top: 18px;
    transform: rotate(-45deg);
}

.value-item h3 {
    margin: 0 0 0.25rem;
    color: var(--navy);
}

.value-item p {
    margin: 0;
    color: var(--muted);
}

.service-camera-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.25rem 0.5rem;
}

.service-camera-content {
    display: grid;
    gap: 1rem;
    background: white;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 7px 20px rgba(15, 39, 68, 0.06);
}

.service-camera-text h2 {
    margin: 0 0 0.5rem;
    color: var(--navy);
}

.service-camera-text p {
    margin: 0 0 0.7rem;
    color: var(--muted);
}

.service-camera-media img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.results-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 1.25rem 1.25rem;
}

.results-header {
    text-align: center;
    margin-bottom: 1rem;
}

.results-header h2 {
    margin: 0 0 0.3rem;
    color: var(--navy);
}

.results-header p {
    margin: 0;
    color: var(--muted);
}

.results-grid {
    display: grid;
    gap: 0;
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 7px 20px rgba(15, 39, 68, 0.06);
}

.comparison-card {
    display: grid;
    gap: 0;
}

.comparison-card + .comparison-card {
    border-left: 5px solid #e5ecf5;
}

.result-visual {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    overflow: hidden;
    background: #f4f8fd;
}

.result-visual.before {
    background: linear-gradient(135deg, #4f5f76, #8a5a00);
}

.result-visual.after {
    background: linear-gradient(135deg, #1f6feb, #1aa67b);
}

.result-image {
    width: 100%;
    height: 100%;
    display: block;
}

.result-visual.fit-cover .result-image {
    object-fit: cover;
    object-position: center;
}

.result-visual.fit-contain .result-image {
    object-fit: contain;
    object-position: center;
}

.sink-illustration {
    position: relative;
    width: 140px;
    height: 120px;
}

.sink-basin {
    position: absolute;
    bottom: 18px;
    left: 24px;
    width: 92px;
    height: 62px;
    border-radius: 0 0 26px 26px;
    background: linear-gradient(180deg, #f3f6fb, #c7d6e5);
    border: 3px solid #56708d;
}

.clean-basin {
    background: linear-gradient(180deg, #ffffff, #dfeffd);
    border-color: #4a89d8;
}

.sink-drain {
    position: absolute;
    bottom: 60px;
    left: 63px;
    width: 20px;
    height: 18px;
    border-radius: 50%;
    background: #5b6b7c;
}

.clean-drain {
    background: #2f74c7;
}

.sink-water {
    position: absolute;
    bottom: 24px;
    left: 31px;
    width: 78px;
    height: 34px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(180deg, #7a8a99, #4f5f76);
    opacity: 0.8;
}

.clean-water {
    background: linear-gradient(180deg, #d9f5ff, #6dc5ff);
    opacity: 0.9;
}

.sink-bubble {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    bottom: 38px;
    left: 42px;
}

.bubble-two {
    left: 78px;
    bottom: 44px;
    width: 6px;
    height: 6px;
}

.bubble-three {
    left: 54px;
    bottom: 58px;
    width: 5px;
    height: 5px;
}

.sink-sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    top: 24px;
    right: 30px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.sparkle-two {
    top: 34px;
    right: 48px;
    width: 7px;
    height: 7px;
}

.result-copy h3 {
    margin: 0 0 0.25rem;
    color: var(--navy);
}

.process-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.25rem 0.25rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.section-heading h2 {
    margin: 0 0 0.3rem;
    color: var(--navy);
}

.section-heading p {
    margin: 0;
    color: var(--muted);
}

.process-grid {
    display: grid;
    gap: 1rem;
}

.process-card {
    background: white;
    border-radius: 16px;
    padding: 1rem 1.1rem;
    box-shadow: 0 7px 20px rgba(15, 39, 68, 0.06);
    border-left: 4px solid var(--accent);
}

.process-step {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--accent));
    color: white;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.process-card h3 {
    margin: 0 0 0.3rem;
    color: var(--navy);
}

.process-card p {
    margin: 0;
    color: var(--muted);
}

.trust-factors {
    display: grid;
    gap: 1rem;
    padding: 1rem 1.25rem 2.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.review-grid {
    display: grid;
    gap: 1rem;
}

.review-cta {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: white;
    border-radius: 0;
    padding: 1rem 1.1rem;
    box-shadow: 0 7px 20px rgba(15, 39, 68, 0.06);
    border: 1px solid #e6edf5;
}

.testimonial-card .rating-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
}

.testimonial-card .stars {
    color: #f4b400;
    letter-spacing: 0.16em;
    font-size: 1.05rem;
}

.testimonial-card .rating-score {
    color: var(--blue);
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-card blockquote {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--text);
}

.testimonial-card span {
    color: var(--blue);
    font-weight: 600;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.trust-badges span {
    background: #eef5ff;
    color: var(--navy);
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--navy) 0%, #02066f 60%, #205ea7 100%);
    color: #dce8f8;
    font-size: 0.95rem;
}

@media (min-width: 760px) {
    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-list-content {
        grid-template-columns: 1.05fr 0.95fr;
    }

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

    .service-camera-content {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }

    .value-proposition {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .quote-form>* {
        grid-column: 1 / -1;
    }
}

@media (max-width: 759px) {
    .site-header {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem 0.75rem;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
        gap: 0.7rem;
        padding-right: 0.25rem;
    }

    .brand-name {
        font-size: 0.88rem;
        line-height: 1.15;
    }

    .brand-tag {
        font-size: 0.7rem;
        line-height: 1.2;
    }

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

    .menu-toggle {
        display: inline-flex;
    }

    .section-menu {
        display: none;
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid #dbe5f1;
        border-radius: 16px;
        box-shadow: 0 18px 30px rgba(15, 39, 68, 0.12);
        flex-direction: column;
        align-items: stretch;
    }

    .section-menu.is-open {
        display: flex;
    }

    .section-menu a {
        width: 100%;
        text-align: left;
        padding: 0.8rem 0.9rem;
    }

    .hero {
        padding: 2.75rem 1rem 2.5rem;
    }

    .quote-form-card,
    .intro-section,
    .services-section,
    .service-camera-section,
    .results-section,
    .process-section,
    .trust-factors {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .quote-form-card {
        padding-top: 1rem;
    }

    .quote-form,
    .form-intro,
    .services-list-box,
    .service-camera-content,
    .result-card,
    .process-card,
    .testimonial-card {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .quote-form,
    .service-camera-content,
    .result-card,
    .process-card,
    .testimonial-card {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .comparison-card + .comparison-card {
        border-left: 0;
        border-top: 1px solid #e5ecf5;
    }

    .value-proposition {
        padding-top: 2rem;
    }
}