/* ============================================================
   SERVISNETTE.COM — Modern Product Showcase CSS
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1B3A5C;
    --primary-light: #2E86DE;
    --primary-dark: #0F2744;
    --accent: #F39C12;
    --accent-hover: #E67E22;
    --success: #27AE60;
    --gradient-primary: linear-gradient(135deg, #1B3A5C 0%, #2E86DE 100%);
    --gradient-hero: linear-gradient(135deg, #0F2744 0%, #1B3A5C 50%, #2E86DE 100%);
    --gradient-accent: linear-gradient(135deg, #F39C12 0%, #E67E22 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.08);
    --shadow-md: 0 4px 20px rgba(27, 58, 92, 0.12);
    --shadow-lg: 0 8px 40px rgba(27, 58, 92, 0.16);
    --shadow-xl: 0 20px 60px rgba(27, 58, 92, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

a { text-decoration: none; color: var(--primary-light); transition: var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.text-accent { color: var(--accent) !important; }
.bg-primary-gradient { background: var(--gradient-primary) !important; }
.bg-hero-gradient { background: var(--gradient-hero) !important; }

/* ---------- Section Spacing ---------- */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.section-title {
    margin-bottom: 60px;
    text-align: center;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}
.section-title p {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ---------- Buttons ---------- */
.btn-accent {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.btn-accent:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: var(--transition);
}
.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 58, 92, 0.4);
}

.btn-outline-light:hover { background: #fff; color: var(--primary); }

.btn-lg { padding: 14px 36px; font-size: 1.05rem; border-radius: var(--radius-xl); }
.btn-sm { padding: 8px 20px; font-size: 0.875rem; }

/* ---------- Navbar ---------- */
#mainNavbar {
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1050;
}
#mainNavbar.scrolled {
    background: rgba(15, 39, 68, 0.97) !important;
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

/* Mobile menu open state */
@media (max-width: 991.98px) {
    #mainNavbar .navbar-collapse {
        background: rgba(15, 39, 68, 0.98);
        backdrop-filter: blur(16px);
        margin: 12px -16px 0;
        padding: 20px 24px;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    #mainNavbar .navbar-nav {
        gap: 0;
    }
    #mainNavbar .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 1rem;
    }
    #mainNavbar .nav-link::after {
        display: none;
    }
    #mainNavbar .d-flex.align-items-center {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
        justify-content: center;
    }
    #mainNavbar .btn-accent {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }
    /* Ensure background when navbar is open even before scroll */
    #mainNavbar:has(.navbar-collapse.show),
    #mainNavbar:has(.navbar-collapse.collapsing) {
        background: rgba(15, 39, 68, 0.98) !important;
    }
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

#mainNavbar .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 8px 18px;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: #fff;
}
#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 1px;
}
#mainNavbar .nav-link:hover::after { width: 60%; }

