* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #6366f1;
    --gold: #FFD700;
    --gold-dark: #FFA500;
    --dark: #0a0a0f;
    --dark-light: #1a1a2e;
    --text: #ffffff;
    --text-gray: #a0a0b0;
    --gradient: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-blue: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background: radial-gradient(ellipse at bottom, #1a1a2e 0%, #0a0a0f 100%);
}

section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-blue);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
    white-space: nowrap;
}

.btn-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
}

.btn-primary.pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 10px 60px rgba(0, 212, 255, 0.6); }
}

.btn-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.hero-guarantee {
    margin-top: 20px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 80px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Problem Section */
.problem {
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(10px);
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 26, 46, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.video-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text);
}

.video-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.video-container {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border: 3px solid var(--primary);
    background: #000;
}

.custom-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    background: #000000;
}

.video-thumbnail.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 40px 20px 20px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-controls,
.video-controls.show {
    opacity: 1;
}

.controls-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.control-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
}

.progress-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.progress-filled {
    height: 100%;
    background: var(--gradient-blue);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

.time-display {
    display: flex;
    gap: 5px;
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
}

.fullscreen-btn,
.volume-btn {
    flex-shrink: 0;
}

.video-thumbnail img {
    display: none;
}

.video-thumbnail::before {
    display: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.5));
    transition: all 0.3s ease;
}

.play-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.video-feature-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.video-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 25px;
}

.video-cta .btn-primary {
    font-size: 1.2rem;
    padding: 20px 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.problem-slider-dots.active {
    display: flex;
}

.problem-slider-dots .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 100, 100, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.problem-slider-dots .slider-dot.active {
    background: #ff6464;
    width: 24px;
    border-radius: 4px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 100, 100, 0.5);
    box-shadow: 0 20px 40px rgba(255, 100, 100, 0.2);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 25px rgba(255, 215, 0, 0.8));
}


.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.problem-highlight {
    background: rgba(255, 100, 100, 0.1);
    border-left: 4px solid #ff6464;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.problem-highlight p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Solution Section */
.solution {
    padding: 120px 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-badge {
    display: inline-block;
    background: var(--gradient-blue);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.solution-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 30px;
}

.solution-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.solution-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.solution-list li svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.solution-list li div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.solution-list li strong {
    font-size: 1.1rem;
    color: var(--text);
}

.solution-list li span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.solution-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.4);
    border: 3px solid var(--primary);
    transition: all 0.5s ease;
    animation: float 4s ease-in-out infinite;
}

.solution-image:hover {
    transform: scale(1.05);
    box-shadow: 0 40px 100px rgba(0, 212, 255, 0.6);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
}

.card-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.card-1 {
    top: 0;
    left: 0;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Target Section */
.target {
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(10px);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.target-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.target-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
    margin-bottom: 20px;
    filter: drop-shadow(0 3px 10px rgba(255, 215, 0, 0.3));
}

.target-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.target-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.target-highlight {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--primary);
}

.target-highlight h3 {
    font-size: 1.2rem;
    color: var(--primary);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 5px 20px rgba(255, 215, 0, 0.6));
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.8));
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Offer Section */
.offer {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.offer-box {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(20, 20, 35, 0.9) 100%);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.2);
    position: relative;
}

.offer-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.15) !important;
    border: 2px solid #ffd700 !important;
    color: #ffd700 !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4) !important;
}

.offer-badge-top .pulse-dot {
    background: #ffd700 !important;
}

.offer-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Coluna Esquerda - Preço */
.offer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.price-strike {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 15px;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.price-symbol {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 15px;
    margin-right: 5px;
}

.price-amount {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
}

.price-decimal {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 15px;
}

.price-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-offer {
    width: auto;
    max-width: 100%;
    padding: 20px 50px;
    margin-bottom: 20px;
}

.offer-warning {
    font-size: 0.9rem;
    color: #ffaa00;
    font-weight: 600;
    text-align: center;
}

/* Coluna Direita - Inclusões */
.offer-right {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-includes-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.offer-includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.offer-includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
}

.offer-includes-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Timer da Oferta */
.offer-timer-section {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.timer-label-offer {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-weight: 500;
}

.timer-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 212, 255, 0.08);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 20px 25px;
    min-width: 110px;
}

.timer-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.timer-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.timer-colon {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 0 5px;
    line-height: 1;
}

/* Security Section */
.security {
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(10px);
}

.payment-image-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.payment-image-container {
    padding: 20px 30px;
    background: #1a1a1a;
    border: 2px solid #d4af37;
    border-radius: 10px;
    display: inline-block;
}

