/* ==============================
   CSS Variables & Reset
============================== */
:root {
    /* Brand Palette */
    --red: #FF3B3B;
    --orange: #EDA923;
    --yellow: #E1C828;
    --green: #9DCE55;
    --teal: #55AD9D;
    --blue: #358AF6;
    --white: #FFFFFF;

    /* Semantic */
    --primary: #358AF6;
    --primary-dark: #2a6fd4;
    --primary-light: #568EE4;
    --navy: #1a1f2e;
    --navy-light: #2a3042;
    --text: #1a1f2e;
    --black: #1a1f2e;

    /* Gradients */
    --gradient: linear-gradient(135deg, #FF3B3B 0%, #EDA923 20%, #E1C828 35%, #9DCE55 50%, #55AD9D 65%, #568EE4 80%, #358AF6 100%);
    --gradient-radial: radial-gradient(circle at 30% 20%, #FF3B3B 0%, #FF8A00 20%, #FFD600 35%, #4CAF50 55%, #2196F3 80%, #4285F4 100%);
    --gradient-soft: linear-gradient(135deg, rgba(255, 59, 59, 0.07) 0%, rgba(237, 169, 35, 0.05) 20%, rgba(157, 206, 85, 0.05) 50%, rgba(53, 138, 246, 0.07) 100%);
    --gradient-dark: linear-gradient(160deg, #1a1f2e 0%, #1e2a3a 50%, #1a2838 100%);

    /* Two-color gradients (default state) */
    --g2-red-orange: linear-gradient(135deg, #1780c1 0%, #b9d133 100%);
    --g2-orange-yellow: linear-gradient(135deg, #EDA923 0%, #E1C828 100%);
    --g2-yellow-green: linear-gradient(135deg, #E1C828 0%, #9DCE55 100%);
    --g2-green-teal: linear-gradient(135deg, #9DCE55 0%, #55AD9D 100%);
    --g2-teal-blue: linear-gradient(135deg, #55AD9D 0%, #358AF6 100%);
    --g2-blue-red: linear-gradient(135deg, #358AF6 0%, #FF3B3B 100%);
    --g2-red-teal: linear-gradient(135deg, #FF3B3B 0%, #55AD9D 100%);

    /* Interactive timing */
    --gradient-shift: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-red: 0 8px 24px rgba(255, 59, 59, 0.35);
    --glow-blue: 0 8px 24px rgba(53, 138, 246, 0.35);
    --glow-multi: 0 12px 32px rgba(255, 59, 59, 0.25), 0 8px 24px rgba(53, 138, 246, 0.3);

    /* Grays */
    --gray-50: #fafbfc;
    --gray-100: #f1f3f6;
    --gray-200: #e2e6ed;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;

    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(26, 31, 46, 0.06);
    --shadow-md: 0 10px 40px rgba(26, 31, 46, 0.08);
    --shadow-lg: 0 20px 60px rgba(53, 138, 246, 0.12);
    --shadow-card: 0 8px 32px rgba(26, 31, 46, 0.08);
    --shadow-glow: 0 8px 32px rgba(255, 59, 59, 0.12), 0 4px 20px rgba(53, 138, 246, 0.1);
    --shadow-btn: 0 12px 30px rgba(53, 138, 246, 0.3);

    /* Layout */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font);
    background: var(--gray-50);
    color: var(--navy);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.thank-you-body {
    background: linear-gradient(135deg, rgba(53, 138, 246, 0.06) 0%, rgba(157, 206, 85, 0.05) 45%, rgba(255, 255, 255, 1) 100%);
}

/* Bootstrap Grid companion utilities */
.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.ms-auto {
    margin-left: auto;
}

.d-none {
    display: none !important;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    background: none;
}

/* ==============================
   Utility Classes
============================== */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

/* Section-specific backgrounds */
.about-section {
    background: linear-gradient(180deg, var(--white) 0%, rgba(85, 173, 157, 0.07) 50%, var(--white) 100%);
}

.why-section {
    background: linear-gradient(135deg, rgba(237, 169, 35, 0.05) 0%, rgba(225, 200, 40, 0.07) 50%, var(--white) 100%);
}

.express-package-section {
    background: linear-gradient(180deg, rgba(255, 59, 59, 0.04) 0%, rgba(53, 138, 246, 0.05) 50%, var(--white) 100%);
    position: relative;
}

.express-package-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    opacity: 0.04;
    pointer-events: none;
}

.scalability-section {
    background: linear-gradient(180deg, var(--white) 0%, rgba(85, 173, 157, 0.06) 100%);
}

.faq-section {
    background: linear-gradient(180deg, rgba(53, 138, 246, 0.04) 0%, var(--gray-50) 100%);
}

.contact-section {
    background: linear-gradient(135deg, rgba(53, 138, 246, 0.05) 0%, rgba(157, 206, 85, 0.04) 50%, var(--white) 100%);
}

.section-tag {
    display: inline-block;
    background: var(--gradient-soft);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(53, 138, 246, 0.1);
}

.section-header h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-header p {
    color: var(--gray-600);
    font-size: 16px;
    max-width: 800px;
}

.section-header.text-center p {
    margin: 0 auto;
    padding-bottom: 20px;
}

/* Reveal Animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ==============================
   Buttons
============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: background var(--gradient-shift),
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow var(--gradient-shift),
        color var(--gradient-shift),
        border-color var(--gradient-shift);
}

.btn-primary {
    background: var(--g2-red-orange);
    color: var(--white);
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    background: var(--gradient);
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--glow-multi);
    color: var(--white);
}

.btn-outline {
    background-color: var(--white);
    color: var(--navy);
    border-color: transparent;
    background-image: linear-gradient(var(--white), var(--white)),
        var(--g2-teal-blue);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn-outline:hover {
    background-image: var(--gradient);
    background-clip: border-box;
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--glow-blue);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(26, 31, 46, 0.1);
}

.btn-white:hover {
    background: var(--gradient);
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--glow-multi);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--glow-multi);
}

.btn-lg {
    padding: 8px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.w-100 {
    width: 100%;
}

/* Ripple Effect */
.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ==============================
   Gradient Icon System
   Two-color default → full spectrum on hover (no pseudo overlays)
============================== */
.brand-icon,
.feature-icon,
.category-icon,
.deliverable-card .card-icon,
.timeline-dot,
.why-icon,
.perf-icon,
.contact-icon,
.float-icon,
.footer-social a,
.slider-btn,
.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    line-height: 1;
    transition: background var(--gradient-shift),
        transform var(--gradient-shift),
        box-shadow var(--gradient-shift);
}

.brand-icon i,
.feature-icon i,
.category-icon i,
.deliverable-card .card-icon i,
.timeline-dot i,
.why-icon i,
.perf-icon i,
.contact-icon i,
.float-icon i,
.footer-social a i,
.slider-btn i,
.back-to-top i {
    display: block;
    line-height: 1;
    color: inherit;
}

.brand-icon:hover,
.navbar-brand:hover .brand-icon,
.about-feature-item:hover .feature-icon,
.category-header:hover .category-icon,
.deliverable-card:hover .card-icon,
.timeline-item:hover .timeline-dot,
.why-card:hover .why-icon,
.perf-card:hover .perf-icon,
.contact-item:hover .contact-icon,
.floating-card:hover .float-icon,
.footer-social a:hover,
.slider-btn:hover,
.back-to-top:hover {
    background: var(--gradient);
    transform: scale(1.08);
    box-shadow: var(--glow-multi);
}

/* Two-color defaults per icon */
.brand-icon {
    background: var(--g2-red-orange);
}

.feature-icon {
    background: var(--g2-teal-blue);
}

.category-icon {
    background: var(--g2-orange-yellow);
}

.deliverable-card .card-icon {
    background: var(--g2-green-teal);
}

.deliverable-card:nth-child(6n+2) .card-icon {
    background: var(--g2-red-orange);
}

.deliverable-card:nth-child(6n+3) .card-icon {
    background: var(--g2-yellow-green);
}

.deliverable-card:nth-child(6n+4) .card-icon {
    background: var(--g2-teal-blue);
}

.deliverable-card:nth-child(6n+5) .card-icon {
    background: var(--g2-blue-red);
}

.deliverable-card:nth-child(6n+6) .card-icon {
    background: var(--g2-orange-yellow);
}

.timeline-dot {
    background: var(--g2-red-teal);
}

.why-icon {
    background: var(--g2-red-orange);
}

.perf-icon {
    background: var(--g2-green-teal);
}

.contact-icon {
    background: var(--g2-teal-blue);
}

.float-icon {
    background: var(--g2-yellow-green);
}

.float-card-2 .float-icon {
    background: var(--g2-teal-blue);
}

.float-card-3 .float-icon {
    background: var(--g2-red-orange);
}

.float-card-4 .float-icon {
    background: var(--g2-blue-red);
}

.footer-social a {
    background: var(--g2-teal-blue);
}

.footer-social a:nth-child(2) {
    background: var(--g2-red-orange);
}

.footer-social a:nth-child(3) {
    background: var(--g2-yellow-green);
}

.footer-social a:nth-child(4) {
    background: var(--g2-orange-yellow);
}

.slider-btn {
    background: var(--g2-teal-blue);
    box-shadow: var(--glow-blue);
}

.back-to-top {
    background: var(--g2-blue-red);
}

/* Inline gradient icons (text-based) */
.gradient-icon-text {
    background: var(--g2-teal-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 100%;
    transition: background var(--gradient-shift), background-position var(--gradient-shift), transform var(--gradient-shift);
}

.gradient-icon-text:hover,
:hover>.gradient-icon-text {
    background: var(--gradient);
    background-size: 200% 200%;
    background-position: 100% center;
    transform: scale(1.15);
}

/* ==============================
   Header & Navigation
============================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 10px 40px rgba(26, 31, 46, 0.08);
    border-bottom: 1px solid rgba(53, 138, 246, 0.06);
}

.navbar .row {
    align-items: center;
}

.navbar {
    padding: 5px 0;
    transition: var(--transition);
}

.main-header.scrolled .navbar {
    padding: 1px 0;
}

.navbar-brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 80px;
    object-fit: contain;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--glow-red);
}

.brand-icon:hover {
    transform: scale(1.08) rotate(-3deg);
}

.logo-text h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.logo-text span {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    color: var(--navy);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 28px);
}

/* Mobile Toggle */
.navbar-toggler {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    border-radius: 10px;
    transition: var(--transition);
}

.navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9998;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--navy);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--gradient-soft);
    color: var(--blue);
}

/* ==============================
   Hero Section
============================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 50px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 59, 59, 0.03) 0%, rgba(53, 138, 246, 0.04) 40%, var(--gray-50) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    opacity: 0.06;
    pointer-events: none;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.hero-bg-shapes .shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 59, 59, 0.12);
    top: -100px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(157, 206, 85, 0.12);
    bottom: -50px;
    left: -100px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(53, 138, 246, 0.1);
    top: 50%;
    left: 30%;
    animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    border: 1px solid rgba(53, 138, 246, 0.12);
}

.hero-offer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(53, 138, 246, 0.12), rgba(157, 206, 85, 0.18));
    border: 1px solid rgba(53, 138, 246, 0.18);
    box-shadow: 0 12px 30px rgba(53, 138, 246, 0.12);
    max-width: fit-content;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(53, 138, 246, 0.16);
}

.hero-offer i {
    color: var(--orange);
    font-size: 14px;
}

.hero-offer span {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.hero-offer strong {

    font-size: 40px;
}

.hero-content h1 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--navy);
}

.hero-badge i {
    background: var(--g2-red-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background var(--gradient-shift), transform var(--gradient-shift);
}

.hero-badge:hover i {
    /* background: var(--gradient); */
    transform: scale(1.15) rotate(-8deg);
}

.hero-content p {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 24px;
}

.stat-item:last-child .stat-number::after {
    content: '%';
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 20px;
}

.mockup-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.mockup-img {
    width: 100%;
    border-radius: var(--radius-md);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.mockup-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-radial);
    opacity: 0.2;
    filter: blur(40px);
    z-index: -1;
    border-radius: var(--radius-xl);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card .float-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: var(--glow-blue);
}

.floating-card:hover .float-icon {
    transform: scale(1.08);
}

.float-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.float-card-2 {
    top: 30%;
    right: -8%;
    animation-delay: 1s;
}

.float-card-3 {
    bottom: 30%;
    left: -5%;
    animation-delay: 2s;
}

.float-card-4 {
    bottom: 10%;
    right: -5%;
    animation-delay: 3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ==============================
   Trusted Section
============================== */
.trusted-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

.trusted-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 59, 59, 0.02) 0%, rgba(237, 169, 35, 0.03) 25%, rgba(157, 206, 85, 0.03) 50%, rgba(85, 173, 157, 0.03) 75%, rgba(53, 138, 246, 0.02) 100%);
    pointer-events: none;
}

.trusted-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    cursor: default;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-4px);
}

