    

    /* ===== RESET & BASE STYLES ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
        width: 100%;
    }

    body {
        font-family: 'Inter', sans-serif;
        min-height: 100vh;
        overflow-x: hidden;
        width: 100%;
        position: relative;
        color: #ffffff;
        background: #0a0a0a;
    }

    /* ===== VIDEO BACKGROUND ===== */
    .video-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        overflow: hidden;
    }

    .video-background video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
        filter: brightness(0.4) contrast(1.2);
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
        z-index: -1;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* ===== SCROLL ANIMATION CLASSES ===== */
    .fade-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-left {
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .fade-right {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .scale-on-scroll {
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .scale-on-scroll.visible {
        opacity: 1;
        transform: scale(1);
    }

    /* ===== CONTAINER ===== */
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* ===== SECTION HEADER ===== */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #9c27b0, transparent);
        border-radius: 2px;
    }

    .section-header p {
        color: #b0b0b0;
        font-size: clamp(1rem, 2vw, 1.2rem);
        max-width: 600px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* ===== HERO SECTION ===== */
    .hero-section {
        padding: 8rem 1rem 2rem;
        text-align: center;
        min-height: auto;
    }

    /* ===== PRICING SECTION ===== */
    .pricing-section {
        padding: 2rem 0 5rem;
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .pricing-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
    }

    .pricing-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 30px;
        padding: 2rem 1.5rem;
        position: relative;
        transition: all 0.3s ease;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        border-color: rgba(156, 39, 176, 0.5);
        box-shadow: 0 20px 40px rgba(156, 39, 176, 0.4);
    }

    .pricing-card.featured {
        background: rgba(156, 39, 176, 0.1);
        border: 1px solid rgba(156, 39, 176, 0.4);
        transform: scale(1.05);
        z-index: 3;
        box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4);
    }

    .pricing-card.featured:hover {
        transform: scale(1.05) translateY(-10px);
        box-shadow: 0 25px 50px rgba(156, 39, 176, 0.6);
    }

    .featured-badge {
        position: absolute;
        top: 1.5rem;
        right: -2rem;
        background: linear-gradient(135deg, #9c27b0, #6a1b9a);
        color: #fff;
        padding: 0.5rem 3rem;
        font-size: 0.9rem;
        font-weight: 600;
        transform: rotate(45deg);
        box-shadow: 0 5px 15px rgba(156, 39, 176, 0.5);
    }

    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(156, 39, 176, 0.1), transparent);
        transition: left 0.7s ease;
    }

    .pricing-card:hover::before {
        left: 100%;
    }

    .card-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        background: rgba(156, 39, 176, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        border: 1px solid rgba(156, 39, 176, 0.3);
        font-size: 2rem;
        color: #9c27b0;
        transition: all 0.3s ease;
    }

    .pricing-card:hover .card-icon {
        background: rgba(156, 39, 176, 0.2);
        transform: scale(1.1) rotate(360deg);
        box-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
    }

    .card-header h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .card-header .subtitle {
        color: #b0b0b0;
        font-size: 0.9rem;
    }

    .price {
        text-align: center;
        margin-bottom: 2rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(156, 39, 176, 0.2);
        border-bottom: 1px solid rgba(156, 39, 176, 0.2);
    }

    .price .amount {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
    }

    .price .period {
        color: #b0b0b0;
        font-size: 1rem;
        display: block;
        margin-top: 0.5rem;
    }

    .features {
        list-style: none;
        margin-bottom: 2rem;
    }

    .features li {
        color: #e0e0e0;
        padding: 0.75rem 0;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        border-bottom: 1px solid rgba(156, 39, 176, 0.1);
    }

    .features li:last-child {
        border-bottom: none;
    }

    .features li i {
        color: #9c27b0;
        font-size: 1.1rem;
        width: 20px;
        flex-shrink: 0;
    }

    .features li.disabled {
        color: #505050;
    }

    .features li.disabled i {
        color: #404040;
    }

    .btn-pricing {
        display: inline-block;
        width: 100%;
        padding: 1rem;
        background: transparent;
        border: 1px solid rgba(156, 39, 176, 0.4);
        color: #ffffff;
        text-decoration: none;
        text-align: center;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(5px);
    }

    .btn-pricing::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        background: rgba(156, 39, 176, 0.2);
        border-radius: 50%;
        transition: width 0.6s, height 0.6s;
    }

    .btn-pricing:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-pricing:hover {
        border-color: #9c27b0;
        box-shadow: 0 0 30px rgba(156, 39, 176, 0.5);
        transform: translateY(-2px);
    }

    .btn-pricing.featured {
        background: linear-gradient(135deg, #9c27b0, #6a1b9a);
        border: none;
        color: #ffffff;
        font-weight: 700;
    }

    .btn-pricing.featured:hover {
        box-shadow: 0 0 40px rgba(156, 39, 176, 0.7);
    }

    /* ===== GUARANTEE SECTION ===== */
    .guarantee-section {
        padding: 5rem 1rem;
        background: rgba(156, 39, 176, 0.05);
        border-top: 1px solid rgba(156, 39, 176, 0.2);
        border-bottom: 1px solid rgba(156, 39, 176, 0.2);
    }

    .guarantee-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .guarantee-item {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 20px;
        transition: all 0.3s ease;
    }

    .guarantee-item:hover {
        transform: translateY(-5px);
        background: rgba(156, 39, 176, 0.05);
    }

    .guarantee-icon {
        width: 80px;
        height: 80px;
        background: rgba(156, 39, 176, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        border: 1px solid rgba(156, 39, 176, 0.3);
        font-size: 2.5rem;
        color: #9c27b0;
        transition: all 0.3s ease;
    }

    .guarantee-item:hover .guarantee-icon {
        transform: scale(1.1) rotate(360deg);
        background: rgba(156, 39, 176, 0.2);
        box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
    }

    .guarantee-item h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .guarantee-item p {
        color: #b0b0b0;
        line-height: 1.6;
    }

    /* ===== COMPARISON SECTION ===== */
    .comparison-section {
        padding: 5rem 1rem;
    }

    .comparison-table {
        max-width: 1000px;
        margin: 3rem auto 0;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 20px;
        overflow: hidden;
        overflow-x: auto;
    }

    .comparison-row {
        display: grid;
        grid-template-columns: minmax(180px, 2fr) repeat(auto-fit, minmax(120px, 1fr));
        border-bottom: 1px solid rgba(156, 39, 176, 0.1);
    }

    .comparison-row:last-child {
        border-bottom: none;
    }

    .comparison-row.header {
        background: rgba(156, 39, 176, 0.1);
        font-weight: 700;
    }

    .comparison-cell {
        padding: 1.2rem;
        text-align: center;
        color: #e0e0e0;
    }

    .comparison-cell:first-child {
        text-align: left;
        padding-left: 2rem;
    }

    .comparison-cell i {
        font-size: 1.3rem;
    }

    .comparison-cell .check {
        color: #4caf50;
    }

    .comparison-cell .times {
        color: #f44336;
    }

    /* ===== TESTIMONIALS SECTION ===== */
    .testimonials-section {
        padding: 5rem 1rem;
    }

    .testimonials-slider-wrapper {
        max-width: 900px;
        margin: 3rem auto 0;
        overflow: hidden;
        position: relative;
    }

    .testimonials-slider {
        display: flex;
        transition: transform 0.6s ease-in-out;
        will-change: transform;
    }

    .testimonial-slide {
        min-width: 100%;
        flex-shrink: 0;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 30px;
        padding: 2rem;
        transition: all 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        border-color: rgba(156, 39, 176, 0.5);
        box-shadow: 0 20px 40px rgba(156, 39, 176, 0.2);
    }

    .testimonial-rating {
        color: #ffc107;
        margin-bottom: 1.5rem;
    }

    .testimonial-rating .bi-star-fill.empty {
        opacity: 0.3;
        color: #666;
    }

    .testimonial-text {
        color: #e0e0e0;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        background: rgba(156, 39, 176, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(156, 39, 176, 0.3);
        color: #9c27b0;
        flex-shrink: 0;
    }

    .author-info h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0.25rem;
    }

    .author-info p {
        color: #b0b0b0;
        font-size: 0.9rem;
    }

    .testimonial-cta-wrapper {
        margin-top: 3rem;
        display: flex;
        justify-content: center;
    }

    .btn-share-feedback {
        padding: 0.9rem 2.4rem;
        border-radius: 999px;
        border: 1px solid rgba(156, 39, 176, 0.6);
        background: rgba(156, 39, 176, 0.12);
        color: #ffffff;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.03em;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        cursor: pointer;
        transition: all 0.25s ease;
        box-shadow: 0 10px 25px rgba(156, 39, 176, 0.25);
    }

    .btn-share-feedback:hover {
        background: rgba(156, 39, 176, 0.25);
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(156, 39, 176, 0.35);
    }

    /* ===== TESTIMONIAL MODAL ===== */
    .testimonial-modal {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .testimonial-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .testimonial-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
    }

    .testimonial-modal-dialog {
        position: relative;
        max-width: 720px;
        width: 100%;
        padding: 1rem;
        z-index: 1;
    }

    .testimonial-form-container {
        background: rgba(0, 0, 0, 0.85);
        border-radius: 30px;
        border: 1px solid rgba(156, 39, 176, 0.4);
        padding: 2.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    }

    .testimonial-form-title {
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .testimonial-form-subtitle {
        text-align: center;
        color: #b0b0b0;
        margin-bottom: 2rem;
    }

    .testimonial-message {
        padding: 1rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.95rem;
    }

    .testimonial-message.success {
        background: rgba(76, 175, 80, 0.1);
        border: 1px solid rgba(76, 175, 80, 0.3);
        color: #4caf50;
    }

    .testimonial-message.error {
        background: rgba(244, 67, 54, 0.1);
        border: 1px solid rgba(244, 67, 54, 0.3);
        color: #f44336;
    }

    .testimonial-modal-close {
        position: absolute;
        top: 1.2rem;
        right: 1.5rem;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: rgba(0, 0, 0, 0.6);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
        transition: all 0.2s ease;
    }

    .testimonial-modal-close:hover {
        background: rgba(0, 0, 0, 0.85);
        transform: rotate(5deg);
    }

    .testimonial-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .form-group {
        width: 100%;
    }

    .form-input {
        width: 100%;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(156, 39, 176, 0.2);
        border-radius: 12px;
        color: #ffffff;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: 'Inter', sans-serif;
    }

    .form-input:focus {
        outline: none;
        border-color: #9c27b0;
        box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
        background: rgba(255, 255, 255, 0.08);
    }

    .form-input::placeholder {
        color: #505050;
    }

    .rating-label {
        display: block;
        color: #e0e0e0;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .rating-input {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 0.25rem;
    }

    .rating-input input[type="radio"] {
        display: none;
    }

    .star-label {
        cursor: pointer;
        font-size: 2rem;
        color: #404040;
        transition: all 0.2s ease;
    }

    .star-label:hover,
    .star-label:hover ~ .star-label {
        color: #ffc107;
        transform: scale(1.1);
    }

    .rating-input input[type="radio"]:checked ~ .star-label {
        color: #ffc107;
    }

    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, #9c27b0, #6a1b9a);
        border: none;
        border-radius: 12px;
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        position: relative;
        overflow: hidden;
    }

    .btn-submit::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transition: width 0.6s, height 0.6s;
    }

    .btn-submit:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(156, 39, 176, 0.5);
    }

    .btn-submit:hover i {
        transform: translateX(5px);
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
        padding: 6rem 1rem;
        text-align: center;
        background: rgba(156, 39, 176, 0.05);
        border-radius: 50px;
        margin: 3rem 2rem;
    }

    .cta-section h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #9c27b0 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
    }

    .cta-section p {
        color: #e0e0e0;
        font-size: clamp(1rem, 2vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary {
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, #9c27b0, #6a1b9a);
        border: none;
        border-radius: 12px;
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(156, 39, 176, 0.5);
    }

    .btn-secondary {
        padding: 1rem 2.5rem;
        background: transparent;
        border: 1px solid rgba(156, 39, 176, 0.4);
        border-radius: 12px;
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        border-color: #9c27b0;
        box-shadow: 0 0 30px rgba(156, 39, 176, 0.3);
        transform: translateY(-2px);
    }

    /* ===== RESPONSIVE STYLES ===== */
    
    /* Tablet */
    @media screen and (max-width: 1024px) {
        .pricing-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .pricing-card.featured {
            transform: scale(1);
        }

        .pricing-card.featured:hover {
            transform: scale(1) translateY(-10px);
        }

        .guarantee-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile Large */
    @media screen and (max-width: 768px) {
        .hero-section {
            padding: 6rem 0.5rem 1rem;
        }

        .container {
            padding: 0 1rem;
        }

        .pricing-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .pricing-card {
            max-width: 400px;
            margin: 0 auto;
            width: 100%;
        }

        .guarantee-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .guarantee-item {
            padding: 1.5rem;
        }

        .guarantee-icon {
            width: 60px;
            height: 60px;
            font-size: 2rem;
        }

        .guarantee-item h3 {
            font-size: 1.3rem;
        }

        /* Hide comparison table on mobile */
        .comparison-section {
            display: none;
        }

        .comparison-table {
            overflow-x: auto;
        }

        .comparison-row {
            min-width: 600px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .testimonial-form-container {
            padding: 1.5rem;
        }

        .testimonial-form-title {
            font-size: 1.6rem;
        }

        .testimonial-modal-dialog {
            padding: 0.5rem;
        }

        .cta-section {
            margin: 2rem 1rem;
            padding: 3rem 1rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    /* Mobile Small */
    @media screen and (max-width: 480px) {
        .hero-section {
            padding: 5rem 0.25rem 1rem;
        }

        .section-header h2 {
            font-size: 1.8rem;
        }

        .section-header p {
            font-size: 0.95rem;
        }

        .pricing-card {
            padding: 1.5rem 1rem;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            font-size: 1.6rem;
        }

        .card-header h3 {
            font-size: 1.5rem;
        }

        .price .amount {
            font-size: 2.5rem;
        }

        .features li {
            font-size: 0.9rem;
        }

        .btn-pricing {
            font-size: 0.95rem;
        }

        .guarantee-item {
            padding: 1.2rem;
        }

        .guarantee-icon {
            width: 50px;
            height: 50px;
            font-size: 1.8rem;
        }

        .guarantee-item h3 {
            font-size: 1.2rem;
        }

        .guarantee-item p {
            font-size: 0.9rem;
        }

        .testimonial-card {
            padding: 1.5rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
        }

        .testimonial-form-container {
            padding: 1.2rem;
        }

        .testimonial-form-title {
            font-size: 1.4rem;
        }

        .star-label {
            font-size: 1.6rem;
        }

        .btn-share-feedback {
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
        }

        .cta-section h2 {
            font-size: 1.6rem;
        }

        .cta-section p {
            font-size: 0.95rem;
        }
    }

    /* Landscape Mode */
    @media screen and (max-width: 896px) and (orientation: landscape) {
        .pricing-container {
            grid-template-columns: repeat(2, 1fr);
        }

        .guarantee-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .testimonial-modal-dialog {
            max-height: 90vh;
            overflow-y: auto;
        }
    }   