/* ===================================================================
   Virtex AI — Main Stylesheet
   Domain: virtex-ai.com
   =================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --red: #DC143C;
    --red-dark: #B01030;
    --red-light: #E8365A;
    --dark: #1A1A2E;
    --dark-2: #16213E;
    --text: #1B1B1B;
    --text-2: #5A5A6E;
    --bg: #FAFAFA;
    --bg-warm: #FDF2F4;
    --card: #FFFFFF;
    --border: #F0D0D8;
    --green: #22C55E;
    --gold: #FFD700;
    --tag-bg: #FDEAEE;
    --gradient: linear-gradient(135deg, #DC143C 0%, #8B0A1E 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #5C0A1E 50%, #DC143C 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.scroll-target { scroll-margin-top: 100px; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
    background: var(--dark);
    overflow: hidden;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(220,20,60,0.3);
}
.announce-track {
    display: flex;
    animation: scroll-announce 28s linear infinite;
    white-space: nowrap;
}
.announce-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.2px;
}
.announce-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}
@keyframes scroll-announce {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.announce-bar::before,
.announce-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.announce-bar::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}
.announce-bar::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark), transparent);
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-flag {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}
.logo-flag-top { height: 50%; background: #fff; }
.logo-flag-bottom { height: 50%; background: var(--red); }
.logo-text {
    font-weight: 800;
    font-size: 24px;
    color: var(--dark);
    letter-spacing: -0.5px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-nav a {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    border-radius: 8px;
    transition: all 0.2s;
}
.header-nav a:hover {
    color: var(--text);
    background: rgba(220,20,60,0.06);
}
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.places-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--tag-bg);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
}
.places-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    animation: pulse-count 2s ease-in-out infinite;
}
@keyframes pulse-count {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220,20,60,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(220,20,60,0); }
}
.header-cta {
    height: 40px;
    padding: 0 22px;
    border-radius: 10px;
    background: var(--red);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}
.header-cta:hover {
    background: var(--red-dark);
    box-shadow: 0 4px 20px rgba(220,20,60,0.35);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    padding: 60px 0 40px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 48px;
    align-items: center;
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--tag-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    width: fit-content;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.hero-title .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-2);
    margin-bottom: 32px;
    max-width: 480px;
}
.laptop-wrap {
    transform: scale(0.78);
    transform-origin: left center;
    margin: -20px 0 -20px -30px;
}
.laptop-wrap--mobile {
    display: none;
}

/* ===== LAPTOP ===== */
.laptop {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.screen {
    border-radius: 20px;
    box-shadow: inset 0 0 0 2px #c8cacb, inset 0 0 0 10px #000;
    height: 318px;
    width: 518px;
    margin: 0 auto;
    padding: 9px 9px 23px 9px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    transform: perspective(1900px) rotateX(-88.5deg);
    transform-origin: 50% 100%;
    animation: open 10s ease-in-out infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.screen-bg {
    position: absolute;
    inset: 10px;
    border-radius: 10px;
    background:
        radial-gradient(ellipse at 30% 20%, #5C0A1E 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, #3A0714 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, #7A1030 0%, transparent 70%),
        linear-gradient(180deg, #1A0510 0%, #3A0A1A 30%, #2A0815 60%, #0D0308 100%);
    z-index: 0;
}
.screen-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background:
        radial-gradient(1.5px 1.5px at 10% 15%, rgba(255,255,255,0.08), transparent),
        radial-gradient(1px 1px at 30% 8%, rgba(255,255,255,0.06), transparent),
        radial-gradient(1px 1px at 55% 20%, rgba(255,255,255,0.05), transparent),
        radial-gradient(1.5px 1.5px at 80% 12%, rgba(255,255,255,0.07), transparent),
        radial-gradient(1px 1px at 90% 25%, rgba(255,255,255,0.04), transparent);
}
@keyframes open {
    0%   { transform: perspective(1900px) rotateX(-88.5deg); }
    20%  { transform: rotateX(0deg) translateZ(0); }
    80%  { transform: rotateX(0deg) translateZ(0); }
    100% { transform: perspective(1900px) rotateX(-88.5deg); }
}
.screen::before {
    content: "";
    width: 518px;
    height: 12px;
    position: absolute;
    background: linear-gradient(#979899, transparent);
    top: -3px;
    transform: rotateX(90deg);
    border-radius: 5px;
}
.macos-bar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 22px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 4;
}
.macos-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.macos-apple {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.macos-menu-item {
    font-size: 9.5px;
    color: rgba(255,255,255,0.7);
    font-family: -apple-system, BlinkMacSystemFont, 'DM Sans', sans-serif;
    font-weight: 500;
}
.macos-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.macos-bar-icon {
    font-size: 9px;
    color: rgba(255,255,255,0.7);
    font-family: -apple-system, BlinkMacSystemFont, 'DM Sans', sans-serif;
    font-weight: 500;
}
.macos-time {
    font-size: 9.5px;
    color: rgba(255,255,255,0.85);
    font-family: -apple-system, BlinkMacSystemFont, 'DM Sans', sans-serif;
    font-weight: 600;
}
.macos-dock {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    padding: 4px 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 4;
}
.dock-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dock-icon img {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    object-fit: contain;
}
.screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 44px 24px;
    z-index: 2;
    position: relative;
    width: 100%;
}
.screen-logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: rgba(255,255,255,1);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2px;
}
.screen-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: rgba(255,255,255,0.95);
    line-height: 1.55;
    max-width: 380px;
}
.screen-title .highlight {
    background: linear-gradient(90deg, #FF6B8A, #FFB3C1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.screen-divider {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    margin: 2px 0;
}
.screen-stats {
    display: flex;
    gap: 24px;
    margin-top: 2px;
}
.screen-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.screen-stat-value {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--green);
}
.screen-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 8px;
    color: rgba(255,255,255,0.87);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.screen-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: rgba(255,255,255,0.91);
    letter-spacing: 0.3px;
    margin-top: 2px;
}
.screen .cam-notch {
    width: 100px;
    height: 12px;
    position: absolute;
    background-color: #000;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 0 0 6px 6px;
    z-index: 5;
}
.screen::after {
    background: linear-gradient(to bottom, #272727, #0d0d0d);
    border-radius: 0 0 20px 20px;
    bottom: 2px;
    content: "";
    height: 24px;
    left: 2px;
    position: absolute;
    width: 514px;
    z-index: 5;
}
.keyboard {
    background: radial-gradient(circle at center, #e2e3e4 85%, #a9abac 100%);
    border: solid #a0a3a7;
    border-radius: 2px 2px 12px 12px;
    border-width: 1px 2px 0 2px;
    box-shadow: inset 0 -2px 8px 0 #6c7074;
    height: 24px;
    margin-top: -10px;
    position: relative;
    width: 620px;
    z-index: 9;
}
.keyboard::after {
    background: #e2e3e4;
    border-radius: 0 0 10px 10px;
    box-shadow: inset 0 0 4px 2px #babdbf;
    content: "";
    height: 10px;
    left: 50%;
    margin-left: -60px;
    position: absolute;
    top: 0;
    width: 120px;
}
.keyboard::before {
    background: 0 0;
    border-radius: 0 0 3px 3px;
    bottom: -2px;
    box-shadow: -270px 0 #272727, 250px 0 #272727;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    width: 40px;
}

/* ===== FORM CARD ===== */
.form-card {
    background: var(--dark);
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25), 0 0 0 1px rgba(220,20,60,0.15);
    overflow: visible;
    position: relative;
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--red-light), var(--red));
    border-radius: 24px 24px 0 0;
}
.form-head {
    padding: 32px 32px 0;
    text-align: center;
}
.form-head h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}
.form-head p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.form-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 16px 32px 0;
}
.form-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 500;
}
.form-trust-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.form-trust-icon svg {
    width: 14px;
    height: 14px;
}

