:root {
    --ink: #111827;
    --ink-soft: #374151;
    --teal: #0fb5ae;
    --teal-dark: #0b8f89;
    --teal-tint: #ccfbf1;
    --coral: #ff6b6b;
    --coral-dark: #e14d4d;
    --coral-tint: #ffe4e1;
    --bg: #faf9f6;
    --white: #ffffff;
    --muted: #5b6472;
    --line: #e2e8f0;
    --shadow-sm: 4px 4px 0 var(--ink);
    --shadow-md: 6px 6px 0 var(--ink);
    --shadow-lg: 10px 10px 0 var(--ink);
    --font-head:
        "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-body:
        "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: var(--font-body);
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: var(--font-head);
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

header {
    padding: 22px 0;
    background: rgba(250, 249, 246, 0.92);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 2px solid var(--ink);
    backdrop-filter: blur(14px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--white);
    background: var(--coral);
    border: 2px solid var(--ink);
    border-radius: 10px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(-6deg);
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--ink-soft);
    font-size: 0.93rem;
    font-weight: 600;
}

.nav-action,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: var(--coral);
    color: var(--white);
    font: inherit;
    font-family: var(--font-head);
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.15s,
        box-shadow 0.15s,
        background 0.15s;
}

.nav-action {
    min-height: 40px;
    padding: 0 18px;
}

.button:hover,
.nav-action:hover {
    background: var(--coral-dark);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
}

.hero {
    padding: 76px 0 90px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 55px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    color: var(--ink);
    background: var(--teal-tint);
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
}

h1 {
    max-width: 620px;
    margin: 18px 0;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.97;
    font-weight: 700;
    letter-spacing: -0.04em;
}

h1 em {
    color: var(--coral);
    font-style: normal;
}

.hero-copy {
    max-width: 510px;
    margin: 0 0 28px;
    color: var(--ink-soft);
    font-size: 1.1rem;
    line-height: 1.65;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button.secondary {
    color: var(--ink);
    background: var(--white);
}

.button.secondary:hover {
    background: var(--teal-tint);
}

.trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 31px;
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 600;
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 15px;
    color: var(--ink-soft);
    font-size: 0.85rem;
    font-weight: 600;
}

.pin {
    color: var(--coral);
    font-size: 1.05rem;
}

.phone-link {
    color: var(--teal-dark);
    font-weight: 700;
}

.visual {
    position: relative;
    min-height: 450px;
}

.sun {
    position: absolute;
    right: 5%;
    top: 5%;
    width: 330px;
    height: 330px;
    background: var(--teal);
    border: 2px solid var(--ink);
    border-radius: 50%;
}

.phone {
    position: absolute;
    right: 19%;
    top: 38px;
    width: 218px;
    height: 426px;
    padding: 10px;
    background: var(--ink);
    border: 4px solid var(--ink);
    border-radius: 37px;
    box-shadow: var(--shadow-lg);
    transform: rotate(8deg);
}

.phone::before {
    content: "";
    display: block;
    width: 67px;
    height: 18px;
    margin: 0 auto 6px;
    background: #000;
    border-radius: 0 0 15px 15px;
    position: relative;
    z-index: 2;
}

.screen {
    height: 374px;
    overflow: hidden;
    padding: 25px 17px;
    color: #fff;
    background: linear-gradient(
        145deg,
        var(--coral) 0%,
        #ff8f8f 50%,
        var(--teal) 100%
    );
    border-radius: 23px;
}

.screen small {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.87;
}

.screen strong {
    display: block;
    margin-top: 42px;
    font-family: var(--font-head);
    font-size: 1.65rem;
    letter-spacing: -0.03em;
}

.screen-card {
    margin-top: 17px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 14px;
    backdrop-filter: blur(7px);
    font-size: 0.74rem;
    font-weight: 700;
}

.screen-card b {
    display: block;
    margin-top: 4px;
    font-size: 1.1rem;
}

.float-card {
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 190px;
    padding: 17px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.float-card div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
    font-size: 0.76rem;
    color: var(--ink-soft);
    font-weight: 700;
}

.float-card strong {
    font-family: var(--font-head);
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.float-card b {
    color: var(--teal-dark);
    font-size: 0.75rem;
}

.services {
    padding: 22px 0 95px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-head p {
    max-width: 380px;
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.55;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service {
    padding: 27px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}

.service:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--ink);
}

.icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 48px;
    color: var(--teal-dark);
    background: var(--teal-tint);
    border: 2px solid var(--ink);
    border-radius: 12px;
    font-size: 1.55rem;
}

.service:nth-child(2) .icon {
    color: var(--coral-dark);
    background: var(--coral-tint);
}

.service:nth-child(3) .icon {
    color: var(--white);
    background: var(--ink);
}

