:root {
    --bg: #0b0b0d;
    --bg-soft: #131316;
    --bg-card: #16181d;
    --bg-light: #f5f5f3;
    --text: #f5f7fb;
    --text-dark: #1a1c1f;
    --muted: #a3a7ae;
    --line: rgba(255, 255, 255, 0.08);
    --gold: #f0b400;
    --gold-soft: rgba(240, 180, 0, 0.12);
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
    --radius: 22px;
    --radius-sm: 16px;
    --container: 1240px;
    --transition: 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

/* TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(10, 10, 12, 0.86);
    border-bottom: 1px solid var(--line);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 24px;
}

.brand img {
    height: 68px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    opacity: 0.88;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--gold);
    opacity: 1;
}

.btn-nav {
    padding: 12px 20px;
    border: 1px solid rgba(240, 180, 0, 0.35);
    border-radius: 999px;
    background: var(--gold);
    color: #111;
    box-shadow: 0 10px 24px rgba(240, 180, 0, 0.2);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 14px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    border-radius: 999px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-auto .hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(11, 11, 13, 0.94) 15%, rgba(11, 11, 13, 0.72) 45%, rgba(11, 11, 13, 0.45) 100%),
        url("../assets/hero-auto-center.jpg") center/cover no-repeat;
    transform: scale(1.03);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 90%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 48px;
    padding: 110px 0 90px;
    align-items: center;
}

.eyebrow,
.section-tag,
.mini-tag {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
}

.hero-left h1 {
    font-size: clamp(2.8rem, 4vw, 3rem);
    line-height: 1.05;
    max-width: 900px;
    margin: 18px 0 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-description {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 34px 0 24px;
}

.hero-extra {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: #121212;
    box-shadow: 0 16px 34px rgba(240, 180, 0, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-inline,
.btn-cta {
    width: auto;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hero-point {
    padding: 18px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-point strong {
    display: block;
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.hero-point span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
}

.hero-card {
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.hero-card h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 14px 0 16px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.8);
}

.hero-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(240, 180, 0, 0.12);
    color: var(--gold);
    border: 1px solid rgba(240, 180, 0, 0.25);
    font-size: 0.9rem;
    font-weight: 700;
}

/* HIGHLIGHT BAR */
.highlight-bar {
    background: #0f1013;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.highlight-item {
    padding: 34px 22px;
    border-right: 1px solid var(--line);
}

.highlight-item:last-child {
    border-right: 0;
}

.highlight-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.highlight-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-dark {
    background: #0f1013;
    color: var(--white);
}

.section-heading {
    margin-bottom: 46px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-top: 10px;
}

.section-heading p {
    margin-top: 16px;
    font-size: 1.02rem;
}

.section-heading.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: end;
}

.section-intro {
    color: #525863;
}

.section-heading.center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.center.light p,
.section-heading.center.light h2 {
    color: var(--white);
}

.section-heading.center.light p:last-child {
    color: var(--muted);
}

/* ABOUT */
.about-grid,
.content-grid-two {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
}

.about-grid-home {
    align-items: start;
}

.about-content,
.text-stack {
    display: grid;
    gap: 18px;
    font-size: 1.02rem;
    color: #343942;
}

.about-visual-stack {
    display: grid;
    gap: 20px;
}

.about-values {
    display: grid;
    gap: 18px;
}

.value-card {
    background: var(--white);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(16, 18, 22, 0.08);
    box-shadow: 0 16px 34px rgba(16, 18, 22, 0.06);
}

.value-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--gold-soft);
    color: #8b6900;
    font-weight: 800;
    margin-bottom: 14px;
}

.value-card h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.value-card p {
    color: #555d68;
}

.about-photo {
    border-radius: 28px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: var(--shadow);
    background: #111216;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-tall {
    min-height: 100%;
}

.image-placeholder,
.dark-card {
    min-height: 300px;
    border-radius: 28px;
    padding: 34px;
    background: linear-gradient(135deg, #121318, #1c1f26);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow);
}

.image-placeholder h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    border-radius: 24px;
    padding: 30px;
    background: #15171c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 180, 0, 0.26);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.25);
}

.services-grid-light .service-card {
    background: var(--white);
    border: 1px solid rgba(16, 18, 22, 0.08);
    box-shadow: 0 12px 30px rgba(16, 18, 22, 0.05);
}

.service-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.service-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 180, 0, 0.12);
    color: var(--gold);
    font-weight: 800;
    flex-shrink: 0;
}

.services-grid-light .service-number {
    color: #8b6900;
    background: var(--gold-soft);
}

