/* Homepage Specific Styles */

.section-spacing {
    padding: 100px 0;
}

.section-spacing:nth-child(even) {
    position: relative;
}

.section-spacing:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(45, 25, 70, 0.3) 0%, transparent 50%, rgba(45, 25, 70, 0.3) 100%);
    pointer-events: none;
}

/* Homepage Text Wrapping */
.hero-left h1 {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.card-content h3 {
    overflow-wrap: break-word;
    word-break: break-word;
}

.news-info h3 {
    overflow-wrap: break-word;
    word-break: break-word;
}

.news-info p {
    overflow-wrap: break-word;
    word-break: break-word;
}

.bg-secondary {
    background: linear-gradient(180deg, rgba(45, 25, 70, 0.4) 0%, rgba(26, 10, 46, 0.2) 100%);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 10% 0%, rgba(255, 0, 110, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 100%, rgba(131, 56, 236, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    padding: 120px 0 100px;
}

.hero-section::after {
    content: '✦';
    position: absolute;
    top: 15%;
    right: 5%;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    animation: slideUpLeft 0.8s ease-out;
    position: relative;
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.hero-left h1 {
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    margin-bottom: 28px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-main);
    max-width: 520px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-right {
    animation: slideUpRight 0.8s ease-out;
    position: relative;
}

.hero-card {
    background: linear-gradient(145deg, rgba(45, 25, 70, 0.7) 0%, rgba(26, 10, 46, 0.8) 100%);
    border-radius: 24px;
    padding: 50px 30px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.hero-logo-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Ad Banner Section */
.ad-banner-section {
    padding: 50px 0;
    position: relative;
}

.ad-banner-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: translateY(-50%);
}

.ad-banner {
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 0, 110, 0.1);
    overflow: hidden;
    position: relative;
}

.ad-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-purple), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.ad-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.ad-image {
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    position: relative;
    z-index: 1;
}

@keyframes slideUpLeft {
    from {
        opacity: 0;
        transform: translateX(-30px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideUpRight {
    from {
        opacity: 0;
        transform: translateX(30px) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-section {
        padding: 80px 0 60px;
    }
}

/* Feature Games */
.feature-games h2,
.latest-news h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.feature-games h2::after,
.latest-news h2::after {
    content: '✦  ★  ✦';
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    margin: 18px auto 0;
    letter-spacing: 8px;
    opacity: 0.8;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
}

.game-card {
    background: linear-gradient(145deg, rgba(45, 25, 70, 0.5) 0%, rgba(26, 10, 46, 0.6) 100%);
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(15px);
    overflow: hidden;
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.15);
}

.game-card:hover::before {
    opacity: 1;
}

.card-image {
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, var(--bg-darker));
    pointer-events: none;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover .card-image img {
    transform: scale(1.12);
}

.card-content {
    padding: 25px 22px 28px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.card-content p {
    font-size: 0.92rem;
    color: var(--text-main);
    margin-bottom: 22px;
    line-height: 1.7;
}

/* Latest News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
}

.news-card {
    background: linear-gradient(160deg, rgba(45, 25, 70, 0.4) 0%, rgba(15, 5, 25, 0.6) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(131, 56, 236, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, var(--bg-darker));
    z-index: 2;
    opacity: 0.7;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-info {
    padding: 30px 28px;
}

.news-date {
    font-size: 0.82rem;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 12px;
    background: rgba(255, 0, 110, 0.1);
    border-radius: 20px;
}

.news-info h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.news-info h3 a {
    color: var(--text-light);
}

.news-info h3 a:hover {
    color: var(--primary);
}

.news-info p {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.75;
}

.read-more {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: var(--primary) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more::after {
    content: '→';
    transition: var(--transition);
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.why-choose h2::after {
    content: '◇  ♦  ◇';
    display: block;
    font-size: 0.9rem;
    color: var(--accent);
    margin: 18px auto 0;
    letter-spacing: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 35px;
}

.feature-item {
    background: linear-gradient(160deg, rgba(131, 56, 236, 0.08) 0%, rgba(26, 10, 46, 0.8) 100%);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 50px rgba(131, 56, 236, 0.15);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
}

.feature-item h3 {
    font-size: 1.45rem;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

/* Testimonials Section */
.testimonials h2,
.trust-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.testimonials h2::after,
.trust-section h2::after {
    content: '✧  ❋  ✧';
    display: block;
    font-size: 0.9rem;
    color: var(--accent-light);
    margin: 18px auto 0;
    letter-spacing: 8px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(45, 25, 70, 0.5) 0%, rgba(15, 5, 25, 0.7) 100%);
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(255, 0, 110, 0.35);
    transform: translateY(-8px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(255, 0, 110, 0.1);
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    padding-left: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 2.5rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Trust & Security Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 35px;
}

.trust-item {
    text-align: center;
    padding: 40px 28px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(26, 10, 46, 0.6) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
    position: relative;
}

.trust-item:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-10px);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.35),
        0 0 50px rgba(212, 175, 55, 0.1);
}

.trust-icon {
    font-size: 3.2rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.25));
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    transform: scale(1.12) rotate(8deg);
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.trust-item p {
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.7;
}

/* VIP Program Section */
.vip-program h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    font-weight: 800;
}

.vip-program h2::after {
    content: '👑   ♛   👑';
    display: block;
    font-size: 1rem;
    margin: 18px auto 0;
    letter-spacing: 6px;
}

.vip-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 55px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.vip-tier {
    background: linear-gradient(160deg, rgba(45, 25, 70, 0.6) 0%, rgba(15, 5, 25, 0.8) 100%);
    border-radius: 24px;
    padding: 35px 28px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vip-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gradient, var(--primary)), transparent);
    opacity: 0.8;
}

