:root {
    --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary: #f093fb;
    --accent: #f5576c;
    --dark: #1a1a2e;
    --light: #eee;
    --white: #ffffff;
    --text-dark: #2d3748;
    --text-light: #718096
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.text-gradient {
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    color: white
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-weight: 500;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    color: white;
}

.block-ga3xp9-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    z-index: 1000
}

.block-ga3xp9-header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1)
}

.navbar-brand .brand-text {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
    transform: translateY(-1px)
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%)
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.block-ga3xp9-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow: hidden
}

.block-ga3xp9-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.3
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.3s both
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.3s ease
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.block-ga3xp9-stats {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    margin-top: -50px;
    position: relative;
    z-index: 3
}

.stat-card {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    color: white
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2)
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: white !important
}

.block-ga3xp9-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.service-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    overflow: hidden;
    position: relative
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary)
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3)
}

.service-icon i {
    font-size: 3rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.service-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card ul li {
    padding: 5px 0;
    color: var(--text-light)
}

.block-ga3xp9-why {
    padding: 100px 0;
    background: white
}

.feature-item {
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem
}

.block-ga3xp9-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%)
}

.process-step {
    padding: 2rem;
    position: relative
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1
}

.process-step h4 {
    color: var(--text-dark);
    margin: 1rem 0;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem
}

.block-ga3xp9-testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 20px;
    border-left: 4px solid;
    border-image: var(--primary) 1;
    transition: all 0.3s ease;
    height: 100%
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1)
}

.stars i {
    font-size: 1.2rem;
    margin-right: 2px
}

.author strong {
    color: var(--text-dark);
    font-size: 1.1rem
}

.block-ga3xp9-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden
}

.block-ga3xp9-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: float 20s ease-in-out infinite
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-content {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 2
}

.block-ga3xp9-contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%)
}

.contact-form {
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-radius: 20px;
    border-top: 4px solid transparent;
    border-image: var(--primary) 1
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 12px 16px;
    transition: all 0.3s ease
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px
}

.info-item {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15)
}

.info-icon i {
    font-size: 2rem;
    background: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.block-ga3xp9-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden
}

.block-ga3xp9-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary)
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease
}

.footer-link:hover {
    color: var(--secondary);
    transform: translateX(5px)
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px)
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4)
}

.block-ga3xp9-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 9999;
    animation: slideUp 0.5s ease-out
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .block-ga3xp9-hero {
        padding: 120px 0 80px;
        text-align: center
    }
    
    .hero-content h1 {
        font-size: 2.5rem
    }
    
    .stat-number {
        font-size: 2rem !important
    }
    
    .step-number {
        font-size: 3rem
    }
    
    .service-card, .testimonial-card, .info-item {
        margin-bottom: 2rem
    }
    
    .navbar-nav {
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important
    }
}


.block-ga3xp9-page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 100px;
    min-height: 60vh;
}

.service-detail-card {
    background: white;
    border: 1px solid #f0f4ff;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: #667eea
}

.service-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa
}

.service-features li:last-child {
    border-bottom: none;
}

.service-stats {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: #667eea;
    transition: all 0.3s ease
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4)
}

.success-item {
    border-left: 4px solid #667eea;
    transition: all 0.3s ease
}

.success-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1)
}

.cta-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    margin-top: 20px
}

.tool-card {
    background: white;
    border: 1px solid #f0f4ff;
    transition: all 0.3s ease;
    height: 100%
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea
}

.tool-icon i {
    font-size: 2.5rem;
    color: #667eea
}

@media (max-width: 768px) {
    .service-detail-card {
        margin-bottom: 3rem
    }
    
    .process-step, .tool-card {
        margin-bottom: 2rem
    }
    
    .service-icon i {
        font-size: 2.5rem
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem
    }
}


.block-ga3xp9-page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 100px;
    min-height: 60vh;
}

.pricing-card {
    background: white;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    border-color: #667eea
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: #667eea;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    z-index: 2
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top
}

.period {
    font-size: 1rem;
    color: #718096;
    font-weight: 400
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa
}

.package-features li:last-child {
    border-bottom: none;
}

.custom-package {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px dashed #667eea;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1)
}

.comparison-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    padding: 20px 15px;
    border: none
}

.comparison-table td {
    padding: 15px;
    border-color: #f8f9fa;
    vertical-align: middle;
}

.featured-col {
    background: rgba(102, 126, 234, 0.05) !important
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1)
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0
}

.faq-question:hover {
    background: #f0f4ff !important;
}

.faq-answer {
    display: none;
    background: white;
    border-top: 1px solid #e2e8f0
}

.faq-item.active .faq-answer {
    display: block;
}


.block-ga3xp9-thank {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.block-ga3xp9-thank::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="thank-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23thank-pattern)"/></svg>');
    animation: float 30s ease-in-out infinite;
}

.thank-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease;
    position: relative;
    z-index: 2;
}

.thank-animation {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    transform: scale(0);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3;
    position: relative;
}

.success-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 3px solid rgba(40, 167, 69, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 80px;
    height: 80px;
}

.ring-2 {
    width: 100px;
    height: 100px;
}

.ring-3 {
    width: 120px;
    height: 120px;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.step-mini {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.step-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

.step-icon-mini i {
    font-size: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
    margin-bottom: 8px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    color: white;
}

.social-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.additional-info {
    border: 1px solid #e9ecef;
}

.quick-contact a {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6);
    }
}

.return-actions .btn {
    transition: all 0.3s ease;
}

.return-actions .btn:hover {
    transform: translateY(-2px);
}

.block-ga3xp9-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 9999;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(1deg); 
    }
    75% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
}

@media (max-width: 768px) {
    .thank-card {
        margin: 20px;
        padding: 2rem !important;
    }
    
    .success-icon {
        font-size: 4rem;
    }
    
    .ring-1 { width: 60px; height: 60px; }
    .ring-2 { width: 80px; height: 80px; }
    .ring-3 { width: 100px; height: 100px; }
    
    .social-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .return-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .return-actions .btn {
        width: 100%;
    }
    
    .quick-contact .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .step-mini {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .display-5 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}