* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #102033;
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 34rem),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 30rem),
        #f7fafc;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 86px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.05em;
    background:
        linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.brand strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.1;
}

.brand small {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: #334155;
    font-weight: 700;
    font-size: 0.92rem;
    transition: 0.2s ease;
}

.site-nav a:hover {
    background: #eef6f6;
    color: var(--secondary);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #eef2f7;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    margin: 5px auto;
    border-radius: 999px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 104px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.hero-bg-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    filter: blur(14px);
    opacity: 0.18;
    pointer-events: none;
}

.orb-one {
    left: -120px;
    top: 80px;
    background: var(--secondary);
}

.orb-two {
    right: -140px;
    bottom: 60px;
    background: var(--accent);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 999px;
}

h1,
h2,
h3 {
    line-height: 1.08;
    color: #0f172a;
}

h1 {
    font-size: clamp(2.45rem, 6vw, 5rem);
    letter-spacing: -0.07em;
    max-width: 760px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.055em;
}

h3 {
    font-size: 1.25rem;
    letter-spacing: -0.025em;
}

.hero-text {
    margin: 22px 0 28px;
    color: #475569;
    font-size: 1.08rem;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: #fff;
    box-shadow: 0 18px 30px rgba(23, 37, 84, 0.22);
}

.btn-soft {
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 560px;
}

.hero-proof div {
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.hero-proof strong,
.hero-proof span {
    display: block;
}

.hero-proof strong {
    color: var(--primary);
    font-size: 1.25rem;
}

.hero-proof span {
    color: #64748b;
    font-size: 0.86rem;
}

.hero-panel {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.candidate-card,
.pipeline-card,
.floating-card,
.office-card,
.talent-board,
.service-card,
.process-card,
.testimonial-card,
.final-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.main-card {
    position: relative;
    z-index: 3;
    width: min(430px, 100%);
    padding: 28px;
    border-radius: 34px;
}

.candidate-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.avatar.small {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 0.78rem;
}

.candidate-top strong,
.candidate-top small {
    display: block;
}

.candidate-top small {
    color: #64748b;
}

.status {
    margin-left: auto;
    padding: 7px 10px;
    border-radius: 999px;
    color: #047857;
    background: #dcfce7;
    font-weight: 900;
    font-size: 0.74rem;
}

.match-score {
    margin: 34px 0 10px;
    display: flex;
    justify-content: space-between;
    color: #475569;
    font-weight: 800;
}

.match-score strong {
    color: var(--secondary);
    font-size: 1.4rem;
}

.score-bar {
    height: 12px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.score-bar span {
    display: block;
    width: 94%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.candidate-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.candidate-tags span,
.talent-tags span {
    padding: 9px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 800;
    font-size: 0.84rem;
}

.floating-card {
    position: absolute;
    z-index: 4;
    padding: 16px 18px;
    border-radius: 22px;
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    color: var(--primary);
    font-size: 1.35rem;
}

.floating-card span {
    color: #64748b;
    font-size: 0.82rem;
}

.float-a {
    top: 42px;
    left: 10px;
}

.float-b {
    right: 12px;
    bottom: 92px;
}

.pipeline-card {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: min(440px, 96%);
    border-radius: 26px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pipeline-step {
    width: 72px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 900;
}

.pipeline-step.active {
    background: var(--primary);
    color: #fff;
}

.pipeline-line {
    flex: 1;
    height: 2px;
    background: #cbd5e1;
}

.logo-strip {
    padding: 22px 0;
    background: var(--primary);
    color: #fff;
    overflow: hidden;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    text-align: center;
}

.strip-grid span {
    padding: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 900;
    font-size: 0.86rem;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading p,
.trust-copy p,
.talent-copy p,
.faq-intro p,
.final-card p {
    margin-top: 14px;
    color: #64748b;
    font-size: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 26px;
    border-radius: 28px;
    transition: 0.2s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -44px;
    width: 126px;
    height: 126px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 18px;
    color: #fff;
    background: var(--primary);
    font-weight: 900;
}

.service-card p {
    margin: 12px 0 18px;
    color: #64748b;
}

.service-card a {
    color: var(--secondary);
    font-weight: 900;
}

.trust-section {
    background:
        linear-gradient(135deg, rgba(23, 37, 84, 0.96), rgba(15, 118, 110, 0.93));
    color: #fff;
}

.trust-section h2,
.trust-section h3 {
    color: #fff;
}

.trust-section .eyebrow {
    color: #fde68a;
}

.trust-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 52px;
    align-items: center;
}

.office-card {
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.office-header {
    height: 56px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.12);
}

.office-header span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
}

.office-body {
    padding: 24px;
    display: grid;
    gap: 14px;
}

.mini-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
}

.mini-profile strong,
.mini-profile small {
    display: block;
}

.mini-profile small {
    color: rgba(255, 255, 255, 0.7);
}

.trust-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.trust-list div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
}

.trust-list strong,
.trust-list span {
    display: block;
}

.trust-list span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    padding: 26px;
    border-radius: 28px;
}

.process-card span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #fff;
    background: var(--secondary);
    font-weight: 900;
}

