/* ------------------------------
   BASIC RESET
------------------------------ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f9fc;
    color: #162033;
    line-height: 1.6;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}


/* ------------------------------
   HEADER AND NAVIGATION
------------------------------ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5eaf2;
    backdrop-filter: blur(10px);
}

.navbar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: #246bfd;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: #465269;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #246bfd;
}

.nav-contact {
    padding: 10px 18px;
    border-radius: 8px;
    background: #246bfd;
    color: #ffffff !important;
}

.menu-button {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
}


/* ------------------------------
   HERO SECTION
------------------------------ */

.hero {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, #dce9ff 0, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    margin-bottom: 14px;
    color: #246bfd;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.hero h1 span {
    color: #246bfd;
}

.hero-description {
    max-width: 700px;
    margin-top: 24px;
    color: #5b667a;
    font-size: 1.12rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: none;
    border-radius: 9px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: #246bfd;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(36, 107, 253, 0.25);
}

.button-primary:hover {
    background: #1558d8;
}

.button-secondary {
    border: 1px solid #cad3e2;
    background: #ffffff;
    color: #263146;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: #526078;
    font-size: 0.9rem;
}

.hero-card {
    padding: 34px;
    border: 1px solid #dfe6f1;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(26, 39, 69, 0.12);
}

.status-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    color: #3f4b61;
    font-size: 0.9rem;
    font-weight: 700;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #27ae60;
    box-shadow: 0 0 0 6px rgba(39, 174, 96, 0.12);
}

.hero-card h2 {
    margin-bottom: 14px;
    font-size: 1.8rem;
    line-height: 1.2;
}

.hero-card p {
    color: #647086;
}

.hero-card ul {
    margin: 24px 0;
    list-style: none;
}

.hero-card li {
    margin-bottom: 10px;
    color: #3f4b61;
}

.hero-card li::before {
    margin-right: 9px;
    color: #246bfd;
    content: "✓";
    font-weight: 800;
}

.text-link {
    color: #246bfd;
    font-weight: 800;
}


/* ------------------------------
   GENERAL SECTIONS
------------------------------ */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2,
.about-grid h2,
.contact-content h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-heading p:last-child,
.about-grid > div > p,
.contact-content > p {
    color: #69758a;
}


/* ------------------------------
   SERVICES
------------------------------ */

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

.service-card {
    padding: 30px;
    border: 1px solid #e1e7f0;
    border-radius: 16px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(27, 42, 74, 0.09);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #edf3ff;
    font-size: 1.45rem;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    margin-bottom: 20px;
    color: #68758a;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    margin-bottom: 7px;
    color: #465269;
    font-size: 0.92rem;
}

.service-card li::before {
    margin-right: 8px;
    color: #246bfd;
    content: "•";
}


/* ------------------------------
   PRICING
------------------------------ */

.pricing-section {
    background: #edf3ff;
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 28px;
    align-items: start;
}

.pricing-card,
.pricing-highlight,
.pricing-policy {
    border: 1px solid #dce4f0;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(27, 42, 74, 0.07);
}

.pricing-card {
    padding: 10px 30px;
}

.price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2px 24px;
    padding: 18px 0;
    border-bottom: 1px solid #e6ebf3;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row span {
    color: #263146;
    font-weight: 700;
}

.price-row strong {
    color: #1558d8;
    text-align: right;
}

.price-row small {
    grid-column: 1 / -1;
    color: #69758a;
}

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

.pricing-highlight,
.pricing-policy {
    padding: 25px;
}

.pricing-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-color: #aac5ff;
}

.pricing-badge {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 8px;
    background: #246bfd;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
}

.pricing-details h3 {
    margin-bottom: 8px;
    font-size: 1.16rem;
}

.pricing-details p {
    color: #5b667a;
    font-size: 0.94rem;
}

.pricing-details .policy-exclusions {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e6ebf3;
    font-size: 0.84rem;
}

.pricing-note {
    max-width: 900px;
    margin: 30px auto 0;
    color: #526078;
    text-align: center;
    font-size: 0.94rem;
}

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

