/* ===========================
   Cleoo Agency — Styles
=========================== */

:root {
    --black: #000000;
    --ink: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --gray-900: #1f1f1f;
    --gray-700: #3a3a3a;
    --gray-500: #6b6b6b;
    --gray-300: #b8b8b8;
    --gray-100: #efefef;
    --gray-50: #f7f7f7;
    --white: #ffffff;
    --accent: #d4b97a;
    --radius: 14px;
    --radius-lg: 24px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===========================
   Navigation
=========================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: color 0.2s var(--ease);
}

.nav-links a:hover {
    color: var(--black);
}

.nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 11px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-cta:hover {
    background: var(--gray-900);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 1px;
}

/* ===========================
   Hero
=========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 185, 122, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 185, 122, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.eyebrow.light {
    color: var(--accent);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 7.5vw, 96px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.hero-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
}

.hero-sub {
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.6;
    color: var(--gray-300);
    max-width: 620px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 80px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    font-size: 17px;
    padding: 18px 36px;
}

.btn-white:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

/* ===========================
   Sections
=========================== */
.section {
    padding: 120px 0;
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--gray-500);
    max-width: 680px;
    margin: 0 auto;
}

.section-lead.light {
    color: var(--gray-300);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text p {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ===========================
   Services
=========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 48px;
    transition: all 0.3s var(--ease);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 185, 122, 0.3);
    transform: translateY(-4px);
}

.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    font-weight: 500;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--gray-300);
    font-size: 15.5px;
    line-height: 1.65;
}

/* ===========================
   Assistante
=========================== */
.earn-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    margin-bottom: 100px;
    align-items: stretch;
}

.pct-card {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pct-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 185, 122, 0.18) 0%, transparent 60%);
}

.pct-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    position: relative;
}

.pct-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 104px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.02em;
}

.pct-desc {
    display: block;
    color: var(--gray-300);
    font-size: 14.5px;
    position: relative;
    line-height: 1.5;
}

.range-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.range-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.range-intro {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.65;
    margin-bottom: 24px;
}

.example-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.example-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 15px;
    flex-wrap: wrap;
}

.example-in {
    color: var(--gray-700);
    font-weight: 500;
}

.example-arrow {
    color: var(--accent);
    font-size: 18px;
    font-weight: 300;
}

.example-out {
    color: var(--gray-700);
}

.example-out strong {
    color: var(--black);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-right: 4px;
}

.subtitle-lead {
    text-align: center;
    max-width: 680px;
    margin: -32px auto 48px;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.7;
}

.subtitle-lead strong {
    color: var(--black);
}

.how-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 100px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.how-step {
    padding: 36px 32px;
    border-right: 1px solid var(--gray-100);
}

.how-step:last-child {
    border-right: none;
}

.how-num {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 500;
}

.how-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.how-step p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

.condition-card-main {
    grid-column: span 2;
}

.condition-card-main p + p {
    margin-top: 14px;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 100px;
}

.mode-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 44px;
    transition: all 0.3s var(--ease);
}

.mode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mode-card-alt {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.mode-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--black);
    color: var(--white);
    margin-bottom: 24px;
}

.mode-card-alt .mode-tag {
    background: var(--accent);
    color: var(--black);
}

.mode-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.mode-card p {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--gray-700);
}

.mode-card-alt p {
    color: var(--gray-300);
}

.mode-list {
    list-style: none;
    padding: 0;
}

.mode-list li {
    position: relative;
    padding-left: 26px;
    font-size: 14.5px;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.mode-card-alt .mode-list li {
    color: var(--gray-300);
}

.mode-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

/* Conditions */
.conditions {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 72px 56px;
}

.conditions-lead {
    text-align: center;
    color: var(--gray-700);
    max-width: 620px;
    margin: -24px auto 48px;
    font-size: 16px;
    line-height: 1.65;
}

.conditions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.condition-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--gray-100);
}

.condition-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--black);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.condition-icon svg {
    width: 24px;
    height: 24px;
}

.condition-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.condition-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

.trust-box {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 36px 40px;
    text-align: center;
}

.trust-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.trust-box p {
    font-size: 15.5px;
    color: var(--gray-300);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.trust-box strong {
    color: var(--white);
    font-weight: 600;
}

/* ===========================
   CTA / Contact
=========================== */
.cta-box {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.cta-box .btn-white {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.contact-sub {
    margin-top: 28px;
    color: var(--gray-500);
    font-size: 14px;
    letter-spacing: 0.02em;
}

/* ===========================
   Footer
=========================== */
.footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 80px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer {
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 320px;
    font-size: 14.5px;
    color: var(--gray-500);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-links h5 {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 14.5px;
    margin-bottom: 10px;
    transition: color 0.2s var(--ease);
}

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

.footer-bottom {
    padding-top: 32px;
    font-size: 13px;
    color: var(--gray-700);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 960px) {
    .grid-2,
    .services-grid,
    .modes-grid,
    .conditions-grid,
    .earn-grid,
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 80px 0;
    }

    .conditions {
        padding: 48px 28px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-num {
        font-size: 32px;
    }

    .how-card {
        grid-template-columns: 1fr 1fr;
    }

    .how-step {
        border-right: 1px solid var(--gray-100);
        border-bottom: 1px solid var(--gray-100);
    }

    .how-step:nth-child(2n) {
        border-right: none;
    }

    .how-step:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .condition-card-main {
        grid-column: span 1;
    }
}

@media (max-width: 720px) {
    .how-card {
        grid-template-columns: 1fr;
    }

    .how-step {
        border-right: none !important;
        border-bottom: 1px solid var(--gray-100);
    }

    .how-step:last-child {
        border-bottom: none;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray-100);
    }

    .service-card,
    .mode-card {
        padding: 32px 28px;
    }

    .pct-card {
        padding: 36px 28px;
    }

    .pct-value {
        font-size: 72px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

