@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {

    --primary-color: #2563EB;

    --primary-dark: #1E40AF;

    --primary-light: #3B82F6;

    --accent-color: #06B6D4;

    --secondary-color: #F8FAFC;

    --text-color: #0F172A;

    --text-light: #64748B;

    --white: #ffffff;

    --light-gray: #F1F5F9;

    --gray: #E2E8F0;

    --dark-gray: #94A3B8;

    --success: #10B981;

    --danger: #EF4444;

    --warning: #F59E0B;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);

    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --border-radius: 12px;

    --border-radius-lg: 16px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --spacing-xs: 8px;

    --spacing-sm: 16px;

    --spacing-md: 24px;

    --spacing-lg: 40px;

    --spacing-xl: 64px;

    --spacing-xxl: 96px;

}

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

    line-height: 1.6;

    color: var(--text-color);

    background-color: var(--white);

    overflow-x: hidden;

    width: 100%;

    max-width: 100vw;

}

body.menu-open {

    overflow: hidden;

}

.container {

    max-width: 1280px;

    margin: 0 auto;

    padding: 0 24px;

}

.section-title {

    font-size: 2.5rem;

    font-weight: 700;

    color: var(--text-color);

    margin-bottom: 1rem;

    text-align: center;

    line-height: 1.2;

}

.section-subtitle {

    font-size: 1.1rem;

    color: var(--text-light);

    text-align: center;

    margin-bottom: 3rem;

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

}

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 28px;

    font-size: 1rem;

    font-weight: 600;

    text-decoration: none;

    border-radius: var(--border-radius);

    transition: var(--transition);

    border: none;

    cursor: pointer;

    gap: 8px;

}

.btn-primary {

    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));

    color: var(--white);

    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);

}

.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);

}

.btn-secondary {

    background-color: var(--white);

    color: var(--primary-color);

    border: 2px solid var(--primary-color);

}

.btn-secondary:hover {

    background-color: var(--primary-color);

    color: var(--white);

    transform: translateY(-2px);

}

.btn-outline {

    background-color: transparent;

    color: var(--primary-color);

    border: 2px solid var(--primary-color);

}

.btn-outline:hover {

    background-color: var(--primary-color);

    color: var(--white);

    transform: translateY(-2px);

}

.btn-large {

    padding: 16px 36px;

    font-size: 1.1rem;

}

.navbar {

    background-color: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    box-shadow: var(--shadow-sm);

    font-family: 'Poppins', 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    width: 100vw;

    max-width: 100vw;

    z-index: 9999;

    transition: var(--transition);

    min-height: 70px;

}

#navbar-container:empty::before {

    content: '';

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    height: 70px;

    background-color: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    box-shadow: var(--shadow-sm);

    z-index: 9999;

}

.navbar .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0.5rem 16px;

    min-height: 70px;

    width: 100%;

    max-width: 100%;

}

.navbar-brand a {

    display: flex;

    align-items: center;

    font-size: 1.5rem;

    font-weight: 700;

    color: var(--primary-color);

    text-decoration: none;

    gap: 0.5rem;

    white-space: nowrap;

    flex-shrink: 0;

}

.navbar-brand .brand-logo {

    width: 44px;

    height: 44px;

    object-fit: contain;

    flex-shrink: 0;

}

.navbar-brand i {

    font-size: 2rem;

}

.navbar-menu {

    display: flex;

    flex-shrink: 0;

}

.navbar-menu ul {

    display: flex;

    align-items: center;

    margin: 0;

    padding: 0;

    list-style: none;

    gap: 2rem;

}

.navbar-menu a {

    color: var(--text-color);

    text-decoration: none;

    font-weight: 500;

    transition: var(--transition);

    position: relative;

    padding: 0.5rem 0;

}

.navbar-menu a:hover,

.navbar-menu a.active {

    color: var(--primary-color);

}

.navbar-menu a::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 2px;

    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));

    transition: var(--transition);

}

.navbar-menu a:hover::after,

.navbar-menu a.active::after {

    width: 100%;

}

.navbar-toggle {

    display: none;

    font-size: 1.5rem;

    color: var(--text-color);

    cursor: pointer;

    background: none;

    border: none;

    padding: 0.5rem;

    position: relative;

    z-index: 10000;

}

/* Dropdown Menu Styles */

.nav-dropdown {

    position: relative;

    height: 100%;

    display: flex;

    align-items: center;

}

.dropdown-toggle {

    display: inline-flex;

    align-items: center;

    gap: 0.45rem;

    height: 100%;

}

.dropdown-toggle i {

    font-size: 0.8rem;

    transition: var(--transition);

}

.nav-dropdown:hover .dropdown-toggle i {

    transform: rotate(180deg);

}

.dropdown-menu {

    position: absolute;

    top: calc(100% + 5px); /* Slightly lower to accommodate arrow */

    left: 50%;

    transform: translateX(-50%) translateY(10px);

    min-width: 160px;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0.12rem;

    padding: 0.32rem;

    background: rgba(255, 255, 255, 0.98); /* Glass-like opacity */

    backdrop-filter: blur(12px);

    border: 1px solid rgba(226, 232, 240, 0.8);

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    opacity: 0;

    visibility: hidden;

    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    z-index: 10001;

}

/* Dropdown Arrow */

.dropdown-menu::before {

    content: '';

    position: absolute;

    top: -6px;

    left: 50%;

    transform: translateX(-50%) rotate(45deg);

    width: 12px;

    height: 12px;

    background: var(--white);

    border-top: 1px solid rgba(226, 232, 240, 0.8);

    border-left: 1px solid rgba(226, 232, 240, 0.8);

    z-index: -1;

}

.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);

}

.dropdown-menu li {

    width: 100%;

    list-style: none; /* Ensure no list bullets */

}

.dropdown-menu a {

    display: flex;

    align-items: center;

    gap: 0.35rem;

    width: 100%;

    padding: 0.56rem 0.64rem;

    border-radius: 4px;

    color: var(--text-color);

    font-weight: 500;

    transition: all 0.2s ease;

    font-size: 0.88rem;

    line-height: 1.2;

    min-height: 38px;

    box-sizing: border-box;

}

.navbar-menu ul.dropdown-menu {

    gap: 0.06rem;

    align-items: stretch;

    justify-content: flex-start;

}

.dropdown-menu a i {

    font-size: 0.9rem;

    color: var(--text-light);

    width: 14px;

    text-align: center;

    transition: color 0.2s ease;

}

.dropdown-menu a:hover {

    background-color: var(--light-gray); /* Use existing light-gray variable */

    color: var(--primary-color);

    transform: none;

}

.dropdown-menu a:hover i {

    color: var(--primary-color);

}

/* Remove bottom underline effect from dropdown links */

.dropdown-menu a::after {

    display: none;

}

.hero {

    background:

        radial-gradient(circle at 18% 48%, rgba(56, 189, 248, 0.12), transparent 42%),

        radial-gradient(circle at 82% 26%, rgba(139, 92, 246, 0.12), transparent 42%),

        linear-gradient(135deg, #0b1020 0%, #0f1b3e 55%, #172554 100%);

    color: var(--white);

    padding: 180px 0 100px;

    position: relative;

    overflow: hidden;

}

.hero::before {

    content: '';

    position: absolute;

    inset: 0;

    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');

    opacity: 0.85;

    z-index: 0;

}

.hero::after {

    content: '';

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.075), transparent 58%),

        radial-gradient(circle at 50% 110%, rgba(0, 0, 0, 0.42), transparent 62%);

    z-index: 0;

    pointer-events: none;

}

.hero-split-heading {

    position: relative;

    z-index: 1;

    text-align: center;

    margin-bottom: 3.5rem;

}

