/* ========================================
   CSS Variables & Root Styles
======================================== */
:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-orange: #ff6b35;
    --accent-purple: #3b82f6;
    --accent-green: #10b981;
    --accent-blue: #4c84dd;
    /* --accent-blue-two: #6e9ae0;*/
    --accent-blue-two: #84b0f7;
    --accent-blue-three: #7ba8f1;
    --text-light: #e5e7eb;
    --text-muted: #9ca3af;
    --text-dark: #374151;
    --text-dark-two: #6b82a8;
    --light-blue: #1d3c6a;
    --medium-blue: #080b36;
    --dark-blue: #03031b;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
    --gradient-secondary: linear-gradient(135deg, #6b46c1 0%, #c8ff00 100%);
    /*--gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);*/
    --gradient-dark: #F5FBFF;
    --gradient-dark-two: #e6f3fd;
    --gradient-hero: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-button: 0 8px 25px rgba(255, 107, 53, 0.4);
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
}

/* ========================================
   Base & Reset Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--gradient-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/* ========================================
   Container & Wrapper
======================================== */
.container {
    width: 100%;
    min-height: 100vh;
    padding: var(--spacing-md);
}

.sales-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    /*background: var(--secondary-dark);*/
    background: var(--gradient-dark);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    background: var(--gradient-dark);
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
    border-bottom: 3px solid var(--accent-orange);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.8), transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-icon {
    font-size: 64px;
    color: var(--accent-orange);
    margin-bottom: var(--spacing-md);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark-two);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.5;
}

.hero-accent {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--spacing-lg) auto 0;
    border-radius: 2px;
}

/* ========================================
   Video Section
======================================== */
.video-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--gradient-dark);
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--medium-blue);
}

.sales-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.control-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(45, 45, 45, 0.9);
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-button:hover {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.1);
}

.replay-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(45, 45, 45, 0.9);
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.replay-button:hover {
    background: var(--accent-blue);
    color: white;
    transform: rotate(360deg);
    opacity: 1;
}

.volume-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(45, 45, 45, 0.9);
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.volume-button:hover {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.1);
}

@keyframes volumepulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

/* ========================================
   Section Styles
======================================== */
.section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.alt-section {
    background: var(--gradient-dark-two);
}



.section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    line-height: 1.3;
}

.section-title i {
    color: var(--accent-orange);
    font-size: 38px;
}

/* ========================================
   Text Block Styles
======================================== */
.text-block {
    max-width: 900px;
    margin: 0 auto;
}

.text-block p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark-two);
    margin-bottom: var(--spacing-md);
}

.text-block p em {
    font-style: italic;
    color: var(--accent-orange);
    font-weight: 500;
}

.text-block p strong {
    font-weight: 700;
    color: var(--accent-orange);
}

.big-opener {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: var(--accent-orange) !important;
    margin-bottom: var(--spacing-lg) !important;
    text-align: center;
    line-height: 1.3 !important;
}

/* ========================================
   Highlight & Emphasis Boxes
======================================== */
.highlight-box {
    background: var(--gradient-primary);
    border-left: 4px solid var(--accent-orange);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-soft);
}

.highlight-box .highlight-icon {
    font-size: 42px;
    color: var(--gradient-dark);
    margin-bottom: var(--spacing-sm);
}

.highlight-box p {
    font-size: 19px;
    font-weight: 500;
    color: var(--gradient-dark);
    margin-bottom: var(--spacing-sm);
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box p strong {
    color: var(--gradient-dark);
}

.emphasis-text {
    background: rgb(59, 130, 246, 0.1);
    border-left: 4px solid var(--text-dark-two);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    margin: var(--spacing-lg) 0;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
}

.emphasis-text .emphasis-icon {
    font-size: 36px;
    color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.emphasis-text span {
    font-size: 22px;
    flex: 1;
    font-weight: 700 !important;
    color: var(--text-dark-two);
}

.emphasis-text strong {
    color: var(--accent-purple);
}

.emphasis-text .highlight {
    color: var(--accent-orange);
    font-weight: 700;
}

/* ========================================
   Features Grid
======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.feature-box {
    background: var(--accent-blue-two);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.feature-icon {
    font-size: 48px;
    color: var(--gradient-dark);
    margin-bottom: var(--spacing-sm);
}

.feature-box h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--gradient-dark);
    line-height: 1.5;
}

/* ========================================
   Process List
======================================== */
.process-list {
    list-style: none;
    margin: var(--spacing-lg) 0;
}

.process-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 20px;
    color: var(--text-dark-two);
    line-height: 1.7;
}

.process-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.process-icon i {
    font-size: 16px;
}

.process-list li .process-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ffa0a0;
}