/* ===== FORM SDK ===== */
.aio-sdk-form {
    --aio-sdk-input-border-radius: 12px;
    --aio-sdk-input-padding: 16px 18px;
    --aio-sdk-form-padding: 20px 0 0 0;
    --aio-sdk-input-font-size: 14px;
    --aio-sdk-input-bg: rgba(255,255,255,0.06);
    --aio-sdk-input-margin: 12px;
    --aio-sdk-submit-bg: var(--red);
    --aio-sdk-submit-border-radius: 12px;
    --aio-sdk-submit-color: #fff;
    --aio-sdk-submit-font-size: 16px;
    --aio-sdk-input-label-margin: 0;
    --aio-sdk-input-border: rgba(255,255,255,0.1);
    --aio-sdk-input-color: #fff;
    box-sizing: border-box;
    padding: var(--aio-sdk-form-padding);
    position: relative;
    width: 100%;
}
.aio-sdk-form .aio-sdk-input-container {
    box-sizing: border-box;
    position: relative;
    margin-bottom: var(--aio-sdk-input-margin);
    color: var(--aio-sdk-input-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--aio-sdk-input-label-margin);
}
.aio-sdk-form .aio-sdk-input {
    color: #fff;
    background-color: var(--aio-sdk-input-bg);
    border: 1px solid var(--aio-sdk-input-border);
    padding: var(--aio-sdk-input-padding);
    border-radius: var(--aio-sdk-input-border-radius);
    font-size: var(--aio-sdk-input-font-size);
    font-weight: 400;
    display: block;
    width: 100%;
    outline: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.25s;
    -webkit-appearance: none;
    appearance: none;
}
.aio-sdk-form .aio-sdk-input:focus {
    border-color: var(--red);
    background: rgba(220,20,60,0.08);
    box-shadow: 0 0 0 3px rgba(220,20,60,0.15);
}
.aio-sdk-form .aio-sdk-input::placeholder { color: rgba(255,255,255,0.35); }
.aio-sdk-form .aio-sdk-input-label {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 13px;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
}
.aio-sdk-form button[type='submit'] {
    font-weight: 700;
    height: 56px;
    background: var(--red);
    color: var(--aio-sdk-submit-color);
    padding: var(--aio-sdk-input-padding);
    border: none;
    border-radius: var(--aio-sdk-submit-border-radius);
    text-transform: uppercase;
    font-size: var(--aio-sdk-submit-font-size);
    letter-spacing: 0.5px;
    animation: 2.5s ease 0s infinite normal none running aio-sdk-pulsing;
    transition: all 0.25s;
    outline: 0;
    box-sizing: border-box;
    cursor: pointer;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    box-shadow: var(--red) 0 0 0 0;
    margin-top: 4px;
    -webkit-appearance: none;
    appearance: none;
}
.aio-sdk-form button[type='submit']:hover {
    background: var(--red-dark);
    box-shadow: 0 8px 24px rgba(220,20,60,0.4);
    transform: translateY(-1px);
}
@keyframes aio-sdk-pulsing {
    100% { box-shadow: transparent 0 0 0 10px; }
}

