/* ========================================
   RHÉTORÈS FINANCE - Landing Page Luxembourg v3
   Full UI Polish
   ======================================== */

:root {
    --color-primary: #091656;
    --color-primary-light: #0d1f7a;
    --color-primary-dark: #060f3a;
    --color-gold: #ddc07e;
    --color-gold-dark: #c5a662;
    --color-gold-light: #e8d4a0;
    --color-bg: #fafbfd;
    --color-bg-alt: #f3f5f9;
    --color-text: #1a1a2e;
    --color-text-light: #4b5563;
    --color-text-muted: #9ca3af;
    --color-white: #ffffff;
    --color-border: #e5e7eb;
    --color-error: #e20028;

    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

    --side-margin: clamp(20px, 5vw, 80px);
    --section-padding: clamp(64px, 8vw, 120px);
    --container-max: 1200px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;

    --shadow-sm: 0 1px 3px rgba(9, 22, 86, 0.05);
    --shadow-md: 0 4px 24px rgba(9, 22, 86, 0.07);
    --shadow-lg: 0 12px 48px rgba(9, 22, 86, 0.1);
    --shadow-xl: 0 24px 64px rgba(9, 22, 86, 0.14);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
a:focus-visible,
.btn:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: 4px;
}
ul {
    list-style: none;
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
h1 em,
h2 em,
h3 em {
    font-style: italic;
    color: var(--color-gold);
}
::selection {
    background: rgba(221, 192, 126, 0.25);
    color: var(--color-primary);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--side-margin);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    position: relative;
}
.btn-gold {
    background: linear-gradient(
        135deg,
        var(--color-gold),
        var(--color-gold-dark)
    );
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(221, 192, 126, 0.3);
    position: relative;
    overflow: hidden;
}
.btn-gold::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.2) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.2) 55%,
        transparent 60%
    );
    transform: translateX(-100%);
    transition: none;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(221, 192, 126, 0.4);
    filter: brightness(1.05);
}
.btn-gold:hover::after {
    transform: translateX(100%);
    transition: transform 0.6s var(--ease-out);
}
.btn-gold:active {
    transform: translateY(0);
}
.btn-blue {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(9, 22, 86, 0.2);
}
.btn-blue:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(9, 22, 86, 0.25);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 24px;
    font-size: 0.78rem;
}
.btn-lg {
    padding: 16px 36px;
    font-size: 0.92rem;
}
.btn-full {
    width: 100%;
}
.btn-text,
.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-loading {
    display: none;
}
.btn.loading .btn-text {
    display: none;
}
.btn.loading .btn-loading {
    display: flex;
}
.spinner {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.35s var(--ease-out);
}
.header.scrolled {
    background: rgba(6, 15, 58, 0.92);
    backdrop-filter: blur(24px) saturate(1.2);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--side-margin);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-img {
    height: 28px;
    width: auto;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}
.header-phone:hover {
    color: #fff;
}
.header-cta {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.35s var(--ease-out);
    pointer-events: none;
}
.header.scrolled .header-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        #04092e 0%,
        #091656 30%,
        #0d1f7a 60%,
        #152180 100%
    );
}
.hero-overlay-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    mix-blend-mode: luminosity;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(221, 192, 126, 0.06) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(221, 192, 126, 0.04) 0%,
            transparent 40%
        );
}