.service-card h3 {
    font-size: 1.2rem;
    line-height: 1.2;
}

.service-card p {
    color: var(--muted);
}

.services-grid-light .service-card p {
    color: #56606c;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

/* SEGMENTS */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.segment-item {
    padding: 22px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(16, 18, 22, 0.08);
    box-shadow: 0 12px 28px rgba(16, 18, 22, 0.04);
    font-weight: 700;
    text-align: center;
}

/* PROCESS */
.process-section {
    background: linear-gradient(180deg, #0b0b0d, #111216);
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 20px;
    padding: 26px;
    background: #17191f;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item span {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 180, 0, 0.12);
    color: var(--gold);
    font-weight: 800;
    font-size: 1.1rem;
}

.timeline-item h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.timeline-item p {
    color: var(--muted);
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-box {
    padding: 28px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(16, 18, 22, 0.08);
    box-shadow: 0 12px 26px rgba(16, 18, 22, 0.04);
}

.feature-box h3 {
    margin-bottom: 12px;
    font-size: 1.12rem;
}

.feature-box p {
    color: #56606c;
}

.dark-feature {
    background: #17191f;
    border-color: rgba(255, 255, 255, 0.08);
}

.dark-feature h3 {
    color: var(--white);
}

.dark-feature p {
    color: var(--muted);
}

/* CTA */
.cta-section {
    padding: 40px 0 100px;
    background: var(--bg-light);
}

.cta-box {
    background: linear-gradient(135deg, #121318, #1b1f26);
    color: var(--white);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    box-shadow: var(--shadow);
}

.cta-text {
    max-width: 760px;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.12;
    margin: 10px 0 14px;
}

.cta-text p:last-child {
    color: rgba(255, 255, 255, 0.78);
}

.gold {
    color: var(--gold);
}

/* CONTACT */
.contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.contact-card,
.contact-form {
    background: #17191f;
    border-radius: 28px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card h3,
.contact-form h3 {
    margin-bottom: 18px;
}

.contact-list {
    display: grid;
    gap: 12px;
    color: var(--muted);
}

.contact-list strong {
    color: var(--white);
}

.contact-cta-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #0f1013;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 16px;
    padding: 16px 18px;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8f96a2;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(240, 180, 0, 0.45);
    box-shadow: 0 0 0 4px rgba(240, 180, 0, 0.08);
}

.btn-full {
    width: 100%;
}

.form-message {
    margin-top: 14px;
    color: var(--gold);
    font-size: 0.95rem;
}

/* FAQ */
.page-main {
    padding-top: 92px;
}

.page-hero {
    padding: 92px 0 54px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        #0f1013;
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.08;
    margin: 12px 0 16px;
    letter-spacing: -0.04em;
}

.page-hero p:last-child {
    color: var(--muted);
    max-width: 850px;
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(16, 18, 22, 0.08);
    padding: 0 24px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(16, 18, 22, 0.04);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-weight: 800;
    font-size: 1.03rem;
    color: var(--text-dark);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding-bottom: 22px;
    color: #58616d;
}

/* FOOTER */
.footer {
    background: #09090b;
    border-top: 1px solid var(--line);
    padding: 34px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-content img {
    height: 64px;
    width: auto;
}

.footer-content p {
    color: var(--muted);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    min-width: 150px;
    height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    filter: brightness(1.03);
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .hero-content,
    .section-heading.split,
    .about-grid,
    .content-grid-two,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .features-grid,
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-points,
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .highlight-item:last-child {
        border-bottom: 0;
    }

    .cta-box,
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-photo-tall {
        min-height: 320px;
    }
}

@media (max-width: 860px) {
    .nav {
        position: absolute;
        top: 92px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #111216;
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 18px;
        box-shadow: var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }

    .services-grid,
    .features-grid,
    .segments-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .hero-left h1,
    .section-heading h2,
    .page-hero h1,
    .cta-text h2 {
        word-break: break-word;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .nav-container {
        min-height: 82px;
    }

    .brand img {
        height: 56px;
    }

    .hero-content {
        padding: 84px 0 64px;
    }

    .section,
    .contact-section {
        padding: 72px 0;
    }

    .page-hero {
        padding: 72px 0 40px;
    }

    .hero-card,
    .contact-card,
    .contact-form,
    .value-card,
    .feature-box,
    .service-card,
    .cta-box,
    .dark-card {
        padding: 22px;
    }

    .btn {
        width: 100%;
    }

    .btn-inline,
    .btn-cta {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }

    .whatsapp-float {
        right: 16px;
        left: 16px;
        bottom: 16px;
        min-width: auto;
    }
}