.wpcf7-list-item{
  margin-left:0;
}
.wpcf7-list-item label {
    color: #8d9091;
    font-weight: 400!important;
        font-size: .88em;
    line-height: 1.3;
}
.wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
}
.wpcf7-list-item label a{
     color: #8d9091;
}
input[type="checkbox"] {
    flex-shrink: 0;
    margin-right: 10px;
    margin-top:4px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #ce0202;
    background: #ce0202;
    color: #fff;
    padding: 10px;
    margin: 10px 0px 20px 0px;
    font-size: 14px;
    line-height: 21px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b450;
    color: #fff;
    padding: 10px;
    margin: 0px;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 20px;
    margin-top:10px;
}


  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #601AEB;
            --primary-dark: #6D28D9;
            --primary-light: #A78BFA;
            --accent-color: #EC4899;
            --background: #FAFAFA;
            --surface: #FFFFFF;
            --text-primary: #1F2937;
            --text-secondary: #6B7280;
            --text-light: #9CA3AF;
            --success: #10B981;
            --warning: #F59E0B;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--background);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }

        /* NAVBAR */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(124, 58, 237, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            border-bottom-color: rgba(124, 58, 237, 0.2);
        }

        .navbar-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .navbar-logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .navbar-logo-text-full {
            display: inline;
        }

        .navbar-logo-text-short {
            display: none;
        }

        .navbar-logo-icon {
            font-size: 2rem;
        }

        .navbar-right {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .navbar-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: color 0.3s ease;
        }

        .navbar-phone:hover {
            color: var(--primary-color);
        }

        .navbar-phone .material-icons {
            color: var(--primary-color);
        }

        .navbar-cta {
            padding: 12px 24px;
            background: linear-gradient(135deg, #5E17EB, var(--primary-dark));
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
            font-family: 'Poppins', sans-serif;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
            }
            50% {
                box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
            }
        }

        .navbar-cta:hover {
            box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
            transform: translateY(-2px);
            animation: none;
        }

        /* Material Design Elevation Shadows */
        .elevation-1 {
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }

        .elevation-2 {
            box-shadow: 0 3px 6px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.12);
        }

        .elevation-3 {
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }

        .elevation-4 {
            box-shadow: 0 15px 25px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.05);
        }

        .elevation-5 {
            box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Typography */
        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        h3 {
            font-size: 1.75rem;
            font-weight: 600;
            line-height: 1.4;
        }

        h4 {
            font-size: 1.25rem;
            font-weight: 600;
        }

        /* Material Design Cards */
        .card {
            background: var(--surface);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        /* Buttons Material Design */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
        }

        .btn-primary:hover {
            box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0) 0%, rgb(118, 75, 162) 50%, rgba(240, 147, 251, 0.95) 100%), url('images/photo-1581578731548-c64695cc6952.jpg') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
            animation: float 20s infinite linear;
        }

        @keyframes float {
            from { transform: translateY(0); }
            to { transform: translateY(-100px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
        }

        .hero h1 {
            animation: fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            opacity: 0.95;
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .promo-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 32px;
            margin: 40px auto;
            max-width: 600px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .promo-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .trust-badges {
            margin-top: 60px;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .trust-text {
            font-size: 0.875rem;
            opacity: 0.8;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .badges-grid {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            padding: 16px 32px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* SECTION STYLING */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-title h2 {
            color: var(--text-primary);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        /* PROBLEM SECTION */
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            padding: 60px 0;
        }

        .problem-card {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .problem-circle {
            width: 120px;
            height: 120px;
            background: white;
            color: var(--text-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            margin: 0 auto 32px;
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.2);
            border: 4px solid var(--primary-light);
            position: relative;
            transition: all 0.3s ease;
        }

        .problem-card:hover .problem-circle {
            transform: scale(1.1);
            box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
            border-color: var(--primary-color);
        }

        .problem-icon {
            font-size: 3.5rem;
        }

        .problem-card h3 {
            font-size: 1.25rem;
            color: var(--text-primary);
        }

        .solution-text {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* SERVICES SECTION */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 0;
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            z-index: 2;
        }

        .service-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.05);
        }

        .service-content {
            padding: 32px;
            padding-bottom: 40px;
        }

        .service-title {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .service-list {
            list-style: none;
            margin-bottom: 24px;
        }

        .service-list li {
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            color: var(--text-secondary);
        }

        .service-list li::before {
            content: '✓';
            color: var(--success);
            font-weight: bold;
            font-size: 1.25rem;
            margin-right: 12px;
            flex-shrink: 0;
        }

        /* TEAM SECTION */
        .team-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .team-image-wrapper {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
        }

        .team-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            display: block;
        }

        .team-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
            pointer-events: none;
        }

        .team-content h3 {
            color: var(--primary-color);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .team-content h2 {
            color: var(--text-primary);
            margin-bottom: 24px;
        }

        .team-content p {
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .team-content p:last-of-type {
            margin-bottom: 40px;
        }

        .power-numbers {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .power-number {
            text-align: center;
            padding: 24px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .power-number:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
        }

        .power-number-value {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }

        .power-number-label {
            color: var(--text-secondary);
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* STEPS SECTION - DIAGRAM STYLE */
        .steps-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .steps-diagram {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
            padding: 60px 0;
        }

        .steps-diagram::before {
            content: '';
            position: absolute;
            top: 140px;
            left: 16%;
            right: 16%;
            height: 3px;
            background: linear-gradient(90deg, 
                var(--primary-color) 0%, 
                var(--primary-color) 33%, 
                var(--accent-color) 66%, 
                var(--accent-color) 100%);
            z-index: 0;
        }

        .step-diagram {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-circle {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 auto 32px;
            box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
            border: 6px solid white;
            position: relative;
            transition: all 0.3s ease;
            z-index: 3;
        }

        .step-diagram:hover .step-circle {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 50px rgba(124, 58, 237, 0.5);
        }

        .step-circle::after {
            content: '';
            position: absolute;
            width: 140px;
            height: 140px;
            border: 2px dashed var(--primary-light);
            border-radius: 50%;
            opacity: 0.5;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .step-diagram h3 {
            color: var(--text-primary);
            margin-bottom: 12px;
            font-size: 1.5rem;
        }

        .step-diagram p {
            color: var(--text-secondary);
            font-size: 1.125rem;
        }

        .step-icon {
            font-size: 2.5rem;
        }

        /* BEFORE AFTER GALLERY */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-top: 40px;
        }

        .gallery-item {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
        }

        .gallery-item-header {
            padding: 24px;
            text-align: center;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .gallery-item-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shine 3s ease-in-out infinite;
        }

        @keyframes shine {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30%, 30%); }
        }

        .gallery-item-header h3 {
            font-size: 1.25rem;
            margin: 0;
            color: white;
            position: relative;
            z-index: 2;
        }

        .comparison-container {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .comparison-side {
            position: relative;
            overflow: hidden;
        }

        .comparison-side::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .comparison-side::after {
            opacity: 0;
        }

        .comparison-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .comparison-image {
            transform: scale(1.05);
        }

        .comparison-label {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .comparison-side.before .comparison-label {
            background: rgba(239, 68, 68, 0.9);
        }

        .comparison-side.after .comparison-label {
            background: rgba(16, 185, 129, 0.9);
        }

        .comparison-divider {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: white;
            z-index: 3;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }

        

        /* FEATURES SECTION */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .feature-card {
            background: white;
            padding: 0;
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            overflow: hidden;
            position: relative;
        }

        .feature-card:hover {
            border-color: var(--primary-light);
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
        }

        .feature-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-image {
            transform: scale(1.05);
        }

        .feature-content {
            padding: 24px;
            position: relative;
            background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 100%);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 16px;
            display: block;
        }

        .feature-card p {
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* TESTIMONIALS */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            position: relative;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .testimonial-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .testimonial-info h4 {
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .testimonial-info p {
            color: var(--text-light);
            font-size: 0.875rem;
        }

        .stars {
            color: #FCD34D;
            font-size: 1.25rem;
            margin-bottom: 16px;
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-style: italic;
            line-height: 1.7;
        }

        .rating-summary {
            text-align: center;
            margin-top: 48px;
            font-size: 1.25rem;
        }

        .rating-summary .rating-number {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }

        /* PRICING */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .pricing-card.featured:hover {
            transform: translateY(-8px) scale(1.05);
        }

        .pricing-title {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 16px;
        }

        .pricing-amount {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .pricing-description {
            color: var(--text-light);
            margin-bottom: 24px;
        }

        /* TRUST SECTION */
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .trust-item {
            text-align: center;
            padding: 40px 24px;
        }

        .trust-item .material-icons {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .trust-item h3 {
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .trust-item p {
            color: var(--text-secondary);
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
        }

        .faq-question {
            padding: 24px 32px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 1.125rem;
        }

        .faq-question:hover {
            background: var(--background);
        }

        .faq-answer {
            padding: 0 32px 24px;
            color: var(--text-secondary);
            line-height: 1.7;
            display: none;
        }

        /* FINAL CTA */
        .final-cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 100px 24px;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        @keyframes moveBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

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

        .final-promo {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 24px 40px;
            display: inline-block;
            margin: 32px 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .final-promo-text {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .final-promo-note {
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .benefits-list {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 32px;
            font-size: 1rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* FOOTER */
        footer {
            background: #1F2937;
            color: #D1D5DB;
            padding: 60px 24px 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.25rem;
        }

        .footer-section p,
        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 32px;
            text-align: center;
        }

        .footer-links {
            margin-top: 16px;
        }

        .footer-links a {
            display: inline;
            margin: 0 16px;
        }

        /* MODAL */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            padding: 48px;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: transparent;
            border: none;
            font-size: 2rem;
            color: var(--text-light);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--background);
            color: var(--text-primary);
            transform: rotate(90deg);
        }

        .modal-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .modal-header h2 {
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .modal-header p {
            color: var(--text-secondary);
            font-size: 1rem;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 16px 16px 16px 48px;
            border: 2px solid #E5E7EB;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
        }

        .form-input:invalid:not(:placeholder-shown) {
            border-color: #EF4444;
        }

        .form-input:valid:not(:placeholder-shown) {
            border-color: var(--success);
        }

        .form-input::placeholder {
            color: var(--text-light);
        }

        .form-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            font-size: 1.25rem;
        }

        .form-input:focus + .form-icon {
            color: var(--primary-color);
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.125rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
            margin-top: 8px;
        }

        .form-submit:hover {
            box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
            transform: translateY(-2px);
        }

        .form-submit:active {
            transform: translateY(0);
        }

        .promo-badge {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 24px;
            font-weight: 600;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }

            .navbar-content {
                padding: 12px 16px;
            }

            .navbar-logo {
                font-size: 1.25rem;
            }

            .navbar-logo-text-full {
                display: none;
            }

            .navbar-logo-text-short {
                display: inline;
            }

            .navbar-logo-icon {
                font-size: 1.5rem;
            }

            .navbar-cta {
                display: none;
            }

            .navbar-phone {
                font-size: 0.875rem;
            }

            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            
            .hero { min-height: auto; padding: 60px 0; }
            .hero-subtitle { font-size: 1.125rem; }
            
            section { padding: 60px 0; }
            
            .cta-buttons { flex-direction: column; }
            .btn { width: 100%; }
            
            .benefits-list { flex-direction: column; gap: 16px; }

            .service-image { height: 200px; }
            .feature-image { height: 180px; }

            .team-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .team-image {
                height: 400px;
            }

            .power-numbers {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .power-number-value {
                font-size: 2.5rem;
            }

            .steps-diagram {
                grid-template-columns: 1fr;
                gap: 60px;
                padding: 40px 0;
            }

            .steps-diagram::before {
                display: none;
            }

            .step-circle {
                width: 100px;
                height: 100px;
                font-size: 2rem;
            }

            .problems-grid {
                grid-template-columns: 1fr;
                gap: 60px;
                padding: 40px 0;
            }

            .problem-circle {
                width: 100px;
                height: 100px;
                font-size: 3rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .comparison-image {
                height: 200px;
            }

            .comparison-container {
                grid-template-columns: 1fr;
            }

            .comparison-side.before {
                border-bottom: 2px solid var(--background);
            }

            .comparison-divider {
                display: none;
            }

            .gallery-item-header {
                padding: 16px;
            }

            .gallery-item-header h3 {
                font-size: 1.125rem;
            }

            .modal-content {
                padding: 32px 24px;
            }

            .modal-header h2 {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 480px) {
            .navbar-phone span {
                display: none;
            }
        }

        /* UTILITY CLASSES */
        .text-center { text-align: center; }
        .mt-4 { margin-top: 32px; }
        .mb-4 { margin-bottom: 32px; }
@media (max-width: 480px) {
    .navbar-phone span {
       display:block!important;
    }
}
.footer-links a{
    color:#fff;
    text-decoration: none;
}

.form-group{
    margin-bottom: 10px;
}
@media (max-width: 480px) {
    .navbar-phone span {
       display:block!important;
    }
}
.footer-links a{
    color:#fff!important;
    text-decoration: none!important;
}