/* =====================================================
   GLOBAL
===================================================== */

:root {
    --black: #0b0d0e;
    --dark: #111415;
    --dark-soft: #171a1b;
    --white: #f7f7f2;
    --text: #171919;
    --muted: #6d7270;
    --line: #dfe1dc;
    --green: #b8ff52;
    --purple: #8d75ff;
    --orange: #ff8a42;
    --max-width: 1240px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body,
button,
a {
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );
    margin: 0 auto;
}

.section {
    padding: 120px 0;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(247, 247, 242, 0.92);
    backdrop-filter: blur(16px);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.navigation {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.logo span {
    color: #777d78;
    margin-left: 3px;
}

.desktop-nav {
    display: flex;
    gap: 34px;
    margin-left: auto;
    margin-right: 38px;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #555a58;
    transition: color 0.25s ease;
}

.desktop-nav a:hover {
    color: #000;
}

.header-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--black);
    color: white;
    padding: 13px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}

.header-button span {
    font-size: 17px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
}

.mobile-nav {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 800px;
    padding: 170px 0 100px;
    background: var(--white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.eyebrow,
.section-label,
.cta-label {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 800;
    color: #737975;
}

.eyebrow {
    margin-bottom: 25px;
}

.hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(52px, 6vw, 92px);
    line-height: 0.98;
    letter-spacing: -5px;
    max-width: 760px;
}

.hero h1 span {
    display: block;
    color: #8a8f8c;
}

.hero-description {
    max-width: 600px;
    margin-top: 30px;
    font-size: 18px;
    color: #626764;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 17px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-dark {
    background: var(--black);
    color: white;
}

.button-dark span {
    font-size: 18px;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
}

.text-button span {
    color: #888d89;
}

.hero-visual {
    min-height: 520px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(184, 255, 82, 0.65),
        rgba(184, 255, 82, 0)
    );
    filter: blur(10px);
}

.orbit {
    position: absolute;
    border: 1px solid #d9ddd6;
    border-radius: 50%;
}

.orbit-one {
    width: 430px;
    height: 430px;
}

.orbit-two {
    width: 300px;
    height: 300px;
    border-color: #cbd1c9;
}

.seo-core {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #121515;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.22);
}

.google-g {
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.rank-number {
    margin-top: 6px;
    font-family: "Manrope", sans-serif;
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
}

.rank-label {
    margin-top: 10px;
    font-size: 8px;
    letter-spacing: 2px;
    color: #a9afaa;
}

.floating-card {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e3e5df;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    padding: 18px;
    min-width: 170px;
}

.floating-card small {
    display: block;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #8a8f8b;
    font-weight: 800;
}

.floating-card strong {
    display: block;
    margin-top: 7px;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
}

.floating-card span {
    display: block;
    margin-top: 2px;
    color: #7b817d;
    font-size: 11px;
}

.traffic-card {
    top: 75px;
    left: 15px;
    transform: rotate(-4deg);
}

.ranking-card {
    right: 0;
    bottom: 80px;
    transform: rotate(4deg);
}


/* =====================================================
   DARK SECTIONS
===================================================== */

.dark-section {
    background: var(--black);
    color: white;
}

.two-column {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
}

.dark-section .section-label {
    color: #737b75;
}

.section-label span {
    display: inline-block;
    margin-right: 14px;
    color: var(--green);
}

.about-copy h2,
.about-company h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.about-copy h2 em,
.about-company h2 em {
    color: var(--green);
    font-style: normal;
}

.about-copy p,
.about-company p {
    max-width: 680px;
    color: #aeb3ae;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 25px;
}

.white-link {
    display: inline-flex;
    gap: 18px;
    margin-top: 35px;
    color: white;
    font-size: 14px;
    font-weight: 700;
}

.white-link span {
    color: var(--green);
}

.principles {
    margin-top: 100px;
    padding-top: 45px;
    border-top: 1px solid #292d2c;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.principle strong {
    color: var(--green);
    font-size: 13px;
}

.principle h3 {
    margin-top: 18px;
    font-family: "Manrope", sans-serif;
    font-size: 23px;
}

.principle p {
    margin-top: 10px;
    color: #858b86;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.section-heading {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    column-gap: 70px;
    margin-bottom: 75px;
}

.section-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -3px;
}

.section-heading p {
    grid-column: 2;
    max-width: 600px;
    margin-top: 25px;
    color: var(--muted);
}


/* =====================================================
   SERVICES
===================================================== */

.services-list {
    border-top: 1px solid var(--line);
}