.vip-tier:nth-child(1) { --gradient: #cd7f32; }
.vip-tier:nth-child(2) { --gradient: #c0c0c0; }
.vip-tier:nth-child(3) { --gradient: #ffd700; }
.vip-tier:nth-child(4) { --gradient: #b9f2ff; }

.vip-tier:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gradient, var(--primary));
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 60px color-mix(in srgb, var(--gradient, var(--primary)) 20%, transparent);
}

.tier-badge {
    font-size: 3.2rem;
    margin-bottom: 18px;
    display: inline-block;
    filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.3));
    transition: var(--transition);
}

.vip-tier:hover .tier-badge {
    transform: scale(1.15) rotate(-10deg);
    filter: drop-shadow(0 8px 25px color-mix(in srgb, var(--gradient, var(--primary)) 50%, transparent));
}

.tier-bronze { animation: shimmer 3s ease-in-out infinite; }
.tier-silver { animation: shimmer 3s ease-in-out infinite 0.3s; }
.tier-gold { animation: shimmer 3s ease-in-out infinite 0.6s; }
.tier-diamond { animation: shimmer 3s ease-in-out infinite 0.9s; }

@keyframes shimmer {
    0%, 100% { filter: brightness(1) drop-shadow(0 6px 20px rgba(212, 175, 55, 0.3)); }
    50% { filter: brightness(1.2) drop-shadow(0 10px 30px rgba(212, 175, 55, 0.5)); }
}

.vip-tier h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient, var(--primary)) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-tier > p {
    font-size: 0.92rem;
    color: var(--text-main);
    margin-bottom: 24px;
    opacity: 0.85;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tier-benefits li {
    font-size: 0.88rem;
    color: var(--text-main);
    padding: 10px 0 10px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    line-height: 1.6;
}

.tier-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--gradient, var(--primary));
    font-weight: 700;
    font-size: 0.9rem;
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.vip-cta {
    text-align: center;
    margin-top: 30px;
}

/* How to Get Started Section */
.how-to-start h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.how-to-start h2::after {
    content: '①  ②  ③  ④';
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    margin: 18px auto 0;
    letter-spacing: 10px;
    opacity: 0.7;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 55px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-item {
    display: flex;
    gap: 22px;
    background: linear-gradient(145deg, rgba(45, 25, 70, 0.5) 0%, rgba(26, 10, 46, 0.7) 100%);
    border-radius: 20px;
    padding: 30px 26px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    align-items: flex-start;
    position: relative;
}

.step-item::after {
    content: '→';
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.4;
    z-index: 2;
}

.step-item:last-child::after {
    display: none;
}

.step-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(255, 0, 110, 0.08);
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-darker);
    font-family: var(--font-heading);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.step-content p {
    font-size: 0.93rem;
    color: var(--text-main);
    line-height: 1.75;
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* Final CTA Section */
.final-cta {
    background: 
        radial-gradient(ellipse at center, rgba(131, 56, 236, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    position: relative;
}

.final-cta::before {
    content: '★';
    position: absolute;
    top: 20%;
    left: 8%;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.1;
}

.final-cta::after {
    content: '✦';
    position: absolute;
    bottom: 25%;
    right: 10%;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.1;
}

.cta-wrapper {
    text-align: center;
    background: linear-gradient(145deg, rgba(45, 25, 70, 0.7) 0%, rgba(15, 5, 25, 0.85) 100%);
    padding: 70px 40px;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(212, 175, 55, 0.08);
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--accent-purple), var(--primary), transparent);
    background-size: 300% 100%;
    animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.cta-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-wrapper p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-main);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .testimonials h2,
    .trust-section h2,
    .cta-wrapper h2 {
        font-size: 2rem;
    }
}