/* Animated orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--1 {
    width: 400px;
    height: 400px;
    background: var(--color-gold);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}
.hero-orb--2 {
    width: 300px;
    height: 300px;
    background: var(--color-primary-light);
    bottom: -5%;
    left: 10%;
    animation-delay: -6s;
}
@keyframes orbFloat {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -40px);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 130px var(--side-margin) 80px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 56px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(221, 192, 126, 0.08);
    border: 1px solid rgba(221, 192, 126, 0.15);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 28px;
}
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 8px var(--color-gold);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.08;
}
.hero-title em {
    background: linear-gradient(
        135deg,
        var(--color-gold),
        var(--color-gold-light)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.hero-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}
.hero-point-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(221, 192, 126, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-faces {
    display: flex;
}
.trust-face {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(9, 22, 86, 0.8);
    margin-left: -10px;
    transition: transform 0.3s;
}
.trust-face:first-child {
    margin-left: 0;
}
.trust-face:hover {
    transform: scale(1.15);
    z-index: 1;
}
.trust-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.4;
}
.trust-text strong {
    color: #fff;
    font-weight: 600;
}
.trust-text span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== FORM CARD ========== */
.form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(221, 192, 126, 0.1);
    position: relative;
    overflow: hidden;
    animation: formGlow 4s ease-in-out infinite;
}
@keyframes formGlow {
    0%,
    100% {
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(221, 192, 126, 0.1);
    }
    50% {
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(221, 192, 126, 0.08);
    }
}
.form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--color-gold),
        var(--color-gold-dark),
        var(--color-gold)
    );
}
.form-card-header {
    text-align: center;
    margin-bottom: 24px;
}
.form-card-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    background: rgba(221, 192, 126, 0.1);
    border: 1px solid rgba(221, 192, 126, 0.2);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    margin-bottom: 12px;
}
.form-card-header h2 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.form-card-header p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-group label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.86rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: all 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(221, 192, 126, 0.12);
    background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
    font-weight: 300;
}
.form-group input.error,
.form-group select.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(226, 0, 40, 0.08);
}
.form-error {
    font-size: 0.68rem;
    color: var(--color-error);
    display: none;
}
.form-group.has-error .form-error {
    display: block;
}
.form-group textarea {
    resize: vertical;
    min-height: 64px;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}
.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--color-border);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s;
    position: relative;
    background: var(--color-bg);
}
.form-checkbox input:checked + .checkbox-custom {
    background: var(--color-gold);
    border-color: var(--color-gold);
}
.form-checkbox input:checked + .checkbox-custom::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 8px;
    border: solid var(--color-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-text {
    font-size: 0.7rem;
    color: var(--color-text-light);
    line-height: 1.5;
}
.checkbox-text a {
    color: var(--color-gold-dark);
    text-decoration: underline;
}
.form-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}
.form-note {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 4px;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(221, 192, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPop 0.5s var(--ease-spring);
}
@keyframes successPop {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
.form-success h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.form-success p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--color-white);
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border);
}
.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    text-align: center;
    padding: 12px 36px;
    flex: 1;
    min-width: 160px;
}
.trust-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}
.trust-suffix {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--color-gold);
}
.trust-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}
.trust-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--color-border),
        transparent
    );
}

/* ========== SECTION COMMON ========== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}
.section-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    color: var(--color-primary);
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.8;
}

/* ========== SECTION SEPARATORS ========== */
.problem-section::before,
.process-section::before,
.comparison-section::before,
.testimonials-section::before {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin: 0 auto 0;
    opacity: 0.3;
    border-radius: 2px;
    position: relative;
    top: calc(var(--section-padding) * -0.01);
}

/* ========== PROBLEM CARDS ========== */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.problem-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px 32px;
    border: 1px solid var(--color-border);
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: attr(data-index);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-primary);
    opacity: 0.03;
    line-height: 1;
}
.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-gold),
        var(--color-gold-dark)
    );
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
    transform-origin: left;
}
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.problem-card:hover .card-accent {
    transform: scaleX(1);
}
.problem-number {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(
        135deg,
        var(--color-gold),
        var(--color-gold-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: -0.02em;
}
.problem-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.problem-card p {
    font-size: 0.86rem;
    color: var(--color-text-light);
    line-height: 1.75;
}
.problem-card p strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* ========== ADVANTAGES ========== */
.advantages-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    overflow: hidden;
}
.advantage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 100px;
}
.advantage-row:last-child {
    margin-bottom: 0;
}
.advantage-row.reverse {
    direction: rtl;
}
.advantage-row.reverse > * {
    direction: ltr;
}
.advantage-visual {
    min-width: 0;
}
.advantage-image-wrapper {
    position: relative;
}
.advantage-img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Image decorations */
.img-decoration {
    position: absolute;
    z-index: -1;
}
.img-decoration--dots {
    width: 120px;
    height: 120px;
    top: -20px;
    left: -20px;
    background-image: radial-gradient(
        circle,
        var(--color-gold) 1.5px,
        transparent 1.5px
    );
    background-size: 12px 12px;
    opacity: 0.2;
}
.img-decoration--line {
    width: 4px;
    height: 60%;
    bottom: 10%;
    right: -16px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    border-radius: 4px;
    opacity: 0.3;
}

