/* =========================================
   WEBEMMa DIGITAL STUDIO
   Main Stylesheet
========================================= */


/* =========================================
   1. RESET
========================================= */
:root {
    --page-bg: #F3EDE1;
}

body.dark-mode {
    --page-bg: #0A0A0A;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--page-bg);
    color: #ff0202;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    font: inherit;
}


/* =========================================
   2. GLOBAL
========================================= */

:root {
    --bg: #ffffff;
    --bg-soft: #ffffff;
    --bg-card: #FFFFFF;

    --text: #111111;
    --text-muted: #474646;

    --border: rgba(0, 0, 0, 0.10);

    --accent: #00ff0d;
    --accent-dark: #00c700;

    --max-width: 1200px;
}



.container {
    width: min(90%, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 700;
}

.section-heading h2 span {
    color: var(--text-muted);
}

.section-heading > p:last-child {
    margin-top: 25px;
    max-width: 600px;
    color: var(--text-muted);
    font-size: 18px;
}


/* =========================================
   3. BUTTONS
========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 26px;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary {
    background: var(--accent);
    color: #050505;
}

.btn-primary:hover {
    background: #d0ff57;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}


/* =========================================
   4. NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo::after {
    content: ".";
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 34px;
}

.nav-links a {
    color: #aaa;
    font-size: 14px;

    transition: 0.3s ease;
}

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

.nav-cta {
    background: #fff;
    color: #000;

    padding: 11px 18px;
    border-radius: 100px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent);
}

.mobile-menu-btn {
    display: none;

    border: none;
    background: transparent;
    color: white;

    font-size: 24px;
    cursor: pointer;
}


/* =========================================
   5. HERO
========================================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 160px 0 100px;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(184, 255, 0, 0.08),
            transparent 30%
        );
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;

    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: clamp(55px, 7vw, 92px);
    line-height: 0.95;
    letter-spacing: -5px;

    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--text-muted);
}

.hero-description {
    max-width: 600px;

    font-size: 20px;
    color: var(--text-muted);

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-location {
    margin-top: 25px;

    color: #666;
    font-size: 13px;
}


/* =========================================
   6. WEBSITE MOCKUP
========================================= */

.hero-visual {
    perspective: 1200px;
}

.website-window {
    width: 100%;

    border-radius: 18px;
    overflow: hidden;

    background: #171717;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5);

    transform: rotateY(-5deg) rotateX(3deg);

    transition: 0.6s ease;
}

.website-window:hover {
    transform: rotateY(0) rotateX(0) translateY(-8px);
}

.window-top {
    height: 40px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 15px;

    background: #202020;
}

.window-top span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #555;
}

.website-preview {
    min-height: 480px;

    padding: 28px;

    background:
        linear-gradient(
            135deg,
            #171717,
            #242424
        );
}

.preview-header {
    display: flex;
    justify-content: space-between;

    font-size: 11px;
}

.preview-nav {
    display: flex;
    gap: 18px;

    color: #777;
}

.preview-content {
    margin-top: 120px;
}

.preview-content p {
    color: var(--accent);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.preview-content h2 {
    max-width: 400px;

    margin: 15px 0 25px;

    font-size: 45px;
    line-height: 1;

    letter-spacing: -2px;
}

.preview-button {
    display: inline-block;

    padding: 11px 18px;

    background: var(--accent);
    color: #000;

    border-radius: 100px;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================
   7. VALUE STRIP
========================================= */

.value-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #0d0d0d;
}

.value-container {
    min-height: 110px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    align-items: center;
}

.value-container div {
    display: flex;
    flex-direction: column;
    gap: 3px;

    padding-left: 25px;

    border-left: 1px solid var(--border);
}

.value-container strong {
    color: var(--accent);
    font-size: 12px;
}

.value-container span {
    color: #aaa;
    font-size: 14px;
}


/* =========================================
   8. INDUSTRIES
========================================= */

.industries {
    background: #07d3da;
}

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

.industry-card {
    position: relative;

    padding: 40px;

    min-height: 330px;

    background: var(--bg-card);

    border: 1px solid var(--border);
    border-radius: 18px;

    transition: 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 8, 8, 0.4);
}

.card-number {
    position: absolute;
    top: 25px;
    right: 25px;

    color: #000000;
    font-size: 12px;
}

.card-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 70px;

    border-radius: 12px;

    background: rgba(184, 255, 0, 0.1);
    color: var(--accent);

    font-size: 24px;
}

.industry-card h3 {
    font-size: 27px;
    margin-bottom: 12px;
}