/* ===== ITI PHONE INPUT ===== */
.iti-aio {
    position: relative;
    display: block;
    width: 100%;
}
.iti-aio * { box-sizing: border-box; }
.iti-aio__a11y-text {
    width: 1px; height: 1px;
    clip: rect(1px,1px,1px,1px);
    overflow: hidden; position: absolute;
}
.iti-aio__country-container {
    position: absolute; top: 0; bottom: 0; padding: 1px;
}
.iti-aio__selected-country {
    z-index: 1; position: relative;
    display: flex; align-items: center; height: 100%;
    background: none; border: 0; margin: 0; padding: 0;
    font-family: inherit; font-size: inherit; color: inherit;
}
.iti-aio__selected-country-primary {
    display: flex; align-items: center; height: 100%;
    padding: 0 10px 0 20px;
}
.iti-aio__arrow {
    margin-left: 10px; width: 0; height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #555;
}
.iti-aio__flag {
    height: 12px; width: 16px;
    border-radius: 1px;
    box-shadow: 0px 0px 1px 0px #888;
    background-repeat: no-repeat;
}

/* ===== ITI COUNTRY DROPDOWN — DARK THEME ===== */
.iti {
    display: block;
    width: 100%;
}
.iti .iti__country-list {
    position: absolute;
    z-index: 9999;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 4px 0 0 0;
    background: #1e1e38;
    border: 1px solid rgba(220,20,60,0.25);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    white-space: nowrap;
    max-height: 240px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(220,20,60,0.3) transparent;
}
.iti .iti__country-list::-webkit-scrollbar { width: 6px; }
.iti .iti__country-list::-webkit-scrollbar-track { background: transparent; }
.iti .iti__country-list::-webkit-scrollbar-thumb { background: rgba(220,20,60,0.3); border-radius: 3px; }
.iti .iti__country-list::-webkit-scrollbar-thumb:hover { background: rgba(220,20,60,0.5); }
.iti .iti__country {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.15s;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
}
.iti .iti__country:hover,
.iti .iti__country.iti__highlight {
    background: rgba(220,20,60,0.15);
}
.iti .iti__country-name {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-right: 8px;
}
.iti .iti__dial-code {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
}
.iti .iti__flag-box {
    display: inline-flex;
    align-items: center;
    width: 24px;
    margin-right: 10px;
}
.iti .iti__divider {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin: 0;
    padding: 0;
}
.iti .iti__selected-flag {
    border-radius: 12px 0 0 12px;
    padding: 0 8px 0 16px;
    transition: background 0.15s;
}
.iti .iti__selected-flag:hover {
    background: rgba(255,255,255,0.06);
}
.iti .iti__arrow {
    border-top-color: rgba(255,255,255,0.5);
}
.iti .iti__arrow--up {
    border-bottom-color: rgba(255,255,255,0.5);
}
.iti--allow-dropdown input[type=tel] {
    padding-left: 80px !important;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
    line-height: 1.3;
}
.section-sub {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
    margin-top: 8px;
}

