/* =========================================================
   SANARYS — DESIGN SYSTEM
========================================================= */

:root {
    --mint: #A6F2D6;
    --purple: #A77BFF;

    --off-white: #171A19;
    --white: #202624;

    --dark: #171A19;
    --dark-soft: #202624;
    --dark-card: #29302D;

    --text: #EDEFED;
    --text-soft: #A6ACA8;
    --gray: #7C8380;

    --border: rgba(255, 255, 255, 0.09);
    --border-dark: rgba(255, 255, 255, 0.10);

    --container: 1180px;

    --radius: 22px;
    --radius-small: 14px;

    --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);

    --transition: 300ms cubic-bezier(.2,.8,.2,1);

    --turnio-teal: #2FD9AE;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: var(--off-white);
    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}

section {
    position: relative;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;

    transition:
        background var(--transition),
        backdrop-filter var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(23, 26, 25, 0.82);

    backdrop-filter: blur(18px);

    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 142px;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.main-nav a {
    position: relative;

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

    color: var(--text-soft);

    transition: color var(--transition);
}

.main-nav a:hover {
    color: var(--text);
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--purple);

    transition: width var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-button {
    display: inline-flex;

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

    padding: 11px 17px;

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

    border-radius: 999px;

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

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.header-button:hover {
    transform: translateY(-2px);

    background: var(--white);

    border-color: rgba(167, 123, 255, 0.4);
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: var(--white);

    cursor: pointer;

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

    flex-direction: column;

    gap: 5px;
}

.menu-toggle span {
    width: 17px;
    height: 1.5px;

    background: var(--text);

    transition: var(--transition);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding:
        150px 0
        100px;

    overflow: hidden;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, 0.9fr);

    gap: 80px;

    align-items: center;
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    pointer-events: none;

    opacity: 0.30;
}

.hero-glow-mint {
    width: 420px;
    height: 420px;

    background: var(--mint);

    top: 5%;
    left: -15%;

    transition: transform .2s ease-out;
}

.hero-glow-purple {
    width: 500px;
    height: 500px;

    background: var(--purple);

    right: -20%;
    bottom: -15%;

    opacity: 0.16;

    transition: transform .2s ease-out;
}

.hero-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 20%), rgba(166, 242, 214, 0.06), transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 25px;

    padding: 7px 12px;

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

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);

    color: var(--text-soft);

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

    letter-spacing: 0.03em;
}

.status-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #6BD6A8;

    box-shadow:
        0 0 0 4px rgba(166, 242, 214, 0.4);
}

.hero h1 {
    max-width: 700px;

    font-size:
        clamp(3.2rem, 6vw, 5.9rem);

    line-height: 0.98;

    letter-spacing: -0.065em;

    font-weight: 600;

    margin-bottom: 28px;
}

.hero h1 span {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            var(--text) 5%,
            var(--mint) 48%,
            var(--purple) 100%
        );

    background-clip: text;
    -webkit-background-clip: text;
}

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

    font-size: 17px;

    line-height: 1.75;

    color: var(--text-soft);

    margin-bottom: 34px;
}

.hero-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 42px;
}

.button {
    display: inline-flex;

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

    gap: 16px;

    min-height: 50px;

    padding: 0 20px;

    border-radius: 999px;

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

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--dark);

    background: var(--mint);

    box-shadow:
        0 12px 30px rgba(166, 242, 214, 0.25);

    transition:
        transform .18s ease,
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition);
}

.button-primary:hover {
    box-shadow:
        0 18px 40px rgba(166, 242, 214, 0.40);
}

.button-secondary {
    border: 1px solid var(--border);

    color: var(--text);

    background: rgba(255,255,255,0.04);
}

.button-secondary:hover {
    background: rgba(255,255,255,0.08);
}

.hero-trust {
    display: flex;

    align-items: center;

    gap: 25px;
}