.logo-item i {
    font-size: 28px;
    background: var(--g2-teal-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--gradient-shift);
}

.logo-item:hover i {
    /* background: var(--gradient); */
    background-size: 200% 200%;
    transform: scale(1.12);
}

.logo-item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* ==============================
   About Section
============================== */
.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -10px;
    padding: 24px 28px;
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(85, 173, 157, 0.12);
}

.about-feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(85, 173, 157, 0.25);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    font-size: 18px;
    box-shadow: var(--glow-blue);
}

.about-feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-4deg);
}

.about-feature-item h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
}

.about-feature-item p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

/* ==============================
   Deliverables Section
============================== */
.deliverables-section {
    background: linear-gradient(180deg, rgba(53, 138, 246, 0.04) 0%, rgba(157, 206, 85, 0.05) 50%, rgba(53, 138, 246, 0.03) 100%);
}

.deliverable-category {
    margin-bottom: 60px;
}

.deliverable-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
}

.category-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 20px;
    box-shadow: var(--glow-red);
    flex-shrink: 0;
}

.category-header:hover .category-icon {
    transform: scale(1.08) rotate(4deg);
}

.category-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
}

.deliverable-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.deliverable-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.deliverable-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(53, 138, 246, 0.2);
}

.deliverable-card:hover::before {
    transform: scaleX(1);
}