/* ===== LEADERS ===== */
.leaders-section {
    padding: 60px 0 20px;
}
.leaders-section .section-title {
    margin-bottom: 32px;
}
.leader-slider {
    position: relative;
    overflow: hidden;
}
.leader-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}
.leader-slide {
    flex: 0 0 100%;
    max-width: 100%;
}
.leader-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(220,20,60,0.88) 0%, rgba(139,10,30,0.92) 100%);
    max-height: 360px;
}
.leader-card-photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.leader-card-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url(../images/pers.jpg);
    background-size: cover;
}
.leader-card-info .leader-quote {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #fff;
    max-width: 480px;
}
.leader-card-name {
    padding: 12px 20px;
    background: var(--tag-bg);
    border-radius: 8px;
    border-left: 3px solid var(--red);
    width: fit-content;
}
.leader-card-name h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}
.leader-card-name p {
    font-size: 13px;
    color: var(--text-2);
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}
.slider-btn:hover {
    background: var(--red);
}
.slider-btn:hover::after {
    border-color: #fff;
}
.slider-btn--prev::after,
.slider-btn--next::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--red);
    border-right: 2px solid var(--red);
    position: absolute;
    top: 50%;
}
.slider-btn--prev::after {
    transform: translate(-50%, -50%) rotate(-135deg);
    left: 55%;
}
.slider-btn--next::after {
    transform: translate(-50%, -50%) rotate(45deg);
    left: 45%;
}

/* ===== STEPS ===== */
.steps-section {
    padding: 70px 0;
    background: var(--bg-warm);
}
.steps-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 24px;
}
.step-card {
    background: var(--card);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(220,20,60,0.1);
}
.step-num {
    position: absolute;
    top: -14px;
    left: 28px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-card img {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}
.step-card h3 {
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--text);
}
.step-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-2);
}
.steps-cta {
    text-align: center;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 36px;
    border-radius: 48px;
    background: var(--red);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 6px 24px rgba(220,20,60,0.35);
    transform: translateY(-2px);
}

