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

:root {
    --primary-color: #5e35b1;
    --secondary-color: #1976d2;
    --accent-color: #6366f1;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #ffffff;
    --bg-light-alt: #f9fafb;
    --bg-light-section: #f3f4f6;
    --bg-dark: #1f2937;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #4a148c 0%, #1565c0 100%);
    --gradient-hover: linear-gradient(135deg, #1565c0 0%, #4a148c 100%);
    --shadow: 0 4px 20px rgba(74, 20, 140, 0.15);
    --shadow-hover: 0 10px 30px rgba(74, 20, 140, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.section-title-large {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.9rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Poppins', 'Roboto', sans-serif;
}

.logo-lider {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
}

.logo-branzyi {
    color: var(--white);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-lider {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled .logo-branzyi {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    font-size: 0.85rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--gradient) !important;
    color: var(--white) !important;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.btn-highlight {
    background: var(--gradient) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-highlight:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.btn-offer {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%) !important;
    color: #1a1a1a !important;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
    letter-spacing: 0.3px;
}

.btn-offer:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
    background: linear-gradient(135deg, #00cc6a 0%, #00ff88 100%) !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(102, 126, 234, 0.7);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 1rem;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(102, 126, 234, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.dropdown-icon {
    font-size: 1.5rem;
    line-height: 1;
    min-width: 30px;
    text-align: center;
}

.dropdown-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.dropdown-item p {
    display: block;
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

.dropdown-item div {
    flex: 1;
}

/* Hero Section */
.hero {
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4a148c 0%, #1565c0 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-light);
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: 10;
}

/* Animated particles background - diagonal drift */
.hero::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 120px 120px, 180px 180px, 90px 90px;
    background-position: 0 0, 60px 90px, 30px 45px;
    animation: diagonalDrift 40s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes diagonalDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(30%, 100%) rotate(5deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    color: var(--white);
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
}

.hero-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    display: inline-block;
    background: var(--white);
    color: #4a148c;
    padding: 1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    background: #f5f5f5;
}

.btn-hero-secondary {
    display: inline-block;
    background: #5e35b1;
    color: var(--white);
    padding: 1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #5e35b1;
    box-shadow: 0 5px 20px rgba(94, 53, 177, 0.4);
    letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
    background: #7e57c2;
    border-color: #7e57c2;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(94, 53, 177, 0.5);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    border: 2px solid rgba(102, 126, 234, 0.15);
    color: var(--text-dark);
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2.5rem;
    text-align: center;
    background: rgba(255, 215, 0, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.4rem;
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.rating-number {
    color: #FFD700;
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.rating-clients {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.badge-icon {
    font-size: 1.2rem;
}

.btn-cta {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-20px);
    }
}

.robot-illustration {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.robot-illustration svg {
    width: 300px;
    height: 400px;
    filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.3));
}

.info-bubble {
    position: absolute;
    background: rgba(102, 126, 234, 0.15);
    color: var(--text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
    animation: bubble-float 3s ease-in-out infinite;
    white-space: nowrap;
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.info-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

/* Bubble color variants */
.bubble-green,
.bubble-blue,
.bubble-purple {
    background: rgba(102, 126, 234, 0.15);
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.bubble-orange,
.bubble-red,
.bubble-yellow {
    background: rgba(118, 75, 162, 0.15);
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(118, 75, 162, 0.2);
    border: 1px solid rgba(118, 75, 162, 0.3);
}

.bubble-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 5%;
    right: 10%;
    animation-delay: 0.5s;
}

.bubble-3 {
    top: 35%;
    left: -5%;
    animation-delay: 1s;
}

.bubble-4 {
    top: 35%;
    right: -5%;
    animation-delay: 1.5s;
}

.bubble-5 {
    bottom: 25%;
    left: 8%;
    animation-delay: 2s;
}

.bubble-6 {
    bottom: 20%;
    right: 12%;
    animation-delay: 2.5s;
}

.bubble-7 {
    bottom: 5%;
    right: 5%;
    animation-delay: 3s;
}

.bubble-8 {
    bottom: 15%;
    left: 15%;
    animation-delay: 3.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bubble-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        opacity: 0.9;
    }
}

/* How We Work Section */
.how-we-work {
    padding: 100px 0 60px;
    background: var(--bg-light);
    position: relative;
    margin-top: -80px;
}

.how-we-work .section-title {
    color: var(--text-dark);
}

.how-we-work .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    transition: all 0.4s ease;
}

.step-item.step-left {
    margin-right: auto;
    width: 85%;
}

.step-item.step-right {
    margin-left: auto;
    width: 85%;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(94, 53, 177, 0.15);
    font-family: 'Rajdhani', sans-serif;
    flex-shrink: 0;
    min-width: 100px;
    align-self: stretch;
    line-height: 1;
}

.step-content {
    flex: 1;
    display: flex;
    gap: 3rem;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 0;
    transition: all 0.4s ease;
    box-shadow: none;
}

.step-item:hover .step-content {
    transform: translateX(10px);
}

.step-icon {
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(94, 53, 177, 0.25));
    transition: transform 0.4s ease;
}

.step-item:hover .step-icon svg {
    transform: scale(1.05) rotate(2deg);
}

.step-graphic {
    width: 100%;
    height: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(94, 53, 177, 0.25));
    transition: transform 0.4s ease;
}

.step-item:hover .step-graphic {
    transform: scale(1.05) rotate(2deg);
}

.step-text {
    flex: 1;
}

.step-title {
    color: #1f2937;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-desc {
    color: #4b5563;
    line-height: 1.9;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-family: 'Inter', sans-serif;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services .section-title {
    color: var(--text-dark);
}

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

.service-row {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--bg-light-alt);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-illustration {
    width: 100%;
    max-width: 160px;
    transition: transform 0.3s ease;
}

.service-row:hover .service-illustration {
    transform: scale(1.05) rotate(2deg);
}

.service-illustration svg {
    width: 100%;
    height: auto;
}

.service-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-content p {
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.5rem;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #4a148c 0%, #1565c0 100%);
    color: var(--white);
    position: relative;
}

.stats .section-title {
    color: var(--white);
}

.stats .highlight {
    color: #00ff88;
    -webkit-text-fill-color: #00ff88;
}

.stats-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 136, 0.6);
    background: rgba(255, 255, 255, 0.25);
}

.stat-icon {
    margin-bottom: 1rem;
    display: inline-block;
}

.stat-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 5px 20px rgba(0, 255, 136, 0.4));
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #00ff88;
    font-family: 'Rajdhani', sans-serif;
    line-height: 1;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.stat-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.5;
}

/* Pricing Compact Section */
.pricing-compact {
    padding: 40px 0 80px;
    background: var(--white);
}

.pricing-compact-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.pricing-compact-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-compact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-compact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-compact-card.featured-compact {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.green-card {
    border: 3px solid #10b981;
    background: rgba(16, 185, 129, 0.08) !important;
}

.green-card.featured-compact {
    border-color: #059669;
}

.purple-card {
    border: 3px solid #9333EA;
    background: rgba(147, 51, 234, 0.08) !important;
}

.purple-card.featured-compact {
    border-color: #7c3aed;
}

.pricing-compact-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
}

.pricing-graphic {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.green-card h3 {
    color: #10b981;
}

.purple-card h3 {
    color: #9333EA;
}

.price-box {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.price-old {
    display: block;
    font-size: 1.2rem;
    color: #ef4444;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-new {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.green-card .price-new {
    color: #10b981;
}

.purple-card .price-new {
    color: #9333EA;
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.features-compact {
    list-style: none;
    margin-bottom: 2rem;
}

.features-compact li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.4;
}

.btn-compact {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.green-card .btn-compact {
    background: #10b981;
    color: var(--white);
    border-color: #10b981;
}

.green-card .btn-compact:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.purple-card .btn-compact {
    background: #9333EA;
    color: var(--white);
    border-color: #9333EA;
}

.purple-card .btn-compact:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.green-card .badge-popular {
    background: #059669;
    color: var(--white);
}

.purple-card .badge-popular {
    background: #7c3aed;
    color: var(--white);
}

.pricing-divider {
    text-align: center;
    margin: 5rem auto;
    max-width: 900px;
    padding: 3rem 2rem;
}

.divider-title {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    background: linear-gradient(135deg, #9333EA 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.divider-title-small {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    background: linear-gradient(135deg, #9333EA 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing .section-title {
    color: var(--text-dark);
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    background: rgba(102, 126, 234, 0.05);
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.15);
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    display: block;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.feature-item-pricing {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 20px;
}

.feature-item-pricing span:last-child {
    flex: 1;
    line-height: 1.6;
    color: var(--text-light);
}

.btn-pricing {
    display: block;
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    padding: 1.1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    border: 2px solid transparent;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light-section);
}

.contact .section-title {
    color: var(--text-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    margin-bottom: 1rem;
}

.footer-column h3 span {
    color: var(--primary-color);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.logo a {
    text-decoration: none;
    color: inherit;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light-section);
}

.faq-section .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-green {
    background: rgba(0, 255, 136, 0.08);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.faq-blue {
    background: rgba(59, 130, 246, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.faq-purple {
    background: rgba(147, 51, 234, 0.08);
    border: 2px solid rgba(147, 51, 234, 0.3);
}

.faq-yellow {
    background: rgba(250, 204, 21, 0.08);
    border: 2px solid rgba(250, 204, 21, 0.3);
}

.faq-red {
    background: rgba(239, 68, 68, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.faq-orange {
    background: rgba(255, 140, 0, 0.08);
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.faq-teal {
    background: rgba(20, 184, 166, 0.08);
    border: 2px solid rgba(20, 184, 166, 0.3);
}

.faq-pink {
    background: rgba(236, 72, 153, 0.08);
    border: 2px solid rgba(236, 72, 153, 0.3);
}

.faq-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-button:hover {
    transform: translateX(5px);
}

.faq-icon {
    font-size: 2rem;
    min-width: 40px;
    text-align: center;
}

.faq-question {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.faq-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials .section-title {
    color: var(--text-dark);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(102, 126, 234, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

/* Local Business Benefits Section - Accordion */
.local-business-benefits {
    padding: 100px 0;
    background: var(--bg-light-section);
}

.local-business-benefits .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-green {
    background: rgba(0, 255, 136, 0.08);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.accordion-blue {
    background: rgba(59, 130, 246, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.accordion-purple {
    background: rgba(147, 51, 234, 0.08);
    border: 2px solid rgba(147, 51, 234, 0.3);
}

.accordion-yellow {
    background: rgba(250, 204, 21, 0.08);
    border: 2px solid rgba(250, 204, 21, 0.3);
}

.accordion-red {
    background: rgba(239, 68, 68, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.accordion-orange {
    background: rgba(255, 140, 0, 0.08);
    border: 2px solid rgba(255, 140, 0, 0.3);
}

.accordion-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    transform: translateX(5px);
}

.accordion-icon {
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-title {
    flex: 1;
    text-align: left;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.accordion-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-benefit-item span {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.benefit-check {
    flex-shrink: 0;
}

.contact-graphic {
    margin: 2rem 0;
    text-align: center;
}

.contact-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-detail svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group.checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.form-group.checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.form-group.checkbox label a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Blog Hero Section */
.blog-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #4a148c 0%, #1565c0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.blog-hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: 10;
}

.blog-hero-icon {
    margin-bottom: 1.5rem;
}

.blog-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.highlight-text {
    color: #00ff88;
}

.blog-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Grid Section */
.blog-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.blog-card-category {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.blog-card-title {
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.blog-card-link:hover {
    gap: 0.5rem;
}

/* Blog CTA Section */
.blog-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a148c 0%, #1565c0 100%);
    text-align: center;
    color: var(--white);
}

.blog-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Article Hero Section */
.article-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #4a148c 0%, #1565c0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.article-hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: 10;
}

.article-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.article-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Article Content Section */
.article-content-section {
    padding: 80px 0;
    background: var(--white);
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

.article-featured-image {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-featured-image svg {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.article-body h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.article-body strong {
    color: var(--primary-color);
    font-weight: 700;
}

.article-highlight {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.article-highlight p {
    margin: 0;
}

.article-cta {
    background: linear-gradient(135deg, #4a148c 0%, #1565c0 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    color: var(--white);
}

.article-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.article-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--bg-light-section);
}

.testimonials-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating .star {
    font-size: 1.2rem;
    color: #FFD700;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.author-avatar-small {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
}

.testimonial-card:not(.active) {
    display: none;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--gradient);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 3rem;
    max-width: 400px;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.rating-stars-small {
    display: flex;
    gap: 0.25rem;
}

.star-small {
    font-size: 1.2rem;
    color: #FFD700;
}

.rating-score {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-divider {
    color: var(--text-light);
}

.rating-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card-image svg {
    width: 100%;
    height: 100%;
}

.blog-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.blog-cta {
    text-align: center;
}

.btn-blog-more {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-blog-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-title-large {
        font-size: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* 3 Steps Section Mobile */
    .step-item {
        width: 100% !important;
        margin: 0 !important;
        flex-direction: column;
    }

    .step-number {
        font-size: 3rem;
        min-width: auto;
    }

    .step-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .step-icon {
        width: 180px;
        height: 180px;
    }

    .step-graphic {
        max-width: 180px;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .step-desc {
        font-size: 1rem;
    }

    /* Pricing Compact Mobile */
    .pricing-compact-grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-compact-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-compact-card.featured-compact {
        transform: scale(1);
    }

    .divider-title-small {
        font-size: 1.5rem;
    }

    /* Contact Section Mobile */
    .contact-img {
        max-width: 280px;
    }

    .service-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.8rem;
    }

    .section-title-large {
        font-size: 1.6rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .services,
    .stats,
    .contact {
        padding: 60px 0;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    /* 3 Steps Even Smaller */
    .step-number {
        font-size: 2.5rem;
    }

    .step-icon {
        width: 150px;
        height: 150px;
    }

    .step-graphic {
        max-width: 150px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-desc {
        font-size: 0.95rem;
    }

    /* Stats Grid Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    /* Contact Image Mobile */
    .contact-img {
        max-width: 220px;
    }

    .pricing-img {
        max-width: 150px;
    }
}