.deliverable-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 18px;
    margin-bottom: 16px;
    box-shadow: var(--glow-blue);
}

.deliverable-card:hover .card-icon {
    transform: scale(1.1) rotate(-4deg);
}

.deliverable-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.deliverable-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

.highlight-card {
    border-color: rgba(53, 138, 246, 0.2);
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.03) 0%, rgba(53, 138, 246, 0.04) 50%, var(--white) 100%);
}

/* ==============================
   Process Timeline
============================== */
.process-section {
    background: var(--gradient-dark);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    opacity: 0.07;
    pointer-events: none;
}

.process-section .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--yellow);
    border-color: rgba(255, 255, 255, 0.1);
}

.process-section .section-header h2 {
    color: var(--white);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 60px auto 0;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--red) 0%, var(--orange) 20%, var(--green) 50%, var(--blue) 100%);
    opacity: 0.6;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 12px;
    box-shadow: 0 0 0 6px rgba(53, 138, 246, 0.2);
    z-index: 1;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.12);
    box-shadow: 0 0 0 8px rgba(255, 59, 59, 0.15), var(--glow-multi);
}

.timeline-content {
    padding: 24px 28px;
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(8px);
}

.step-number {
    font-size: 12px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 6px 0 8px;
    color: var(--navy);
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.process-section .glass-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.process-section .glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.process-section .timeline-content h4 {
    color: var(--white);
}

.process-section .timeline-content p {
    color: rgba(255, 255, 255, 0.65);
}

.process-section .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==============================
   Express Package Section
============================== */
.express-package-section .container {
    position: relative;
    z-index: 1;
}

.express-offer-card {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 59, 59, 0.12);
    box-shadow: var(--shadow-glow);
}