.hero-split-heading h1 {

    font-size: 3.5rem;

    font-weight: 900;

    line-height: 1.15;

    margin-bottom: 1rem;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 2rem;

    flex-wrap: wrap;

}

.hero-split-heading h1 span {

    display: inline-block;

    padding: 0.5rem 1.5rem;

    border-radius: 20px;

    border: 2px solid rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(12px);

    text-shadow: 0 2px 4px rgba(0,0,0,0.2);

    transform: perspective(500px) rotateX(5deg);

    transition: transform 0.3s ease;

}

.hero-split-heading h1 span:hover {

    transform: perspective(500px) rotateX(0deg) scale(1.05);

}

.hero-split-heading h1 span:first-child {

    background: linear-gradient(135deg, #3730a3 0%, #4f46e5 55%, #7c3aed 100%);

    box-shadow: 0 18px 46px -26px rgba(99, 102, 241, 0.55),

                inset 0 0 0 rgba(255, 255, 255, 0);

}

.hero-split-heading h1 span:last-child {

    background: linear-gradient(135deg, #0b2a3f 0%, #0b7285 55%, #0d9488 100%);

    box-shadow: 0 18px 46px -26px rgba(14, 165, 233, 0.45),

                inset 0 0 0 rgba(255, 255, 255, 0);

}

.hero-split-heading p {

    font-size: 1.25rem;

    color: rgba(226, 232, 240, 0.9);

    font-weight: 500;

    letter-spacing: 0.5px;

    text-shadow: 0 2px 4px rgba(0,0,0,0.3);

}

.hero-split {

    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0; /* No gap, handled by clip-path overlap visual */

    filter: drop-shadow(0 18px 44px rgba(0,0,0,0.55));

    perspective: 1000px;

    padding: 0 10px; /* Space for drop-shadow */

}

/* Replaced the ::after split line with a gap-based approach or cleaner visual separation */

.hero-split::after {

    content: '+';

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    font-size: 5rem;

    font-weight: 300;

    color: rgba(255, 255, 255, 0.42);

    z-index: 2;

    text-shadow: 0 10px 40px rgba(0,0,0,0.35);

    pointer-events: none;

    display: flex;

    align-items: center;

    justify-content: center;

    width: auto;

    height: auto;

    border-radius: 0;

    background: transparent;

    backdrop-filter: none;

    border: none;

}

.hero-split-panel {

    position: relative;

    padding: 3rem 2.5rem;

    backdrop-filter: blur(18px);

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    z-index: 1;

}

/* Left Panel: Payment (Purple/Pink Dopamine) */

.hero-split-pay {

    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);

    padding-right: 5rem;

    background: linear-gradient(120deg, rgba(15, 23, 42, 0.78), rgba(79, 70, 229, 0.52), rgba(109, 40, 217, 0.46));

    border-top: 1px solid rgba(255, 255, 255, 0.22);

    border-left: 1px solid rgba(255, 255, 255, 0.22);

    border-bottom: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 24px 0 0 24px;

    margin-right: -2%; /* Overlap slightly to close the gap visually if needed, but clip-path handles it */

}

/* Right Panel: Review (Cyan/Green Dopamine) */

.hero-split-review {

    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);

    padding-left: 5rem;

    background: linear-gradient(120deg, rgba(15, 23, 42, 0.78), rgba(14, 116, 144, 0.48), rgba(15, 118, 110, 0.46));

    border-top: 1px solid rgba(255, 255, 255, 0.22);

    border-right: 1px solid rgba(255, 255, 255, 0.22);

    border-bottom: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 0 24px 24px 0;

    margin-left: -2%;

}

.hero-split-panel:hover {

    z-index: 10;

    transform: scale(1.012) translateY(-4px);

    filter: brightness(1.04);

}

.hero-split-panel h2 {

    font-size: 2.25rem;

    font-weight: 900;

    margin-bottom: 1rem;

    text-shadow: 0 2px 4px rgba(0,0,0,0.2);

    letter-spacing: -0.5px;

}

.hero-split-panel p {

    font-size: 1.05rem;

    line-height: 1.7;

    opacity: 1;

    margin-bottom: 1.5rem;

    color: rgba(255, 255, 255, 0.95);

    font-weight: 500;

}

.service-buttons {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1.25rem;

    margin-top: 2.5rem;

}

.service-btn {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 0.85rem 1rem;

    background: rgba(255, 255, 255, 0.12);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 12px; /* More standard radius */

    text-decoration: none;

    color: #fff;

    font-weight: 600;

    font-size: 1.05rem;

    transition: all 0.2s ease;

    box-shadow: none; /* Removed shadow */

    position: relative;

    overflow: hidden;

}

.service-btn::before {

    display: none; /* Remove shine effect */

}

.service-btn:hover {

    background: rgba(255, 255, 255, 0.18); /* Subtle highlight */

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Subtle shadow */

    border-color: rgba(255, 255, 255, 0.32);

    color: #fff;

}

.service-btn img,

.service-btn i {

    width: 36px;

    height: 36px;

    padding: 6px;

    background: #fff;

    border-radius: 8px;

    object-fit: contain;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.2s ease;

    box-shadow: none;

}

.service-btn i {

    font-size: 1.1rem;

    width: 36px;

    text-align: center;

    color: #4f46e5;

}

.service-btn:hover img,

.service-btn:hover i {

    background: #fff;

    transform: none;

    box-shadow: none;

}

.service-btn:hover i {

    color: var(--primary-color);

}

.service-btn span {

    text-shadow: none;

    z-index: 2;

}

/* Mobile responsive */

@media (max-width: 640px) {

    .service-buttons {

        grid-template-columns: 1fr;

        gap: 0.8rem;

        margin-top: 1.5rem;

    }

    

    .service-btn {

        padding: 0.8rem 1rem;

        font-size: 1rem;

    }

}

.hero-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    flex-wrap: wrap;

    position: relative;

    z-index: 1;

}

.hero-text {

    flex: 1;

    min-width: 300px;

}

.hero-text h1 {

    font-size: 3.5rem;

    font-weight: 800;

    margin-bottom: 1rem;

    line-height: 1.1;

}

.hero-text h2 {

    font-size: 1.25rem;

    margin-bottom: 2rem;

    opacity: 0.95;

    max-width: 600px;

}

.service-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 0.75rem;

    margin-top: 1.5rem;

}

.service-tag {

    display: inline-block;

    padding: 10px 20px;

    background-color: rgba(255, 255, 255, 0.15);

    color: var(--white);

    border-radius: 25px;

    font-size: 0.9rem;

    font-weight: 500;

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    transition: var(--transition);

}

.service-tag:hover {

    background-color: rgba(255, 255, 255, 0.25);

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}

.hero-image {

    flex: 1;

    display: flex;

    justify-content: center;

    align-items: center;

    min-width: 300px;

}

.hero-image img {

    max-width: 100%;

    height: auto;

    border-radius: var(--border-radius-lg);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    animation: float 6s ease-in-out infinite;

}

@keyframes float {

    0%, 100% { transform: translateY(0px); }

    50% { transform: translateY(-20px); }

}

.payment-methods {

    padding: 80px 0;

    background-color: var(--white);

}

.payment-grid {

    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 2rem;

    margin-top: 3rem;

}

.payment-card {

    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);

    padding: 2rem;

    border-radius: var(--border-radius-lg);

    box-shadow: var(--shadow);

    transition: var(--transition);

    text-align: center;

    border: 2px solid transparent;

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

}

.payment-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 4px;

    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));

    transform: scaleX(0);

    transition: var(--transition);

}

.payment-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-xl);

    border-color: var(--primary-color);

}

.payment-card:hover::before {

    transform: scaleX(1);

}