/* ===== TRADES ===== */
.trades-section {
    padding: 70px 0;
    background: var(--gradient);
}
.trades-section .section-title {
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    font-size: 26px;
    font-weight: 600;
}
.trades-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.trade-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.trade-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.trade-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trade-icon img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
}
.trade-card h4 {
    font-weight: 700;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}
.trade-profit {
    font-weight: 700;
    font-size: 20px;
    color: var(--green);
}
.trade-profit.gold { color: var(--gold); }

/* ===== FEATURES ===== */
.features-section {
    padding: 70px 0 40px;
}
.features-section .section-title {
    margin-bottom: 8px;
}
.features-section .section-sub {
    margin-bottom: 40px;
}
.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(220,20,60,0.08);
}
.feature-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-2);
}

/* ===== EXPERT / STATS ===== */
.expert-section {
    padding: 0 0 40px;
}
.expert-card {
    background: var(--card);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.expert-top {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-bottom: 24px;
}
.expert-top img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--red);
}
.expert-top p {
    font-size: 16px;
    line-height: 1.75;
    color: #333;
}
.expert-divider {
    height: 1px;
    background: var(--border);
    margin: 20px 0;
}
.expert-bottom p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-2);
}

/* ===== NUMBERS ===== */
.numbers-section {
    background: var(--gradient-dark);
    padding: 64px 0;
    margin-top: 40px;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.number-item {
    text-align: center;
    padding: 28px;
}
.number-item p {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.number-line {
    height: 2px;
    background: rgba(220,20,60,0.4);
    margin-bottom: 16px;
}
.number-item h2 {
    font-weight: 800;
    font-size: 36px;
    color: #fff;
    line-height: 1.2;
}
.number-item h3 {
    font-weight: 400;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ===== REVIEWS ===== */
.reviews-section {
    padding: 60px 0 40px;
}
.reviews-section .section-title {
    margin-bottom: 32px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--card);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(220,20,60,0.08);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.review-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.review-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}
.review-profit {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--tag-bg);
    border-radius: 8px;
    padding: 5px 12px;
    flex-shrink: 0;
}
.review-profit-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--red);
}
.review-profit-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
}
.review-text {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
}
.review-stars {
    display: flex;
    gap: 2px;
}
.review-star {
    color: #FFD700;
    font-size: 14px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    padding: 64px 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}