.process-list li .process-icon i.fa-sun,
.process-list li .process-icon i.fa-chalkboard-teacher,
.process-list li .process-icon i.fa-battery-full {
    color: var(--accent-green);
}

.process-list li:has(.fa-sun) .process-icon,
.process-list li:has(.fa-chalkboard-teacher) .process-icon,
.process-list li:has(.fa-battery-full) .process-icon {
    background: rgba(16, 185, 129, 0.2);
}

/* ========================================
   Info Box & Highlight List
======================================== */
.info-box {
    background: var(--light-blue);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-md);
    border: none;
    margin: var(--spacing-lg) 0;
}

.highlight-list {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--gradient-dark);
    line-height: 1.6;
}

.list-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.list-icon i {
    color: white;
    font-size: 16px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    font-size: 17px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.info-item strong {
    color: var(--accent-orange);
    font-weight: 600;
    line-height: normal;
    padding: 0;
}

.info-item i {
    color: var(--accent-orange);
    font-size: 18px;
    line-height: normal;
    padding-right: 5px;
}

/* ========================================
   Guarantee Box
======================================== */
.guarantee-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 2px solid var(--accent-green);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.guarantee-icon {
    font-size: 64px;
    color: var(--accent-green);
    margin-bottom: var(--spacing-md);
}

.guarantee-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: var(--spacing-sm);
}

.guarantee-box p {
    font-size: 18px;
    color: var(--accent-green);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.guarantee-box p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Urgency Text Section
======================================== */
.urgency-text {
    text-align: center;
}

.urgency-text .section-title {
    justify-content: center;
}

.urgency-text p {
    font-size: 20px;
}

.urgency-text .emphasis-text {
    font-size: 22px;
    justify-content: center;
    text-align: center;
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    background: var(--accent-blue-two);
    padding: var(--spacing-2xl) var(--spacing-lg);
}

.cta-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.cta-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gradient-dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.cta-header h2 i {
    color: var(--accent-orange);
}

.cta-subtitle {
    font-size: 20px;
    color: var(--gradient-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   CTA Form Styles
======================================== */
.cta-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-md);

}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--gradient-dark);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.form-group label i {
    color: var(--gradient-dark);
    font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-sm);
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* ========================================
   Form Toggle
======================================== */
.form-toggle {
    text-align: center;
    padding: var(--spacing-md) 0;
    font-size: 15px;
    color: var(--gradient-dark);
}

.form-toggle a {
    color: var(--light-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: 0.3s ease;
}

.form-toggle a:hover {
    opacity: 0.8;
}

/* ========================================
   Alert Messages
======================================== */
.alert {
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-md);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.alert i {
    font-size: 20px;
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: var(--gradient-dark);
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
}

.alert-signin {
    color: var(--medium-blue);
}

/* ========================================
   Services Section
======================================== */
.services-section {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);

}

.services-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gradient-dark);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.services-section h3 i {
    color: var(--gradient-dark);
}

.coaching-note {
    background: var(--light-blue);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    border: 1px solid var(--light-blue);
    transition: 0.3s ease;
}


.coaching-note i {
    color: var(--text-light);
    font-size: 24px;
}

.coaching-note strong {
    color: var(--accent-purple);
}

.coaching-note .highlight {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 18px;
}

.service-item {
    margin-bottom: var(--spacing-sm);
    background-color: transparent;
    border: none;
}

.service-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--light-blue);
    border: 1px solid var(--accent-blue);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-label:hover {
    transform: translateY(-2px);
}

.service-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    background: white;
    border: 2px solid white;
    border-radius: 4px;
    position: relative;
}

.service-label input[type="checkbox"]:checked {
    background: white;

    /* optional: orange border when checked */
}

.service-label input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: #ff6b35;
    /* accent orange */
    font-size: 17px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-content {
    flex: 1;
}

.service-name {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--gradient-dark);
    margin-bottom: 4px;
}

.service-price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: var(--spacing-xs);
}

.service-description {
    display: block;
    font-size: 14px;
    color: var(--gradient-dark-two);
    line-height: 1.5;
}