.payment-icon {

    width: 140px;

    height: 140px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin: 0 auto 1.5rem;

    background: var(--primary-color);

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);

    transition: var(--transition);

}

.payment-card:hover .payment-icon {

    transform: scale(1.1) rotate(5deg);

    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);

}

.payment-logo {

    width: 70px;

    height: 70px;

    object-fit: contain;

}

.payment-card h3 {

    font-size: 1.5rem;

    font-weight: 600;

    margin-bottom: 1rem;

    color: var(--text-color);

    white-space: nowrap;

}

.payment-card p {

    color: var(--text-light);

    line-height: 1.6;

    margin-bottom: 1.5rem;

}

.payment-card .btn {

    margin-top: auto;

    align-self: center;

}

.paypal-card .payment-icon {

    background: #E6F3FF;

}

.cash-card .payment-icon {

    background: #B3F2E6;

}

.zelle-card .payment-icon {

    background: #E6D9F2;

}

.venmo-card .payment-icon {

    background: #D1E8FF;

}

.visa-card .payment-icon {

    background: #EAF2FF;

}

.payment-logo.visa-logo {

    width: auto;

    height: auto;

    font-size: 72px;

    line-height: 1;

    color: #1A1F71;

}

.service-scope {

    padding: 100px 0;

    background: #f8fafc;

    position: relative;

    overflow: hidden;

}

.service-scope::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-image: 

        linear-gradient(rgba(226, 232, 240, 0.4) 1px, transparent 1px),

        linear-gradient(90deg, rgba(226, 232, 240, 0.4) 1px, transparent 1px);

    background-size: 40px 40px;

    z-index: 0;

    opacity: 0.5;

}

.service-scope-columns {

    display: grid;

    grid-template-columns: 1.45fr 0.55fr;

    gap: 2rem;

    margin-top: 3rem;

    align-items: stretch;

    position: relative;

    z-index: 1;

}

.service-scope-left,

.service-scope-right {

    display: flex;

}

.service-scope-panel {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 24px;
    box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.03);
    padding: 2.5rem 2rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-scope-left .service-scope-panel {
    background: #ffffff;
    border-color: rgba(219, 234, 254, 0.5);
}

.service-scope-right .service-scope-panel {
    background: #ffffff;
    border-color: rgba(207, 250, 254, 0.5);
}

.service-scope-panel:hover {
    box-shadow: 0 12px 32px -4px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.service-scope-left .service-scope-panel:hover {
    border-color: rgba(191, 219, 254, 0.8);
}

.service-scope-right .service-scope-panel:hover {
    border-color: rgba(165, 243, 252, 0.8);
}

.service-scope-panel::before {
    display: none;
}

.service-scope-right .service-scope-panel::before {
    display: none;
}

.service-scope-panel-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.service-scope-panel-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-scope-left .service-scope-panel-title {
    background: none;
    -webkit-text-fill-color: initial;
    color: #0f172a;
}

.service-scope-panel-sub {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.5;
    max-width: 90%;
}

.service-scope-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-content: start;
    flex: 1;
}

.service-scope-grid--reviews {
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.service-item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    --svc-accent: #3b82f6;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    padding: 1.25rem;
    height: auto;
    position: relative;
    overflow: hidden;
}

.service-item--review {
    background: #f8fafc;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.05), 0 4px 8px -4px rgba(0, 0, 0, 0.03);
    border-color: #e2e8f0;
    background: #ffffff;
}

.service-item::before {
    display: none;
}

.service-item:hover::before {
    display: none;
}

.service-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--svc-accent);
    font-size: 1.25rem;
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-item-icon {
    background: var(--svc-accent);
    color: #ffffff;
    box-shadow: 0 6px 12px color-mix(in srgb, var(--svc-accent) 30%, transparent);
    transform: scale(1.05);
}

.service-item-icon::after {
    display: none;
}

.service-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0;
}

.service-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    background: none;
    -webkit-text-fill-color: initial;
    transition: color 0.2s ease;
    white-space: normal;
}

.service-item:hover .service-item-title {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--svc-accent);
}

.service-item-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-item-desc {
    margin-top: 0.75rem;
    max-height: 100px;
    opacity: 1;
}

.service-item--recharge { --svc-accent: #2563eb; }

.service-item--payment { --svc-accent: #0284c7; }

.service-item--transfer { --svc-accent: #0891b2; }

.service-item--salary { --svc-accent: #0d9488; }

.service-item--shopping { --svc-accent: #059669; }

.service-item--game { --svc-accent: #475569; }

.service-item--game-delivery { --svc-accent: #334155; }

.service-item--trade { --svc-accent: #4f46e5; }

.service-item--subscription { --svc-accent: #6366f1; }

.service-item--review-shein { --svc-accent: #0ea5e9; }

.service-item--review-amazon { --svc-accent: #2563eb; }

.service-item--review-temu { --svc-accent: #0284c7; }

.service-item--review-ebay { --svc-accent: #4f46e5; }

.service-image-container {

    width: 100%;

    height: 65%;

    overflow: hidden;

    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));

    display: flex;

    align-items: center;

    justify-content: center;

}

.service-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;

}

/* Table Styles */

.comparison-table-container {

    overflow-x: auto;

    margin: 3rem 0;

    box-shadow: var(--shadow);

    border-radius: var(--border-radius);

}

.comparison-table {

    width: 100%;

    border-collapse: collapse;

    background-color: var(--white);

    text-align: left;

    min-width: 600px;

}

.comparison-table th,

.comparison-table td {

    padding: 1rem 1.5rem;

    border-bottom: 1px solid var(--gray);

    white-space: nowrap;

}

.comparison-table th {

    background-color: var(--light-gray);

    font-weight: 600;

    color: var(--text-color);

}

.comparison-table tr:hover {

    background-color: var(--secondary-color);

}

.comparison-table td.highlight-col {

    background-color: #EFF6FF;

    font-weight: 600;

    color: var(--primary-color);

}

.comparison-table tr:hover td.highlight-col {

    background-color: #DBEAFE;

}

.comparison-table i.fa-check {

    color: var(--success);

}

.comparison-table i.fa-times {

    color: var(--danger);

}

.comparison-table i.fa-minus {

    color: var(--text-light);

}

/* Supported Platforms Grid */

.platforms-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));

    gap: 1.5rem;

    margin-top: 2rem;

}

.platform-item {

    background-color: var(--white);

    border: 1px solid var(--gray);

    border-radius: var(--border-radius);

    padding: 1.5rem 1rem;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

    text-align: center;

}

.platform-item:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

    border-color: var(--primary-color);

}

.platform-icon {

    font-size: 2rem;

    color: var(--primary-color);

    margin-bottom: 0.8rem;

}

.platform-name {

    font-size: 0.95rem;

    font-weight: 500;

    color: var(--text-color);

}

.service-item:hover .service-image {

    transform: scale(1.1);

}

.service-content {

    padding: 1rem;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.service-content h3 {

    font-size: 1.5rem;

    font-weight: 800;

    margin-bottom: 0.25rem;

    color: var(--primary-color);

    text-align: center;

    padding: 0.25rem 0;

    position: relative;

}

.service-content h3::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 40px;

    height: 3px;

    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));

    border-radius: 2px;

}

.service-content p {

    font-size: 0.95rem;

    color: var(--text-light);

    margin: 0;

    line-height: 1.5;

}

.payment-automation {

    padding: 100px 0;

    background-color: var(--white);

}

.tabs-container {

    margin-top: 3rem;

}

.tabs {

    display: flex;

    justify-content: center;

    gap: 1rem;

    margin-bottom: 3rem;

    flex-wrap: wrap;

}

.tab-btn {

    background: var(--light-gray);

    border: none;

    padding: 14px 28px;

    font-size: 1rem;

    font-weight: 600;

    color: var(--text-light);

    cursor: pointer;

    transition: var(--transition);

    border-radius: 30px;

    display: flex;

    align-items: center;

    gap: 0.5rem;

}

.tab-btn:hover {

    background: var(--gray);

    color: var(--text-color);

}

.tab-btn.active {

    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));

    color: var(--white);

    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);

}

.tab-content {

    position: relative;

}

.tab-panel {

    display: none;

    animation: fadeIn 0.4s ease;

}

.tab-panel.active {

    display: block;

}

@keyframes fadeIn {

    from { opacity: 0; transform: translateY(20px); }

    to { opacity: 1; transform: translateY(0); }

}

.tab-inner {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    align-items: center;

}

.tab-text h3 {

    font-size: 2rem;

    font-weight: 700;

    margin-bottom: 1.5rem;

    color: var(--text-color);

}

.tab-text p {

    font-size: 1.1rem;

    line-height: 1.8;

    color: var(--text-light);

    margin-bottom: 2rem;

}

.tab-text ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.tab-text li {

    padding: 1rem 0;

    padding-left: 2.5rem;

    position: relative;

    color: var(--text-color);

    line-height: 1.6;

    font-weight: 500;

}

.tab-text li i {

    position: absolute;

    left: 0;

    top: 1.2rem;

    color: var(--success);

    font-size: 1.1rem;

}

.tab-image {

    display: flex;

    justify-content: center;

    align-items: center;

}

.interface-preview {

    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);

    border-radius: var(--border-radius-lg);

    box-shadow: var(--shadow-xl);

    padding: 2rem;

    width: 100%;

    max-width: 500px;

    transition: var(--transition);

    border: 2px solid var(--gray);

}

