/* ============================================
   SMART DIGITAL COMMERCE — STYLES
   Design system : Clean & Data-driven
   ============================================ */

/* ===== TOKENS ===== */
:root {
    /* Couleurs marque */
    --navy: #0A1F4D;
    --navy-deep: #051337;
    --navy-soft: #1A2F5F;
    --yellow: #FCC419;
    --yellow-bright: #FFD43B;
    --yellow-soft: #FFF4D1;

    /* Neutres */
    --white: #FFFFFF;
    --off-white: #FAFAFB;
    --gray-50: #F8F9FB;
    --gray-100: #F1F3F7;
    --gray-200: #E5E8EE;
    --gray-300: #CBD0DA;
    --gray-500: #6B7385;
    --gray-700: #3D4356;
    --gray-900: #1A1F2E;

    /* Sémantique */
    --success: #10B981;
    --danger: #EF4444;

    /* Typo */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Espacement */
    --container: 1200px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Ombres */
    --shadow-sm: 0 1px 2px rgba(10, 31, 77, 0.05);
    --shadow: 0 4px 16px rgba(10, 31, 77, 0.08);
    --shadow-lg: 0 12px 40px rgba(10, 31, 77, 0.12);
    --shadow-xl: 0 20px 60px rgba(10, 31, 77, 0.15);

    /* Transitions */
    --t-fast: 150ms ease;
    --t: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== UTILS ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.text-accent {
    color: var(--yellow);
    position: relative;
    display: inline-block;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius);
    transition: all var(--t);
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
}
.btn--primary {
    background: var(--yellow);
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(252, 196, 25, 0.35);
}
.btn--primary:hover {
    background: var(--yellow-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(252, 196, 25, 0.45);
}
.btn--ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--gray-200);
}
.btn--ghost:hover {
    border-color: var(--navy);
    background: var(--white);
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--full { width: 100%; padding: 16px 26px; }

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 251, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--t);
}
.header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo__svg { height: 38px; width: auto; }
.logo__primary {
    font-family: var(--font);
    font-size: 30px;
    font-weight: 700;
    fill: var(--navy);
    letter-spacing: -0.02em;
}
.logo__primary--light { fill: var(--white); }
.logo__accent {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
    fill: var(--yellow);
    letter-spacing: 0.02em;
}

.nav__list {
    display: flex;
    gap: 36px;
}
.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    transition: color var(--t-fast);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: all var(--t);
    transform: translateX(-50%);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after { width: 100%; }

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--t);
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 196, 25, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 31, 77, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.hero__title {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 24px;
}
.hero__title .text-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--yellow);
    opacity: 0.25;
    z-index: -1;
    border-radius: 2px;
}
.hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 40px;
    max-width: 560px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.hero__metrics {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}
.metric__value {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.metric__label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    font-weight: 500;
}

/* === Hero Visual: Dashboard === */
.hero__visual {
    position: relative;
    perspective: 2000px;
}
.dashboard {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform var(--t-slow);
}
.dashboard:hover { transform: rotateY(0) rotateX(0); }
.dashboard__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.dashboard__dots { display: flex; gap: 6px; }
.dashboard__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
}
.dashboard__dots span:nth-child(1) { background: #FF6058; }
.dashboard__dots span:nth-child(2) { background: #FFBD2E; }
.dashboard__dots span:nth-child(3) { background: #28C941; }
.dashboard__title {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
}
.dashboard__body { padding: 24px; }
.dashboard__kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.kpi {
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
}
.kpi__label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 6px;
}
.kpi__value {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.kpi__delta {
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}
.kpi__delta--up { color: var(--success); }
.kpi__delta--down { color: var(--success); }
.dashboard__chart {
    height: 140px;
    background: var(--white);
    border-radius: var(--radius);
}
.dashboard__chart svg {
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gray-100);
    animation: float 4s ease-in-out infinite;
}
.floating-card--1 {
    top: 15%;
    left: -30px;
    animation-delay: 0s;
}
.floating-card--2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 1.5s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.floating-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(252, 196, 25, 0.15);
    color: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.floating-card__icon--success {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}
.floating-card__label {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.floating-card__value {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* ===== TRUST BAR ===== */
.trust {
    padding: 56px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.trust__label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
}
.trust__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 40px;
}
.trust__item {
    display: flex;
    align-items: center;
    opacity: 0.75;
    transition: opacity var(--t);
}
.trust__item:hover { opacity: 1; }
.trust__item img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .trust__item img { height: 36px; max-width: 140px; }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(10, 31, 77, 0.06);
    color: var(--navy);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.section-eyebrow--light {
    background: rgba(252, 196, 25, 0.15);
    color: var(--yellow-bright);
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-title .text-accent {
    color: var(--navy);
    background: linear-gradient(180deg, transparent 65%, rgba(252, 196, 25, 0.4) 65%);
}
.section-title--light .text-accent {
    color: var(--yellow);
    background: none;
}
.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.6;
}
.section-subtitle--light { color: rgba(255, 255, 255, 0.7); }

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--off-white);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--t);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.service-card--featured::before { background: var(--yellow); transform: scaleX(1); }
.service-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 10px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(252, 196, 25, 0.12);
    color: var(--yellow);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.service-card--featured .service-card__icon {
    background: rgba(252, 196, 25, 0.18);
    color: var(--yellow);
}
.service-card__number {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-300);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}
.service-card--featured .service-card__number { color: rgba(255, 255, 255, 0.4); }
.service-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    color: var(--navy);
}
.service-card--featured .service-card__title { color: var(--white); }
.service-card__desc {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}
.service-card--featured .service-card__desc { color: rgba(255, 255, 255, 0.75); }
.service-card__list { display: flex; flex-direction: column; gap: 10px; }
.service-card__list li {
    font-size: 14px;
    color: var(--gray-700);
    padding-left: 24px;
    position: relative;
}
.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    transform: rotate(-45deg);
}
.service-card--featured .service-card__list li { color: rgba(255, 255, 255, 0.85); }

