* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0B1D26;
    --dark-section: #1a2d3a;
    --gold: #FBD784;
    --white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: relative;
    z-index: 1000;
    padding: 20px 0;
    background: var(--dark-bg);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.7;
}

.cta-button-header {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 100%);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(251, 215, 132, 0.3);
}

.cta-button-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 215, 132, 0.5);
    background: linear-gradient(135deg, #FFD700 0%, var(--gold) 100%);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, #1a2d3a 0%, #0B1D26 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(251,215,132,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(251, 215, 132, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-subtitle .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.7;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-note {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 500;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.vertical-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vertical-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.vertical-nav a.active,
.vertical-nav a:hover {
    color: var(--gold);
}


/* Content Sections */
.content-section {
    padding: 100px 0;
    position: relative;
}

.section-01 {
    background: var(--dark-section);
}

.section-02 {
    background: var(--dark-bg);
}

.section-03 {
    background: var(--dark-section);
}

.content-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-02 .container {
    grid-template-columns: 1fr 1fr;
}

.section-02 .section-image {
    order: -1;
}

.section-content {
    position: relative;
}

.section-number {
    position: absolute;
    top: -60px;
    left: -40px;
    font-size: 180px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    z-index: 0;
}

.section-02 .section-number {
    right: -40px;
    left: auto;
}

.section-text {
    position: relative;
    z-index: 1;
}

.section-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.section-text p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

.section-text strong {
    color: var(--white);
    font-weight: 600;
}

.section-text em {
    color: var(--gold);
    font-style: italic;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 15px;
}

.section-image {
    position: relative;
    height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(251, 215, 132, 0.2) 0%, rgba(11, 29, 38, 0.8) 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 29, 38, 0.4) 0%, rgba(11, 29, 38, 0.8) 100%);
    z-index: 0;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(251, 215, 132, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(251, 215, 132, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.image-01 {
    background-image: url('https://pocketoption.com/blog/wp-content/uploads/2025/04/1744226844555-564730479.webp');
    background-size: cover;
    background-position: center;
}

.image-02 {
    background-image: url('https://www.mt2trading.com/wp-content/uploads/2022/11/MT2Trading-PocketOptionRobot.png');
    background-size: cover;
    background-position: center;
}

.image-03 {
    background-image: url('https://oprelo.ioerj.com.br/wp-content/uploads/2025/04/unlocking-earnings-the-pocket-option-affiliate_3.jpg');
    background-size: cover;
    background-position: center;
}

/* Team Section */
.team-section {
    padding: 50px 0;
    background: var(--dark-bg);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(251, 215, 132, 0.2);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-image:hover .profile-img {
    transform: scale(1.1);
}

.member-image .image-placeholder {
    display: none;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.member-role {
    color: var(--gold);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-member p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: left;
}

.differential-box {
    background: rgba(251, 215, 132, 0.05);
    border: 1px solid rgba(251, 215, 132, 0.2);
    border-radius: 12px;
    padding: 50px;
    margin-top: 60px;
}

.differential-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--gold);
}

.differential-box p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.differential-box ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.differential-box li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.differential-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.differential-box .highlight {
    background: rgba(251, 215, 132, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    margin-top: 30px;
}

/* Why Section */
.why-section {
    padding: 150px 0;
    background: var(--dark-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(251, 215, 132, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(251, 215, 132, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 215, 132, 0.3);
}

.feature-icon {
    font-size: 24px;
    color: var(--gold);
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
}

.why-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.why-cta {
    text-align: center;
    margin-top: 40px;
}

.differential-cta {
    text-align: center;
    margin-top: 40px;
}

/* Checkout Section */
.checkout-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a1620 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(251, 215, 132, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.checkout-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.checkout-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.checkout-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(251, 215, 132, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.checkout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.checkout-card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 215, 132, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(251, 215, 132, 0.15);
}

.checkout-card:hover::before {
    opacity: 1;
}

.checkout-card.featured {
    border-color: var(--gold);
    background: rgba(251, 215, 132, 0.05);
    transform: scale(1.05);
}

.checkout-card.featured::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, #E6C275 100%);
    color: var(--dark-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-header {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(251, 215, 132, 0.2);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.card-price .currency {
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
}

.card-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.card-features {
    margin-bottom: 32px;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, rgba(251, 215, 132, 0.2) 0%, rgba(251, 215, 132, 0.1) 100%);
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.checkout-button:hover::before {
    left: 100%;
}

.checkout-button:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #E6C275 100%);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 215, 132, 0.4);
}

.checkout-button.featured-button {
    background: linear-gradient(135deg, var(--gold) 0%, #E6C275 100%);
    color: var(--dark-bg);
    border-color: var(--gold);
}

.checkout-button.featured-button:hover {
    background: linear-gradient(135deg, #E6C275 0%, var(--gold) 100%);
    box-shadow: 0 12px 40px rgba(251, 215, 132, 0.5);
}

.button-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.checkout-button:hover .button-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .checkout-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-card.featured {
        transform: scale(1);
    }
    
    .card-price .amount {
        font-size: 40px;
    }
}

/* Premium CTA Buttons */
.cta-button-premium {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 24px 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #E6C275 100%);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 40px rgba(251, 215, 132, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-button-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.cta-button-premium:hover::before {
    transform: translateX(100%);
}

.cta-button-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(251, 215, 132, 0.4);
    background: var(--gold);
}

.cta-button-premium .cta-text {
    position: relative;
    z-index: 1;
}

.cta-button-premium .cta-arrow {
    position: relative;
    z-index: 1;
    font-size: 24px;
    transition: transform 0.3s;
}

.cta-button-premium:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-button-premium-large {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 25px 70px;
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 50%, var(--gold) 100%);
    background-size: 200% 100%;
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 10px 40px rgba(251, 215, 132, 0.5);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(251, 215, 132, 0.5);
    }
    50% {
        box-shadow: 0 10px 50px rgba(251, 215, 132, 0.8);
    }
}

.cta-button-premium-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cta-button-premium-large:hover::before {
    left: 100%;
}

.cta-button-premium-large:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(251, 215, 132, 0.7);
    background-position: 100% 0;
}

.cta-button-premium-large .cta-text {
    position: relative;
    z-index: 1;
}

.cta-button-premium-large .cta-arrow {
    position: relative;
    z-index: 1;
    font-size: 28px;
    transition: transform 0.3s;
}

.cta-button-premium-large:hover .cta-arrow {
    transform: translateX(8px);
}

.cta-button-section {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 16px 40px;
    background: linear-gradient(135deg, rgba(251, 215, 132, 0.2) 0%, rgba(251, 215, 132, 0.1) 100%);
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-button-section:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 100%);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 215, 132, 0.4);
}

/* Footer */
.footer {
    padding: 100px 0 50px;
    background: var(--dark-section);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-tagline {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.results-list {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.results-list li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.results-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
    top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-section .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-02 .section-image {
        order: 0;
    }

    .section-number {
        position: static;
        font-size: 120px;
        margin-bottom: -40px;
        text-align: center;
    }

    .vertical-nav {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        display: none;
    }

    .cta-button-header {
        padding: 10px 20px;
        font-size: 12px;
    }

    .hero {
        min-height: 600px;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .cta-button-premium {
        padding: 16px 35px;
        font-size: 14px;
        gap: 10px;
    }

    .cta-button-premium-large {
        padding: 20px 40px;
        font-size: 16px;
        gap: 12px;
    }

    .content-section {
        padding: 80px 0;
    }

    .section-text h2 {
        font-size: 32px;
    }

    .section-text p {
        font-size: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .differential-box {
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .urgency-stats {
        flex-direction: column;
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .cta-button-section {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Feedback Section */
.feedback-section {
    padding: 150px 0;
    background: linear-gradient(180deg, var(--dark-section) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-track-container {
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 20px;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(251, 215, 132, 0.1);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.feedback-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 215, 132, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.quote-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.5;
    font-family: serif;
    line-height: 1;
}

.feedback-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.feedback-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.author-info h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--gold);
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
    
    .carousel-container {
        padding: 0;
    }
    
    .feedback-text {
        font-size: 16px;
    }
}

/* Feedback Images Section */
.feedback-images-section {
    padding: 50px 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.images-carousel {
    max-width: 500px;
}

.feedback-image-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(251, 215, 132, 0.2);
    transition: transform 0.3s, border-color 0.3s;
}

.feedback-image-container:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.feedback-img {
    width: 100%;
    height: auto;
    display: block;
}

.images-carousel .carousel-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .images-carousel {
        max-width: 100%;
    }
    
    .images-carousel .carousel-btn {
        display: none;
    }
    
    .images-carousel .carousel-container {
        padding: 0 20px;
    }
}