.payment-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

.payment-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Slider para mobile */
.security-grid-wrapper {
    position: relative;
    overflow: hidden;
}

.security-grid.slider-mode {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px 10px;
    scrollbar-width: none; /* Firefox */
}

.security-grid.slider-mode::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.security-grid.slider-mode .security-item {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.security-grid.slider-mode .security-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dots.active {
    display: flex;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

.security-item {
    text-align: center;
    padding: 30px;
}

.security-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 5px 20px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.security-item:hover .security-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.7));
}

.security-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.security-item p {
    color: var(--text-gray);
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Guarantee Section */
.guarantee-section {
    background: rgba(26, 26, 46, 0.5);
    backdrop-filter: blur(10px);
    padding: 100px 0;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge-image {
    margin-bottom: 30px;
}

.guarantee-seal {
    width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.guarantee-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.guarantee-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    font-weight: 900;
}

.guarantee-highlight {
    color: var(--primary);
}

.guarantee-description {
    font-size: 1.3rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.guarantee-details {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-content .btn-primary {
    margin-top: 20px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 153, 204, 0.08) 100%);
    padding: 100px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--text);
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.final-cta-box {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(20, 20, 35, 0.98) 100%);
    border: 2px solid var(--primary);
    border-radius: 30px;
    padding: 50px 40px;
    margin-bottom: 25px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.final-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.final-price {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.final-price-value {
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--primary);
    display: block;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 15px;
}

.final-price-info {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.final-price-info::before,
.final-price-info::after {
    content: '•';
    color: var(--primary);
    font-size: 1.2rem;
}

.final-cta-box .btn-primary {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    padding: 22px 60px;
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
}

.final-guarantee {
    font-size: 1rem;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    line-height: 1.8;
}

.final-guarantee::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    margin-bottom: 15px;
}

.final-urgency {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid #ffaa00;
    color: #ffaa00;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.final-urgency::before {
    content: '⚠️';
    font-size: 1.5rem;
    margin-right: 10px;
}

.final-urgency::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 170, 0, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Footer */
.footer {
    background: #0a0a0f !important;
    padding: 40px 0 !important;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    margin-top: 0;
    margin-bottom: 0;
    display: block !important;
    width: 100%;
    clear: both;
    position: relative;
    z-index: 10;
}

.footer p {
    color: #ffffff !important;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

body {
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .solution-visual {
        height: 400px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .target-highlight {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Global */
    section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 50px;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .hero-subtitle strong {
        color: var(--primary);
        font-weight: 700;
    }
    
    .hero-cta {
        margin-bottom: 40px;
    }
    
    .hero-guarantee {
        font-size: 0.85rem;
        margin-top: 15px;
        padding: 0 10px;
    }
    
    .hero-stats {
        margin-top: 50px;
        gap: 30px;
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 20px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 15px;
        border: 1px solid rgba(0, 212, 255, 0.2);
    }
    
    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Problem Section */
    .problem-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 10px;
        margin-bottom: 20px;
        scrollbar-width: none;
    }
    
    .problem-grid::-webkit-scrollbar {
        display: none;
    }
    
    .problem-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
        padding: 30px 20px;
    }
    
    .problem-slider-dots {
        display: flex !important;
    }
    
    .problem-highlight {
        margin-top: 30px;
    }
    
    /* Video Section */
    .video-section {
        padding: 60px 0;
    }
    
    .video-header {
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .video-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .video-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .video-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .video-container {
        padding: 0 15px;
    }
    
    .video-wrapper {
        border-radius: 15px;
        border-width: 2px;
    }
    
    .play-button svg {
        width: 60px;
        height: 60px;
    }
    
    .play-text {
        font-size: 0.95rem;
        padding: 6px 16px;
    }
    
    .video-duration {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .video-duration svg {
        width: 14px;
        height: 14px;
    }
    
    .video-features {
        gap: 15px;
        margin-top: 25px;
        padding: 0 15px;
    }
    
    .video-feature-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .video-feature-item svg {
        width: 20px;
        height: 20px;
    }
    
    .video-cta {
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .video-cta-text {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .video-cta .btn-primary {
        font-size: 1rem;
        padding: 18px 40px;
        width: 100%;
    }
    
    /* Solution Section */
    .solution {
        padding: 80px 0;
    }
    
    .solution-text h2 {
        font-size: 2rem;
    }
    
    .solution-intro {
        font-size: 1.05rem;
    }
    
    .solution-list li strong {
        font-size: 1rem;
    }
    
    .solution-image {
        max-width: 100%;
    }
    
    /* Target Section */
    .target-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .target-card {
        padding: 30px 20px;
    }
    
    .target-card h3 {
        font-size: 1.3rem;
    }
    
    /* Benefits Section */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
    
    /* Offer Section */
    .offer {
        padding: 50px 0;
    }
    
    .offer-box {
        padding: 35px 20px;
        border-radius: 20px;
    }
    
    .offer-badge-top {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .offer-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .offer-left {
        padding: 25px 15px;
    }
    
    .price-strike {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 4.5rem;
    }
    
    .price-symbol,
    .price-decimal {
        font-size: 1.8rem;
    }
    
    .price-subtitle {
        font-size: 0.85rem;
    }
    
    .btn-offer {
        padding: 18px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .offer-warning {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .offer-right {
        padding: 15px;
    }
    
    .offer-includes-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .offer-includes-list {
        gap: 14px;
    }
    
    .offer-includes-list li {
        font-size: 0.9rem;
    }
    
    .offer-timer-section {
        padding: 20px 15px;
    }
    
    .timer-label-offer {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .timer-boxes {
        gap: 6px;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: center;
    }
    
    .timer-box {
        padding: 15px 10px;
        min-width: 75px;
        flex: 1;
        max-width: 90px;
    }
    
    .timer-number {
        font-size: 2.2rem;
    }
    
    .timer-colon {
        font-size: 2.2rem;
        margin: 0 2px;
    }
    
    .timer-text {
        font-size: 0.65rem;
        margin-top: 5px;
    }
    
    /* Payment Section */
    .payment-image-container {
        padding: 15px 20px;
    }
    
    .payment-image {
        max-width: 240px;
    }
    
    .payment-subtitle {
        font-size: 0.85rem;
        padding: 0 15px;
    }
    
    .security-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 10px;
        scrollbar-width: none;
    }
    
    .security-grid::-webkit-scrollbar {
        display: none;
    }
    
    .security-item {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
    }
    
    .security-item:hover {
        border-color: var(--primary);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    }
    
    .slider-dots {
        display: flex !important;
    }
    
    /* FAQ Section */
    .faq-list {
        padding: 0 10px;
    }
    
    .faq-question {
        padding: 20px 15px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 15px 20px;
        font-size: 0.9rem;
    }
    
    /* Guarantee Section */
    .guarantee-section {
        padding: 50px 0;
    }
    
    .guarantee-seal {
        width: 140px;
    }
    
    .guarantee-subtitle {
        font-size: 1.05rem;
    }
    
    .guarantee-main-title {
        font-size: 1.8rem;
    }
    
    .guarantee-description {
        font-size: 1.05rem;
    }
    
    .guarantee-details {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 50px 0;
    }
    
    .final-cta-content {
        padding: 0 15px;
    }
    
    .final-cta-content h2 {
        font-size: 1.6rem;
        padding: 0 10px;
        margin-bottom: 15px;
    }
    
    .final-cta-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .final-cta-box {
        padding: 35px 20px;
        border-radius: 20px;
    }
    
    .final-price {
        margin-bottom: 15px;
    }
    
    .final-price-value {
        font-size: 3rem;
        margin-bottom: 12px;
    }
    
    .final-price-info {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .final-price-info::before,
    .final-price-info::after {
        display: none;
    }
    
    .final-cta-box .btn-primary {
        font-size: 1rem;
        padding: 18px 40px;
        width: 100%;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .final-cta-box .btn-text {
        font-size: 0.95rem;
    }
    
    .final-guarantee {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .final-guarantee::before {
        margin-bottom: 10px;
    }
    
    .final-urgency {
        font-size: 0.9rem;
        padding: 15px 20px;
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .final-urgency::before {
        font-size: 1.2rem;
        display: block;
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 !important;
    }
    
    .footer p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-primary {
        padding: 16px 30px;
        font-size: 0.95rem;
        white-space: nowrap;
    }
    
    .btn-text {
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 18px 30px;
        font-size: 0.95rem;
    }
    
    .btn-offer {
        padding: 16px 25px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .offer-title {
        font-size: 1.4rem;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
    
    .price-symbol {
        font-size: 2rem;
        margin-top: 10px;
    }
    
    .price-decimal {
        font-size: 2rem;
        margin-top: 10px;
    }
    
    .timer-boxes {
        gap: 5px;
    }
    
    .timer-box {
        min-width: 65px;
        max-width: 75px;
        padding: 12px 8px;
    }
    
    .timer-number {
        font-size: 1.8rem;
    }
    
    .timer-colon {
        font-size: 1.8rem;
        margin: 0 1px;
    }
    
    .timer-text {
        font-size: 0.6rem;
    }
    
    .offer-includes-list li {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Final CTA improvements */
    .final-cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .final-price-value {
        font-size: 2.8rem;
    }
    
    .final-cta-box .btn-primary {
        font-size: 0.95rem;
        padding: 16px 30px;
    }
    
    .final-cta-box .btn-text {
        font-size: 0.85rem;
    }
    
    .final-guarantee {
        font-size: 0.8rem;
    }
    
    .final-urgency {
        font-size: 0.85rem;
        padding: 12px 15px;
    }
}

@media (max-width: 360px) {
    /* Very small devices */
    .hero-title {
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .price-symbol {
        font-size: 1.5rem;
        margin-top: 8px;
    }
    
    .price-decimal {
        font-size: 1.5rem;
        margin-top: 8px;
    }
    
    .timer-boxes {
        gap: 4px;
    }
    
    .timer-box {
        min-width: 58px;
        max-width: 65px;
        padding: 10px 6px;
    }
    
    .timer-number {
        font-size: 1.6rem;
    }
    
    .timer-colon {
        font-size: 1.6rem;
        margin: 0;
    }
    
    .timer-text {
        font-size: 0.55rem;
        margin-top: 4px;
    }
    
    .btn-primary {
        padding: 14px 20px;
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .btn-text {
        font-size: 0.8rem;
    }
    
    .btn-primary svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .btn-offer {
        padding: 14px 20px;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .offer-warning {
        font-size: 0.75rem;
    }
    
    /* Final CTA very small screens */
    .final-cta-content h2 {
        font-size: 1.3rem;
    }
    
    .final-price-value {
        font-size: 2.5rem;
    }
    
    .final-cta-box {
        padding: 25px 15px;
    }
    
    .final-cta-box .btn-primary {
        font-size: 0.9rem;
        padding: 15px 25px;
    }
    
    .final-cta-box .btn-text {
        font-size: 0.8rem;
    }
    
    .final-guarantee {
        font-size: 0.75rem;
    }
    
    .final-urgency {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
}


/* Hero improvements for mobile */
@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 7px 14px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 18px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-guarantee {
        font-size: 0.8rem;
    }
    
    .stat-item {
        padding: 15px 12px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}


/* Video Section Mobile Improvements */
@media (max-width: 480px) {
    .video-section {
        padding: 50px 0;
    }
    
    .video-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .video-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-subtitle {
        font-size: 0.9rem;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    .play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .play-text {
        font-size: 0.85rem;
        padding: 5px 12px;
    }
    
    .video-duration {
        bottom: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .video-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .video-feature-item {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .video-cta-text {
        font-size: 1rem;
    }
    
    .video-cta .btn-primary {
        font-size: 0.95rem;
        padding: 16px 30px;
    }
}

@media (max-width: 360px) {
    .video-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
    
    .video-subtitle {
        font-size: 0.85rem;
    }
    
    .play-button svg {
        width: 45px;
        height: 45px;
    }
    
    .play-text {
        font-size: 0.8rem;
    }
    
    .video-feature-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .video-cta-text {
        font-size: 0.95rem;
    }
}


/* Video Transcript */
.video-transcript {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: left;
}

.transcript-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.transcript-toggle:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.transcript-toggle svg {
    stroke: var(--primary);
}

.transcript-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
    animation: fadeInUp 0.5s ease;
}

.transcript-content h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transcript-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.highlight-text {
    color: var(--primary);
    font-weight: 700;
}

.transcript-list {
    list-style: none;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    margin: 20px 0;
}

.transcript-list li {
    color: var(--text);
    padding: 8px 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.transcript-highlight {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1.1rem;
}

.transcript-highlight strong {
    color: var(--primary);
}

.transcript-cta {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
}

@media (max-width: 768px) {
    .transcript-content {
        padding: 20px;
    }
    
    .transcript-content h4 {
        font-size: 1.1rem;
    }
    
    .transcript-content p {
        font-size: 0.95rem;
    }
    
    .transcript-list li {
        font-size: 0.95rem;
    }
    
    .transcript-highlight {
        font-size: 1rem;
        padding: 15px;
    }
    
    .transcript-cta {
        font-size: 1.05rem;
        padding: 15px;
    }
}