.hero-trust > div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-trust > div + div {
    padding-left: 25px;

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

.hero-trust strong {
    font-size: 12px;
    font-weight: 600;
}

.hero-trust span {
    font-size: 11px;
    color: var(--gray);
}


/* =========================================================
   WORKFLOW
========================================================= */

.hero-visual {
    position: relative;

    z-index: 2;

    perspective: 1200px;
}

.workflow-card {
    position: relative;

    padding: 24px;

    transform-style: preserve-3d;

    transition: transform .12s ease-out, box-shadow .25s ease;

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

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #10221E,
            #07110F
        );

    color: white;

    box-shadow:
        0 35px 100px rgba(7, 17, 15, 0.20);

    overflow: hidden;
}

.workflow-card::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -160px;
    right: -100px;

    border-radius: 50%;

    background: var(--purple);

    filter: blur(100px);

    opacity: 0.15;
}

.workflow-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

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

.mini-label {
    display: block;

    margin-bottom: 3px;

    font-size: 8px;

    letter-spacing: 0.13em;

    color: rgba(255,255,255,0.4);
}

.workflow-header strong {
    font-size: 13px;
    font-weight: 500;
}

.live-indicator {
    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 9px;

    color: var(--mint);
}

.live-indicator span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--mint);

    box-shadow:
        0 0 12px var(--mint);
}

.workflow {
    padding:
        26px
        6px
        20px;
}

.workflow-node {
    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px;

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

    border-radius: 15px;

    background: rgba(255,255,255,0.035);

    transition: var(--transition);
}

.workflow-node.active {
    border-color:
        rgba(167,123,255,0.35);

    background:
        linear-gradient(
            120deg,
            rgba(167,123,255,0.12),
            rgba(166,242,214,0.04)
        );
}

.workflow-node:hover {
    transform: translateX(5px);

    border-color:
        rgba(166,242,214,0.3);
}

.node-icon {
    display: flex;

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

    width: 38px;
    height: 38px;

    border-radius: 11px;

    font-size: 13px;

    font-weight: 700;

    flex-shrink: 0;
}

.node-whatsapp {
    background: rgba(166,242,214,0.13);
    color: var(--mint);
}

.node-ai {
    background: rgba(167,123,255,0.16);
    color: #C6ADFF;
}

.node-action {
    background: rgba(166,242,214,0.10);
    color: var(--mint);
}

.node-crm {
    background: rgba(255,255,255,0.08);
    color: white;
}

.workflow-node > div:nth-child(2) {
    display: flex;

    flex-direction: column;
}

.workflow-node span {
    font-size: 9px;

    color: rgba(255,255,255,0.4);
}

.workflow-node strong {
    font-size: 12px;

    font-weight: 500;
}

.node-check {
    margin-left: auto;

    color: var(--mint);

    font-size: 12px;
}

.node-pulse {
    margin-left: auto;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--purple);

    box-shadow:
        0 0 0 0 rgba(167,123,255,0.5);

    animation: pulse 1.8s infinite;
}

.workflow-line {
    position: relative;

    width: 1px;

    height: 25px;

    margin: 0 auto;

    background:
        linear-gradient(
            var(--mint),
            var(--purple)
        );

    opacity: 0.35;

    overflow: hidden;
}

.workflow-line span {
    position: absolute;

    left: 0;
    top: -10px;

    width: 1px;
    height: 10px;

    background: white;

    box-shadow:
        0 0 8px var(--mint);

    animation:
        flowLine 2.2s linear infinite;
}

.workflow-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-top: 18px;

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

    color: rgba(255,255,255,0.45);

    font-size: 10px;
}

.workflow-footer div {
    display: flex;

    align-items: center;

    gap: 7px;
}

.footer-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--mint);
}

.workflow-footer strong {
    color: var(--mint);
    font-size: 11px;
}


/* =========================================================
   SECTION COMMON
========================================================= */

.section-kicker {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    color: var(--gray);
}

.section-number {
    font-size: 11px;

    color: var(--purple);

    font-weight: 700;
}


/* =========================================================
   INTRO
========================================================= */

.intro-section {
    padding: 130px 0;

    background: var(--white);
}

.section-heading {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 25px;

    margin-bottom: 75px;
}

.section-heading h2,
.solutions-heading h2,
.integrations-content h2 {
    max-width: 760px;

    font-size:
        clamp(2.5rem, 5vw, 4.4rem);

    line-height: 1.02;

    letter-spacing: -0.055em;

    font-weight: 500;
}

