/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 900;
}

h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    font-weight: 800;
}

h3 {
    font-size: 2.4rem;
    line-height: 1.3;
    font-weight: 700;
}

/* Card Headlines */
.problem-card h3,
.solution-card h3,
.testimonial h3,
.step h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Animations */
/* Animations removed for performance */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
    color: white !important;
    padding: 60px 0 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.logo-container {
    margin-bottom: 2rem;
    text-align: center;
}

.brand-logo {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 15px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff !important;
}

.hero h1,
.hero p,
.hero * {
    color: #ffffff !important;
}

.hero-image {
    margin: 2rem 0;
    text-align: center;
}

.hero-image img {
    max-width: 750px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    border-radius: 15px;
}

.cta-button {
    background: linear-gradient(45deg, #FF6A00, #FF8533);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 106, 0, 0.4);
    background: linear-gradient(45deg, #FF8533, #FF6A00);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

/* Section Images */
.section-image {
    text-align: center;
    margin-bottom: 3rem;
}

.section-image img {
    max-width: 750px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
    border-radius: 15px;
}

/* Section Separators */
section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FF6A00 25%, #005BBB 50%, #FF6A00 75%, transparent 100%);
    opacity: 0.3;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #2c3e50;
    position: relative;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FF6A00, #005BBB);
    border-radius: 2px;
}

/* Problem Section */
.problem {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 106, 0, 0.02) 0%, rgba(0, 91, 187, 0.02) 100%);
    z-index: 1;
}

.problem .container {
    position: relative;
    z-index: 2;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-right: 6px solid #dc3545;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-right-color: #FF6A00;
}

.problem-card:hover::before {
    background: linear-gradient(90deg, #FF6A00 0%, #FF8533 100%);
}

.problem-card:hover .problem-icon {
    background: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.4);
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    position: relative;
}

