* {
    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(246, 181, 31, 0.18), transparent 32rem),
        radial-gradient(circle at bottom right, rgba(24, 169, 87, 0.16), transparent 34rem),
        #070a11;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    overflow: hidden;
}

.container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.section-pad {
    padding: 4.5rem 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 10, 17, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    width: min(1160px, calc(100% - 2rem));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #101827;
    background: linear-gradient(135deg, #fff6bf, var(--vr-secondary));
    box-shadow: 0 14px 34px rgba(246, 181, 31, 0.24);
    font-size: 1.35rem;
}

.brand-text strong,
.brand-text small {
    display: block;
}

.brand-text strong {
    max-width: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.brand-text small {
    color: #9aa4b2;
    font-size: 0.78rem;
}

.main-nav {
    display: none;
}

.main-nav a {
    color: #d5dbe5;
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-cta {
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    color: #101827 !important;
    background: #fff4df;
    font-weight: 900;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
}

.hero-grid,
.split-grid,
.showcase-grid,
.contact-grid {
    display: grid;
    gap: 2.2rem;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
    color: var(--vr-secondary);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pulse-dot,
.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--vr-accent);
    box-shadow: 0 0 0 0 rgba(24, 169, 87, 0.72);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 12px rgba(24, 169, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 169, 87, 0); }
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 1rem;
    font-size: clamp(2.8rem, 8.5vw, 6.4rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4.8vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

h3 {
    margin-bottom: 0.55rem;
    font-size: 1.18rem;
    letter-spacing: -0.025em;
}

.hero-text,
.section-heading p,
.split-copy p,
.showcase-copy p,
.contact-panel p,
.service-card p,
.process-step p,
.testimonial-card p,
.faq-answer p,
.form-note {
    color: #cbd5e1;
}

.hero-text {
    max-width: 620px;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.25rem;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    color: #101827;
    background: linear-gradient(135deg, #fff8c9, var(--vr-secondary));
    box-shadow: 0 18px 42px rgba(246, 181, 31, 0.23);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip,
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.35rem;
}

.trust-strip span,
.feature-pills span {
    padding: 0.52rem 0.8rem;
    border-radius: 999px;
    color: #d9e1ee;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.88rem;
}

.hero-media {
    position: relative;
    min-height: 430px;
    border-radius: 34px;
    overflow: hidden;
    background: #151b27;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 17, 0.06), rgba(7, 10, 17, 0.7));
}

.hero-media img,
.showcase-photo img,
.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-status-card,
.response-card {
    position: absolute;
    z-index: 2;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    color: #101827;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.hero-status-card {
    left: 1.2rem;
    top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
}

.hero-status-card strong,
.hero-status-card small,
.response-card strong,
.response-card span {
    display: block;
}

.hero-status-card small,
.response-card span {
    color: #526071;
    font-size: 0.85rem;
}

.response-card {
    right: 1.2rem;
    bottom: 1.2rem;
    max-width: 190px;
    padding: 1rem;
}

.quick-contact {
    margin-top: -1rem;
}

.quick-contact-grid {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(246, 181, 31, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-contact span,
.quick-contact strong {
    display: block;
}

.quick-contact span {
    color: #9aa4b2;
    font-size: 0.83rem;
}

.quick-contact strong {
    color: #ffffff;
    font-size: 1rem;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 2.35rem;
    text-align: center;
}

.service-grid,
.process-line,
.testimonial-grid {
    display: grid;
    gap: 1rem;
}

.service-card,
.process-step,
.testimonial-card,
.faq-item,
.contact-form,
.contact-panel,
.stats-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.service-card,
.process-step,
.testimonial-card {
    padding: 1.25rem;
    border-radius: 28px;
}

.service-card {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 181, 31, 0.34);
}

.service-card > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: rgba(246, 181, 31, 0.14);
    font-size: 1.5rem;
}

.split-section,
.faq-section {
    background: rgba(255, 255, 255, 0.025);
}

.check-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.35rem;
}

.check-list div {
    display: flex;
    gap: 0.7rem;
    color: #e7edf7;
}

.check-list span {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #101827;
    background: var(--vr-secondary);
    font-weight: 900;
}

.image-stack {
    display: grid;
    gap: 1rem;
}

.main-photo {
    min-height: 310px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
}

.stats-card strong {
    display: block;
    color: var(--vr-secondary);
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.stats-card span {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.process-step span {
    display: inline-flex;
    margin-bottom: 0.9rem;
    color: var(--vr-secondary);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.showcase {
    background: radial-gradient(circle at left, rgba(24, 169, 87, 0.13), transparent 30rem);
}

.showcase-photo {
    min-height: 330px;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.stars {
    margin-bottom: 0.85rem;
    color: var(--vr-secondary);
    letter-spacing: 0.14em;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: #9aa4b2;
    font-size: 0.9rem;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
}

.faq-item {
    overflow: hidden;
    border-radius: 24px;
}

.faq-item button {
    width: 100%;
    padding: 1.08rem;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font-weight: 900;
}

.faq-item button span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #101827;
    background: #fff4df;
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    padding: 0 1.08rem 1.08rem;
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 180px;
}

.faq-item.active button span {
    transform: rotate(45deg);
}

.contact-section {
    background:
        radial-gradient(circle at bottom right, rgba(24, 169, 87, 0.16), transparent 30rem),
        rgba(255, 255, 255, 0.02);
}

.contact-panel,
.contact-form {
    border-radius: 30px;
    padding: 1.25rem;
}

.contact-panel {
    background: linear-gradient(135deg, rgba(246, 181, 31, 0.18), rgba(24, 169, 87, 0.1));
}

.contact-detail {
    display: grid;
    gap: 0.15rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-detail strong {
    color: #9aa4b2;
    font-size: 0.82rem;
}

.contact-detail a,
.contact-detail span {
    color: #ffffff;
    font-weight: 900;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

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

.form-row.two-col {
    grid-template-columns: 1fr;
}

label {
    color: #e7edf7;
    font-weight: 800;
    font-size: 0.92rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: #ffffff;
    background: rgba(7, 10, 17, 0.62);
    padding: 0.9rem 1rem;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: rgba(246, 181, 31, 0.65);
    box-shadow: 0 0 0 4px rgba(246, 181, 31, 0.12);
}

textarea {
    resize: vertical;
}

.form-note {
    margin: 0;
    font-size: 0.88rem;
}

.form-note.success {
    color: #bbf7d0;
}

.site-footer {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 6rem;
    color: #9aa4b2;
    display: grid;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer strong {
    color: #ffffff;
}

.site-footer p {
    margin-bottom: 0;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1.1rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #d99306);
    box-shadow: 0 18px 40px rgba(24, 169, 87, 0.28);
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 859px) {
    .main-nav {
        position: fixed;
        inset: 76px 1rem auto 1rem;
        display: grid;
        gap: 0.35rem;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(16, 24, 39, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .main-nav.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a {
        padding: 0.85rem;
        border-radius: 16px;
    }

    .nav-cta {
        text-align: center;
    }

    .hero {
        min-height: auto;
    }

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

    .response-card {
        max-width: 170px;
    }
}

@media (min-width: 700px) {
    .quick-contact-grid,
    .service-grid,
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .form-row.two-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 860px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 1.35rem;
    }

    .hero-grid,
    .split-grid,
    .showcase-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

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

    .process-line {
        grid-template-columns: repeat(4, 1fr);
    }

    .site-footer {
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

@media (min-width: 1080px) {
    .section-pad {
        padding: 5.5rem 0;
    }

    .hero {
        padding-top: 4.75rem;
        padding-bottom: 4.75rem;
    }
}

@media (max-width: 520px) {
    .container,
    .nav-wrap,
    .site-footer {
        width: min(100% - 1.2rem, 1160px);
    }

    .section-pad {
        padding: 3.4rem 0;
    }

    .brand-text strong {
        max-width: 180px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .stats-card {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        right: 0.7rem;
        bottom: 0.7rem;
    }
}
