* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #f8fafc;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 34rem),
        radial-gradient(circle at 88% 8%, rgba(34, 197, 94, 0.10), transparent 32rem),
        linear-gradient(135deg, #090b10 0%, var(--primary) 48%, #06070a 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.page-shell {
    overflow: hidden;
    position: relative;
}

.section-pad {
    padding: 4rem 1.1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.1rem;
    background: rgba(8, 10, 15, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.brand-mark {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    position: relative;
    flex: 0 0 auto;
    border-radius: 0.95rem;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.98), rgba(34, 197, 94, 0.70)),
        #111827;
    box-shadow: 0 0 35px rgba(245, 158, 11, 0.22);
    overflow: hidden;
}

.brand-mark span {
    position: absolute;
    width: 1.8rem;
    height: 0.32rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    transform: rotate(-18deg);
}

.brand-mark span:last-child {
    transform: rotate(-18deg) translateY(0.55rem);
    opacity: 0.62;
}

.brand-text {
    min-width: 0;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 0.95rem;
    line-height: 1.1;
    white-space: nowrap;
}

.brand small {
    color: #aeb6c4;
    font-size: 0.73rem;
    margin-top: 0.1rem;
}

.nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-content: center;
    gap: 0.28rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.site-nav {
    position: fixed;
    inset: 4.7rem 1rem auto 1rem;
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    background: rgba(12, 13, 18, 0.97);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

body.nav-open .site-nav {
    display: flex;
}

.site-nav a {
    padding: 0.85rem 0.95rem;
    color: #dce3ee;
    border-radius: 0.85rem;
    font-weight: 700;
}

.site-nav a:hover,
.nav-cta {
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    color: #ffffff !important;
    border: 1px solid rgba(245, 158, 11, 0.45);
}

.hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 4.8rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -15rem -9rem -15rem;
    height: 24rem;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 4rem 4rem;
    transform: perspective(500px) rotateX(62deg);
    transform-origin: bottom;
    opacity: 0.75;
    pointer-events: none;
}

.hero-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 2.2rem;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 0.95rem;
    color: #fbbf24;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 1.8rem;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 13ch;
    margin-bottom: 1.1rem;
    font-size: clamp(3rem, 8vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.075em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h3 {
    margin-bottom: 0.65rem;
    font-size: 1.22rem;
    letter-spacing: -0.025em;
}

.hero-text {
    max-width: 42rem;
    color: #d6deea;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.8rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    border: 0;
    font-weight: 900;
    cursor: pointer;
    transition: 0.22s ease;
}

.btn-primary {
    color: #141006;
    background: linear-gradient(135deg, #f59e0b, #fde68a);
    box-shadow: 0 18px 45px rgba(245, 158, 11, 0.24);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 65px rgba(245, 158, 11, 0.34);
}

.btn-ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 44rem;
}

.hero-stats div {
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: #ffffff;
    font-size: 1rem;
}

.hero-stats span {
    color: #b8c3d4;
    font-size: 0.82rem;
}

.hero-media {
    position: relative;
    min-height: 25rem;
    border-radius: 2rem;
}

.hero-media img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.42);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55)),
        radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.24), transparent 18rem);
    pointer-events: none;
}