.section-heading h2 span,
.solutions-heading h2 span,
.integrations-content h2 span {
    color: var(--gray);
}

.process-grid {
    display: grid;

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

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

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

.process-item {
    position: relative;

    min-height: 300px;

    padding: 35px 28px;

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

    transition:
        background var(--transition),
        transform var(--transition);
}

.process-item:last-child {
    border-right: 0;
}

.process-item:hover {
    background: var(--off-white);

    transform: translateY(-5px);
}

.process-number {
    font-size: 10px;

    color: var(--purple);

    font-weight: 700;
}

.process-icon {
    display: flex;

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

    width: 48px;
    height: 48px;

    margin:
        70px 0
        24px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(166,242,214,0.45),
            rgba(167,123,255,0.12)
        );

    font-size: 20px;

    color: var(--dark);
}

.process-item h3 {
    margin-bottom: 10px;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: -0.025em;
}

.process-item p {
    max-width: 220px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-section {
    padding: 145px 0;

    background: var(--off-white);
}

.solutions-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 60px;

    margin-bottom: 70px;
}

.solutions-heading > p {
    max-width: 340px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}

.solutions-layout {
    display: grid;

    grid-template-columns: 0.35fr 1fr;

    gap: 50px;

    min-height: 570px;
}

.solution-tabs {
    display: flex;

    flex-direction: column;

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

.solution-tab {
    display: grid;

    grid-template-columns: 40px 1fr 20px;

    align-items: center;

    gap: 10px;

    width: 100%;

    padding: 22px 0;

    border: 0;

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

    background: transparent;

    text-align: left;

    cursor: pointer;

    color: var(--text-soft);

    font-size: 14px;

    transition: var(--transition);
}

.solution-tab span {
    font-size: 10px;
    color: var(--gray);
}

.solution-tab b {
    font-size: 15px;

    opacity: 0;

    transform: translateX(-5px);

    transition: var(--transition);
}

.solution-tab:hover,
.solution-tab.active {
    color: var(--text);

    padding-left: 8px;
}

.solution-tab.active b {
    opacity: 1;

    transform: translateX(0);

    color: var(--purple);
}

.solution-display {
    position: relative;

    min-height: 570px;
}

.solution-panel {
    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    padding: 40px;

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

    border-radius: 28px;

    background: var(--white);

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(15px)
        scale(0.985);

    transition:
        opacity 400ms ease,
        transform 400ms ease,
        visibility 400ms;
}

.solution-panel.active {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}

.panel-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 40px;
}

.panel-label {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.12em;

    color: var(--gray);
}

.panel-number {
    font-size: 11px;

    color: var(--purple);

    font-weight: 700;
}

.solution-panel h3 {
    margin-top: auto;

    max-width: 650px;

    font-size:
        clamp(1.8rem, 3vw, 3rem);

    line-height: 1.05;

    letter-spacing: -0.045em;

    font-weight: 500;
}

.solution-panel h3 em {
    color: var(--gray);

    font-style: normal;
}

.solution-panel > p {
    max-width: 560px;

    margin-top: 18px;

    color: var(--text-soft);

    font-size: 14px;
}


/* =========================================================
   CHAT PREVIEW
========================================================= */

.chat-preview {
    display: flex;

    flex-direction: column;

    gap: 12px;

    width: 75%;

    margin:
        0 auto
        45px;
}

.chat-message {
    padding: 13px 16px;

    border-radius: 13px;

    font-size: 11px;

    line-height: 1.5;
}

.chat-message span {
    display: block;

    margin-bottom: 4px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}

.chat-message.client {
    align-self: flex-start;

    background: rgba(255,255,255,0.06);

    color: var(--text);
}

.chat-message.client span {
    color: var(--gray);
}

.chat-message.ai {
    align-self: flex-end;

    max-width: 85%;

    background:
        linear-gradient(
            135deg,
            rgba(166,242,214,0.22),
            rgba(167,123,255,0.20)
        );

    color: var(--text);
}

.chat-message.ai span {
    color: var(--mint);
}

.chat-status {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 3px;

    color: var(--gray);

    font-size: 9px;
}