/* ========================================
   Order Summary
======================================== */
.order-summary {
    background: var(--light-blue);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    margin: var(--spacing-lg) 0;
    border: none;
}

.order-summary h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gradient-dark);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.order-summary h3 i {
    color: var(--accent-orange);
}

.base-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    font-size: 17px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-xs);
}

.launch-offer-note {
    display: block;
    font-size: 13px;
    color: var(--accent-green);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-xs);
}

#services-summary {
    margin: var(--spacing-sm) 0;
}

.service-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    font-size: 16px;
    color: var(--text-light);
}

.savings-highlight {
    color: var(--accent-green) !important;
    font-weight: 600;
    padding: var(--spacing-sm) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--gradient-dark);
    border-top: 2px solid var(--accent-orange);
    margin-top: var(--spacing-sm);
}

#total-amount {
    color: var(--accent-orange);
    transition: transform 0.2s ease;
}

/* ========================================
   Submit Button
======================================== */
.submit-button {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-button);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button i {
    font-size: 20px;
}

/* ========================================
   FAQ Section
======================================== */
.faq-section {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--gradient-dark);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    border: 1px solid var(--accent-blue-two);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-orange);
}

.faq-question {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-blue-two);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-question:hover.faq-question i {
    color: var(--accent-orange);
}

.faq-question i {
    color: var(--accent-blue-two);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--accent-orange);
}

.faq-item.active .faq-question i {
    color: var(--accent-orange);
}

.faq-answer {
    padding: 0 var(--spacing-lg);
    font-size: 16px;
    color: var(--accent-blue-three);
    line-height: 1.7;
    font-weight: 500;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 var(--spacing-2xl) var(--spacing-2xl);
}

/* Testimonials Container */
.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

.testimonialSwiper {
    padding: 40px 10px 60px;
    overflow: visible;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--accent-blue-two);
    border-radius: 20px;
    padding: 30px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    border: none;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Testimonial Content */
.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-text {
    color: var(--gradient-dark);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--text-light);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue-two);
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info h4 {
    color: var(--gradient-dark);
    font-size: 17px;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.author-info p {
    color: var(--gradient-dark-two);
    font-size: 14px;
    margin: 0;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
    z-index: 1;
}

.swiper-button-prev {
    left: -15px;
}

.swiper-button-next {
    right: -15px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-muted);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--accent-orange);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px;
        height: auto;
        min-height: auto;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Coach CTA Section */
.coach-section {}

.coach-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0px 20px;
}

.coach-cta-text {
    color: var(--text-dark-two);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.coach-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: var(--shadow-button);
    transition: all 0.3s ease;
}

.coach-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.coach-cta-button i {
    font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {
    .coach-cta-text {
        font-size: 16px;
    }

    .coach-cta-button {
        font-size: 16px;
        padding: 16px 35px;
    }
}

/* ========================================
   Responsive Styles - 4K Screens (2560px+)
======================================== */
@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }

    .sales-wrapper {
        max-width: 2000px;
    }

    .hero-icon {
        font-size: 96px;
    }

    .hero-title {
        font-size: 82px;
    }

    .hero-subtitle {
        font-size: 36px;
        max-width: 1200px;
    }

    .section .section-title {
        font-size: 52px;
    }

    .section-title i {
        font-size: 54px;
    }

    .text-block p {
        font-size: 24px;
    }

    .emphasis-text span {
        font-size: 25px;
    }

    .emphasis-text .emphasis-icon {
        font-size: 39px;
    }

    .process-list li {
        font-size: 22px;
    }

    .big-opener {
        font-size: 48px !important;
    }

    .feature-icon {
        font-size: 64px;
    }

    .feature-box h3 {
        font-size: 24px;
    }

    .cta-header h2 {
        font-size: 58px;
    }

    .cta-subtitle {
        font-size: 28px;
    }

    .form-container {
        padding: var(--spacing-2xl) var(--spacing-xl);
    }

    .video-container {
        max-width: 1400px;
    }

    .control-button,
    .replay-button,
    .volume-button {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
}