@media (max-width: 860px) {
    .pricing-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 540px) {
    .pricing-card {
        padding: 8px 20px;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .price-row strong {
        text-align: left;
    }

    .pricing-highlight {
        display: block;
    }

    .pricing-badge {
        display: inline-block;
        margin-bottom: 14px;
    }
}

/* ------------------------------
   ABOUT
------------------------------ */

.section-dark {
    background: #111a2b;
    color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-grid > div > p {
    margin-bottom: 20px;
    color: #b8c1d1;
}

.about-features {
    display: grid;
    gap: 18px;
}

.feature {
    display: flex;
    gap: 18px;
    padding: 24px;
    border: 1px solid #2c374b;
    border-radius: 14px;
    background: #182337;
}

.feature > span {
    color: #6f9cff;
    font-weight: 800;
}

.feature h3 {
    margin-bottom: 5px;
}

.feature p {
    color: #b5bfd0;
}


/* ------------------------------
   PROCESS
------------------------------ */

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

.process-card {
    padding: 32px;
    border-top: 3px solid #246bfd;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(25, 39, 70, 0.07);
}

.process-card > span {
    display: block;
    margin-bottom: 22px;
    color: #246bfd;
    font-size: 2rem;
    font-weight: 800;
}

.process-card h3 {
    margin-bottom: 10px;
}

.process-card p {
    color: #68758a;
}


/* ------------------------------
   CONTACT
------------------------------ */

.contact-section {
    background: #edf3ff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin-bottom: 12px;
    color: #465269;
}

.contact-form {
    padding: 34px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(30, 49, 86, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2f3b50;
    font-size: 0.92rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cad3e1;
    border-radius: 8px;
    background: #ffffff;
    color: #192337;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #246bfd;
    box-shadow: 0 0 0 3px rgba(36, 107, 253, 0.12);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 16px;
    font-weight: 700;
}

.form-message.success {
    color: #198754;
}

.form-message.error {
    color: #c0392b;
}

.contact-form .button:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.form-privacy {
    margin-top: 18px;
    color: #69758a;
    font-size: 0.82rem;
}

.form-privacy a {
    color: #1558d8;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ------------------------------
   PRIVACY POLICY
------------------------------ */

.privacy-page {
    background: #edf3ff;
}

.privacy-header {
    position: static;
}

.privacy-nav-link {
    color: #246bfd;
    font-weight: 700;
}

.privacy-main {
    padding: 70px 0 90px;
}

.privacy-content {
    width: min(820px, 90%);
    margin: 0 auto;
    padding: 52px;
    border: 1px solid #dce4f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(30, 49, 86, 0.09);
}

.privacy-content h1 {
    margin-bottom: 10px;
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.privacy-updated {
    margin-bottom: 34px;
    color: #69758a;
}

.privacy-content h2 {
    margin: 34px 0 10px;
    font-size: 1.35rem;
}

.privacy-content p,
.privacy-content li {
    color: #526078;
}

.privacy-content p + p {
    margin-top: 14px;
}

.privacy-content ul {
    margin: 12px 0 0 22px;
}

.privacy-content li {
    margin-bottom: 7px;
}

.privacy-content a {
    color: #1558d8;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 600px) {
    .privacy-main {
        padding: 36px 0 60px;
    }

    .privacy-content {
        padding: 32px 22px;
    }
}


/* ------------------------------
   FOOTER
------------------------------ */

.site-footer {
    padding: 28px 0;
    background: #0b1220;
    color: #b5bfd0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}

.footer-links a:hover {
    color: #ffffff;
}


/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */

@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .hero {
        padding: 80px 0;
    }

    .hero-card {
        max-width: 600px;
    }
}

@media (max-width: 700px) {
    .menu-button {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 5%;
        border-bottom: 1px solid #e1e6ef;
        background: #ffffff;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 13px 0;
    }

    .nav-contact {
        margin-top: 8px;
        padding: 12px 16px !important;
        text-align: center;
    }

    .services-grid,
    .process-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-points {
        flex-direction: column;
        gap: 8px;
    }

    .section {
        padding: 75px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ------------------------------
   NO FIX, NO REPAIR FEE
------------------------------ */

.no-fix-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.no-fix-card {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding: 42px;
    border: 1px solid #dfe6f1;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 18px 45px rgba(27, 42, 74, 0.09);
}

.no-fix-card .eyebrow,
.no-fix-card h2,
.no-fix-card p {
    text-align: center;
}

.no-fix-card h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -1px;
}

.no-fix-card p {
    max-width: 620px;
    margin: 0 auto;
    color: #465269;
    font-size: 1.05rem;
}

.no-fix-card .no-fix-conditions {
    margin-top: 18px;
    color: #69758a;
    font-size: 0.9rem;
}

@media (max-width: 700px) {
    .no-fix-section {
        padding: 60px 0;
    }

    .no-fix-card {
        padding: 30px 22px;
    }
}