.express-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: var(--g2-red-orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.express-badge i {
    font-size: 13px;
}

.express-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
    line-height: 1;
}

.express-currency {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.express-amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.express-period {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 4px;
}

.express-tagline {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.6;
}

.express-highlights {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.express-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.express-highlight-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--g2-teal-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background var(--gradient-shift), transform var(--gradient-shift), box-shadow var(--gradient-shift);
}

.express-highlight-icon i {
    color: var(--white);
    font-size: 16px;
}

.express-highlights li:hover .express-highlight-icon {
    background: var(--gradient);
    transform: scale(1.08);
    box-shadow: var(--glow-multi);
}

.express-highlights li strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.express-highlights li span {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

.express-note {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
    margin: 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.express-note i {
    color: var(--green);
    font-size: 14px;
}

.express-includes {
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(53, 138, 246, 0.1);
}

.express-includes h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.express-includes-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.6;
}

.express-include-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.express-include-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(53, 138, 246, 0.15);
}

.express-include-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--g2-green-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
    transition: background var(--gradient-shift), transform var(--gradient-shift), box-shadow var(--gradient-shift);
}

.express-include-item:hover .express-include-icon {
    background: var(--gradient);
    transform: scale(1.08);
    box-shadow: var(--glow-multi);
}

.express-include-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.express-include-item p {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.55;
}