/* ---------- HERO Section ---------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 80px;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(243,156,18,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,134,222,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: 6px 20px;
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-title .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
    position: relative;
    z-index: 2;
}
.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}
.hero-dashboard-mockup {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Hero Floating Stats */
.hero-stat-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 3;
}
.hero-stat-card:nth-child(1) { bottom: 15%; left: -30px; animation-delay: 0s; }
.hero-stat-card:nth-child(2) { top: 20%; right: -20px; animation-delay: 2s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-stat-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.hero-stat-number { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--primary-dark); }
.hero-stat-label { font-size: 0.8rem; color: #6c757d; }

/* ---------- Feature Cards ---------- */
.feature-card {
    background: var(--gradient-card);
    border: 1px solid #e8ecf1;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    transition: var(--transition);
}
.feature-icon.icon-blue { background: rgba(46,134,222,0.1); color: var(--primary-light); }
.feature-icon.icon-orange { background: rgba(243,156,18,0.1); color: var(--accent); }
.feature-icon.icon-green { background: rgba(39,174,96,0.1); color: var(--success); }
.feature-icon.icon-purple { background: rgba(142,68,173,0.1); color: #8e44ad; }

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h5 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: #6c757d; font-size: 0.95rem; margin: 0; }

/* ---------- Stats Counter ---------- */
.stats-section {
    background: var(--gradient-hero);
    position: relative;
}
.stat-item { text-align: center; padding: 30px 20px; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number .suffix { font-size: 1.5rem; color: var(--accent); }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.95rem; font-weight: 500; }

/* ---------- How It Works ---------- */
.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.step-card h5 { font-weight: 700; margin-bottom: 10px; }
.step-card p { color: #6c757d; font-size: 0.95rem; }

.step-connector {
    position: absolute;
    top: 52px;
    left: 55%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), rgba(46,134,222,0.2));
    z-index: 1;
}

/* ---------- Product Showcase (Zigzag) ---------- */
.showcase-section { background: #f8fafc; }
.showcase-item { margin-bottom: 80px; }
.showcase-item:last-child { margin-bottom: 0; }
.showcase-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.showcase-content h3 { font-size: 1.75rem; margin-bottom: 16px; }
.showcase-content p { color: #6c757d; line-height: 1.8; margin-bottom: 20px; }
.showcase-list { list-style: none; padding: 0; }
.showcase-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.showcase-list li i {
    color: var(--success);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8ecf1;
    height: 100%;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.testimonial-stars { color: var(--accent); margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-text { color: #555; font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.testimonial-name { font-weight: 600; color: var(--primary-dark); }
.testimonial-role { font-size: 0.85rem; color: #6c757d; }

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243,156,18,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section h2 { color: #fff; font-size: 2.5rem; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 600px; margin: 0 auto 32px; }

/* ---------- FAQ ---------- */
.faq-section .accordion-item {
    border: 1px solid #e8ecf1;
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-dark);
    padding: 20px 24px;
    background: #fff;
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(46,134,222,0.05);
    color: var(--primary-light);
    box-shadow: none;
}
.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231B3A5C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-section .accordion-body { padding: 0 24px 20px; color: #6c757d; line-height: 1.8; }

/* ---------- Pricing ---------- */
.pricing-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border: 2px solid #e8ecf1;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.pricing-card.featured {
    border-color: var(--primary-light);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.pricing-card.featured .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    padding: 4px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.pricing-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 24px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: #6c757d; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 32px; text-align: left; }
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex; align-items: center; gap: 10px;
    font-size: 0.95rem;
}
.pricing-features li i { color: var(--success); }
.pricing-features li.disabled { color: #ccc; }
.pricing-features li.disabled i { color: #ddd; }

/* ---------- Blog ---------- */
.blog-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8ecf1;
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.blog-card-image {
    height: 220px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-body { padding: 24px; }
.blog-card-category {
    display: inline-block;
    background: rgba(46,134,222,0.1);
    color: var(--primary-light);
    padding: 3px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.blog-card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.blog-card-title a { color: var(--primary-dark); }
.blog-card-title a:hover { color: var(--primary-light); }
.blog-card-date { font-size: 0.85rem; color: #999; }

/* ---------- Contact / Form ---------- */
.contact-form .form-control,
.contact-form .form-select {
    border-radius: var(--radius-sm);
    border: 2px solid #e8ecf1;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(46,134,222,0.15);
}
.contact-form label { font-weight: 600; font-size: 0.9rem; color: var(--primary-dark); margin-bottom: 6px; }

.contact-info-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    height: 100%;
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-item h6 { font-weight: 600; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: rgba(255,255,255,0.8); margin: 0; }

/* ---------- Footer ---------- */
.footer-section { background: var(--primary-dark); color: #fff; }
.footer-top { padding: 80px 0 40px; }
.footer-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; color: rgba(255,255,255,0.65);
}
.footer-contact li i { color: var(--accent); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--accent); }

.social-links { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom p, .footer-bottom a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}
.back-to-top:hover { color: #fff; transform: translateY(-4px); }
.back-to-top.visible { opacity: 1; visibility: visible; }

/* ---------- Page Header ---------- */
.page-header {
    background: var(--gradient-hero);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243,156,18,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-header h1 { color: #fff; font-size: 2.8rem; font-weight: 800; margin-bottom: 12px; position: relative; }
.page-header .breadcrumb { justify-content: center; position: relative; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.page-header .breadcrumb-item.active { color: var(--accent); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .section { padding: 70px 0; }
    .section-title h2 { font-size: 2rem; }
    .hero-stat-card { display: none; }
    .step-connector { display: none; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2rem; }
    .hero-section { min-height: auto; padding: 120px 0 60px; }
    .section { padding: 50px 0; }
    .stat-number { font-size: 2.2rem; }
    .cta-section h2 { font-size: 1.8rem; }
    .footer-top { padding: 50px 0 30px; }
}

/* ---------- Animations ---------- */
[data-aos] { transition-duration: 800ms; }

/* ---------- Utility ---------- */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hover-lift { transition: var(--transition); }
.hover-lift:hover { transform: translateY(-6px); }

/* ---------- Cookie Consent ---------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 39, 68, 0.97);
    backdrop-filter: blur(12px);
    color: #fff;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