.interface-preview:hover {

    transform: translateY(-5px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);

}

.tab-illustration {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    border-radius: 12px;

    aspect-ratio: 16 / 9;

}

.tab-illustration-img {

    width: 100%;

    height: 100%;

    display: block;

    background: var(--white);

    object-fit: cover;

    object-position: 50% 35%;

}

.tab-illustration-img.watermark-safe {

    object-position: 50% 30%;

}

.tab-illustration-fallback {

    width: 100%;

    min-height: 320px;

    border-radius: 12px;

    border: 2px dashed rgba(37, 99, 235, 0.35);

    background: rgba(15, 23, 42, 0.02);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 24px;

    text-align: center;

}

.tab-illustration-fallback i {

    font-size: 44px;

    color: var(--primary-color);

    opacity: 0.85;

}

.tab-illustration-fallback-title {

    font-size: 1.1rem;

    font-weight: 800;

    color: var(--text-color);

}

.tab-illustration-fallback-sub {

    font-size: 0.95rem;

    font-weight: 600;

    color: var(--text-light);

}

.interface-header {

    display: flex;

    justify-content: space-between;

    margin-bottom: 1.5rem;

    padding-bottom: 1rem;

    border-bottom: 2px solid var(--gray);

}

.account-info {

    display: flex;

    flex-direction: column;

    gap: 0.25rem;

}

.account-label {

    font-size: 0.85rem;

    color: var(--text-light);

    font-weight: 500;

}

.account-value {

    font-size: 1rem;

    font-weight: 600;

    color: var(--text-color);

}

.transaction-status {

    display: flex;

    justify-content: flex-start;

    align-items: center;

    gap: 0.75rem;

    margin-bottom: 1.5rem;

}

.status-label {

    font-size: 0.95rem;

    color: var(--text-light);

    font-weight: 500;

}

.status-value {

    font-size: 0.95rem;

    font-weight: 700;

    padding: 6px 16px;

    border-radius: 20px;

}

.status-value.success {

    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));

    color: var(--success);

    border: 1px solid rgba(16, 185, 129, 0.2);

}

.payment-details {

    display: flex;

    flex-direction: column;

    gap: 1rem;

    margin-bottom: 1.5rem;

    padding: 1.25rem;

    background: var(--light-gray);

    border-radius: var(--border-radius);

}

.detail-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.detail-label {

    font-size: 0.95rem;

    color: var(--text-light);

    font-weight: 500;

}

.detail-value {

    font-size: 0.95rem;

    font-weight: 700;

    color: var(--text-color);

}

.transaction-history {

    max-height: 200px;

    overflow-y: auto;

}

.history-table {

    width: 100%;

    border-collapse: collapse;

    font-size: 0.85rem;

}

.history-table th,

.history-table td {

    padding: 0.75rem 0.5rem;

    text-align: left;

    border-bottom: 1px solid var(--gray);

}

.history-table th {

    font-weight: 700;

    color: var(--text-light);

    background: var(--light-gray);

    text-transform: uppercase;

    font-size: 0.75rem;

    letter-spacing: 0.5px;

}

.history-table td {

    color: var(--text-color);

    font-weight: 500;

}

.currency {

    font-size: 0.75rem;

    color: var(--text-light);

    padding: 3px 8px;

    border-radius: 6px;

    background: var(--light-gray);

    font-weight: 600;

}

.contact {

    padding: 80px 0;

    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);

}

.contact-content {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 2rem;

    max-width: 1100px;

    margin: 0 auto;

    align-items: start;

}

.contact.contact-page .contact-content {

    grid-template-columns: 1fr 2.5fr;

}

.contact-item {

    background: var(--white);

    padding: 2.5rem;

    border-radius: var(--border-radius-lg);

    box-shadow: var(--shadow);

    transition: var(--transition);

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    border: 2px solid transparent;

}

.contact-item:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-xl);

    border-color: var(--primary-color);

}

.contact-icon {

    margin-bottom: 1.5rem;

}

.contact-icon i {

    font-size: 3.5rem;

    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}

.contact-text h3 {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 1rem;

    color: var(--text-color);

}

.qr-code-container {

    margin-top: 1rem;

}

.qr-code-img {

    width: 160px;

    height: 160px;

    display: block;

    margin: 0 auto;

    border-radius: var(--border-radius);

    object-fit: contain;

    background: var(--white);

    border: 2px solid var(--gray);

    box-shadow: var(--shadow);

}

.qr-code-placeholder {

    width: 160px;

    height: 160px;

    background: linear-gradient(135deg, var(--light-gray), var(--gray));

    border-radius: var(--border-radius);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    margin: 0 auto;

    border: 2px dashed var(--primary-color);

    transition: var(--transition);

}

.qr-code-placeholder:hover {

    border-color: var(--accent-color);

    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));

}

.qr-code-placeholder:hover i,

.qr-code-placeholder:hover p {

    color: var(--white);

}

.qr-code-placeholder i {

    font-size: 4rem;

    color: var(--primary-color);

    opacity: 0.7;

    margin-bottom: 0;

    transition: var(--transition);

}

.qr-code-placeholder p {

    font-size: 0.9rem;

    color: var(--text-light);

    margin: 0;

    font-weight: 500;

    transition: var(--transition);

}

.contact-text p {

    color: var(--text-color);

    font-size: 1.1rem;

    font-weight: 600;

    margin: 0;

}

.pagination {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.5rem;

    padding: 1.25rem 0 0;

}

.pagination[hidden] {

    display: none;

}

.pagination-btn {

    appearance: none;

    border: 1px solid rgba(15, 23, 42, 0.12);

    background: rgba(255, 255, 255, 0.8);

    color: var(--text-color);

    border-radius: 10px;

    padding: 0.5rem 0.75rem;

    min-width: 42px;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);

}

.pagination-btn:hover {

    border-color: rgba(37, 99, 235, 0.35);

    background: rgba(255, 255, 255, 0.95);

    transform: translateY(-1px);

}