.express-timeline {
    margin-bottom: 24px;
}

.express-timeline h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.express-days {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.express-day {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.express-day:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(237, 169, 35, 0.2);
}

.express-day-label {
    min-width: 64px;
    padding: 10px 14px;
    background: var(--g2-orange-yellow);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    text-align: center;
    transition: background var(--gradient-shift);
}

.express-day:hover .express-day-label {
    background: var(--gradient);
}

.express-day-content h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.express-day-content p {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.6;
}

.express-audience {
    padding: 28px 32px;
    border: 1px solid rgba(157, 206, 85, 0.15);
}

.express-audience h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.express-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.express-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--gradient-soft);
    border: 1px solid rgba(53, 138, 246, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.express-tags span:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--glow-multi);
}

.express-tags span i {
    font-size: 12px;
    opacity: 0.8;
}

/* ==============================
   Why Choose Us
============================== */
.why-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(237, 169, 35, 0.25);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 24px;
    margin: 0 0 20px;
    box-shadow: var(--glow-red);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(6deg);
}

.why-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.why-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

/* ==============================
   Performance Highlights
============================== */
.perf-highlight-section {
    background: linear-gradient(135deg, rgba(157, 206, 85, 0.08) 0%, rgba(85, 173, 157, 0.06) 50%, rgba(53, 138, 246, 0.05) 100%);
}

.perf-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.perf-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(157, 206, 85, 0.25);
}

.perf-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 18px;
    margin-bottom: 16px;
    box-shadow: var(--glow-blue);
}

.perf-card:hover .perf-icon {
    transform: scale(1.1) rotate(-4deg);
}

.perf-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.perf-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.perf-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-100);
    border-radius: 10px;
    overflow: hidden;
}

.perf-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 1.5s ease;
}

/* ==============================
   Scalability Section
============================== */
.scalability-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.scale-card {
    background: var(--white);
    padding: 28px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.scale-card::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--gradient);
    opacity: 0.4;
}

.scale-card:nth-child(5n)::after,
.scale-card:last-child::after {
    display: none;
}

.scale-card i {
    font-size: 28px;
    background: var(--g2-teal-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background var(--gradient-shift), color var(--gradient-shift), transform var(--gradient-shift);
}

.scale-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.scale-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
    background: var(--gradient);
}

.scale-card:hover i {
    background: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white);
}

.scale-card:hover span {
    color: var(--white);
}

.scalability-note {
    padding: 24px 28px;
    max-width: 800px;
    margin: 0 auto;
}