.process-card p {
    margin-top: 10px;
    color: #64748b;
}

.talent-section {
    background: #eef6f6;
}

.talent-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.talent-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.talent-board {
    padding: 28px;
    border-radius: 34px;
    background: #fff;
}

.board-row {
    display: grid;
    grid-template-columns: 14px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.board-row strong,
.board-row small {
    display: block;
}

.board-row small,
.board-row em {
    color: #64748b;
    font-style: normal;
    font-size: 0.86rem;
}

.board-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--primary);
}

.board-dot.green {
    background: var(--secondary);
}

.board-dot.amber {
    background: var(--accent);
}

.board-metric {
    margin-top: 22px;
    padding: 22px;
    border-radius: 24px;
    color: #fff;
    background:
        linear-gradient(135deg, var(--primary), var(--secondary));
}

.board-metric strong,
.board-metric span {
    display: block;
}

.board-metric span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.78);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    padding: 26px;
    border-radius: 28px;
}

.testimonial-card p {
    color: #334155;
    font-size: 1.02rem;
}

.testimonial-card div {
    margin-top: 22px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    color: #64748b;
    font-size: 0.88rem;
}

.faq-section {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 28rem),
        #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #0f172a;
    font-weight: 900;
}

.faq-item button span {
    color: var(--secondary);
    font-size: 1.25rem;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #64748b;
}

.faq-item.active .faq-answer {
    display: block;
}

.final-cta {
    background: #f7fafc;
}

.final-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    padding: 38px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 246, 0.94));
}

.contact-box {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.contact-box a:not(.btn),
.contact-box span {
    color: #334155;
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    color: #fff;
    background: #16a34a;
    box-shadow: 0 20px 35px rgba(22, 163, 74, 0.28);
    font-weight: 900;
}

.site-footer {
    padding: 26px 0;
    background: #0f172a;
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-grid a {
    color: #fff;
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        border-radius: 14px;
    }

    .nav-toggle {
        display: block;
    }

    .hero-grid,
    .trust-grid,
    .talent-grid,
    .faq-grid,
    .final-card {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        min-height: 460px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .section-pad {
        padding: 64px 0;
    }

    .nav-wrap {
        min-height: 68px;
    }

    .brand strong {
        max-width: 170px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero {
        padding-top: 72px;
    }

    h1 {
        font-size: 2.6rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-proof,
    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        min-height: 420px;
    }

    .floating-card {
        position: static;
        margin-top: 12px;
        width: 100%;
    }

    .pipeline-card {
        position: static;
        transform: none;
        margin-top: 12px;
        width: 100%;
    }

    .main-card {
        padding: 22px;
    }

    .strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-row {
        grid-template-columns: 12px 1fr;
    }

    .board-row em {
        grid-column: 2;
    }

    .final-card {
        padding: 24px;
        border-radius: 28px;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
}