.pagination-btn[disabled] {

    opacity: 0.45;

    cursor: not-allowed;

    transform: none;

}

.pagination-btn.active {

    background: rgba(37, 99, 235, 0.12);

    border-color: rgba(37, 99, 235, 0.35);

    color: rgba(37, 99, 235, 0.95);

}

.contact-form {

    background: var(--white);

    padding: 2.5rem;

    border-radius: var(--border-radius-lg);

    box-shadow: var(--shadow);

}

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 1.5rem;

}

.form-group {

    margin-bottom: 1.5rem;

    text-align: left;

}

.form-group label {

    display: block;

    font-size: 0.95rem;

    font-weight: 600;

    color: var(--text-color);

    margin-bottom: 0.5rem;

}

.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 0.8rem 1rem;

    font-size: 1rem;

    font-family: inherit;

    color: var(--text-color);

    background-color: var(--light-gray);

    border: 1px solid var(--gray);

    border-radius: var(--border-radius);

    transition: var(--transition);

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    outline: none;

    border-color: var(--primary-color);

    background-color: var(--white);

    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);

}

.form-group textarea {

    resize: vertical;

    min-height: 120px;

}

.contact-form .btn {

    width: 100%;

    margin-top: 1rem;

}

.footer {

    background: linear-gradient(135deg, var(--text-color) 0%, #1E293B 100%);

    color: var(--white);

    font-family: 'Poppins', 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

    padding: 60px 0 30px;

}

.footer-content {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 3rem;

    margin-bottom: 3rem;

}

.footer-brand {

    display: flex;

    align-items: center;

    font-size: 1.3rem;

    font-weight: 700;

    color: var(--white);

    margin-bottom: 1rem;

}

.footer-brand .brand-logo {

    width: 44px;

    height: 44px;

    object-fit: contain;

    margin-right: 0.5rem;

    flex-shrink: 0;

}

.footer-brand i {

    font-size: 2rem;

    margin-right: 0.5rem;

    color: var(--primary-color);

}

.footer-description {

    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 1.5rem;

    line-height: 1.65;

    font-size: 0.95rem;

}

.footer-social {

    display: flex;

    gap: 1rem;

}

.footer-social a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    background: rgba(255, 255, 255, 0.1);

    color: var(--white);

    border-radius: 50%;

    transition: var(--transition);

    text-decoration: none;

}

.footer-social a:hover {

    background: var(--primary-color);

    transform: translateY(-3px);

}

.footer-section h3 {

    font-size: 1.05rem;

    font-weight: 600;

    margin-bottom: 1.5rem;

    color: var(--white);

}

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-links li {

    margin-bottom: 0.75rem;

}

.footer-links a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: var(--transition);

    display: block;

    padding: 0.25rem 0;

    font-size: 0.90rem;

}

.footer-links a:hover {

    color: var(--primary-color);

    padding-left: 5px;

}

.footer-contact ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-contact li {

    margin-bottom: 1rem;

    display: flex;

    align-items: center;

    gap: 0.75rem;

    color: rgba(255, 255, 255, 0.8);

}

.footer-contact i {

    color: var(--primary-color);

    font-size: 1.1rem;

}

.footer-bottom {

    text-align: center;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.9rem;

}

.footer-policies {

    display: flex;

    justify-content: center;

    gap: 2rem;

    margin-top: 1rem;

}

.footer-policies a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: var(--transition);

}

.footer-policies a:hover {

    color: var(--primary-color);

}

.contact-float {

    position: fixed;

    right: 18px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 10px;

    padding: 10px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(10px);

    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);

    z-index: 10002;

}

.contact-float-item {

    width: 76px;

    height: 76px;

    border: none;

    border-radius: 14px;

    background: transparent;

    color: var(--text-color);

    cursor: pointer;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

    transition: var(--transition);

    padding: 10px 8px;

}

.contact-float-item i {

    font-size: 28px;

    color: var(--primary-color);

}

.contact-float-item span {

    font-size: 0.85rem;

    font-weight: 600;

    color: var(--text-color);

    line-height: 1;

}

.contact-float-item:hover {

    background: rgba(37, 99, 235, 0.08);

    transform: translateY(-1px);

}

.contact-float-item.active {

    background: rgba(37, 99, 235, 0.12);

}

.contact-float-panel {

    position: fixed;

    right: 110px;

    top: 50%;

    transform: translateY(-50%);

    width: 260px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(10px);

    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);

    z-index: 10003;

    overflow: hidden;

}

.contact-float-panel-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 14px;

    border-bottom: 1px solid rgba(15, 23, 42, 0.08);

}

.contact-float-panel-title {

    font-size: 1rem;

    font-weight: 700;

    color: var(--text-color);

}

.contact-float-panel-close {

    width: 36px;

    height: 36px;

    border: none;

    border-radius: 10px;

    background: rgba(15, 23, 42, 0.06);

    color: var(--text-color);

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

}

.contact-float-panel-close:hover {

    background: rgba(15, 23, 42, 0.1);

}

.contact-float-panel-body {

    padding: 14px;

}

.contact-float-qr {

    width: 100%;

    border-radius: 14px;

    background: rgba(15, 23, 42, 0.03);

    padding: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.contact-float-qr img {

    width: 200px;

    height: 200px;

    object-fit: contain;

    border-radius: 12px;

    background: var(--white);

}

.contact-float-qr-fallback {

    width: 200px;

    height: 200px;

    border-radius: 12px;

    border: 2px dashed rgba(37, 99, 235, 0.35);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 6px;

    color: var(--text-light);

    padding: 12px;

    text-align: center;

}

.contact-float-qr-fallback-icon i {

    font-size: 44px;

    color: var(--primary-color);

    opacity: 0.8;

}

.contact-float-qr-fallback-text {

    font-weight: 700;

    color: var(--text-color);

}

.contact-float-qr-fallback-sub {

    font-size: 0.85rem;

}

.contact-float-email {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.contact-float-email-text {

    font-size: 1rem;

    font-weight: 700;

    color: var(--text-color);

    padding: 12px 12px;

    border-radius: 12px;

    background: rgba(15, 23, 42, 0.04);

    word-break: break-word;

}

.contact-float-email-link {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 14px;

    border-radius: 12px;

    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));

    color: var(--white);

    font-weight: 700;

    text-decoration: none;

    transition: var(--transition);

}

.contact-float-email-link:hover {

    transform: translateY(-1px);

    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);

}

.back-to-top {

    display: none;

    position: fixed;

    bottom: 30px;

    right: 30px;

    width: 50px;

    height: 50px;

    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));

    color: var(--white);

    border: none;

    border-radius: 50%;

    font-size: 1.25rem;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);

    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);

    z-index: 999;

    display: flex;

    align-items: center;

    justify-content: center;

}

.back-to-top:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);

}

.back-to-top.visible {

    opacity: 1;

    visibility: visible;

}

/* Case Studies Section - Dopamine Style */

.case-studies {

    padding: 100px 0;

    background: linear-gradient(180deg, #f0fdfa 0%, #f3e8ff 100%);

    position: relative;

    overflow: hidden;

}

.case-studies::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 100%;

    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),

                radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);

    pointer-events: none;

}

.case-studies-header {

    display: flex;

    flex-direction: column;

    gap: 0.4rem;

}

.section-kicker {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    font-size: 0.85rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.16em;

    background: linear-gradient(90deg, #8b5cf6, #06b6d4);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}

.case-metrics {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 1.5rem;

    margin-top: 2.5rem;

}

.case-metric {

    padding: 1.5rem;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.6);

    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);

    display: flex;

    align-items: center;

    gap: 1.2rem;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;

    overflow: hidden;

}