.scalability-note p {
    font-size: 15px;
    color: var(--gray-600);
    margin: 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.scalability-note i {
    background: var(--g2-yellow-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
    margin-top: 3px;
    transition: background var(--gradient-shift), transform var(--gradient-shift);
}



/* ==============================
   Testimonials
============================== */
.testimonials-section {
    background: linear-gradient(180deg, rgba(237, 169, 35, 0.05) 0%, rgba(255, 59, 59, 0.04) 50%, var(--gray-50) 100%);
    overflow: hidden;
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 10px;
}

.testimonial-card {
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.stars {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.testimonial-card p {
    font-size: 17px;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient) border-box;
}

.testimonial-author h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--glow-blue);
    color: var(--white);
}

.slider-btn:hover {
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
}

.slider-dot.active {
    background: var(--gradient);
    width: 28px;
    border-radius: 10px;
}

/* ==============================
   FAQ Accordion
============================== */
.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(53, 138, 246, 0.25);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    box-shadow: var(--shadow-glow);
    border-color: rgba(53, 138, 246, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.faq-question i {
    background: var(--g2-teal-blue);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    transition: background var(--gradient-shift), transform var(--gradient-shift);
    font-size: 14px;
}

.faq-item:hover .faq-question i,
.faq-item.active .faq-question i {
    background: var(--gradient);
    transform: scale(1.15) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ==============================
   CTA Section
============================== */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    opacity: 0.15;
    pointer-events: none;
}

.cta-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
}

.cta-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ==============================
   Contact Section
============================== */
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    font-size: 18px;
    box-shadow: var(--glow-blue);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(-4deg);
}

.contact-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.contact-item a:hover {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.contact-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    color: var(--navy);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(53, 138, 246, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==============================
   Footer
============================== */
.footer {
    background: var(--gradient-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.footer .logo-text h5 {
    color: var(--white);
}

.footer .logo-text span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin: 20px 0;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.08);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
}

/* ==============================
   WhatsApp Float
============================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    color: var(--white);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: whatsapp-pulse 2s ease-out infinite;
    pointer-events: none;
}

.whatsapp-pulse-delay {
    animation-delay: 1s;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* ==============================
   Back To Top
============================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--glow-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--gradient-shift), box-shadow var(--gradient-shift);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top.visible:hover {
    transform: translateY(-4px) scale(1.08);
}

.back-to-top:hover {
    background: var(--gradient);
    box-shadow: var(--glow-multi);
}

/* ==============================
   Cookie Consent
============================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 16px 24px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-consent.show {
    transform: translateY(0);
}
.container {
    max-width: 1200px;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content i {
    background: var(--g2-orange-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    transition: background var(--gradient-shift), transform var(--gradient-shift);
}

.cookie-consent:hover .cookie-content i {
    background: var(--gradient);
    transform: scale(1.1) rotate(-8deg);
}

/* ==============================
   Thank You Page
============================== */
.thank-you-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.thank-you-section {
    width: 100%;
    position: relative;
}

.thank-you-ornament {
    position: absolute;
    inset: auto auto -120px -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(53, 138, 246, 0.12) 0%, rgba(53, 138, 246, 0) 70%);
    pointer-events: none;
}

.thank-you-card {
    position: relative;
    z-index: 1;
    padding: 48px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    border-radius: 32px;
}

.thank-you-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    background: var(--gradient);
    box-shadow: var(--glow-multi);
}

.thank-you-card h1 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.thank-you-card p {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 620px;
    margin: 0 auto 28px;
}

.thank-you-points {
    display: grid;
    gap: 14px;
    text-align: left;
    max-width: 560px;
    margin: 0 auto 32px;
}

.thank-you-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
}

.thank-you-points i {
    color: var(--blue);
    font-size: 14px;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-thank-you {
    padding-top: 20px;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 1199px) {
    .scalability-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .scale-card:nth-child(4n)::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 50px 0;
    }

    .hero {
        padding: 120px 0 40px;
        min-height: auto;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .float-card-1,
    .float-card-2,
    .float-card-3,
    .float-card-4 {
        display: none;
    }

    .about-experience {
        right: 10px;
        bottom: -10px;
    }

    .scalability-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .scale-card::after {
        display: none;
    }

    .timeline {
        padding-left: 30px;
    }

    .contact-form {
        padding: 28px;
    }

    .thank-you-card {
        padding: 36px 28px;
    }
}

@media (max-width: 767px) {
    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .scalability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 575px) {
    .logo-text span {
        display: none;
    }

    .category-header h3 {
        font-size: 20px;
    }

    .deliverable-card {
        padding: 22px;
    }

    .express-amount {
        font-size: 44px;
    }

    .express-offer-card,
    .express-includes,
    .express-audience {
        padding: 24px 20px;
    }

    .express-day {
        flex-direction: column;
        gap: 12px;
    }

    .express-day-label {
        align-self: flex-start;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}