.chat-status span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #6BD6A8;
}


/* =========================================================
   SALES PREVIEW
========================================================= */

.sales-preview {
    width: 75%;

    margin:
        0 auto
        55px;

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

    border-radius: 15px;

    overflow: hidden;
}

.sales-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 14px 18px;

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

    color: var(--text-soft);

    font-size: 11px;
}

.sales-row:last-child {
    border-bottom: 0;
}

.sales-row strong {
    color: var(--gray);

    font-size: 11px;
}

.sales-row.highlighted {
    background:
        linear-gradient(
            90deg,
            rgba(166,242,214,0.3),
            rgba(167,123,255,0.08)
        );

    color: var(--text);
}

.sales-row.highlighted strong {
    color: var(--mint);
}


/* =========================================================
   CALENDAR
========================================================= */

.calendar-preview {
    width: 75%;

    margin:
        0 auto
        55px;

    padding: 20px;

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

    border-radius: 15px;
}

.calendar-header {
    display: flex;

    justify-content: space-between;

    margin-bottom: 18px;

    font-size: 12px;
}

.calendar-header span {
    color: var(--gray);
}

.calendar-days {
    display: grid;

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

    margin-bottom: 8px;

    color: var(--gray);

    font-size: 7px;

    text-align: center;
}

.calendar-times {
    display: grid;

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

    gap: 5px;
}

.calendar-times span {
    padding: 9px 3px;

    border-radius: 7px;

    background: rgba(255,255,255,0.06);

    text-align: center;

    font-size: 8px;

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

.calendar-times .selected {
    background: var(--mint);

    color: var(--dark);

    font-weight: 700;
}


/* =========================================================
   RETENTION
========================================================= */

.retention-preview {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 45px;

    margin:
        0 auto
        55px;
}

.retention-circle {
    display: flex;

    flex-direction: column;

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

    width: 145px;
    height: 145px;

    border-radius: 50%;

    border:
        1px solid rgba(167,123,255,0.35);

    background:
        radial-gradient(
            circle,
            rgba(167,123,255,0.12),
            transparent 68%
        );
}

.retention-circle span {
    font-size: 30px;

    font-weight: 600;

    letter-spacing: -0.05em;
}

.retention-circle small {
    color: var(--gray);

    font-size: 8px;
}

.retention-list {
    display: flex;

    flex-direction: column;

    gap: 13px;

    color: var(--text-soft);

    font-size: 10px;
}


/* =========================================================
   INTEGRATIONS
========================================================= */

.integrations-section {
    padding: 145px 0;

    background: var(--dark-soft);

    color: white;

    overflow: hidden;
}

.integrations-content {
    display: flex;

    justify-content: space-between;

    gap: 70px;
}

.integrations-content h2 {
    color: white;
}

.integrations-content h2 span {
    color: rgba(255,255,255,0.38);
}

.integrations-content > p {
    max-width: 330px;

    margin-top: 38px;

    color: rgba(255,255,255,0.48);

    font-size: 14px;
}

.integrations-section .section-kicker {
    color: rgba(255,255,255,0.42);
}

.integration-orbit {
    position: relative;

    width: min(700px, 100%);

    height: 520px;

    margin:
        80px
        auto
        0;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.08);
}

.integration-orbit::before {
    content: "";

    position: absolute;

    inset: 55px;

    border-radius: 50%;

    border:
        1px dashed rgba(166,242,214,0.16);
}

.integration-orbit::after {
    content: "";

    position: absolute;

    inset: 145px;

    border-radius: 50%;

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

.orbit-center {
    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    display: flex;

    flex-direction: column;

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

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #17312B,
            #0B1815
        );

    border:
        1px solid rgba(166,242,214,0.22);

    box-shadow:
        0 0 70px rgba(166,242,214,0.08);

    z-index: 2;
}

.orbit-center img {
    width: 46px;
    height: 46px;

    object-fit: contain;

    margin-bottom: 7px;
}

.orbit-center span {
    color: var(--mint);

    font-size: 10px;

    font-weight: 600;
}