.service h3 {
    margin: 0 0 9px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service p {
    min-height: 50px;
    margin: 0 0 20px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

.service a {
    color: var(--teal-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonials {
    padding: 22px 0 95px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial {
    display: flex;
    flex-direction: column;
    padding: 27px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}

.testimonial:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--ink);
}

.testimonial-rating {
    margin-bottom: 14px;
    color: var(--coral);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.testimonial-quote {
    flex-grow: 1;
    margin: 0 0 20px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    display: grid;
    gap: 2px;
    padding-top: 14px;
    border-top: 2px solid var(--line);
}

.testimonial-author strong {
    font-family: var(--font-head);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.steps {
    padding: 80px 0;
    background: var(--ink);
    color: var(--white);
}

.steps h2 {
    max-width: 440px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 65px;
}

.steps-intro p {
    color: #c3cad6;
    line-height: 1.65;
}

.step-list {
    border-top: 2px solid #33415a;
}

.step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 2px solid #33415a;
}

.step-number {
    color: var(--coral);
    font-family: var(--font-head);
    font-weight: 700;
}

.step h3 {
    margin: 0 0 5px;
    font-size: 1rem;
    font-weight: 700;
}

.step p {
    margin: 0;
    color: #c3cad6;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta {
    padding: 94px 0;
    text-align: center;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 58px 25px;
    background: var(--teal);
    border: 2px solid var(--ink);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.cta-box::after {
    position: absolute;
    right: -75px;
    bottom: -92px;
    width: 240px;
    height: 240px;
    border: 30px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.cta h2 {
    max-width: 620px;
    margin: 0 auto 17px;
    color: var(--ink);
}

.cta p {
    max-width: 500px;
    margin: 0 auto 27px;
    color: #063836;
    line-height: 1.6;
}

.cta .button {
    background: var(--coral);
}

.cta .button:hover {
    background: var(--coral-dark);
}

.contact-line {
    margin-top: 17px;
    color: #063836;
    font-size: 0.93rem;
    font-weight: 700;
}

.contact-line a {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.repair-form {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 34px auto 0;
    padding: 30px;
    color: var(--ink);
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 14px;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.form-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 17px;
    border-bottom: 2px solid var(--line);
}

.form-heading strong {
    font-family: var(--font-head);
    font-size: 1.06rem;
    letter-spacing: -0.01em;
}

.form-heading span {
    color: var(--ink-soft);
    font-size: 0.79rem;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.field {
    display: grid;
    gap: 7px;
}

.field.wide {
    grid-column: 1 / -1;
}

.field label {
    font-size: 0.84rem;
    font-weight: 700;
}

.required {
    color: var(--coral);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    background: var(--bg);
    border: 2px solid var(--ink);
    border-radius: 8px;
    font: inherit;
}

.field textarea {
    min-height: 100px;
    resize: vertical;
}

.device-picker {
    grid-column: 1 / -1;
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.device-picker legend {
    padding: 0;
    font-size: 0.84rem;
    font-weight: 700;
}

.device-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pickup-fields {
    display: contents;
}

.pickup-fields[hidden] {
    display: none;
}

.device-option {
    position: relative;
}

.device-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.device-option span {
    display: grid;
    min-height: 52px;
    place-items: center;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--bg);
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.15s,
        color 0.15s,
        transform 0.15s,
        box-shadow 0.15s;
}

.device-option input:checked + span {
    color: var(--ink);
    background: var(--teal-tint);
    box-shadow: var(--shadow-sm);
}

.device-option input:focus-visible + span {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

.device-option span:hover {
    transform: translate(-2px, -2px);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 3px solid var(--teal-tint);
    border-color: var(--teal);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
}

.form-status {
    margin: 0;
    color: var(--teal-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.form-status.is-error {
    color: var(--coral-dark);
}

.form-footer .button:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

footer {
    padding: 27px 0;
    border-top: 2px solid var(--ink);
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.faq {
    padding: 90px 0;
}

.faq .section-head p {
    max-width: 480px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 4px 22px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    list-style: none;
    font-weight: 700;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--coral);
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin: 0 0 20px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width: 800px) {
    nav a:not(.nav-action) {
        display: none;
    }

    .hero {
        padding: 45px 0 68px;
    }

    .hero-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .visual {
        min-height: 390px;
        width: min(100%, 440px);
        margin: 0 auto;
    }

    .phone {
        right: 14%;
        width: 190px;
        height: 375px;
    }

    .screen {
        height: 323px;
    }

    .sun {
        width: 285px;
        height: 285px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .icon {
        margin-bottom: 25px;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field.wide {
        grid-column: auto;
    }

    .device-picker {
        grid-column: auto;
    }

    .form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .form-footer .button {
        width: 100%;
    }

    .device-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .brand {
        font-size: 1.1rem;
    }

    .nav-action {
        padding: 0 12px;
        font-size: 0.8rem;
    }

    h1 {
        font-size: 3.15rem;
    }

    .float-card {
        left: 0;
        bottom: 6px;
        width: 165px;
    }

    .phone {
        right: 8%;
    }
}