.advantage-float-card {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(221, 192, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.float-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}
.float-text {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.advantage-content .section-tag,
.advantage-content .section-title {
    text-align: left;
}
.advantage-text {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}
.advantage-list {
    margin-bottom: 28px;
}
.advantage-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--color-text);
    font-weight: 500;
}
.check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(221, 192, 126, 0.15),
        rgba(221, 192, 126, 0.25)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold-dark);
}

/* ========== VIDEO SECTION ========== */
.video-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease-out);
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.video-facade {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-primary-dark);
}
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.video-facade::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(9, 22, 86, 0.4) 0%,
        transparent 40%
    );
    pointer-events: none;
    z-index: 1;
}
.video-facade:hover .video-thumbnail {
    transform: scale(1.04);
}
.video-play-btn {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 22, 86, 0.15);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.video-play-btn:hover {
    background: rgba(9, 22, 86, 0.25);
}
.video-play-btn svg {
    transition: transform 0.3s var(--ease-spring);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.video-play-btn:hover svg {
    transform: scale(1.1);
}
.video-facade.playing::after {
    display: none;
}
.video-facade iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 3;
}
.video-caption {
    padding: 16px 20px;
}
.video-caption h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2px;
}
.video-caption span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ========== WHITEPAPER ========== */
.whitepaper-section {
    padding: var(--section-padding) 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}
.whitepaper-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(221, 192, 126, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 100% 50%,
            rgba(221, 192, 126, 0.04) 0%,
            transparent 50%
        );
}
.whitepaper-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 64px;
    align-items: center;
}

.whitepaper-mockup {
    position: relative;
    width: 280px;
    transition: transform 0.6s var(--ease-out);
    overflow: hidden;
}
.whitepaper-mockup:hover {
    transform: rotate(-2deg) translateY(-8px);
}
.mockup-cover {
    background: linear-gradient(160deg, #0a1a5e 0%, #091656 40%, #060f3a 100%);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(221, 192, 126, 0.15);
    box-shadow: 24px 24px 64px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.mockup-cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-gold),
        var(--color-gold-light),
        var(--color-gold)
    );
}
.mockup-logo {
    position: relative;
    z-index: 1;
}
.mockup-logo img {
    opacity: 0.7;
}
.mockup-content {
    position: relative;
    z-index: 1;
}
.mockup-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 10px;
    padding: 3px 10px;
    border: 1px solid rgba(221, 192, 126, 0.25);
    border-radius: var(--radius-full);
}
.mockup-content h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}
.mockup-content p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}
.mockup-footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}
.mockup-footer span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
}

/* Stacked pages effect */
.mockup-page {
    position: absolute;
    border-radius: var(--radius-lg);
    background: rgba(6, 15, 58, 0.7);
    border: 1px solid rgba(221, 192, 126, 0.06);
}
.mockup-page--1 {
    inset: 6px -6px -6px 6px;
    z-index: 1;
}
.mockup-page--2 {
    inset: 12px -12px -12px 12px;
    z-index: 0;
    opacity: 0.5;
}

.whitepaper-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 24px;
}
.wp-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}
.wp-feature svg {
    flex-shrink: 0;
}

.whitepaper-form-side {
    color: #fff;
}
.wp-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-gold);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}
.whitepaper-form-side h2 {
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}
.whitepaper-form-side > p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.wp-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wp-form .form-group input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--radius-md);
}
.wp-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.wp-form .form-group input:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(221, 192, 126, 0.12);
}
.wp-form .form-note {
    color: rgba(255, 255, 255, 0.35);
}
.wp-success {
    text-align: center;
    padding: 32px 0;
}
.wp-success h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 12px 0 6px;
}
.wp-success p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ========== PROCESS ========== */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.process-line {
    position: absolute;
    top: 28px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--color-gold),
        var(--color-gold-light),
        var(--color-gold)
    );
    opacity: 0.2;
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.step-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--color-gold),
        var(--color-gold-dark)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(221, 192, 126, 0.3);
    transition: transform 0.4s var(--ease-spring);
}
.step-marker span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
}
.step-marker::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(221, 192, 126, 0.3);
    transition: all 0.4s;
}
.process-step:hover .step-marker {
    transform: scale(1.1);
}
.process-step:hover .step-marker::after {
    inset: -8px;
    border-color: rgba(221, 192, 126, 0.15);
}