.orbit-item {
    position: absolute;

    display: flex;

    flex-direction: column;

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

    width: 100px;
    height: 100px;

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

    border-radius: 50%;

    background:
        rgba(255,255,255,0.035);

    backdrop-filter: blur(10px);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.orbit-item:hover {
    transform: scale(1.08);

    border-color:
        rgba(166,242,214,0.4);

    background:
        rgba(166,242,214,0.06);
}

.orbit-item strong {
    margin-bottom: 3px;

    font-size: 13px;

    color: var(--mint);
}

.orbit-item span {
    color: rgba(255,255,255,0.4);

    font-size: 8px;
}

.orbit-whatsapp {
    top: 40px;
    left: 50%;

    transform: translateX(-50%);
}

.orbit-crm {
    right: 30px;
    top: 50%;

    transform: translateY(-50%);
}

.orbit-calendar {
    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);
}

.orbit-data {
    left: 30px;
    top: 50%;

    transform: translateY(-50%);
}


/* =========================================================
   METRICS
========================================================= */

.metrics-section {
    padding: 100px 0;

    background: var(--white);
}

.metrics-grid {
    display: grid;

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

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

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

.metric {
    padding:
        50px 30px;

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

    text-align: center;
}

.metric:last-child {
    border-right: 0;
}

.metric strong {
    display: block;

    margin-bottom: 5px;

    font-size:
        clamp(3rem, 6vw, 5rem);

    line-height: 1;

    letter-spacing: -0.06em;

    font-weight: 500;

    color: var(--text);
}

.metric span {
    display: block;

    margin-bottom: 7px;

    font-size: 13px;

    font-weight: 600;
}

.metric small {
    color: var(--gray);

    font-size: 10px;
}


/* =========================================================
   SEGMENTOS
========================================================= */

.segments-section {
    padding: 145px 0;

    background: var(--white);
}

.segments-grid {
    display: grid;

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

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

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

.segment-card {
    position: relative;

    min-height: 360px;

    padding: 32px 28px;

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

    transition:
        background var(--transition),
        transform var(--transition);
}

.segment-card:last-child {
    border-right: 0;
}

.segment-card:hover {
    background: var(--off-white);

    transform: translateY(-5px);
}

.segment-number {
    font-size: 10px;

    color: var(--purple);

    font-weight: 700;
}

.segment-icon {
    display: flex;

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

    width: 50px;
    height: 50px;

    margin:
        65px 0
        25px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(166,242,214,0.45),
            rgba(167,123,255,0.12)
        );

    font-size: 20px;
}

.segment-card h3 {
    margin-bottom: 10px;

    font-size: 20px;

    font-weight: 600;

    letter-spacing: -0.03em;
}

.segment-card p {
    max-width: 230px;

    margin-bottom: 20px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.7;
}

.segment-example {
    display: block;

    color: var(--gray);

    font-size: 9px;

    line-height: 1.5;
}


/* =========================================================
   CRM PREVIEW
========================================================= */

.crm-preview {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    margin:
        10px auto
        55px;
}

.crm-stage {
    display: flex;

    flex-direction: column;

    justify-content: center;

    width: 125px;

    min-height: 115px;

    padding: 15px;

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

    border-radius: 15px;

    background: rgba(255,255,255,0.05);
}

.crm-stage.active {
    border-color:
        rgba(167,123,255,0.35);

    background:
        linear-gradient(
            135deg,
            rgba(166,242,214,0.25),
            rgba(167,123,255,0.10)
        );
}

.crm-stage small {
    margin-bottom: 8px;

    color: var(--gray);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.08em;
}

.crm-stage strong {
    margin-bottom: 2px;

    font-size: 28px;

    line-height: 1;

    letter-spacing: -0.05em;
}

.crm-stage span {
    color: var(--gray);

    font-size: 8px;
}

.crm-arrow {
    color: var(--purple);

    font-size: 16px;
}


/* =========================================================
   PROCESS FLOW
========================================================= */

.process-flow-preview {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: 100%;

    margin:
        35px auto
        70px;

    overflow: hidden;
}

.process-flow-preview div {
    display: flex;

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

    min-width: 82px;

    padding: 14px 10px;

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

    border-radius: 12px;

    background: rgba(255,255,255,0.05);

    color: var(--text);

    font-size: 9px;

    font-weight: 600;
}

.process-flow-preview div:nth-of-type(2) {
    background:
        rgba(167,123,255,0.10);
}

.process-flow-preview span {
    color: var(--purple);

    font-size: 13px;
}


/* =========================================================
   EXEMPLOS
========================================================= */

.examples-section {
    padding: 145px 0;

    background: var(--off-white);
}

.examples-grid {
    display: grid;

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

    gap: 18px;
}

.example-card {
    padding: 34px;

    min-height: 340px;

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

    border-radius: 24px;

    background: var(--white);

    box-shadow:
        0 15px 45px rgba(7,17,15,0.04);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.example-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 25px 60px rgba(7,17,15,0.08);
}

.example-label {
    display: inline-block;

    margin-bottom: 35px;

    color: var(--purple);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.12em;
}

.example-card h3 {
    max-width: 310px;

    margin-bottom: 35px;

    font-size: 25px;

    line-height: 1.1;

    letter-spacing: -0.04em;

    font-weight: 500;
}

.example-flow {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 25px;

    flex-wrap: wrap;
}

.example-flow span {
    padding: 7px 9px;

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

    border-radius: 999px;

    background: var(--off-white);

    color: var(--text-soft);

    font-size: 8px;
}

.example-flow b {
    color: var(--purple);

    font-size: 10px;
}

.example-card p {
    max-width: 310px;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 150px 0;

    background:
        linear-gradient(
            135deg,
            #07110F,
            #0D1C18 55%,
            #121126
        );

    color: white;

    overflow: hidden;
}

.cta-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(167,123,255,0.12),
            transparent 65%
        );

    filter: blur(25px);

    pointer-events: none;
}