.case-metric:hover {

    transform: translateY(-5px) scale(1.02);

    box-shadow: 0 20px 40px -5px rgba(139, 92, 246, 0.15);

    border-color: rgba(139, 92, 246, 0.3);

    background: #fff;

}

.metric-icon-wrapper {

    width: 56px;

    height: 56px;

    border-radius: 16px;

    background: linear-gradient(135deg, #e0e7ff 0%, #fae8ff 100%);

    color: #7c3aed;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    flex-shrink: 0;

    transition: all 0.3s ease;

    box-shadow: inset 0 2px 4px rgba(255,255,255,0.8);

}

.case-metric:hover .metric-icon-wrapper {

    background: linear-gradient(135deg, #8b5cf6, #d946ef);

    color: var(--white);

    transform: rotate(-10deg) scale(1.1);

    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);

}

.metric-content {

    display: flex;

    flex-direction: column;

    gap: 0.3rem;

}

.case-metric .metric-value {

    font-size: 1.15rem;

    font-weight: 800;

    color: var(--text-color);

    line-height: 1.2;

}

.case-metric .metric-label {

    font-size: 0.9rem;

    color: var(--text-light);

    line-height: 1.4;

    font-weight: 500;

}

@media (max-width: 768px) {

    .case-metrics {

        grid-template-columns: 1fr;

        gap: 1rem;

    }

}

.carousel-container {

    position: relative;

    max-width: 100%;

}

.carousel-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: white;

    border: 1px solid #e2e8f0;

    box-shadow: 0 4px 12px rgba(0,0,0,0.1);

    color: #1e293b;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 10;

    transition: all 0.2s ease;

}

.carousel-btn:hover {

    background: #f8fafc;

    box-shadow: 0 6px 16px rgba(0,0,0,0.15);

    color: #2563eb;

}

.carousel-btn.prev { left: -24px; }

.carousel-btn.next { right: -24px; }

.carousel-dots {

    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 1rem;

}

.carousel-dot {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;

    cursor: pointer;

    transition: all 0.3s ease;

}

.carousel-dot.active {

    background: #2563eb;

    width: 24px;

    border-radius: 4px;

}

@media (max-width: 768px) {

    .carousel-btn { display: none; }

}

.case-grid {

    display: flex;

    gap: 1.5rem;

    margin-top: 3rem;

    overflow-x: auto;

    padding: 1rem 1rem 2rem 1rem; /* Standard padding */

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    /* Removed perspective and heavy margins */

}

.case-grid::-webkit-scrollbar {

    display: none;

}

.case-item {

    flex: 0 0 320px;

    background: transparent;

    border-radius: 30px;

    padding: 0;

    box-shadow: none;

    border: none;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    position: relative;

    height: 480px;

    scroll-snap-align: start; /* Snap to start */

    /* Removed 3D transform styles */

    transition: transform 0.3s ease;

}

.case-item:hover {

    transform: translateY(-5px); /* Simple hover effect */

}

.case-item.active {

    /* Removed 3D active state */

}