/* ========================================
   Responsive Styles - 2K Screens (1920px - 2559px)
======================================== */
@media (min-width: 1920px) and (max-width: 2559px) {
    html {
        font-size: 18px;
    }

    .sales-wrapper {
        max-width: 1600px;
    }

    .hero-icon {
        font-size: 80px;
    }

    .hero-title {
        font-size: 68px;
    }

    .hero-subtitle {
        font-size: 28px;
        max-width: 1000px;
    }

    .section .section-title {
        font-size: 42px;
    }

    .text-block p {
        font-size: 22px;
    }

    .big-opener {
        font-size: 38px !important;
    }

    .video-container {
        max-width: 1100px;
    }
}

/* ========================================
   Responsive Styles - Large Desktop (1440px - 1919px)
======================================== */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-title {
        font-size: 62px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .section .section-title {
        font-size: 38px;
    }

    .video-container {
        max-width: 1000px;
    }
}

/* ========================================
   Responsive Styles - Desktop (1200px - 1439px)
======================================== */
@media (min-width: 1200px) and (max-width: 1439px) {
    .sales-wrapper {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section .section-title {
        font-size: 34px;
    }

    .video-container {
        max-width: 900px;
    }
}

/* ========================================
   Responsive Styles - Tablet Landscape (992px - 1199px)
======================================== */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        padding: var(--spacing-sm);
    }

    .hero-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .hero-icon {
        font-size: 56px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .video-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .section .section-title {
        font-size: 32px;
    }

    .section-title i {
        font-size: 34px;
    }

    .text-block p {
        font-size: 20px;
    }

    .process-list li {
        font-size: 18px;
    }

    .big-opener {
        font-size: 28px !important;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .cta-header h2 {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .form-container {
        padding: var(--spacing-lg);
    }

    .video-container {
        max-width: 800px;
    }
}

/* ========================================
   Responsive Styles - Tablet Portrait (768px - 991px)
======================================== */
@media (min-width: 768px) and (max-width: 991px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: var(--spacing-sm);
    }

    .hero-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .hero-icon {
        font-size: 48px;
    }

    .hero-title {
        font-size: 38px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .video-section {
        padding: var(--spacing-md);
    }

    .video-container {
        max-width: 100%;
    }

    .section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .section .section-title {
        font-size: 34px;
        flex-wrap: wrap;
    }

    .section-title i {
        font-size: 30px;
    }

    .big-opener {
        font-size: 24px !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: var(--spacing-md);
    }

    .feature-icon {
        font-size: 40px;
    }

    .highlight-box {
        padding: var(--spacing-md);
    }

    .highlight-box .highlight-icon {
        font-size: 36px;
    }

    .emphasis-text {
        padding: var(--spacing-sm) var(--spacing-md);
        /*font-size: 17px;*/
    }

    .cta-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .cta-header h2 {
        font-size: 32px;
        flex-direction: column;
    }

    .cta-subtitle {
        font-size: 17px;
    }

    .form-container {
        padding: var(--spacing-md);
    }

    .services-section {
        padding: var(--spacing-md);
    }

    .order-summary {
        padding: var(--spacing-md);
    }

    .guarantee-box {
        padding: var(--spacing-md);
        margin: var(--spacing-lg) var(--spacing-md);
    }

    .guarantee-icon {
        font-size: 56px;
        margin-bottom: var(--spacing-xs);
    }

    .guarantee-box h3 {
        font-size: 26px;
    }

    .control-button,
    .replay-button,
    .volume-button {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* ========================================
   Responsive Styles - Mobile Large (576px - 767px)
======================================== */
@media (min-width: 480px) and (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: var(--spacing-xs);
    }

    .hero-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero-icon {
        font-size: 42px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-accent {
        width: 80px;
        height: 3px;
    }

    .video-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .video-controls {
        bottom: 8px;
        gap: var(--spacing-xs);
    }

    .control-button {
        width: 37px;
        height: 37px;
        font-size: 13.5px;
    }

    .replay-button {
        width: 40px;
        height: 40px;
        font-size: 14px;
        top: 12px;
        right: 12px;
    }

    .volume-button {
        width: 40px;
        height: 40px;
        font-size: 14px;
        bottom: 12px;
        right: 12px;
    }

    .section {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .section .section-title {
        line-height: 1.2;
        font-size: 29px;
        margin-bottom: var(--spacing-md);
    }

    .section-title i {
        font-size: 28px;
    }


    .text-block p {
        font-size: 20px;
        margin-bottom: var(--spacing-sm);
    }

    .process-list li {
        font-size: 17px;
        padding: 8px 0;
        gap: var(--spacing-xs);
    }


    .emphasis-text {
        text-align: center;
    }

    .emphasis-text span {
        width: 100%;
        text-align: center;
    }

    .big-opener {
        font-size: 23px !important;
        margin-bottom: var(--spacing-md) !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .feature-box {
        padding: var(--spacing-sm);
    }

    .feature-icon {
        font-size: 36px;
        margin-bottom: var(--spacing-xs);
    }

    .highlight-box {
        padding: var(--spacing-sm);
        margin: var(--spacing-md) 0;
    }

    .highlight-box .highlight-icon {
        font-size: 32px;
    }

    .highlight-box p {
        font-size: 18px;
    }

    .emphasis-text {
        padding: var(--spacing-sm);
        gap: 5px;
        flex-direction: column;
        text-align: center;
    }

    .emphasis-text .emphasis-icon {
        font-size: 35px;
        margin: 0 auto;
    }

    .process-icon {
        width: 28px;
        height: 28px;
    }

    .process-icon i {
        font-size: 14px;
    }

    .info-box {
        padding: var(--spacing-md);
    }

    .highlight-list li {
        font-size: 17px;
        padding: var(--spacing-xs) 0;
    }

    .list-icon {
        width: 32px;
        height: 32px;
    }

    .list-icon i {
        font-size: 14px;
    }

    .info-item {
        font-size: 16px;
    }

    .guarantee-box {
        padding: var(--spacing-md);
        margin: var(--spacing-md) var(--spacing-sm);
    }

    .guarantee-icon {
        font-size: 48px;
        margin-bottom: var(--spacing-xs);

    }

    .guarantee-box h3 {
        font-size: 23px;
    }

    .guarantee-box p {
        font-size: 17px;
    }

    .cta-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .cta-header {
        margin-bottom: var(--spacing-lg);
    }

    .cta-header h2 {
        font-size: 28px;
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .form-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .form-group {
        margin-bottom: var(--spacing-sm);
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .services-section {
        padding: var(--spacing-md) var(--spacing-sm);
        margin: var(--spacing-md) 0;
    }

    .services-section h3 {
        font-size: 20px;
    }

    .coaching-note {
        padding: var(--spacing-sm);
        font-size: 14px;
        flex-direction: column;
        text-align: center;
    }

    .coaching-note i {
        font-size: 20px;
    }

    .service-label {
        padding: var(--spacing-sm);
    }

    .service-name {
        font-size: 16px;
    }

    .service-price {
        font-size: 20px;
    }

    .service-description {
        font-size: 13px;
    }

    .order-summary {
        padding: var(--spacing-md) var(--spacing-sm);
        margin: var(--spacing-md) 0;
    }

    .order-summary h3 {
        font-size: 20px;
    }

    .base-price {
        font-size: 15px;
    }

    .total-price {
        font-size: 20px;
    }

    .submit-button {
        padding: 16px 24px;
        font-size: 16px;
    }

    .faq-section {
        margin: var(--spacing-md) auto 0;
    }

    .faq-question {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 var(--spacing-md);
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-sm);
    }
}

/* ========================================
   Responsive Styles - Mobile Medium (480px - 575px)
======================================== */
/*@media (min-width: 480px) and (max-width: 575px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: var(--spacing-xs);
    }

    .hero-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-icon {
        font-size: 38px;
    }

    .section .section-title {
        font-size: 28px;
        margin-bottom: var(--spacing-md);
    }

    .section-title i {
        font-size: 26px;
    }

    .big-opener {
        font-size: 20px !important;
    }

    .cta-header h2 {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .feature-icon {
        font-size: 30px;
    }

    .control-button,
    .replay-button {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .form-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .form-group {
        margin-bottom: var(--spacing-sm);
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input {
        padding: 12px 14px;
        font-size: 15px;
    }

    .submit-button {
        padding: 14px 20px;
        font-size: 14px;
    }

    .submit-button i {
        display: none;
    }

    .services-section {
        padding: var(--spacing-md) var(--spacing-sm);
        margin: var(--spacing-md) 0;
    }

    .emphasis-text span {
        font-size: 17.5px;
    }

    .emphasis-text .emphasis-icon {
        font-size: 23.5px;
    }

    .feature-box {
        padding: var(--spacing-sm);
    }

    .text-block p {
        font-size: 18px;
        margin-bottom: var(--spacing-sm);
    }

    .highlight-box .highlight-icon {
        font-size: 28px;
    }

    .highlight-box p {
        font-size: 18px;
    }
}*/

/* ========================================
   Responsive Styles - Mobile Small (320px - 479px)
======================================== */
@media (max-width: 479px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 4px;
    }

    .sales-wrapper {
        border-radius: var(--border-radius-sm);
    }

    .hero-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .hero-icon {
        font-size: 38px;
        margin-bottom: var(--spacing-sm);
    }

    .hero-title {
        font-size: 26px;
        letter-spacing: 0;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.4;
    }

    .hero-accent {
        width: 60px;
        height: 3px;
        margin-top: var(--spacing-md);
    }

    .video-section {
        padding: var(--spacing-sm);
    }

    .video-controls {
        bottom: 5px;
        gap: 6px;
    }

    .control-button {
        width: 30px;
        height: 30px;
        font-size: 11px;
        border-width: 1px;
    }

    .replay-button,
    .volume-button {
        width: 32px;
        height: 32px;
        font-size: 12px;
        border-width: 1px;
    }

    .replay-button {
        top: 10px;
        right: 10px;
    }

    .volume-button {
        bottom: 10px;
        right: 10px;
    }

    .section {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .section .section-title {
        margin-bottom: var(--spacing-md);
        font-size: 28px;
    }

    .section-title i {
        font-size: 28px;
    }


    .text-block p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: var(--spacing-sm);
    }

    .big-opener {
        font-size: 23px !important;
        margin-bottom: var(--spacing-sm) !important;
        line-height: 1.4 !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .feature-box {
        padding: var(--spacing-sm);
    }

    .feature-icon {
        font-size: 29px;
        margin-bottom: var(--spacing-xs);
    }

    .feature-box h3 {
        font-size: 16.5px;
        line-height: 1.4;
    }

    .highlight-box {
        padding: var(--spacing-sm);
        margin: var(--spacing-sm) 0;
        border-left-width: 3px;
    }

    .highlight-box .highlight-icon {
        font-size: 24px;
        margin-bottom: var(--spacing-xs);
    }

    .highlight-box p {
        font-size: 17px;
        line-height: 1.6;
    }

    .emphasis-text span {
        font-size: 19px;
    }

    .emphasis-text .emphasis-icon {
        font-size: 32px;
        margin: 0 auto 0px;
    }

    .emphasis-text {
        padding: var(--spacing-sm);
        gap: 5px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left-width: 3px;
    }


    .process-list {
        margin: var(--spacing-sm) 0;
    }

    .process-list li {
        font-size: 16px;
        padding: 6px 0;
        gap: var(--spacing-xs);
    }

    .process-icon {
        width: 26px;
        height: 26px;
    }

    .process-icon i {
        font-size: 12px;
    }

    .info-box {
        padding: var(--spacing-sm);
        border-width: 1px;
    }

    .highlight-list {
        margin-bottom: var(--spacing-md);
    }

    .highlight-list li {
        font-size: 16px;
        padding: 6px 0;
        gap: var(--spacing-xs);
    }

    .list-icon {
        width: 24px;
        height: 24px;
    }

    .list-icon i {
        font-size: 13px;
    }

    .info-details {
        gap: var(--spacing-xs);
        padding-top: var(--spacing-sm);
    }


    .info-item {
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .guarantee-box {
        padding: var(--spacing-sm);
        margin: var(--spacing-md) var(--spacing-xs);
        border-width: 1px;
    }

    .guarantee-icon {
        font-size: 42px;
        margin-bottom: var(--spacing-xs);
    }

    .guarantee-box h3 {
        font-size: 22px;
        margin-bottom: var(--spacing-xs);
    }

    .guarantee-box p {
        font-size: 16.5px;
        margin-bottom: var(--spacing-xs);
        line-height: 1.6;
    }

    .urgency-text .section-title {
        justify-content: flex-start;
    }

    .urgency-text p {
        font-size: 16.5px;
    }

    .urgency-text .emphasis-text {
        font-size: 16px;
    }

    .cta-section {
        padding: var(--spacing-md) var(--spacing-xs);
    }

    .cta-header {
        margin-bottom: var(--spacing-md);
    }

    .cta-header h2 {
        font-size: 22px;
        flex-direction: column;
        gap: var(--spacing-xs);
        line-height: 1.3;
    }

    .cta-header h2 i {
        font-size: 26px;
    }

    .cta-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .form-container {
        padding: var(--spacing-sm);
    }

    .form-group {
        margin-bottom: var(--spacing-sm);
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group label i {
        font-size: 14px;
    }

    .form-group input {
        padding: 11px 13px;
        font-size: 14px;
        border-width: 1px;
    }

    .form-toggle {
        padding: var(--spacing-sm) 0;
        font-size: 13px;
    }

    .alert {
        padding: 12px 14px;
        font-size: 13px;
        margin-bottom: var(--spacing-sm);
        gap: var(--spacing-xs);
    }

    .alert i {
        font-size: 16px;
    }

    .services-section {
        padding: var(--spacing-sm);
        margin: var(--spacing-sm) 0;
        border-width: 1px;
    }

    .services-section h3 {
        font-size: 18px;
        margin-bottom: var(--spacing-xs);
        gap: 6px;
    }

    .services-section h3 i {
        font-size: 20px;
    }

    .coaching-note {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 13px;
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
    }

    .coaching-note i {
        font-size: 18px;
    }

    .coaching-note .highlight {
        font-size: 16px;
    }

    .service-item {
        margin-bottom: var(--spacing-xs);
    }

    .service-label {
        padding: var(--spacing-xs) var(--spacing-sm);
        gap: var(--spacing-xs);
        border-width: 1px;
    }

    .service-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    .service-name {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .service-price {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .service-description {
        font-size: 12px;
        line-height: 1.4;
    }

    .order-summary {
        padding: var(--spacing-sm);
        margin: var(--spacing-sm) 0;
        border-width: 1px;
    }

    .order-summary h3 {
        font-size: 18px;
        margin-bottom: var(--spacing-sm);
        gap: 6px;
    }

    .order-summary h3 i {
        font-size: 20px;
    }

    .base-price {
        font-size: 14px;
        padding: var(--spacing-xs) 0;
    }

    .launch-offer-note {
        font-size: 12px;
        margin-bottom: var(--spacing-xs);
    }

    .service-summary-item {
        font-size: 14px;
        padding: 6px 0;
    }

    .savings-highlight {
        padding: var(--spacing-xs) 0;
    }

    .total-price {
        font-size: 18px;
        padding: var(--spacing-sm) 0 0;
        border-top-width: 1px;
        margin-top: var(--spacing-xs);
    }

    .submit-button {
        padding: 14px 20px;
        font-size: 14px;
        margin-top: var(--spacing-md);
        gap: var(--spacing-xs);
        letter-spacing: 0.3px;
    }

    .submit-button i {
        display: none;
    }

    .faq-section {
        margin: var(--spacing-sm) auto 0;
    }

    .faq-item {
        margin-bottom: var(--spacing-xs);
    }

    .faq-question {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 14px;
        gap: var(--spacing-xs);
    }

    .faq-question i {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 var(--spacing-sm);
        font-size: 13px;
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-sm) var(--spacing-xs);
    }
}


/* ========================================
   Responsive Styles - Mobile Extra Small (Below 360px)
======================================== */
@media (max-width: 380px) {
    html {
        font-size: 12px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-icon {
        font-size: 32px;
    }

    .section .section-title {
        font-size: 20px;
        margin-bottom: var(--spacing-sm);

    }

    .section-title i {
        font-size: 20px;
    }

    .big-opener {
        font-size: 17px !important;
    }

    .text-block p {
        font-size: 14px;
    }

    .process-list li {
        font-size: 14px;
    }

    .highlight-list li {
        font-size: 14px;
        padding: 6px 0;
        gap: var(--spacing-xs);
    }

    .cta-header h2 {
        font-size: 20px;
    }

    .cta-subtitle {
        font-size: 13px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .feature-box h3 {
        font-size: 14px;
    }

    .guarantee-box h3 {
        font-size: 17px;
    }

    .guarantee-box p {
        font-size: 14px;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .submit-button {
        padding: 12px 18px;
        font-size: 13px;
    }

    .emphasis-text span {
        font-size: 17px;
    }

    .emphasis-text .emphasis-icon {
        font-size: 30px;
    }
}

/* ========================================
   Print Styles
======================================== */
@media print {
    body {
        background: white;
        color: black;
    }

    .video-section,
    .video-container,
    .video-controls,
    .replay-button,
    .volume-button,
    .control-button,
    .submit-button,
    .form-container {
        display: none !important;
    }

    .sales-wrapper {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .section {
        page-break-inside: avoid;
    }
}