.cta-container {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    z-index: 2;
}

.cta-symbol {
    display: flex;

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

    width: 70px;
    height: 70px;

    margin-bottom: 30px;

    border-radius: 22px;

    background:
        rgba(166,242,214,0.07);

    border:
        1px solid rgba(166,242,214,0.16);
}

.cta-symbol img {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.cta-section .section-kicker {
    color: rgba(255,255,255,0.4);
}

.cta-section h2 {
    max-width: 760px;

    margin-bottom: 14px;

    font-size:
        clamp(2.7rem, 6vw, 5.3rem);

    line-height: 1;

    letter-spacing: -0.06em;

    font-weight: 500;
}

.cta-section h2 span {
    color: var(--mint);
}

.cta-section p {
    margin-bottom: 35px;

    color: rgba(255,255,255,0.45);

    font-size: 16px;
}

.button-light {
    color: var(--dark);

    background: var(--mint);

    box-shadow:
        0 15px 50px rgba(166,242,214,0.15);

    min-width: 210px;
}

.button-light:hover {
    box-shadow:
        0 20px 55px rgba(166,242,214,0.30);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding:
        65px 0
        25px;

    background: var(--dark);

    color: white;
}

.footer-top {
    display: flex;

    justify-content: space-between;

    gap: 80px;

    padding-bottom: 55px;

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

.footer-brand img {
    width: 150px;

    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 280px;

    color: rgba(255,255,255,0.4);

    font-size: 12px;

    line-height: 1.7;
}

.footer-links {
    display: flex;

    gap: 90px;
}

.footer-links > div {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links span {
    margin-bottom: 8px;

    color: rgba(255,255,255,0.35);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255,255,255,0.65);

    font-size: 11px;

    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    color: rgba(255,255,255,0.27);

    font-size: 9px;
}

/* =========================================================
   SITE BANNER — "também criamos seu site"
========================================================= */

.site-banner {
    padding: 60px 0;

    background: var(--dark-soft);

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

.site-banner-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    flex-wrap: wrap;
}

.site-banner-text {
    display: flex;

    align-items: center;

    gap: 22px;

    max-width: 620px;
}

.site-banner-icon {
    display: flex;

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

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(166,242,214,0.45),
            rgba(167,123,255,0.12)
        );

    font-size: 20px;

    color: var(--dark);
}

.site-banner h3 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);

    font-weight: 600;

    letter-spacing: -0.03em;

    margin-bottom: 8px;
}