.case-profile {

    height: 260px; /* Increased height to fit content */

    background: linear-gradient(135deg, #a5b4fc, #6366f1);

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-end; /* Push quote to bottom */

    padding: 24px 24px 70px 24px; /* Extra bottom padding to account for the curve */

    position: relative;

    z-index: 1;

    border: none;

    color: white;

}

.case-profile::before {

    display: none;

}

.case-item--recharge .case-profile { background: linear-gradient(135deg, #60a5fa, #2563eb); }

.case-item--payment .case-profile { background: linear-gradient(135deg, #22d3ee, #0891b2); }

.case-item--transfer .case-profile { background: linear-gradient(135deg, #fcd34d, #d97706); }

.case-item--salary .case-profile { background: linear-gradient(135deg, #6ee7b7, #059669); }

.case-item--shopping .case-profile { background: linear-gradient(135deg, #f472b6, #db2777); }

.case-item--game .case-profile { background: linear-gradient(135deg, #94a3b8, #475569); }

.case-item--trade .case-profile { background: linear-gradient(135deg, #818cf8, #4f46e5); }

.case-item--subscription .case-profile { background: linear-gradient(135deg, #c4b5fd, #7c3aed); }

.case-avatar {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(4px);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    color: white;

    border: 2px solid rgba(255, 255, 255, 0.5);

    position: absolute;

    top: 20px;

    right: 20px;

}

.case-persona {

    display: flex;

    flex-direction: column;

    gap: 0.2rem;

    position: absolute;

    top: 24px;

    right: 88px; /* 20px right + 56px avatar + 12px gap */

    text-align: right;

    align-items: flex-end;

}

.persona-name {

    font-weight: 700;

    font-size: 1.1rem;

    color: white;

}

.persona-role {

    font-size: 0.75rem;

    color: rgba(255, 255, 255, 0.9);

    background: rgba(0, 0, 0, 0.15);

    padding: 3px 8px;

    border-radius: 12px;

    display: inline-block;

}

.case-quote {

    font-size: 0.95rem;

    color: rgba(255, 255, 255, 0.95);

    font-style: italic;

    line-height: 1.5;

    position: relative;

    padding-left: 1rem;

    border-left: 3px solid rgba(255, 255, 255, 0.6);

    max-width: 90%;

}

.case-content-wrapper {

    background: #ffffff;

    flex: 1;

    border-top-left-radius: 80px;

    margin-top: -60px;

    padding: 3rem 1.5rem 1.5rem 1.5rem;

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 0.5rem;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

}

.case-header {

    margin-bottom: 0.5rem;

    display: block;

    border: none;

    padding: 0;

}

.case-title {

    display: block;

}

.case-title h3 {

    font-size: 1.5rem;

    color: #1e293b;

    margin: 0;

    font-weight: 800;

}

.case-label {

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    color: #64748b;

    margin-bottom: 0.25rem;

    display: block;

    background: transparent;

    padding: 0;

}

.case-body {

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 0;

}

.case-detail {

    font-size: 0.9rem;

    color: #475569;

    margin-bottom: 0.5rem;

    display: flex;

    align-items: flex-start;

}

.case-detail strong {

    color: #1e293b;

    margin-right: 0.5rem;

    white-space: nowrap;

}

.case-highlight {

    font-size: 0.8rem;

    color: #6366f1;

    font-weight: 600;

    margin-top: 1rem;

    padding-top: 1rem;

    border-top: 1px dashed #e2e8f0;

}

@media (max-width: 1280px) {

    /* .case-grid overrides removed for flex layout */

}

@media (max-width: 1024px) {

    /* .case-grid overrides removed for flex layout */

}

@media (max-width: 640px) {

    .case-item {

        flex-direction: column;

    }

    

    .case-image {

        width: 100%;

        height: 180px;

        border-right: none;

        border-bottom: 1px solid rgba(226, 232, 240, 0.8);

    }

}

@media (max-width: 1024px) {

    .case-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .service-grid {

        grid-template-columns: repeat(3, 1fr);

    }

    .payment-grid {

        grid-template-columns: repeat(3, 1fr);

    }

    .service-scope-columns {

        grid-template-columns: 1.25fr 0.75fr;

    }

    .service-scope-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

    

    .hero-text h1 {

        font-size: 2.8rem;

    }

}

@media (max-width: 768px) {

    .case-grid {

        grid-template-columns: 1fr;

    }

    .contact-float {

        top: auto;

        bottom: 18px;

        left: 50%;

        right: auto;

        transform: translateX(-50%);

        flex-direction: row;

        padding: 10px;

        border-radius: 18px;

    }

    .contact-float-item {

        width: 64px;

        height: 64px;

        border-radius: 14px;

    }

    .contact-float-item i {

        font-size: 24px;

    }

    .contact-float-panel {

        right: 12px;

        left: 12px;

        top: auto;

        bottom: 98px;

        transform: none;

        width: auto;

        max-width: 420px;

        margin: 0 auto;

    }

    .navbar {

        background-color: rgba(255, 255, 255, 1);

    }

    

    .navbar-menu {

        position: fixed;

        top: 0;

        left: -100%;

        width: 100%;

        height: 100vh;

        background: var(--white);

        flex-direction: column;

        justify-content: center;

        align-items: center;

        transition: var(--transition);

        box-shadow: var(--shadow-lg);

        z-index: 9998;

        padding: 2rem 0;

        padding-top: 80px;

    }

    

    .navbar-menu.active {

        left: 0;

    }

    

    .navbar-menu ul {

        flex-direction: column;

        gap: 2rem;

    }

    .nav-dropdown {

        width: 100%;

        text-align: center;

    }

    

    .navbar-menu a {

        font-size: 1.3rem;

        padding: 1rem 2rem;

        border-radius: 8px;

        transition: var(--transition);

        position: relative;

    }

    

    .navbar-menu a:hover {

        color: var(--primary-color);

    }

    

    .navbar-menu a.active {

        color: var(--primary-color);

    }

    

    .navbar-menu a.active::after {

        content: '';

        position: absolute;

        bottom: 0;

        left: 50%;

        transform: translateX(-50%);

        width: 60%;

        height: 3px;

        background: var(--primary-color);

        border-radius: 2px;

    }

    .dropdown-toggle {

        justify-content: center;

        width: 100%;

    }

    .dropdown-menu {

        position: static;

        top: auto;

        left: auto;

        min-width: 0;

        width: min(205px, 86vw);

        margin: 0.32rem auto 0;

        padding: 0.12rem 0;

        border: none;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        display: none;

        background: transparent;

    }

    .nav-dropdown:hover .dropdown-menu {

        transform: none;

    }

    .nav-dropdown.open .dropdown-menu {

        display: flex;

    }

    .nav-dropdown.open .dropdown-toggle i {

        transform: rotate(180deg);

    }

    .dropdown-menu a {

        font-size: 0.88rem;

        padding: 0.5rem 0.58rem;

        background: var(--light-gray);

        margin-bottom: 0.12rem;

        line-height: 1.2;

        min-height: 36px;

    }

    .navbar-menu ul.dropdown-menu {

        gap: 0.12rem;

        align-items: stretch;

    }

    

    .navbar-toggle {

        display: block;

        font-size: 1.5rem;

        padding: 0.5rem;

        background: var(--primary-color);

        color: var(--white);

        border-radius: 8px;

        position: relative;

        z-index: 10000;

        min-width: 44px;

        min-height: 44px;

    }

    

    .hero {

        padding: 120px 0 60px;

    }

    .hero-split-heading h1 {

        font-size: 2.1rem;

        display: flex;

        flex-direction: column;

        gap: 0.6rem;

    }

    .hero-split-heading p {

        font-size: 0.98rem;

    }

    .hero-split {

        grid-template-columns: 1fr;

        gap: 1.5rem;

        padding: 0;

        filter: none;

        perspective: none;

    }

    .hero-split::after {

        display: none;

    }

    .hero-split-pay,

    .hero-split-review {

        clip-path: none;

        padding: 2.5rem 1.5rem;

        margin: 0;

        border-radius: 24px;

        border: 1px solid rgba(255, 255, 255, 0.3);

    }

    

    .hero-split-pay {

        background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(168, 85, 247, 0.9));

    }

    

    .hero-split-review {

        background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(16, 185, 129, 0.9));

    }

    .hero-split-panel h2 {

        font-size: 1.8rem;

    }

    

    .hero-content {

        flex-direction: column;

        text-align: center;

    }

    

    .hero-text {

        text-align: center;

        width: 100%;

    }

    

    .hero-text h1 {

        font-size: 2.2rem;

    }

    

    .hero-text h2 {

        font-size: 1rem;

    }

    

    .service-tags {

        justify-content: center;

    }

    

    .service-tag {

        font-size: 0.8rem;

        padding: 8px 16px;

    }

    

    .hero-image {

        margin-top: 2rem;

        width: 100%;

    }

    

    .hero-image img {

        max-width: 100%;

        height: auto;

    }

    

    .service-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .service-scope-columns {

        grid-template-columns: 1fr;

        gap: 1.25rem;

    }

    

    .service-scope-panel {

        padding: 1.4rem 1.25rem;

        height: auto;

    }

    

    .service-scope-grid {

        grid-template-columns: 1fr;

    }

    

    .payment-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    

    .payment-card {

        padding: 1.5rem;

    }

    

    .payment-card h3 {

        font-size: 1.2rem;

    }

    

    .payment-card p {

        font-size: 0.9rem;

    }

    

    .service-item {

        height: auto;

    }

    

    .service-image-container {

        height: 40%;

    }

    

    .service-content {

        padding: 1rem;

    }

    

    .tab-inner {

        grid-template-columns: 1fr;

        gap: 2rem;

    }

    

    .contact-content {

        grid-template-columns: 1fr;

    }

    

    .section-title {

        font-size: 2rem;

    }

}

@media (max-width: 480px) {

    .service-grid {

        grid-template-columns: 1fr;

    }

    

    .hero-text h1 {

        font-size: 1.8rem;

    }

    

    .hero-text h2 {

        font-size: 0.9rem;

    }

    

    .service-tags {

        gap: 0.5rem;

    }

    

    .service-tag {

        font-size: 0.75rem;

        padding: 6px 12px;

    }

    

    .payment-grid {

        grid-template-columns: 1fr;

    }

    

    .payment-card {

        padding: 1.25rem;

    }

    

    .payment-card h3 {

        font-size: 1.1rem;

    }

    

    .payment-card p {

        font-size: 0.85rem;

    }

    

    .payment-card .btn {

        font-size: 0.85rem;

        padding: 0.5rem 1rem;

    }

    

    .tabs {

        flex-direction: column;

        align-items: stretch;

        gap: 0.75rem;

    }

    

    .tab-btn {

        justify-content: center;

        width: 100%;

        font-size: 0.9rem;

        padding: 0.75rem 1rem;

    }

}

::-webkit-scrollbar {

    display: none;

}

::-webkit-scrollbar-track {

    background: transparent;

}

::-webkit-scrollbar-thumb {

    background: transparent;

}

/* Payment Pages Styles */

.payment-hero {

    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);

    color: var(--white);

    padding: 120px 0 80px;

    text-align: center;

}

.payment-hero h1 {

    font-size: 3.5rem;

    font-weight: 800;

    margin-bottom: 1.5rem;

    line-height: 1.1;

}

.payment-hero p {

    font-size: 1.3rem;

    opacity: 0.95;

    max-width: 800px;

    margin: 0 auto;

    line-height: 1.6;

}

.payment-section {

    padding: 80px 0;

}

.payment-section:nth-child(even) {

    background-color: var(--light-gray);

}

.payment-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 4rem;

    align-items: center;

    margin-bottom: 4rem;

}

@media (max-width: 992px) {

    .payment-content {

        grid-template-columns: 1fr;

        gap: 2rem;

    }

}

.payment-text h2 {

    font-size: 2.5rem;

    font-weight: 700;

    margin-bottom: 1.5rem;

    color: var(--primary-color);

}

.payment-text h3 {

    font-size: 1.8rem;

    font-weight: 600;

    margin-top: 2rem;

    margin-bottom: 1rem;

    color: var(--text-color);

}

.payment-text p {

    font-size: 1.1rem;

    line-height: 1.7;

    color: var(--text-light);

    margin-bottom: 1rem;

}

.payment-image {

    border-radius: var(--border-radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow-xl);

    transition: var(--transition);

}

.payment-image:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

}

.payment-image img {

    width: 100%;

    height: auto;

    display: block;

}

.scenarios-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 2rem;

    margin-top: 3rem;

}

.scenarios-grid.compact-grid {

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 1.5rem;

}

.scenarios-grid.compact-grid .scenario-card {

    border-radius: 12px;

}

.scenarios-grid.compact-grid .scenario-image {

    height: 140px;

    padding: 1.5rem;

}

.scenarios-grid.compact-grid .scenario-content {

    padding: 1.25rem 1.5rem;

}

.scenarios-grid.compact-grid .scenario-content h3 {

    font-size: 1.1rem;

    margin-bottom: 0.5rem;

}

.scenarios-grid.compact-grid .scenario-content p.seo-text {

    font-size: 0.85rem;

    line-height: 1.5;

    color: var(--text-light);

    margin-bottom: 0;

}

.scenario-card {

    background: var(--white);

    border-radius: var(--border-radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: var(--transition);

    border: 1px solid var(--gray);

    display: flex;

    flex-direction: column;

    height: 100%;

}

.scenario-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-xl);

    border-color: var(--primary-color);

}

.scenario-image {

    height: 200px;

    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 2rem;

    position: relative;

    overflow: hidden;

}

.scenario-image img {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    filter: drop-shadow(0 10px 20px rgba(37, 99, 235, 0.15));

}

.scenario-card:hover .scenario-image img {

    transform: scale(1.1) rotate(2deg);

}

.scenario-content {

    padding: 1.5rem 2rem;

    flex: 1;

    display: flex;

    flex-direction: column;

    border-top: 1px solid var(--light-gray);

}

.scenario-content h3 {

    font-size: 1.25rem;

    font-weight: 700;

    margin-bottom: 0.75rem;

    color: var(--text-color);

}

.scenario-content p {

    color: var(--text-light);

    font-size: 0.95rem;

    line-height: 1.6;

}

.seo-content-expansion {

    margin-top: 4rem;

    padding-top: 3rem;

    border-top: 1px dashed var(--gray);

}

.seo-section {

    margin-bottom: 2.5rem;

}

.seo-section:last-child {

    margin-bottom: 0;

}

.seo-section h3 {

    font-size: 1.25rem;

    font-weight: 700;

    color: var(--text-color);

    margin-bottom: 1rem;

    display: flex;

    align-items: center;

    gap: 0.75rem;

}

.seo-section h3::before {

    content: '';

    display: block;

    width: 6px;

    height: 24px;

    background: var(--primary-color);

    border-radius: 3px;

}

.seo-section p {

    color: var(--text-light);

    line-height: 1.7;

    font-size: 1.05rem;

}

.score-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 1rem;

    margin-top: 1.5rem;

}

.score-item {

    background: var(--white);

    border: 1px solid var(--light-gray);

    border-radius: 12px;

    padding: 1rem 1.1rem;

}

.score-head {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 0.5rem;

    font-size: 0.95rem;

    color: var(--text-color);

    font-weight: 600;

}

.score-bar {

    height: 8px;

    background: #e5e7eb;

    border-radius: 999px;

    overflow: hidden;

}

.score-fill {

    height: 100%;

    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));

}

.advantages-grid-lg {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 2rem;

    margin-top: 2rem;

}

.advantage-card {

    background: var(--white);

    padding: 2.5rem;

    border-radius: var(--border-radius-lg);

    box-shadow: var(--shadow);

    transition: var(--transition);

    text-align: center;

    border: 2px solid transparent;

}

.advantage-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

    border-color: var(--primary-color);

}

.advantage-card .advantage-icon {

    width: 80px;

    height: 80px;

    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 1.5rem;

    font-size: 2rem;

    color: var(--white);

}

.advantage-card h3 {

    font-size: 1.5rem;

    font-weight: 600;

    margin-bottom: 1rem;

    color: var(--text-color);

}

.advantage-card p {

    color: var(--text-light);

    font-size: 1.05rem;

    line-height: 1.6;

}

.process-steps-lg {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 2rem;

    margin-top: 2rem;

    position: relative;

}

@media (min-width: 768px) {

    .process-steps-lg::before {

        content: '';

        position: absolute;

        top: 40px;

        left: 50%;

        width: 80%;

        height: 3px;

        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));

        transform: translateX(-50%);

        z-index: 0;

    }

}

.step-card {

    background: var(--white);

    padding: 2rem;

    border-radius: var(--border-radius-lg);

    box-shadow: var(--shadow);

    transition: var(--transition);

    text-align: center;

    position: relative;

    z-index: 1;

    border: 2px solid var(--light-gray);

}

.step-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

    border-color: var(--accent-color);

}

.step-number {

    width: 80px;

    height: 80px;

    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));

    color: var(--white);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 1.5rem;

    font-size: 2.5rem;

    font-weight: 800;

    box-shadow: var(--shadow-lg);

}

.step-card h3 {

    font-size: 1.5rem;

    font-weight: 600;

    margin-bottom: 1rem;

    color: var(--text-color);

}

.step-card p {

    color: var(--text-light);

    font-size: 1.05rem;

    line-height: 1.6;

}

.service-scope-lg {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 2rem;

    margin-top: 2rem;

}

.scope-card {

    background: var(--white);

    border-radius: var(--border-radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: var(--transition);

    border: 2px solid var(--light-gray);

}

.scope-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

    border-color: var(--accent-color);

}

.scope-card-icon {

    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));

    padding: 2rem;

    text-align: center;

    font-size: 3rem;

    color: var(--white);

}

