/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --white: #f5f5f5;
    --blue: #0d69b5;
    --grey: #1a1a1a;
    --text-muted: #888;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── HEADINGS ──────────────────────────────────────────────── */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
    display: inline-block;
    background-color: var(--blue);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 14px 36px;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--blue);
}

.hero-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-btns .btn {
    text-align: center;
}

.header-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
}

.header-btns .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ─── HEADER ────────────────────────────────────────────────── */
header {
    padding: 24px 0;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--black);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {

    display: flex;
    align-items: center;

    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.logo span{
    color: var(--blue)
}

.logo img{
    width: 70px;
    border-radius: 50px;
    margin-right: 20px;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--blue);
}

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

.hero-text h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ─── DEVICE MOCKUPS ────────────────────────────────────────── */
.hero-devices {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 32px;
}

/* Desktop */
.device-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.device-desktop-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: var(--grey);
    border: 12px solid #2e2e2e;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: 0 0 0 1px #444;
}

.device-desktop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.device-desktop-neck {
    width: 20%;
    height: 16px;
    background-color: #2a2a2a;
    border-left: 1px solid #444;
    border-right: 1px solid #444;
}

.device-desktop-base {
    width: 45%;
    height: 8px;
    background-color: #2e2e2e;
    border-radius: 4px;
    box-shadow: 0 0 0 1px #444;
}

/* Mobile */
.device-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 26%;
    background-color: #2e2e2e;
    border-radius: 36px;
    padding: 18px 12px;
    box-shadow: 0 0 0 1px #444;
    gap: 12px;
}

.device-mobile-speaker {
    width: 36%;
    height: 5px;
    background-color: #444;
    border-radius: 4px;
}

.device-mobile-screen {
    width: 100%;
    aspect-ratio: 9/16;
    background-color: var(--grey);
    border-radius: 4px;
    overflow: hidden;
}

.device-mobile-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.device-mobile-home {
    width: 30%;
    height: 5px;
    background-color: #555;
    border-radius: 4px;
}

.work-image img {
    cursor: pointer;
}

/* ─── TRUST STRIP ───────────────────────────────────────────── */
.trust-strip {
    padding: 28px 0;
    background-color: var(--grey);
    border-bottom: 1px solid #2a2a2a;
}

.trust-strip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 40px;
}

.trust-strip-grid span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-strip-grid span i {
    color: var(--blue);
    font-size: 0.95rem;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works {
    padding: 100px 0;
    border-bottom: 3px solid var(--blue);
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 56px;
    text-align: center;
}

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

.step {
    background-color: var(--grey);
    border: 1px solid #2a2a2a;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-icon {
    font-size: 1.6rem;
    color: var(--blue);
}

.step p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

/* ─── PROBLEM ───────────────────────────────────────────────── */

.problems{
    border-bottom: 3px solid var(--blue)
}

.problem {
    padding: 100px 0;
    border-bottom: 2px solid var(--grey);
}

.problem h2 {
    font-size: 2.2rem;
    margin-bottom: 28px;
    color: var(--blue);
}

.problem p {
    color: var(--text-muted);
    max-width: 720px;
    margin-bottom: 16px;
}

/* ─── OFFER ─────────────────────────────────────────────────── */
.offer {
    padding: 100px 0;
    background-color: var(--grey);
    border-bottom: 3px solid var(--blue);
}

.offer h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
    text-align: center;
}

.offer ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.offer ul li {
    background-color: var(--black);
    border: 1px solid #2a2a2a;
    padding: 24px 28px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer ul li i {
    color: var(--blue);
    font-size: 1.4rem;
}

/* ─── PRICING ───────────────────────────────────────────────── */
.pricing {
    padding: 100px 0;
    border-bottom: 3px solid var(--blue);
    text-align: center;
}

.pricing h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.pricing > .container > p {
    color: var(--text-muted);
    margin-bottom: 56px;
    font-size: 1rem;
}

.pricing-cards {
    max-width: 560px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--grey);
    border: 1px solid #333;
    padding: 48px 40px;
    text-align: left;
}

.pricing-card.featured {
    border-color: var(--blue);
    border-width: 2px;
}


.card-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 8px;
}

.price .per {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 24px;
}

.price-divider {
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 300;
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.trust-notes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.trust-notes span {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.trust-notes span::before {
    content: "— ";
    color: var(--blue);
}

.price-value-note {
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    font-style: italic;
}

/* ─── WORK EXAMPLE ──────────────────────────────────────────── */
.work {
    padding: 100px 0;
    border-bottom: 3px solid var(--blue);
}

.work h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
}

.work-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.work-image {
    overflow: hidden;
    border: 1px solid #333;
    background-color: var(--grey);
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.work-image img:hover {
    transform: scale(1.03);
}

/* ─── CONTACT / CTA ─────────────────────────────────────────── */
.contact {
    padding: 120px 0;
    border-bottom: 3px solid var(--blue);
    text-align: center;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.btn-whatsapp-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #0a0a0a;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 18px 48px;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
    margin-bottom: 16px;
}

.btn-whatsapp-primary:hover {
    opacity: 0.85;
}

.btn-whatsapp-primary i {
    font-size: 1.3rem;
}

.whatsapp-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 32px !important;
}

.contact-location {
    color: #555;
    font-size: 0.82rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0 !important;
}

.contact-prompt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px !important;
    margin-top: -16px !important;
}

/* ─── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

/* ─── SOCIALS ───────────────────────────────────────────────── */
.socials {
    padding: 100px 0;
    border-top: 1px solid #222;
    text-align: center;
}

.socials h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
}

.socials-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: var(--grey);
    border: 1px solid #2a2a2a;
    padding: 28px 36px;
    color: var(--white);
    text-decoration: none;
    min-width: 120px;
    transition: border-color 0.2s, color 0.2s;
}

.social-item:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.social-item i {
    font-size: 1.8rem;
}

.social-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
    padding: 32px 0;
    border-top: 1px solid #222;
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--blue);
}

/* ─── LEGAL PAGES ───────────────────────────────────────────── */
.legal {
    padding: 80px 0 120px;
}

.legal h1 {
    font-size: 2.6rem;
    margin-bottom: 56px;
    color: var(--white);
}

.legal h2 {
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--blue);
    margin-top: 48px;
    margin-bottom: 12px;
}

.legal h3 {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-top: 28px;
    margin-bottom: 8px;
}

.legal p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 720px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    max-width: 720px;
}

.legal ul li::before {
    content: "–";
    color: var(--blue);
    position: absolute;
    left: 0;
}

.legal a {
    color: var(--blue);
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    header {
        padding: 10px 0;
    }

    .logo {
        font-size: 0.75rem;
    }

    .logo img {
        width: 40px;
        margin-right: 0;
    }

    .logo div {
        display: none;
    }

    .header-btns .btn {
        padding: 10px 5px;
        font-size: 0.65rem;
        text-align: center;
    }

    .offer ul {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .price-divider {
        display: none;
    }

    .price {
        font-size: 2.4rem;
    }

    .work-gallery {
        grid-template-columns: 1fr;
    }

    .hero-devices {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .device-desktop {
        width: 100%;
    }

    .device-mobile {
        width: 46%;
    }

    .social-item span {
        display: none;
    }

    .social-item {
        padding: 20px 24px;
        min-width: unset;
    }

    .trust-strip-grid {
        gap: 10px 24px;
    }

    .trust-strip-grid span {
        font-size: 0.72rem;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .header-btns .btn-outline {
        display: none;
    }
}