.step-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-out);
}
.process-step:hover .step-card {
    border-color: rgba(221, 192, 126, 0.25);
    box-shadow: var(--shadow-md);
}
.step-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.step-card p {
    font-size: 0.84rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ========== AUDIENCE ========== */
.audience-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    overflow: hidden;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.audience-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.5s var(--ease-out);
    position: relative;
}
.audience-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        135deg,
        rgba(221, 192, 126, 0.05),
        rgba(9, 22, 86, 0.03)
    );
    opacity: 0;
    transition: opacity 0.4s;
}
.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(221, 192, 126, 0.3);
}
.audience-card:hover::before {
    opacity: 1;
}
.audience-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(
        135deg,
        var(--color-gold),
        var(--color-gold-dark)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    line-height: 1;
    position: relative;
    letter-spacing: -0.02em;
}
.audience-card h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    position: relative;
}
.audience-card p {
    font-size: 0.82rem;
    color: var(--color-text-light);
    line-height: 1.7;
    position: relative;
}

/* ========== COMPARISON INTERACTIVE ========== */
.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    overflow: hidden;
}
.comp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    align-items: start;
}
.comp-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
}
.comp-card:hover {
    border-color: rgba(221, 192, 126, 0.3);
    box-shadow: var(--shadow-md);
}
.comp-card.active {
    border-color: var(--color-gold);
    box-shadow: 0 4px 24px rgba(221, 192, 126, 0.15);
}
.comp-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 0;
}
.comp-card-top h4 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-primary);
}
.comp-chevron {
    color: var(--color-gold);
    transition: transform 0.35s var(--ease-out);
    flex-shrink: 0;
}
.comp-card.active .comp-chevron {
    transform: rotate(180deg);
}
.comp-card-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 16px 24px 20px;
}
.comp-val {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}
.comp-val--fr {
    background: rgba(156, 163, 175, 0.06);
}
.comp-val--lu {
    background: rgba(221, 192, 126, 0.06);
}
.comp-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.comp-val--fr .comp-tag {
    color: var(--color-text-muted);
}
.comp-val--lu .comp-tag {
    color: var(--color-gold-dark);
}
.comp-val-main {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}
.comp-val--fr .comp-val-main {
    color: var(--color-text-muted);
}
.comp-val--lu .comp-val-main {
    color: var(--color-primary);
}
.comp-val-sub {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 400;
}
.comp-val--lu .comp-val-sub {
    color: var(--color-gold-dark);
}
.comp-card-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}
.comp-card.active .comp-card-detail {
    max-height: 200px;
}
.comp-card-detail p {
    padding: 0 24px 20px;
    font-size: 0.84rem;
    color: var(--color-text-light);
    line-height: 1.8;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    margin: 0 24px;
    padding-left: 0;
    padding-right: 0;
}
.comp-card-detail p strong {
    color: var(--color-primary);
}
.comparison-cta {
    text-align: center;
}