.industry-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.industry-card a {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   9. PROBLEM
========================================= */

.problem {
    background: #e28f5e;
}

.problem-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.problem-item {
    padding-bottom: 30px;

    border-bottom: 1px solid var(--border);
}

.problem-item span {
    color: var(--accent);
    font-size: 12px;
}

.problem-item h3 {
    margin: 15px 0 10px;

    font-size: 20px;
}

.problem-item p {
    color: var(--text-muted);
    font-size: 14px;
}


/* =========================================
   10. SERVICES
========================================= */

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

.service-card {
    padding: 45px;

    min-height: 300px;

    background: var(--bg-card);

    border: 1px solid var(--border);
    border-radius: 18px;

    transition: 0.4s ease;
}

.service-card:hover {
    border-color: rgba(184, 255, 0, 0.4);
    transform: translateY(-5px);
}

.service-number {
    color: var(--accent);
    font-size: 12px;
}

.service-card h3 {
    margin: 70px 0 15px;

    font-size: 28px;
}

.service-card p {
    color: var(--text-muted);

    max-width: 450px;

    margin-bottom: 25px;
}

.service-card a {
    color: var(--accent);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   11. WORK
========================================= */

.work {
    background: #f0c2c2;
}

.work-grid {
    display: grid;
    gap: 70px;
}

.work-card {
    overflow: hidden;
}

.work-image {
    min-height: 500px;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    border-radius: 20px;

    border: 1px solid var(--border);

    transition: 0.4s ease;
}

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

.work-image span {
    padding: 8px 12px;

    border-radius: 100px;

    background: rgba(0, 0, 0, 0.7);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.real-estate-demo {
    background:
        linear-gradient(
            135deg,
            #3b3027,
            #161616
        );
}

.construction-demo {
    background:
        linear-gradient(
            135deg,
            #262b30,
            #111
        );
}

.hospitality-demo {
    background:
        linear-gradient(
            135deg,
            #302d3a,
            #111
        );
}

.work-info {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 5px;
}

.work-info p {
    color: #000000;

    font-size: 10px;
    letter-spacing: 1px;
}

.work-info h3 {
    margin-top: 5px;

    font-size: 24px;
}

.work-info a {
    color: var(--accent);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   12. WHY WEBEMMa
========================================= */

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

.why-item {
    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.why-item strong {
    color: var(--accent);

    font-size: 12px;
}

.why-item h3 {
    margin: 25px 0 10px;

    font-size: 20px;
}

.why-item p {
    color: var(--text-muted);

    font-size: 14px;
}


/* =========================================
   13. PROCESS
========================================= */

.process {
    background: #09f0b6;
}

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

.process-step {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 16px;
}

.process-step span {
    color: var(--accent);

    font-size: 12px;
}

.process-step h3 {
    margin: 50px 0 10px;

    font-size: 23px;
}

.process-step p {
    color: var(--text-muted);

    font-size: 14px;
}


/* =========================================
   14. PRICING
========================================= */

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

.pricing-card {
    position: relative;

    padding: 40px;

    background: var(--bg-card);

    border: 1px solid var(--border);
    border-radius: 18px;
}

.pricing-card.featured {
    border-color: var(--accent);

    transform: translateY(-10px);
}

.popular {
    position: absolute;
    top: 0;
    right: 30px;

    padding: 8px 13px;

    background: var(--accent);
    color: #000;

    border-radius: 0 0 8px 8px;

    font-size: 9px;
    font-weight: 800;
}

.pricing-label {
    color: var(--accent);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pricing-card h3 {
    margin: 25px 0 10px;

    font-size: 48px;
}

.pricing-card h3 span {
    color: var(--accent);

    font-size: 20px;
}

.pricing-card > p {
    color: var(--text-muted);

    min-height: 70px;
}

.pricing-card ul {
    list-style: none;

    margin: 30px 0;
}

.pricing-card li {
    padding: 10px 0;

    border-bottom: 1px solid var(--border);

    color: #000000;

    font-size: 13px;
}

.pricing-card li::before {
    content: "✓";

    margin-right: 10px;

    color: var(--accent);
}

.pricing-card > a {
    display: block;

    padding: 14px;

    text-align: center;

    border: 1px solid var(--border);
    border-radius: 100px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.pricing-card > a:hover {
    background: var(--accent);
    color: #000;
}


/* =========================================
   15. ABOUT
========================================= */

.about {
    background: #c03636;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    align-items: start;
}

.about-content {
    color: var(--text-muted);

    font-size: 20px;
}

.about-content p + p {
    margin-top: 25px;
}


/* =========================================
   16. FAQ
========================================= */

.faq-list {
    max-width: 900px;
}

.faq-list details {
    border-top: 1px solid var(--border);
}

.faq-list details:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    padding: 25px 0;

    cursor: pointer;

    font-size: 18px;
    font-weight: 600;

    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";

    float: right;

    color: var(--accent);

    font-size: 22px;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 700px;

    padding-bottom: 25px;

    color: var(--text-muted);
}


/* =========================================
   17. FINAL CTA
========================================= */

.final-cta {
    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(107, 11, 64, 0.1),
            transparent 40%
        );
}

.final-cta .eyebrow {
    margin-bottom: 25px;
}

.final-cta h2 {
    max-width: 950px;

    margin: 0 auto 25px;

    font-size: clamp(45px, 7vw, 85px);

    line-height: 0.98;
    letter-spacing: -4px;
}

.final-cta h2 span {
    color: var(--text-muted);
}

.final-cta > p {
    max-width: 600px;

    margin: 0 auto 35px;

    color: var(--text-muted);

    font-size: 18px;
}


/* =========================================
   18. FOOTER
========================================= */

.footer {
    padding: 70px 0 25px;

    border-top: 1px solid var(--border);

    background: #070707;
}

.footer-container {
    display: flex;

    justify-content: space-between;

    gap: 50px;
}

.footer-container > div:first-child p {
    margin-top: 15px;

    color: #666;

    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 25px;
}

.footer-links a {
    color: #777;

    font-size: 13px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 70px;
    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: #555;

    font-size: 11px;
}


/* =========================================
   19. RESPONSIVE — TABLET
========================================= */

@media (max-width: 900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 700px;
    }

    .problem-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

}


/* =========================================
   20. RESPONSIVE — MOBILE
========================================= */

@media (max-width: 600px) {

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 54px;
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .website-preview {
        min-height: 350px;
    }

    .preview-content {
        margin-top: 80px;
    }

    .preview-content h2 {
        font-size: 34px;
    }

    .value-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 0;
        gap: 20px;
    }

    .value-container div {
        border-left: none;
        padding-left: 0;
    }

    .industry-card,
    .service-card {
        padding: 30px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .work-image {
        min-height: 350px;
    }

    .why-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px;
    }

    .final-cta h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .footer-container,
    .footer-bottom {
        flex-direction: column;
    }

    .footer-links {
        gap: 15px;
    }

}