/* ===== METHOD ===== */
.method {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}
.method__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.method__grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200), var(--yellow), var(--gray-200));
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.step__number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: all var(--t);
}
.step:hover .step__number {
    background: var(--yellow);
    transform: scale(1.05);
}
.step__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.step__desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ===== RESULTS ===== */
.results {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(252, 196, 25, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(252, 196, 25, 0.05) 0%, transparent 40%);
    pointer-events: none;
}
.results > .container { position: relative; z-index: 1; }

.results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}
.case-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: all var(--t);
}
.case-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(252, 196, 25, 0.3);
    transform: translateY(-4px);
}
.case-card__sector {
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.case-card__metric {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.case-card__metric-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 500;
}
.case-card__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}
.case-card__footer {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tag {
    padding: 6px 12px;
    background: rgba(252, 196, 25, 0.12);
    color: var(--yellow);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}
.testimonial__quote {
    color: var(--yellow);
    opacity: 0.5;
    margin: 0 auto 16px;
}
.testimonial__text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.testimonial__footer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.testimonial__footer strong { color: var(--white); }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}
.contact__intro .section-eyebrow { margin-top: 0; }
.contact__intro .section-title { text-align: left; margin-top: 16px; }
.contact__lead {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 32px;
}
.contact__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.contact__features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--gray-700);
}
.contact__features svg {
    color: var(--yellow);
    flex-shrink: 0;
    background: rgba(252, 196, 25, 0.12);
    padding: 4px;
    border-radius: 8px;
}
.contact__direct {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}
.contact__direct-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 6px;
    font-weight: 500;
}
.contact__direct-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--t-fast);
}
.contact__direct-link:hover { color: var(--yellow); }

/* === Form === */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    position: relative;
}
.contact-form__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    color: var(--navy);
    font-size: 15px;
    transition: all var(--t-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(252, 196, 25, 0.15);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}
.contact-form__note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 16px;
}
.contact-form__success {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    color: var(--success);
}
.contact-form__success.is-visible { display: flex; }
.contact-form__success h4 {
    font-size: 22px;
    color: var(--navy);
    margin: 16px 0 8px;
}
.contact-form__success p { color: var(--gray-500); }

.contact__calendly {
    margin-top: 24px;
    padding: 24px;
    background: var(--white);
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius);
    text-align: center;
}
.contact__calendly p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 14px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}
.footer__logo { height: 36px; margin-bottom: 16px; }
.footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}
.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer__col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__col a, .footer__col li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--yellow); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--yellow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 64px; }
    .hero__visual { max-width: 560px; margin: 0 auto; }
    .services__grid { grid-template-columns: 1fr 1fr; }
    .service-card--featured { grid-column: 1 / -1; }
    .method__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .method__grid::before { display: none; }
    .results__grid { grid-template-columns: 1fr 1fr; }
    .results__grid .case-card:last-child { grid-column: 1 / -1; }
    .contact__grid { grid-template-columns: 1fr; gap: 48px; }
    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav, .header__cta { display: none; }
    .nav__toggle { display: flex; }
    .nav.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        padding: 24px;
        box-shadow: var(--shadow);
    }
    .nav.is-open .nav__list {
        flex-direction: column;
        gap: 20px;
    }
    .hero { padding: 48px 0 64px; }
    .hero__metrics { gap: 24px; }
    .metric__value { font-size: 24px; }
    .floating-card--1 { left: -10px; padding: 10px 14px; }
    .floating-card--2 { right: -10px; padding: 10px 14px; }
    .floating-card__value { font-size: 12px; }
    .trust__logos { gap: 12px 24px; }
    .trust__item { font-size: 13px; }
    .services, .method, .results, .contact { padding: 64px 0; }
    .services__grid, .results__grid { grid-template-columns: 1fr; }
    .service-card--featured { grid-column: auto; }
    .results__grid .case-card:last-child { grid-column: auto; }
    .method__grid { grid-template-columns: 1fr; }
    .case-card__metric { font-size: 44px; }
    .testimonial { padding: 32px 24px; }
    .testimonial__text { font-size: 18px; }
    .contact-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer__links { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__metrics { flex-wrap: wrap; }
    .dashboard__kpis { grid-template-columns: 1fr; gap: 8px; }
    .kpi { padding: 12px; }
    .kpi__value { font-size: 18px; }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