/* ========== TEAM ========== */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
    overflow: hidden;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.5s var(--ease-out);
}
.team-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: var(--shadow-lg);
}
.team-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.team-card:hover .team-photo img {
    transform: scale(1.06);
}
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(9, 22, 86, 0.8) 0%,
        transparent 60%
    );
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}
.team-card:hover .team-overlay {
    opacity: 1;
}
.team-overlay span {
    font-size: 0.78rem;
    color: var(--color-gold);
    font-weight: 500;
}
.team-info {
    padding: 18px 20px;
    text-align: center;
}
.team-info h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2px;
}
.team-info span {
    font-size: 0.74rem;
    color: var(--color-text-muted);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    overflow: hidden;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--color-border);
    transition: all 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(221, 192, 126, 0.2);
}
.testimonial-quote-icon {
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.08;
}
.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
/* Google rating badge */
.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 22px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-out);
}
.google-rating:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(66, 133, 244, 0.3);
    transform: translateY(-2px);
}
.google-logo {
    flex-shrink: 0;
}
.google-rating-score {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}
.google-rating-stars {
    color: #fbbc05;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 1;
}
.google-rating-text {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.testimonial-card blockquote p {
    font-size: 0.86rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}
.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--color-primary),
        var(--color-primary-light)
    );
    color: var(--color-gold);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-info strong {
    font-size: 0.82rem;
    color: var(--color-primary);
}
.author-info span {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

/* ========== FAQ ========== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: start;
}
.faq-header .section-tag,
.faq-header .section-title {
    text-align: left;
}
.faq-intro {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: rgba(221, 192, 126, 0.25);
}
.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: 0 2px 12px rgba(221, 192, 126, 0.1);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    transition: color 0.2s;
}
.faq-question:hover {
    color: var(--color-gold-dark);
}
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-out);
    color: var(--color-gold);
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 22px 18px;
    font-size: 0.84rem;
    color: var(--color-text-light);
    line-height: 1.8;
}
.faq-answer p strong {
    color: var(--color-primary);
}

/* ========== FINAL CTA ========== */
.final-cta-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}
.final-cta-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.final-cta-bg {
    position: absolute;
    inset: 0;
}
.final-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.final-cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4, 9, 46, 0.93) 0%,
        rgba(9, 22, 86, 0.88) 100%
    );
}
.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 40px;
    max-width: 650px;
}
.final-cta-content h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    color: #fff;
    margin-bottom: 16px;
}
.final-cta-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 32px;
}
.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-primary-dark);
    padding: 60px 0 0;
    border-top: 1px solid rgba(221, 192, 126, 0.08);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
    max-width: 350px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-description {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}
.footer-links {
    display: flex;
    gap: 60px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-col ul li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 3px 0;
}
.footer-col ul li a:hover {
    color: #fff;
}
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ========== STICKY CTA ========== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(6, 15, 58, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(221, 192, 126, 0.15);
    transform: translateY(100%);
    transition: transform 0.35s var(--ease-out);
}
.sticky-cta.visible {
    transform: translateY(0);
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--color-gold),
        var(--color-gold-light)
    );
    z-index: 1001;
    width: 0;
    transition: none;
    pointer-events: none;
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.8s var(--ease-out),
        transform 0.8s var(--ease-out);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.8s var(--ease-out),
        transform 0.8s var(--ease-out);
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.8s var(--ease-out),
        transform 0.8s var(--ease-out);
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}
.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}
.delay-5 {
    transition-delay: 0.5s;
}

/* ========== RESPONSIVE ========== */