.service {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 30px;
    padding: 38px 0;
    border-bottom: 1px solid var(--line);
    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.service:hover {
    background: #eef0e9;
    padding-left: 22px;
    padding-right: 22px;
}

.service-number {
    color: #999e99;
    font-size: 12px;
    font-weight: 700;
}

.service-main h3 {
    font-family: "Manrope", sans-serif;
    font-size: 30px;
    letter-spacing: -1px;
}

.service-main p {
    max-width: 720px;
    margin-top: 10px;
    color: var(--muted);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tags span {
    border: 1px solid #d4d8d1;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #6b706d;
}

.service-arrow {
    font-size: 26px;
    text-align: right;
    color: #909591;
}


/* =====================================================
   PROCESS
===================================================== */

.process-section {
    background: var(--black);
    color: white;
}

.process-header {
    margin-bottom: 80px;
}

.section-label.light {
    color: #7b837d;
}

.process-header h2 {
    margin-top: 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #2b302e;
}

.process-step {
    min-height: 270px;
    padding: 30px 25px 30px 0;
    border-right: 1px solid #2b302e;
}

.process-step:not(:first-child) {
    padding-left: 25px;
}

.process-step:last-child {
    border-right: 0;
}

.process-step > span {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.process-step h3 {
    margin-top: 55px;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
}

.process-step p {
    margin-top: 10px;
    color: #858c87;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   RESULTS
===================================================== */

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.result-card {
    border: 1px solid var(--line);
    background: white;
}

.result-visual {
    height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.purple {
    background: #d9d0ff;
}

.orange {
    background: #ffd2b3;
}

.green {
    background: #cceca1;
}

.result-window {
    width: 76%;
    padding: 25px;
    background: #101313;
    color: white;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.result-window span {
    display: block;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #909791;
}

.result-window strong {
    display: block;
    margin-top: 15px;
    font-family: "Manrope", sans-serif;
    font-size: 35px;
}

.chart {
    height: 70px;
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.chart i {
    display: block;
    width: 14%;
    background: var(--green);
}

.chart i:nth-child(1) {
    height: 25%;
}

.chart i:nth-child(2) {
    height: 35%;
}

.chart i:nth-child(3) {
    height: 32%;
}

.chart i:nth-child(4) {
    height: 55%;
}

.chart i:nth-child(5) {
    height: 48%;
}

.chart i:nth-child(6) {
    height: 75%;
}

.chart i:nth-child(7) {
    height: 100%;
}

.search-box {
    width: 75%;
    padding: 28px;
    background: white;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.search-box span {
    color: #999;
    font-size: 11px;
}

.search-box strong {
    display: block;
    margin-top: 7px;
    font-size: 19px;
}

.search-box b {
    display: block;
    margin-top: 25px;
    color: #3c932a;
    font-size: 12px;
}

.keyword-list {
    width: 80%;
    padding: 10px;
}

.keyword-list span {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin: 7px 0;
    background: rgba(255,255,255,0.8);
    font-size: 11px;
}

.keyword-list b {
    color: #438d24;
}

.result-info {
    padding: 27px;
}

.result-info small {
    color: #8a8f8b;
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.result-info h3 {
    margin-top: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    line-height: 1.2;
}

.result-info p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: #eef0e9;
}

.about-company {
    max-width: 780px;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    background: var(--green);
    padding: 130px 0;
}

.cta-content {
    text-align: center;
}

.cta-label {
    color: #4e5c42;
}

.cta-content h2 {
    margin-top: 22px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(50px, 7vw, 100px);
    line-height: 0.95;
    letter-spacing: -5px;
}

.cta-content h2 em {
    font-style: normal;
    color: #66725d;
}

.cta-content p {
    max-width: 600px;
    margin: 30px auto 0;
    color: #45513e;
    font-size: 17px;
}

.cta-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cta-button,
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 17px 25px;
    font-size: 14px;
    font-weight: 800;
}

.cta-button {
    background: var(--black);
    color: white;
}

.whatsapp-button {
    background: white;
    color: #111;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: var(--black);
    color: white;
    padding: 70px 0 25px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 70px;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 20px;
    color: #7f8781;
    font-size: 14px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column > span {
    margin-bottom: 8px;
    color: #737b75;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.footer-column a {
    color: #b6bcb7;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid #292e2c;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    color: #686f6b;
    font-size: 11px;
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 20px;
        margin-right: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-bottom: 60px;
    }

    .hero-visual {
        min-height: 470px;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-heading p {
        grid-column: auto;
    }

    .principles {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        border-bottom: 1px solid #2b302e;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-visual {
        height: 360px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .container {
        width: min(
            calc(100% - 34px),
            var(--max-width)
        );
    }

    .section {
        padding: 80px 0;
    }

    .navigation {
        height: 70px;
    }

    .desktop-nav,
    .header-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 25px 20px 30px;
        background: var(--white);
        border-top: 1px solid #e3e5df;
        flex-direction: column;
        gap: 20px;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }

    .mobile-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav a {
        font-size: 16px;
        font-weight: 700;
    }

    .mobile-nav-button {
        display: inline-block;
        padding: 14px 18px;
        background: var(--black);
        color: white;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 50px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 68px);
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .hero-visual {
        min-height: 380px;
        margin-top: 25px;
    }

    .orbit-one {
        width: 320px;
        height: 320px;
    }

    .orbit-two {
        width: 230px;
        height: 230px;
    }

    .seo-core {
        width: 165px;
        height: 165px;
    }

    .rank-number {
        font-size: 42px;
    }

    .google-g {
        font-size: 27px;
    }

    .traffic-card {
        top: 20px;
        left: 0;
        min-width: 145px;
    }

    .ranking-card {
        right: 0;
        bottom: 25px;
        min-width: 145px;
    }

    .about-copy h2,
    .about-company h2,
    .section-heading h2,
    .process-header h2 {
        letter-spacing: -2px;
    }

    .about-copy p,
    .about-company p {
        font-size: 15px;
    }

    .service {
        grid-template-columns: 40px 1fr 25px;
        gap: 10px;
        padding: 28px 0;
    }

    .service:hover {
        padding-left: 10px;
        padding-right: 10px;
    }

    .service-main h3 {
        font-size: 23px;
    }

    .service-main p {
        font-size: 14px;
    }

    .service-arrow {
        font-size: 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step,
    .process-step:not(:first-child) {
        min-height: auto;
        padding: 28px 0;
        border-right: 0;
    }

    .process-step h3 {
        margin-top: 25px;
    }

    .result-visual {
        height: 280px;
    }

    .cta-section {
        padding: 90px 0;
    }

    .cta-content h2 {
        font-size: clamp(48px, 14vw, 75px);
        letter-spacing: -3px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-button,
    .whatsapp-button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}