.problem-card:nth-child(1) .problem-icon::before {
    content: '!';
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.problem-card:nth-child(2) .problem-icon::before {
    content: '×';
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.problem-card:nth-child(3) .problem-icon::before {
    content: '⚠';
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.problem-card:nth-child(4) .problem-icon::before {
    content: '⚡';
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.problem-card:nth-child(5) .problem-icon::before {
    content: '⚠';
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.problem-card:nth-child(6) .problem-icon::before {
    content: '!';
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.problem-card h3 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-footer {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc3545;
    margin-top: 2rem;
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, #005BBB 0%, #1E90FF 50%, #0066CC 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 106, 0, 0.1) 0%, transparent 50%, rgba(255, 106, 0, 0.05) 100%);
    z-index: 1;
}

.solution .container {
    position: relative;
    z-index: 2;
}

.solution .section-title {
    color: white;
}

.solution .section-title::after {
    background: linear-gradient(45deg, #FF6A00, #FFB366);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6A00 0%, #FFB366 100%);
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    border-color: rgba(255, 106, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 106, 0, 0.2);
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 106, 0, 0.5);
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #FF6A00 0%, #FFB366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
    position: relative;
}

.solution-card:nth-child(1) .solution-icon::before {
    content: '✓';
    font-size: 1.8rem;
    font-weight: bold;
}

.solution-card:nth-child(2) .solution-icon::before {
    content: '✓';
    font-size: 1.8rem;
    font-weight: bold;
}

.solution-card:nth-child(3) .solution-icon::before {
    content: '✓';
    font-size: 1.8rem;
    font-weight: bold;
}

.solution-card:nth-child(4) .solution-icon::before {
    content: '✓';
    font-size: 1.8rem;
    font-weight: bold;
}

.solution-card h3 {
    color: white;
    font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works {
    background: #ffffff;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.how-it-works .section-title {
    color: #2c3e50;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 5rem;
}

.how-it-works .section-title::after {
    background: linear-gradient(45deg, #FF6A00, #FF8533);
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.step-card {
    position: relative;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid #f1f5f9;
    overflow: hidden;
    text-align: center;
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6A00 0%, #005BBB 100%);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 106, 0, 0.3);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(45deg, #FF6A00, #FF8533);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #005BBB, #0066CC);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 91, 187, 0.3);
}

.step-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.step-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Legacy step styles removed - using step-card styles instead */

.highlight {
    background: linear-gradient(45deg, #FF6A00, #FFB366);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

/* Counter Display in Solution Section */
.solution .counter-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.solution .counter-number {
    font-size: 6rem;
    font-weight: 800;
    color: white;
    min-width: 120px;
    display: inline-block;
    line-height: 1.2;
}

.solution .counter-text {
    font-size: 6rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

/* Question & Answer Section */
.question-answer {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.question-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 106, 0, 0.02) 0%, rgba(0, 91, 187, 0.02) 100%);
    z-index: 1;
}

.question-answer .container {
    position: relative;
    z-index: 2;
}

.question-quote {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-icon {
    font-size: 6rem;
    color: #FF6A00;
    font-weight: bold;
    line-height: 1;
    opacity: 0.8;
    font-family: serif;
}

.quote-icon.closing {
    transform: rotate(180deg);
    display: inline-block;
}

.question-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
    margin: 2rem 0;
    padding: 0 2rem;
    position: relative;
}

.answer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.answer-content > p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.phases-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.phase-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-right: 6px solid #FF6A00;
    position: relative;
    overflow: hidden;
    text-align: right;
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6A00 0%, #FFB366 100%);
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-right-color: #005BBB;
}

.phase-card:hover::before {
    background: linear-gradient(90deg, #005BBB 0%, #1E90FF 100%);
}

.phase-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6A00 0%, #FFB366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
}

.phase-card:hover .phase-number {
    background: linear-gradient(135deg, #005BBB 0%, #1E90FF 100%);
    box-shadow: 0 8px 25px rgba(0, 91, 187, 0.3);
}

.phase-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.phase-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: right;
}

.result-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.result-highlight p {
    font-size: 1.3rem;
    color: #155724;
    margin: 0;
    font-weight: 600;
}

.result-highlight strong {
    color: #28a745;
    font-weight: 800;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Comparison title inherits from .section-title */

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.comparison-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 1.5rem;
    margin: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-item {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.comparison-item.our-product {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-right: 1px solid #e9ecef;
}

.comparison-item.traditional-gels {
    background: linear-gradient(135deg, #ffeaea 0%, #fff5f5 100%);
}

.comparison-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.comparison-item.our-product p {
    color: #27ae60;
    font-weight: 600;
}

.comparison-item.traditional-gels p {
    color: #e74c3c;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 91, 187, 0.02) 0%, rgba(255, 106, 0, 0.02) 100%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #005BBB 0%, #FF6A00 100%);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 91, 187, 0.3);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: #FF6A00;
    font-weight: bold;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    color: #2c3e50;
    font-weight: bold;
    border-top: 2px solid #FF6A00;
    padding-top: 1rem;
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, #FF6A00 0%, #FFB366 25%, #FFD700 50%, #FFA500 75%, #FF8533 100%);
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.guarantee .container {
    position: relative;
    z-index: 2;
}

.guarantee .section-title {
    color: #2c3e50;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: #2c3e50;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.4);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 91, 187, 0.01) 0%, rgba(255, 106, 0, 0.01) 100%);
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #FF6A00 0%, #FFB366 100%);
    color: white;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    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;
    background: white;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #555;
    line-height: 1.7;
}

/* Order Form Section - Orange Theme Only */
.cta-order-form {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.cta-order-form .container {
    position: relative;
    z-index: 2;
}

.cta-order-form h2 {
    text-align: center;
    color: #ffffff !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-order-form * {
    color: white;
}

.cta-order-form .cta-subtitle {
    color: #ffffff !important;
}

.cta-order-form .delivery-text {
    color: #ffffff !important;
}

.cta-order-form .cta-price {
    color: #FFD700 !important;
}

.cta-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-pricing {
    text-align: center;
    margin-bottom: 2rem;
}

.delivery-text {
    font-size: 1.3rem;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #dc3545;
}

.free-delivery {
    color: #28a745;
    background: rgba(40, 167, 69, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    margin-right: 0.5rem;
}

.cta-price {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    backdrop-filter: blur(10px);
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.offer-card label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.offer-card input[type="radio"] {
    margin-left: 1rem;
    transform: scale(1.5);
}

.offer-card input[type="radio"]:checked + .offer-title {
    color: #FFD700;
    font-weight: bold;
}

.popular-offer {
    position: relative;
}

.offer-card input[type="radio"]:checked {
    accent-color: #FF6A00;
}

.offer-card:has(input[type="radio"]:checked) {
    border-color: #FF6A00;
    background: rgba(255, 106, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #FF6A00, #FFB366);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.offer-title {
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-fields {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-fields input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transition: all 0.3s ease;
}

.cta-fields input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.3);
    transform: translateY(-2px);
}

.cta-fields input::placeholder {
    color: #666;
}

.confirmation-note {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.confirmation-note p {
    margin: 0;
    color: #ffc107;
    font-weight: bold;
    font-size: 1rem;
}

#submitBtn {
    background: linear-gradient(45deg, #FF6A00, #FFB366);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

#submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 106, 0, 0.4);
    background: linear-gradient(45deg, #FFB366, #FF6A00);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 106, 0, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.footer p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .how-it-works .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .problem-card h3,
    .solution-card h3,
    .testimonial h3,
    .step h3 {
        font-size: 1.4rem;
    }
    
    .problem-grid,
    .solution-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-container {
         gap: 2rem;
     }
     
     .step-row {
         grid-template-columns: 1fr;
         gap: 2rem;
     }
     
     .step-card {
         margin-bottom: 1rem;
     }
    
    .cta-offers {
        grid-template-columns: 1fr;
    }
    
    .guarantee-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-image img {
        max-width: 500px;
        border-radius: 15px;
    }
    
    .section-image img {
         max-width: 400px;
     }
    
    .brand-logo {
        max-width: 135px;
        border-radius: 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.2rem;
        width: 100%;
    }
    
    #submitBtn {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        width: 100%;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    /* Comparison title mobile styling */
     .comparison .section-title {
        font-size: 2.5rem !important;
    }
    
    .solution .counter-number {
        font-size: 5rem;
        font-weight: 800;
        color: white;
        line-height: 1.2;
        min-width: 100px;
    }
    
    .solution .counter-text {
        font-size: 5rem;
        font-weight: 800;
        color: white;
        line-height: 1.2;
    }
    
    .solution .counter-display {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
     
     .comparison-header {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-header h3 {
        font-size: 1.1rem;
        padding: 1rem 0.5rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-item {
        padding: 0.8rem 0.5rem;
        min-height: 70px;
        border-right: 1px solid #e9ecef;
        border-bottom: 1px solid #e9ecef;
    }
    
    .comparison-item.traditional-gels {
        border-right: none;
    }
    
    .comparison-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problem-card,
    .solution-card,
    .step,
    .testimonial {
        padding: 2rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .cta-price {
        font-size: 1.8rem;
    }
    
    .offer-card {
        padding: 1.2rem;
    }
    
    .cta-fields input {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 1rem;
    }
    
    /* Question & Answer Section Mobile */
    .question-answer {
        padding: 60px 0;
    }
    
    .quote-icon {
        font-size: 4rem;
    }
    
    .question-text {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .answer-content > p {
        font-size: 1.2rem;
    }
    
    .phases-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .phase-card {
        padding: 2rem;
    }
    
    .phase-card h3 {
        font-size: 1.2rem;
    }
    
    .phase-card p {
        font-size: 1rem;
    }
    
    .result-highlight p {
        font-size: 1.1rem;
    }
}

/* Performance Optimizations */
.hero-image img,
.problem-icon,
.solution-icon {
    will-change: transform;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus styles for accessibility */
button:focus,
input:focus,
.faq-question:focus {
    outline: 3px solid rgba(255, 106, 0, 0.5);
    outline-offset: 2px;
}

.offer-card:focus-within {
    border-color: rgba(255, 106, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
}

/* Thank You Page Styles */
.thank-you-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    font-family: 'Rubik', sans-serif;
}

.thankyou-container {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.thankyou-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6A00 0%, #FFB366 100%);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.thankyou-container h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.phone-display {
    background: linear-gradient(135deg, #FF6A00 0%, #FFB366 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
}

.phone-display span {
    font-weight: 800;
    font-size: 1.3rem;
}

.important-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid #2196f3;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1rem;
    text-align: right;
}

.important-notice h3 {
    color: #1976d2;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.important-notice h3::before {
    content: '⚠️';
    font-size: 1.2rem;
}

.important-notice p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.important-notice p:last-child {
    margin-bottom: 0;
}

.call-times {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    color: #856404;
    font-weight: 600;
    font-size: 1.1rem;
}

.important-notice strong {
    color: #dc3545;
    font-weight: 800;
}

.closing-note {
    color: #28a745 !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    margin-top: 1.5rem !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thank-you-page {
        padding: 1rem 0.5rem;
    }
    
    .thankyou-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .thankyou-container h1 {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .phone-display {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .phone-display span {
        font-size: 1.2rem;
    }
    
    .important-notice {
        padding: 1.5rem;
    }
    
    .important-notice h3 {
        font-size: 1.3rem;
    }
    
    .important-notice p {
        font-size: 1rem;
    }
    
    .call-times {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .thankyou-container {
        padding: 1.5rem 1rem;
    }
    
    .thankyou-container h1 {
        font-size: 1.8rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .important-notice {
        padding: 1.2rem;
    }
    
    .important-notice h3 {
        font-size: 1.2rem;
    }
}

/* Print styles */
@media print {
    .hero,
    .cta-order-form,
    .footer {
        background: white !important;
        color: black !important;
    }
    
    .cta-button,
    #submitBtn {
        border: 2px solid black;
        background: white;
        color: black;
    }
    
    .problem-card,
    .solution-card,
    .testimonial {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    .thank-you-page {
        background: white !important;
    }
    
    .thankyou-container {
        box-shadow: none !important;
        border: 1px solid #ccc;
    }
    
    .success-icon {
        background: #28a745 !important;
        box-shadow: none !important;
    }
}