/* --- Tablet landscape / small desktop --- */
@media (max-width: 1080px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 110px;
    }
    .hero-content {
        max-width: 640px;
        margin: 0 auto;
    }
    .hero-badge {
        justify-content: center;
    }
    .hero-points {
        align-items: center;
    }
    .hero-trust {
        justify-content: center;
    }
    .hero-form {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* --- Tablet portrait --- */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .problem-grid .problem-card:last-child {
        grid-column: 1/-1;
    }
    .advantage-row,
    .advantage-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    .fade-left,
    .fade-right {
        transform: translateY(32px);
    }
    .fade-left.visible,
    .fade-right.visible {
        transform: translateY(0);
    }
    .advantage-row {
        margin-bottom: 72px;
    }
    .advantage-content .section-tag,
    .advantage-content .section-title {
        text-align: center;
    }
    .advantage-text {
        text-align: center;
    }
    .advantage-list {
        max-width: 400px;
        margin: 0 auto 28px;
    }
    .advantage-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .advantage-image-wrapper {
        max-width: 560px;
        margin: 0 auto;
    }
    .whitepaper-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .whitepaper-mockup {
        margin: 0 auto;
    }
    .whitepaper-form-side {
        text-align: center;
    }
    .whitepaper-features {
        justify-content: center;
    }
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin: 0 auto;
    }
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1/-1;
    }
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-header {
        text-align: center;
    }
    .faq-header .section-tag,
    .faq-header .section-title {
        text-align: center;
    }
    .faq-header .section-tag::before {
        display: none;
    }
    .faq-header .btn {
        display: none;
    }
    .section-header {
        margin-bottom: 48px;
    }
    .final-cta-card {
        min-height: 320px;
    }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    :root {
        --section-padding: clamp(48px, 8vw, 80px);
    }
    .header-phone,
    .header-cta {
        display: none !important;
    }
    .scroll-progress {
        height: 2px;
    }

    /* Hero */
    .hero {
        min-height: auto;
    }
    .hero-inner {
        padding: 100px 20px 50px;
        gap: 32px;
    }
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .hero-points {
        gap: 8px;
        margin-bottom: 24px;
    }
    .hero-trust {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-card {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }
    .form-card-header h2 {
        font-size: 1.2rem;
    }

    /* Trust bar */
    .trust-bar {
        padding: 32px 0;
    }
    .trust-items {
        flex-direction: column;
        gap: 16px;
    }
    .trust-divider {
        width: 40px;
        height: 1px;
    }
    .trust-item {
        padding: 8px 20px;
    }

    /* Problem cards */
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .problem-grid .problem-card:last-child {
        grid-column: auto;
    }
    .problem-card {
        padding: 28px 24px 24px;
    }

    /* Advantages */
    .advantage-row {
        margin-bottom: 56px;
    }
    .advantage-float-card {
        right: 8px;
        bottom: -10px;
        padding: 12px 16px;
    }
    .float-number {
        font-size: 1.2rem;
    }
    .float-text {
        font-size: 0.6rem;
    }
    .img-decoration {
        display: none;
    }

    /* Video */
    .video-grid {
        max-width: 100%;
    }

    /* Process */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .process-line {
        display: none;
    }
    .step-marker {
        width: 48px;
        height: 48px;
    }
    .step-marker span {
        font-size: 1.1rem;
    }
    .step-card {
        padding: 24px 20px;
    }

    /* Audience */
    .audience-grid {
        grid-template-columns: 1fr;
    }
    .audience-card {
        padding: 24px 20px;
    }

    /* Comparison */
    .comp-grid {
        grid-template-columns: 1fr;
    }
    .comp-card {
        min-height: 44px;
    }
    .comp-card-top {
        padding: 16px 20px 0;
        min-height: 44px;
    }
    .comp-card-values {
        padding: 12px 20px 16px;
    }
    .comp-val {
        padding: 10px 12px;
    }
    .comp-val-main {
        font-size: 1rem;
    }
    .comp-card-detail p {
        margin: 0 20px;
        padding-top: 14px;
        padding-bottom: 16px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .team-info {
        padding: 14px 16px;
    }
    .team-info h4 {
        font-size: 0.82rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
    }
    .testimonial-card {
        padding: 24px 22px;
    }

    /* Whitepaper */
    .whitepaper-mockup {
        width: 220px;
    }
    .whitepaper-form-side h2 {
        font-size: 1.3rem;
    }

    /* FAQ */
    .faq-question {
        padding: 16px 18px;
        font-size: 0.82rem;
    }
    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.82rem;
    }

    /* Final CTA */
    .final-cta-card {
        min-height: auto;
    }
    .final-cta-content {
        padding: 40px 24px;
    }
    .final-cta-content h2 {
        font-size: 1.4rem;
    }
    .final-cta-buttons {
        flex-direction: column;
    }
    .final-cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
    .footer-bottom {
        padding: 20px 0;
    }

    /* Sticky CTA */
    .sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}

/* --- Small mobile --- */
@media (max-width: 400px) {
    :root {
        --side-margin: 16px;
    }
    .hero-inner {
        padding: 90px 4px 40px;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 0.84rem;
    }
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.84rem;
    }
    .btn-sm {
        padding: 8px 18px;
        font-size: 0.72rem;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .section-header {
        margin-bottom: 36px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-photo {
        aspect-ratio: 4/3;
    }
    .comp-card-values {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .form-card {
        padding: 24px 16px;
    }
    .form-card-header h2 {
        font-size: 1.1rem;
    }
    .advantage-float-card {
        display: none;
    }
    .trust-face {
        width: 36px;
        height: 36px;
    }
    .whitepaper-mockup {
        width: 180px;
    }
    .mockup-content h3 {
        font-size: 1rem;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .fade-up,
    .fade-left,
    .fade-right,
    .scale-in {
        opacity: 1;
        transform: none;
    }
    .scroll-progress {
        display: none;
    }
}