.site-banner p {
    color: var(--text-soft);

    font-size: 13.5px;

    line-height: 1.7;
}


/* =========================================================
   PRODUCT SHOWCASE — Turnio
========================================================= */

.product-section {
    padding: 145px 0;

    background: var(--off-white);
}

.product-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 70px;

    align-items: center;
}

.product-copy h2 {
    max-width: 560px;

    margin-bottom: 18px;

    font-size: clamp(2.2rem, 4vw, 3.4rem);

    line-height: 1.05;

    letter-spacing: -0.05em;

    font-weight: 500;
}

.product-copy h2 span {
    color: var(--turnio-teal);
}

.product-copy > p {
    max-width: 460px;

    margin-bottom: 30px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.75;
}

.product-card {
    position: relative;

    padding: 30px;

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

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #102420,
            #07120F
        );

    color: white;

    box-shadow: 0 35px 100px rgba(0,0,0,0.35);

    overflow: hidden;
}

.product-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -140px;
    right: -90px;

    border-radius: 50%;

    background: var(--turnio-teal);

    filter: blur(100px);

    opacity: 0.20;
}

.product-card-top {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.product-icon {
    display: flex;

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

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(47,217,174,0.16);

    color: var(--turnio-teal);

    font-weight: 700;

    font-size: 15px;
}

.product-card h4 {
    position: relative;

    margin-bottom: 10px;

    font-size: 21px;

    font-weight: 600;
}

.product-card > p {
    position: relative;

    max-width: 320px;

    margin-bottom: 22px;

    color: rgba(255,255,255,0.5);

    font-size: 13px;

    line-height: 1.7;
}

.product-features {
    position: relative;

    display: flex;

    flex-direction: column;

    gap: 11px;

    list-style: none;
}

.product-features li {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 13px;

    color: rgba(255,255,255,0.75);
}

.product-features li::before {
    content: "";

    width: 5px;
    height: 5px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--turnio-teal);
}



/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes pulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(167,123,255,0.5);
    }

    70% {
        box-shadow:
            0 0 0 10px rgba(167,123,255,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(167,123,255,0);
    }
}

@keyframes flowLine {
    0% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(35px);
    }
}

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 800ms ease,
        transform 800ms cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}

.reveal-delay {
    transition-delay: 120ms;
}

.reveal-delay-2 {
    transition-delay: 220ms;
}

.reveal-delay-3 {
    transition-delay: 320ms;
}


/* =========================================================
   RESPONSIVE — 1050px
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 20px;
    }

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

        gap: 60px;
    }

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

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

    .solutions-layout {
        grid-template-columns: 1fr;
    }

    .solution-tabs {
        display: grid;

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

        border-top: 0;

        gap: 5px;
    }

    .solution-tab {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

        padding: 15px;

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

        border-radius: 12px;
    }

    .solution-tab b {
        display: none;
    }

    .solution-tab:hover,
    .solution-tab.active {
        padding-left: 15px;
    }

    .solution-display {
        min-height: 530px;
    }

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

    .segment-card:nth-child(2) {
        border-right: 0;
    }

    .segment-card:nth-child(-n+2) {
        border-bottom:
            1px solid var(--border);
    }

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

    .example-card {
        min-height: auto;
    }
}


/* =========================================================
   RESPONSIVE — 800px
========================================================= */