.footer-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.footer-join {
    font-size: 16px;
    font-weight: 500;
    color: var(--red-light);
    margin-top: 12px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
}
.footer-links {
    display: flex;
    gap: 32px;
}
.footer-links a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.6; }
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE — Tablet ===== */
@media (max-width: 1100px) {
    .header-nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-left { align-items: center; text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-right { max-width: 460px; margin: 0 auto; width: 100%; }
    .laptop-wrap--desktop { transform: scale(0.65); transform-origin: center center; margin: -30px auto; }
    .laptop-wrap--mobile { display: none; }
    .leader-card { grid-template-columns: 1fr; max-height: none; }
    .leader-card-photo img { height: 220px; }
    .leader-card-info { padding: 28px; }
    .trades-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== RESPONSIVE — Mobile ===== */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .header-inner { padding: 0 16px; height: 56px; gap: 8px; }
    .header-right .places-tag { display: none; }
    .header-cta { padding: 0 16px; font-size: 13px; height: 36px; }
    .logo-text { font-size: 20px; }
    .hero { padding: 32px 0 24px; }
    .hero-title { font-size: 28px; }
    .hero-desc { font-size: 15px; margin-bottom: 24px; }
    .hero-grid { display: flex; flex-direction: column; gap: 24px; }
    .hero-left { order: 1; }
    .hero-right { order: 3; max-width: 100%; width: 100%; }
    .laptop-wrap--desktop { display: none; }
    .laptop-wrap--mobile {
        display: block;
        order: 2;
        width: 100%;
        overflow: visible;
        position: relative;
        height: 290px;
        margin: -8px auto 0;
    }
    .laptop-wrap--mobile .laptop {
        transform: scale(0.82);
        transform-origin: top center;
        position: absolute;
        left: 50%;
        top: 0;
        margin-left: -254px;
    }
    .form-card { border-radius: 20px; }
    .form-head { padding: 24px 20px 0; }
    .form-head h3 { font-size: 20px; }
    .form-trust { padding: 12px 16px 0; gap: 12px; flex-wrap: wrap; justify-content: center; }
    .form-trust-item { font-size: 10px; }
    .aio-form { padding: 16px 20px 24px !important; }
    .section-title { font-size: 24px; }
    .section-sub { font-size: 14px; }
    .leaders-section { padding: 40px 0 16px; }
    .leader-card { grid-template-columns: 1fr; max-height: none; }
    .leader-card-photo img { height: 200px; object-position: top; }
    .leader-card-info { padding: 20px; }
    .leader-card-info .leader-quote { font-size: 14px; line-height: 1.65; }
    .leader-card-name { padding: 10px 14px; }
    .leader-card-name h4 { font-size: 14px; }
    .leader-card-name p { font-size: 12px; }
    .slider-controls { margin-top: 16px; gap: 12px; }
    .slider-btn { width: 42px; height: 42px; }
    .steps-section { padding: 48px 0; }
    .steps-section .section-title { margin-bottom: 36px; padding: 0 16px; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 16px; }
    .step-card { padding: 28px 20px; }
    .trades-section { padding: 48px 0; }
    .trades-section .section-title { font-size: 20px !important; margin-bottom: 32px !important; }
    .trades-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px; }
    .trade-card { flex-direction: column; padding: 16px 12px; gap: 10px; }
    .trade-icon { width: 40px; height: 40px; }
    .trade-icon svg { width: 40px; height: 40px; }
    .trade-card h4 { font-size: 14px; }
    .trade-profit { font-size: 17px; }
    .trade-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; justify-self: center; }
    .features-section { padding: 48px 0 32px; }
    .features-list { grid-template-columns: 1fr; gap: 16px; }
    .feature-card { padding: 24px 20px; }
    .expert-card { padding: 24px; }
    .expert-top { flex-direction: column; text-align: center; gap: 20px; }
    .expert-top img { width: 100px; height: 100px; }
    .expert-top p { font-size: 14px; }
    .numbers-section { padding: 40px 0; margin-top: 24px; }
    .numbers-grid { grid-template-columns: 1fr; gap: 8px; padding: 0 16px; }
    .number-item { padding: 20px 16px; }
    .number-item h2 { font-size: 28px; }
    .number-item p { font-size: 14px; margin-bottom: 10px; }
    .reviews-section { padding: 40px 0 32px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: 20px; }
    .review-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .review-author { gap: 10px; }
    .review-avatar { width: 40px; height: 40px; }
    .review-initials { width: 40px; height: 40px; font-size: 14px; }
    .review-name { font-size: 14px; }
    .site-footer { padding: 40px 0; }
    .footer-top { flex-direction: column; gap: 16px; margin-bottom: 24px; }
    .footer-title { font-size: 24px; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
    .footer-links { gap: 16px; flex-wrap: wrap; }
    .footer-links a { font-size: 13px; }
    .btn-primary { height: 48px; padding: 0 28px; font-size: 15px; }
    .announce-bar { height: 36px; }
    .announce-track span { font-size: 12px; padding: 0 24px; }
}

/* ===== RESPONSIVE — Small phones ===== */
@media (max-width: 380px) {
    .hero-title { font-size: 24px; }
    .hero-desc { font-size: 14px; }
    .form-head h3 { font-size: 18px; }
    .form-trust { flex-direction: column; align-items: center; gap: 8px; }
    .section-title { font-size: 22px; }
    .trades-grid { grid-template-columns: 1fr; }
    .trade-card:last-child:nth-child(odd) { max-width: 100%; }
    .header-cta { padding: 0 12px; font-size: 12px; }
    .logo-text { font-size: 18px; }
    .laptop-wrap--mobile { height: 240px; }
    .laptop-wrap--mobile .laptop { transform: scale(0.65); margin-left: -254px; }
}