.media-card {
    position: absolute;
    z-index: 2;
    max-width: 15rem;
    padding: 0.95rem 1rem;
    border-radius: 1.15rem;
    background: rgba(7, 8, 12, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.media-card span,
.media-card strong {
    display: block;
}

.media-card span {
    color: #fbbf24;
    font-size: 0.73rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.media-card strong {
    margin-top: 0.15rem;
    color: #ffffff;
    line-height: 1.25;
}

.media-card-top {
    top: 1rem;
    right: 1rem;
}

.media-card-bottom {
    left: 1rem;
    bottom: 1rem;
}

.service-strip {
    width: min(1180px, calc(100% - 2.2rem));
    margin: 0 auto;
    padding: 0.75rem;
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.service-strip span {
    flex: 0 0 auto;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: #edf3fb;
    font-size: 0.86rem;
    font-weight: 800;
}

.section-heading {
    width: min(780px, 100%);
    margin: 0 auto 2.1rem;
    text-align: center;
}

.section-heading .eyebrow {
    justify-content: center;
}

.section-heading p:not(.eyebrow) {
    color: #cbd5e1;
}

.services-grid,
.testimonial-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.service-card,
.testimonial-card,
.timeline-step,
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.service-card {
    padding: 1.25rem;
    border-radius: 1.5rem;
    transition: 0.22s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.45);
}

.featured-service {
    padding-top: 0;
}

.featured-service img {
    width: calc(100% + 2.5rem);
    max-width: none;
    height: 10rem;
    margin: 0 -1.25rem 1.25rem;
    object-fit: cover;
}

.icon-box {
    width: 3.15rem;
    height: 3.15rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 1rem;
    color: #151006;
    background: linear-gradient(135deg, #f59e0b, #fff2b7);
    font-weight: 900;
}

.service-card p,
.service-card li,
.timeline-step p,
.testimonial-card p,
.faq-answer p,
.contact-copy p,
.form-note {
    color: #cbd5e1;
}

.service-card ul {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
}

.service-card li {
    margin: 0.38rem 0;
}

.trust-section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
}

.trust-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1.2rem;
    align-items: center;
}

.trust-media img,
.finish-photo img {
    width: 100%;
    min-height: 22rem;
    max-height: 34rem;
    object-fit: cover;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.34);
}

.trust-copy {
    padding: 1.4rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 20rem),
        rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-copy > p:not(.eyebrow) {
    color: #dce3ee;
}

.trust-points {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.trust-points div {
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-points strong,
.trust-points span {
    display: block;
}

.trust-points strong {
    margin-bottom: 0.25rem;
}

.trust-points span {
    color: #b8c3d4;
    font-size: 0.92rem;
}

.process-section {
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 4rem 4rem;
}

.timeline {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.timeline-step {
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 5rem;
    border-radius: 1.35rem;
}

.timeline-step span {
    position: absolute;
    left: 1.2rem;
    top: 1.25rem;
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.16);
    border: 1px solid rgba(245, 158, 11, 0.42);
    color: #fbbf24;
    font-weight: 900;
}

.finishes {
    position: relative;
}

.finish-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1.4rem;
    align-items: center;
}

.finish-copy > p:not(.eyebrow) {
    max-width: 42rem;
    color: #cbd5e1;
}

.finish-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.finish-list div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.15rem 0.8rem;
    align-items: center;
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.finish-list p {
    grid-column: 2;
    margin-bottom: 0;
    color: #bac5d5;
    font-size: 0.92rem;
}

.swatch {
    width: 2.5rem;
    height: 2.5rem;
    grid-row: span 2;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.18);
}

.swatch-dark {
    background: linear-gradient(135deg, #111827, #6b7280, #f59e0b);
}

.swatch-light {
    background: linear-gradient(135deg, #f8fafc, #94a3b8, #e2e8f0);
}

.swatch-gold {
    background: linear-gradient(135deg, #78350f, #f59e0b, #fde68a);
}

.swatch-green {
    background: linear-gradient(135deg, #064e3b, #22c55e, #a7f3d0);
}

.testimonial-section {
    padding-top: 3.5rem;
}

.testimonial-card {
    padding: 1.25rem;
    border-radius: 1.5rem;
}

.quote-mark {
    width: 2.8rem;
    height: 2.8rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.16);
    color: #fbbf24;
    font-size: 2.1rem;
    line-height: 1;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.faq-section {
    background: rgba(255, 255, 255, 0.025);
}

.faq-list {
    width: min(900px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    border-radius: 1.2rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #ffffff;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 900;
}

.faq-question span {
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
    transition: 0.2s ease;
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.contact-section {
    background:
        radial-gradient(circle at 78% 10%, rgba(245, 158, 11, 0.18), transparent 28rem),
        rgba(0, 0, 0, 0.18);
}

.contact-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1.4rem;
    align-items: start;
}

.contact-copy {
    padding: 1.4rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 20rem),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.contact-details a,
.contact-details div {
    display: block;
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details span,
.contact-details strong {
    display: block;
}

.contact-details span {
    color: #fbbf24;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-details strong {
    word-break: break-word;
}

.quote-form {
    padding: 1.2rem;
    border-radius: 2rem;
    background: #f8fafc;
    color: #111827;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.36);
}

.form-row {
    display: grid;
    gap: 0.9rem;
}

.quote-form label {
    display: block;
    margin-bottom: 0.9rem;
    color: #111827;
    font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    margin-top: 0.38rem;
    padding: 0.9rem 0.95rem;
    border-radius: 1rem;
    border: 1px solid #cbd5e1;
    outline: 0;
    color: #111827;
    background: #ffffff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.quote-form textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
}

.form-note {
    margin: 0.8rem 0 0;
    color: #64748b;
    font-size: 0.86rem;
}

.form-success {
    display: none;
    margin-top: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    color: #064e3b;
    background: #dcfce7;
    border: 1px solid #86efac;
    font-weight: 800;
}

.form-success.show {
    display: block;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    color: #06120a;
    background: linear-gradient(135deg, #22c55e, #bbf7d0);
    font-weight: 900;
    box-shadow: 0 16px 45px rgba(34, 197, 94, 0.35);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 640px) {
    .hero-stats,
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 720px) {
    .section-pad {
        padding: 5rem 1.5rem;
    }

    .site-header {
        padding: 1rem 1.5rem;
    }

    .services-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-copy,
    .contact-copy,
    .quote-form {
        padding: 1.8rem;
    }

    .contact-details {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 980px) {
    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-nav a {
        padding: 0.65rem 0.85rem;
        font-size: 0.92rem;
    }

    .hero-grid {
        grid-template-columns: 1fr 0.95fr;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-grid,
    .finish-layout,
    .contact-layout {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .finish-layout {
        grid-template-columns: 1.05fr 0.95fr;
    }

    .timeline {
        grid-template-columns: repeat(4, 1fr);
    }

    .timeline-step {
        padding: 5rem 1.2rem 1.2rem;
    }

    .timeline-step span {
        left: 1.2rem;
        top: 1.2rem;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .brand strong {
        max-width: 12rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    h1 {
        font-size: clamp(2.7rem, 15vw, 4.2rem);
    }

    .hero-media img {
        height: 22rem;
    }

    .media-card {
        max-width: 13rem;
        font-size: 0.88rem;
    }

    .media-card-top {
        top: 0.75rem;
        right: 0.75rem;
    }

    .media-card-bottom {
        left: 0.75rem;
        bottom: 0.75rem;
    }

    .whatsapp-float {
        right: 0.8rem;
        bottom: 0.8rem;
    }
}