.scope-card-content {

    padding: 2rem;

}

.scope-card h3 {

    font-size: 1.5rem;

    font-weight: 600;

    margin-bottom: 1rem;

    color: var(--text-color);

}

.scope-card p {

    color: var(--text-light);

    font-size: 1.05rem;

    line-height: 1.6;

}

.faq-grid-lg {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

    gap: 2rem;

    margin-top: 2rem;

    align-items: start;

}

.faq-item-lg {

    background: var(--white);

    border-radius: var(--border-radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: var(--transition);

    border: 2px solid var(--light-gray);

}

.faq-item-lg:hover {

    box-shadow: var(--shadow-lg);

    border-color: var(--accent-color);

}

.faq-question-lg {

    padding: 2rem;

    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));

    color: var(--white);

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    transition: var(--transition);

}

.faq-question-lg h3 {

    font-size: 1.2rem;

    font-weight: 600;

    margin: 0;

}

.faq-toggle-lg {

    font-size: 1.5rem;

    font-weight: 700;

    transition: var(--transition);

}

.faq-answer-lg {

    padding: 0;

    max-height: 0;

    overflow: hidden;

    transition: var(--transition);

}

.faq-item-lg.active .faq-answer-lg {

    padding: 2rem;

}

.faq-answer-lg p {

    color: var(--text-light);

    line-height: 1.7;

    font-size: 1.05rem;

}

/* Shake Animation for Contact Float */

.shake-contact {

    animation: shake-contact-desktop 0.6s ease-in-out;

}

@keyframes shake-contact-desktop {

    0%, 100% { right: 18px; }

    10%, 30%, 50%, 70%, 90% { right: 28px; }

    20%, 40%, 60%, 80% { right: 8px; }

}

@media (max-width: 768px) {

    .shake-contact {

        animation: shake-contact-mobile 0.6s ease-in-out;

    }

    @keyframes shake-contact-mobile {

        0%, 100% { bottom: 18px; }

        10%, 30%, 50%, 70%, 90% { bottom: 28px; }

        20%, 40%, 60%, 80% { bottom: 8px; }

    }

}