@media (max-width: 800px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }

    .main-nav,
    .header-button {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav.open {
        position: fixed;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        top: 75px;
        left: 16px;
        right: 16px;

        padding: 25px;

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

        border-radius: 20px;

        background:
            rgba(23,26,25,0.97);

        backdrop-filter: blur(20px);

        box-shadow: var(--shadow);
    }

    .main-nav.open a {
        font-size: 15px;
    }

    .hero {
        min-height: auto;

        padding:
            130px 0
            80px;
    }

    .hero h1 {
        font-size:
            clamp(3rem, 13vw, 5rem);
    }

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

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-trust {
        display: grid;

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

        gap: 10px;
    }

    .hero-trust > div + div {
        padding-left: 12px;
    }

    .hero-trust span {
        font-size: 9px;
    }

    .workflow-card {
        padding: 17px;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 45px;
    }

    .intro-section,
    .solutions-section,
    .integrations-section,
    .segments-section,
    .examples-section {
        padding:
            90px 0;
    }

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

    .process-item:nth-child(2) {
        border-right: 0;
    }

    .process-item:nth-child(-n+2) {
        border-bottom:
            1px solid var(--border);
    }

    .solutions-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

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

    .solution-display {
        min-height: 600px;
    }

    .solution-panel {
        padding: 25px;
    }

    .chat-preview,
    .sales-preview,
    .calendar-preview {
        width: 100%;
    }

    .retention-preview {
        gap: 20px;
    }

    .integration-orbit {
        height: 450px;
    }

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

    .metric {
        border-right: 0;

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

    .metric:last-child {
        border-bottom: 0;
    }

    .footer-top {
        flex-direction: column;

        gap: 45px;
    }

    .footer-links {
        gap: 55px;
    }

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

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

    .segment-card {
        min-height: 330px;

        padding: 28px 22px;
    }

    .segment-icon {
        margin-top: 45px;
    }

    .crm-preview {
        gap: 5px;
    }

    .crm-stage {
        width: 100px;

        min-height: 105px;

        padding: 12px;
    }

    .crm-stage strong {
        font-size: 23px;
    }

    .crm-arrow {
        font-size: 12px;
    }

    .process-flow-preview {
        gap: 4px;
    }

    .process-flow-preview div {
        min-width: 65px;

        padding: 11px 7px;

        font-size: 8px;
    }
}


/* =========================================================
   RESPONSIVE — 500px
========================================================= */

@media (max-width: 500px) {

    .brand img {
        width: 125px;
    }

    .hero {
        padding-top: 115px;
    }

    .hero h1 {
        font-size: 3.1rem;
    }

    .hero-trust {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .hero-trust > div + div {
        padding-left: 0;

        border-left: 0;
    }

    .workflow {
        padding-inline: 0;
    }

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

    .process-item {
        min-height: auto;

        padding: 30px 20px;

        border-right: 0;

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

    .process-item:last-child {
        border-bottom: 0;
    }

    .process-icon {
        margin-top: 35px;
    }

    .solution-tabs {
        grid-template-columns:
            1fr 1fr;
    }

    .solution-panel h3 {
        font-size: 1.8rem;
    }

    .solution-display {
        min-height: 650px;
    }

    .retention-preview {
        flex-direction: column;

        margin-bottom: 35px;
    }

    .integration-orbit {
        height: 390px;
    }

    .integration-orbit::before {
        inset: 35px;
    }

    .integration-orbit::after {
        inset: 100px;
    }

    .orbit-center {
        width: 105px;
        height: 105px;
    }

    .orbit-item {
        width: 65px;
        height: 65px;
    }

    .orbit-item strong {
        font-size: 9px;
    }

    .orbit-item span {
        font-size: 6px;
    }

    .orbit-whatsapp {
        top: 20px;
    }

    .orbit-crm {
        right: 5px;
    }

    .orbit-calendar {
        bottom: 20px;
    }

    .orbit-data {
        left: 5px;
    }

    .footer-links {
        gap: 40px;
    }

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

    .segment-card {
        min-height: auto;

        border-right: 0;

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

    .segment-card:last-child {
        border-bottom: 0;
    }

    .segment-icon {
        margin-top: 35px;
    }

    .crm-preview {
        justify-content: flex-start;

        overflow-x: auto;

        padding-bottom: 5px;
    }

    .crm-stage {
        min-width: 100px;
    }

    .process-flow-preview {
        justify-content: flex-start;

        overflow-x: auto;

        padding-bottom: 8px;
    }

    .process-flow-preview div {
        flex-shrink: 0;
    }

    .example-card {
        padding: 27px;
    }

    .example-card h3 {
        font-size: 22px;
    }

    .example-flow {
        gap: 5px;
    }
}


/* =========================================================
   ACESSIBILIDADE / PERFORMANCE
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   RESPONSIVE — NOVOS COMPONENTES
========================================================= */

@media (max-width: 800px) {

    .site-banner-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .site-banner .button {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }
}
