/* ===================================================================
   COMPLETE CSS - ALL SECTIONS
   =================================================================== */

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

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

body {
    font-family: 'Poppins', sans-serif;
    color: #1a202c;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* Text Utilities */
.text-orange { color: #F7931E; }
.text-blue { color: #1E3A8A; }

/* ===================================================================
   SECTION 1: HEADER
   =================================================================== */
.header {
    background: linear-gradient(to right, #1E3A8A, #1e4a9a, #1E3A8A);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0.75rem 0;
}

.logo {
    text-decoration: none;
}

.logo-placeholder {
    height: 56px;
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.logo-image {
    height: 56px;
    width: auto;
    display: block;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    position: relative;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-bottom: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: #F7931E;
}

.nav-link-button.active {
    color: #F7931E;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: #F7931E;
    width: 0;
    transition: width 0.3s ease;
}

.nav-link.active .nav-underline {
    width: 100%;
}

.nav-link:hover .nav-underline {
    width: 100%;
}

.nav-link-button.active .nav-underline {
    width: 100%;
}

.nav-dropdown.active .nav-link-button {
    color: #F7931E;
}

.nav-dropdown.active .nav-underline {
    width: 100%;
}

.nav-dropdown.active .nav-chevron {
    transform: none;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link-button {
    background: transparent;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-family: inherit;
}

.nav-chevron {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 200px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1100;
    padding: 0.35rem 0;
}

.nav-submenu-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #1E3A8A;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-submenu-link:hover,
.nav-submenu-link:focus {
    background: #f9fafb;
    color: #F7931E;
}

.nav-submenu-link.active {
    background: #f9fafb;
    color: #F7931E;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
    transform: rotate(180deg);
}

.header-cta-desktop {
    display: none;
}

@media (min-width: 768px) {
    .header-cta-desktop { display: block; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: #F7931E;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e67e0a;
    box-shadow: 0 15px 35px rgba(247, 147, 30, 0.5);
    transform: scale(1.05) translateY(-2px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(8px);
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu-btn:hover {
    color: #F7931E;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(59, 130, 246, 0.3);
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu { display: none !important; }
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-link-mobile {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
    color: #F7931E;
}

.nav-label {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.nav-link-mobile.sub-link {
    padding-left: 1rem;
    font-size: 0.95rem;
}

.nav-link-mobile.sub-link.active {
    color: #F7931E;
}

.mobile-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ===================================================================
   SECTION 2: HERO BANNER
   =================================================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1E3A8A 0%, rgba(30, 58, 138, 0.95) 50%, rgba(30, 58, 138, 0.9) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    bottom: 5rem;
    left: 25%;
    width: 320px;
    height: 320px;
    background: rgba(96, 165, 250, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
}

.particle-1 {
    top: 33.33%;
    right: 33.33%;
    width: 8px;
    height: 8px;
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.particle-2 {
    top: 66.66%;
    right: 25%;
    width: 12px;
    height: 12px;
    background: rgba(147, 197, 253, 0.6);
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.particle-3 {
    bottom: 33.33%;
    right: 20%;
    width: 12px;
    height: 12px;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
    animation-delay: 2.5s;
}

.particle-4 {
    bottom: 20%;
    left: 25%;
    width: 16px;
    height: 16px;
    background: rgba(191, 219, 254, 0.5);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
    animation-delay: 3.5s;
}

.hero-shape {
    position: absolute;
    top: 8rem;
    left: 5rem;
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: spin-slow 20s linear infinite;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-40px) translateX(-10px); }
    75% { transform: translateY(-20px) translateX(5px); }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.25; }
}

.hero-container {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 8rem;
}

@media (min-width: 640px) {
    .hero-container {
        padding-top: 3rem;
        padding-bottom: 10rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding-top: 4rem;
        padding-bottom: 12rem;
    }
}

.hero-grid-layout {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    align-self: flex-start;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
    color: #F7931E;
}

.hero-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 4.5rem; }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

@media (min-width: 640px) {
    .hero-description { font-size: 1.25rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #1E3A8A;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px) scale(1.05);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.play-icon-wrapper {
    width: 40px;
    height: 40px;
    background: #F7931E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.play-icon {
    width: 16px;
    height: 16px;
    color: white;
    margin-left: 2px;
}

.btn-text-split {
    text-align: center;
    line-height: 1.2;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .hero-features { grid-template-columns: repeat(2, 1fr); }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #F7931E 0%, #e67e0a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(247, 147, 30, 0.4);
}

.feature-check i {
    font-size: 0.625rem;
    color: white;
    font-weight: 700;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.floating-card {
    display: none;
    position: absolute;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 1024px) {
    .floating-card { display: block; }
}

.floating-card-top {
    top: -1.5rem;
    right: -1.5rem;
}

.floating-card-bottom {
    bottom: -1.5rem;
    left: -1.5rem;
}

.floating-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.2);
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon i {
    font-size: 1.75rem;
    color: white;
}

.floating-icon-green {
    background: linear-gradient(135deg, #4ade80 0%, #10b981 100%);
}

.floating-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1E3A8A 100%);
}

.floating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A8A;
}

.floating-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
}

/* ===================================================================
   SECTION 3: STATS BAR
   =================================================================== */
.stats-section {
    position: relative;
    margin-top: -6rem;
    padding: 0 1rem 3rem;
    overflow: visible;
    z-index: 20;
}

@media (min-width: 640px) {
    .stats-section {
        margin-top: -8rem;
        padding: 0 1.5rem 4rem;
    }
}

@media (min-width: 1024px) {
    .stats-section {
        margin-top: -10rem;
        padding: 0 2rem 4.5rem;
    }
}

/* Decorative Elements */
.decorative-bg-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(247, 147, 30, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
}

.decorative-bg-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(30, 58, 138, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    animation: fade-in-up 0.6s ease-out forwards;
    opacity: 0;
}

.stat-card-wrapper {
    position: relative;
    height: 100%;
}

.stat-card-inner {
    position: relative;
    height: 100%;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease-out;
    overflow: hidden;
}

.stat-card:hover .stat-card-inner {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

/* Hover Glow Effect */
.hover-glow {
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.stat-card:hover .hover-glow {
    opacity: 1;
}

/* Hover Background Layer */
.hover-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover .hover-bg {
    opacity: 1;
}

/* Accent Border - Left Side */
.accent-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    transition: all 0.5s ease;
}

.stat-card:hover .accent-border {
    width: 8px;
}

/* Top Shimmer Line */
.shimmer-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover .shimmer-line {
    opacity: 1;
}

/* Content */
.stat-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Icon Circle */
.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    animation: icon-bounce 0.6s ease-in-out;
    transform: scale(1.1);
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

/* Stats */
.stat-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-value {
    transform: scale(1.05);
}

.stat-label {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Decorative Corner Dot */
.corner-dot {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.stat-card:hover .corner-dot {
    opacity: 1;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ===================================================================
   SECTION 4: TOOLS SECTION
   =================================================================== */
.tools-section {
    position: relative;
    padding: 2rem 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, rgba(239, 246, 255, 0.3) 50%, rgba(255, 247, 237, 0.3) 100%);
}

@media (min-width: 640px) {
    .tools-section {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .tools-section {
        padding: 4rem 2rem;
    }
}

.tools-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header Section */
.tools-section .tools-header {
    text-align: center;
    margin-bottom: 5rem;
}

.tools-section .floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(209, 213, 219, 0.6);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.tools-section .floating-badge svg {
    width: 1rem;
    height: 1rem;
    color: #F7931E;
}

.tools-section .floating-badge span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1E3A8A;
}

.tools-section .tools-title {
    font-size: 3rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .tools-section .tools-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .tools-section .tools-title {
        font-size: 4.5rem;
    }
}

.gradient-text-wrapper {
    position: relative;
    display: inline-block;
}

.tools-section .gradient-text {
    background: linear-gradient(to right, #1E3A8A, #3B82F6, #F7931E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.underline-svg {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
}

.tools-section .tools-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 300;
}

@media (min-width: 640px) {
    .tools-section .tools-subtitle {
        font-size: 1.25rem;
    }
}

/* Cards Grid */
.tools-section .tools-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .tools-section .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .tools-section .tools-grid {
        gap: 2rem;
    }
}

.tools-section .tool-card {
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.tools-section .tool-card-inner {
    position: relative;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(40px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .tools-section .tool-card-inner {
        padding: 2.5rem;
    }
}

.tools-section .tool-card-inner:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.tools-section .tool-card:hover .icon-wrapper {
    animation: bounce-gentle 1s ease-in-out infinite;
}

/* Shimmer Overlay */
.tools-section .shimmer-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
}

.tools-section .tool-card-inner:hover .shimmer-overlay {
    animation: shimmer 1.5s ease-in-out;
}

/* Colored Background */
.tools-section .colored-bg {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tools-section .tool-card-inner:hover .colored-bg {
    opacity: 1;
}

.tools-section .bg-blue {
    background: rgba(239, 246, 255, 0.5);
}

.tools-section .bg-orange {
    background: rgba(255, 247, 237, 0.5);
}

/* Top Border Accent */
.tools-section .top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 1.5rem 1.5rem 0 0;
    transition: all 0.5s ease;
}

/* Content */
.tools-section .tool-content {
    position: relative;
    z-index: 10;
}

/* Icon */
.tools-section .icon-wrapper {
    margin-bottom: 2rem;
    display: inline-block;
}

.tools-section .icon-box {
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.tools-section .tool-card-inner:hover .icon-box {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tools-section .icon-box svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    stroke-width: 2.5;
}

.tools-section .pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.tools-section .tool-card-inner:hover .pulse-ring {
    opacity: 0.3;
}

/* Title */
.tools-section .tool-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.tools-section .tool-card-inner:hover .tool-title {
    color: #1f2937;
}

/* Description */
.tools-section .tool-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.625;
}

/* Animated Accent Lines */
.tools-section .accent-lines {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tools-section .accent-line-1 {
    height: 4px;
    width: 0;
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.tools-section .tool-card-inner:hover .accent-line-1 {
    width: 4rem;
}

.tools-section .accent-line-2 {
    height: 4px;
    width: 0;
    border-radius: 9999px;
    transition: width 0.7s ease;
    opacity: 0.5;
}

.tools-section .tool-card-inner:hover .accent-line-2 {
    width: 2rem;
}

/* CTA Button */
.tools-section .tools-cta {
    text-align: center;
}

.tools-section .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: #F7931E;
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.tools-section .cta-button:hover {
    background: #1E3A8A;
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.5);
    transform: scale(1.05);
}

.tools-section .cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.tools-section .cta-button:hover svg {
    transform: translateX(0.5rem);
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===================================================================
   SECTION 5: REVENUE ENGINE
   =================================================================== */
.revenue-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, rgba(239, 246, 255, 0.3) 50%, rgba(255, 247, 237, 0.3) 100%);
}

@media (min-width: 640px) {
    .revenue-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .revenue-section {
        padding: 6rem 2rem;
    }
}

/* Decorative Background Elements */
.revenue-section .decorative-orange {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: rgba(247, 147, 30, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
}

.revenue-section .decorative-blue {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: rgba(30, 58, 138, 0.05);
    border-radius: 9999px;
    filter: blur(64px);
}

.revenue-section .decorative-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(254, 215, 170, 0.1);
    border-radius: 9999px;
    filter: blur(64px);
}

.revenue-section .revenue-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header */
.revenue-section .revenue-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .revenue-section .revenue-header {
        margin-bottom: 5rem;
    }
}

.revenue-section .floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.revenue-section .floating-badge-inner {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(209, 213, 219, 0.6);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.revenue-section .floating-badge-inner svg {
    width: 1rem;
    height: 1rem;
    color: #F7931E;
}

.revenue-section .floating-badge-inner span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1E3A8A;
}

.revenue-section .revenue-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .revenue-section .revenue-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .revenue-section .revenue-title {
        font-size: 4.5rem;
    }
}

.revenue-section .title-line-1 {
    color: #1E3A8A;
}

.revenue-section .title-line-2 {
    position: relative;
    display: inline-block;
    margin-top: 0.5rem;
}

.revenue-section .gradient-revenue-text {
    background: linear-gradient(to right, #374151, #4b5563, #F7931E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.revenue-section .underline-svg {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
}

.revenue-section .revenue-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 300;
}

@media (min-width: 640px) {
    .revenue-section .revenue-subtitle {
        font-size: 1.25rem;
    }
}

/* Main Grid */
.revenue-section .revenue-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .revenue-section .revenue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* Image Section */
.revenue-section .image-wrapper {
    position: relative;
}

.revenue-section .image-glow {
    position: absolute;
    inset: -1.5rem;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.2), rgba(247, 147, 30, 0.2), rgba(30, 58, 138, 0.2));
    border-radius: 1.5rem;
    filter: blur(64px);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.revenue-section .image-wrapper:hover .image-glow {
    opacity: 1;
}

.revenue-section .image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(209, 213, 219, 0.5);
    background: white;
    transition: all 0.5s ease;
}

.revenue-section .image-wrapper:hover .image-container {
    transform: scale(1.02);
}

.revenue-section .shimmer-effect {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f3f4f6;
    min-height: 300px;
}

.revenue-section .shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-slide 3s infinite;
}

.revenue-section .shimmer-effect img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge on Image */
.revenue-section .floating-image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
    transition: transform 0.5s ease;
}

.revenue-section .image-wrapper:hover .floating-image-badge {
    transform: scale(1.1);
}

.revenue-section .badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.revenue-section .badge-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #F7931E 0%, #ea580c 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.revenue-section .badge-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    stroke-width: 2.5;
}

.revenue-section .badge-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A8A;
}

.revenue-section .badge-label {
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 500;
}

/* Features Section */
.revenue-section .features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.revenue-section .feature-card {
    animation: fade-slide-up 0.8s ease-out forwards;
    opacity: 0;
}

.revenue-section .feature-card-wrapper {
    position: relative;
}

.revenue-section .feature-glow {
    position: absolute;
    inset: -0.25rem;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(16px);
}

.revenue-section .feature-card:hover .feature-glow {
    opacity: 1;
}

.revenue-section .feature-card-inner {
    position: relative;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(209, 213, 219, 0.5);
    backdrop-filter: blur(12px);
    transition: all 0.5s ease;
}

.revenue-section .feature-card:hover .feature-card-inner {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.revenue-section .feature-content {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.revenue-section .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.revenue-section .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(3deg);
}

.revenue-section .feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
    stroke-width: 2;
}

.revenue-section .feature-text {
    flex: 1;
    padding-top: 0.25rem;
}

.revenue-section .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.revenue-section .feature-description {
    color: #4b5563;
    line-height: 1.625;
}

.revenue-section .bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 0 0 1rem 1rem;
    transition: all 0.5s ease;
    opacity: 0;
}

.revenue-section .feature-card:hover .bottom-accent {
    opacity: 1;
}

/* Stats Grid */
.revenue-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .revenue-section .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.revenue-section .stat-item {
    animation: fade-slide-up 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
    height: 100%;
}

.revenue-section .stat-glow {
    position: absolute;
    inset: -0.25rem;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(24px);
}

.revenue-section .stat-item:hover .stat-glow {
    opacity: 1;
}

.revenue-section .stat-card {
    position: relative;
    height: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(209, 213, 219, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.revenue-section .stat-item:hover .stat-card {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.revenue-section .stat-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.5s ease;
}

.revenue-section .stat-item:hover .stat-top-accent {
    height: 8px;
}

.revenue-section .stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    transition: all 0.5s ease;
}

@media (min-width: 640px) {
    .revenue-section .stat-value {
        font-size: 3.75rem;
    }
}

.revenue-section .stat-item:hover .stat-value {
    transform: scale(1.1);
}

.revenue-section .stat-label {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.revenue-section .stat-corner-dot {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.revenue-section .stat-item:hover .stat-corner-dot {
    opacity: 1;
}

/* CTA Button */
.revenue-section .cta-section {
    text-align: center;
}

.revenue-section .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: #F7931E;
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.5s ease;
}

.revenue-section .cta-button:hover {
    background: #1E3A8A;
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.5);
    transform: scale(1.05);
}

.revenue-section .cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.revenue-section .cta-button:hover svg {
    transform: translateX(0.5rem);
}

/* Animations */
@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer-slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ===================================================================
   SECTION 6: SERVICEREADY & CLAIMREADY
   =================================================================== */
.extensions-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #eff6ff 100%);
}

@media (min-width: 640px) {
    .extensions-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .extensions-section {
        padding: 6rem 2rem;
    }
}

/* Decorative Background Blobs */
.extensions-section .blob-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(254, 215, 170, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: float-blob 20s ease-in-out infinite;
}

.extensions-section .blob-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(191, 219, 254, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: float-blob 20s ease-in-out infinite;
    animation-delay: 3s;
}

.extensions-section .blob-3 {
    position: absolute;
    top: 33.33%;
    right: 25%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(216, 180, 254, 0.1) 0%, rgba(251, 207, 232, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: float-blob 20s ease-in-out infinite;
    animation-delay: 6s;
}

.extensions-section .blob-4 {
    position: absolute;
    bottom: 25%;
    left: 33.33%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.1) 0%, rgba(254, 249, 195, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: float-blob 20s ease-in-out infinite;
    animation-delay: 9s;
}

/* Grid Pattern Overlay */
.extensions-section .grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231E3A8A' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Top Accent Line */
.extensions-section .top-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, transparent, #F7931E, transparent);
    opacity: 0.3;
}

.extensions-section .extensions-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header */
.extensions-section .extensions-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .extensions-section .extensions-header {
        margin-bottom: 5rem;
    }
}

.extensions-section .floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.extensions-section .floating-badge-inner {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(209, 213, 219, 0.6);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.extensions-section .floating-badge-inner svg {
    width: 1rem;
    height: 1rem;
    color: #F7931E;
}

.extensions-section .floating-badge-inner span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1E3A8A;
}

.extensions-section .extensions-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .extensions-section .extensions-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .extensions-section .extensions-title {
        font-size: 4.5rem;
    }
}

.extensions-section .title-line-1 {
    color: #111827;
}

.extensions-section .title-line-2 {
    position: relative;
    display: inline-block;
    margin-top: 0.5rem;
}

.extensions-section .gradient-extensions-text {
    background: linear-gradient(to right, #1E3A8A, #3B82F6, #F7931E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.extensions-section .underline-svg {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
}

.extensions-section .extensions-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 300;
}

@media (min-width: 640px) {
    .extensions-section .extensions-subtitle {
        font-size: 1.25rem;
    }
}

/* Tabs */
.extensions-section .tabs-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.extensions-section .tab-button {
    position: relative;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.5s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.extensions-section .tab-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.extensions-section .tab-button.active {
    background: #F7931E;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(247, 147, 30, 0.3);
    transform: scale(1.05);
}

.extensions-section .tab-button.inactive {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    color: #374151;
    border: 1px solid rgba(209, 213, 219, 0.6);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.extensions-section .tab-button.inactive:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.extensions-section .tab-hover-bg {
    position: absolute;
    inset: 0;
    background: #1E3A8A;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.extensions-section .tab-button.active:hover .tab-hover-bg {
    opacity: 1;
}

.extensions-section .tab-button-content {
    position: relative;
    z-index: 10;
}

/* Tab Content */
.extensions-section .tab-content {
    animation: tab-slide 0.6s ease-out forwards;
}

.extensions-section .content-hidden {
    display: none;
}

.extensions-section .content-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .extensions-section .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* Image Section */
.extensions-section .image-wrapper {
    position: relative;
}

.extensions-section .image-glow {
    position: absolute;
    inset: -1.5rem;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.2), rgba(247, 147, 30, 0.2), rgba(30, 58, 138, 0.2));
    border-radius: 1.5rem;
    filter: blur(64px);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.extensions-section .image-wrapper:hover .image-glow {
    opacity: 1;
}

.extensions-section .image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(209, 213, 219, 0.5);
    background: white;
    transition: all 0.5s ease;
}

.extensions-section .image-wrapper:hover .image-container {
    transform: scale(1.02);
}

.extensions-section .shimmer-effect {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f3f4f6;
    min-height: 300px;
}

.extensions-section .shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-slide 3s infinite;
}

.extensions-section .shimmer-effect img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge on Image */
.extensions-section .floating-image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
    transition: transform 0.5s ease;
}

.extensions-section .image-wrapper:hover .floating-image-badge {
    transform: scale(1.1);
}

.extensions-section .badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.extensions-section .badge-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extensions-section .badge-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    stroke-width: 2.5;
}

.extensions-section .badge-icon-orange {
    background: linear-gradient(135deg, #F7931E 0%, #ea580c 100%);
}

.extensions-section .badge-icon-blue {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563eb 100%);
}

.extensions-section .badge-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E3A8A;
}

.extensions-section .badge-label {
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 500;
}

/* Content Section */
.extensions-section .content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.extensions-section .content-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1E3A8A;
}

@media (min-width: 640px) {
    .extensions-section .content-heading {
        font-size: 2.25rem;
    }
}

.extensions-section .content-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.625;
}

.extensions-section .highlight-text {
    font-weight: 600;
    color: #F7931E;
}

/* Features Grid */
.extensions-section .features-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .extensions-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.extensions-section .feature-card {
    animation: fade-slide-up 0.8s ease-out forwards;
    opacity: 0;
}

.extensions-section .feature-card-wrapper {
    position: relative;
}

.extensions-section .feature-glow {
    position: absolute;
    inset: -0.25rem;
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(16px);
}

.extensions-section .feature-card:hover .feature-glow {
    opacity: 1;
}

.extensions-section .feature-card-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid rgba(209, 213, 219, 0.5);
    transition: all 0.5s ease;
}

.extensions-section .feature-card:hover .feature-card-inner {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.extensions-section .feature-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.extensions-section .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

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

.extensions-section .feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
    stroke-width: 2.5;
}

.extensions-section .feature-text {
    flex: 1;
}

.extensions-section .feature-title {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.extensions-section .feature-description {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.625;
}

.extensions-section .bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 0 0 0.75rem 0.75rem;
    transition: all 0.5s ease;
    opacity: 0;
}

.extensions-section .feature-card:hover .bottom-accent {
    opacity: 1;
}

/* Why It Matters Box */
.extensions-section .why-matters-box {
    position: relative;
    margin-top: 2rem;
}

.extensions-section .why-matters-glow {
    position: absolute;
    inset: -0.25rem;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.2), rgba(247, 147, 30, 0.2));
    border-radius: 1rem;
    filter: blur(16px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.extensions-section .why-matters-box:hover .why-matters-glow {
    opacity: 1;
}

.extensions-section .why-matters-inner {
    position: relative;
    background: linear-gradient(135deg, #eff6ff 0%, #fed7aa 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(209, 213, 219, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.extensions-section .why-matters-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1E3A8A;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.extensions-section .why-matters-title svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #F7931E;
}

.extensions-section .why-matters-text {
    color: #4b5563;
    line-height: 1.625;
}

/* CTA Button */
.extensions-section .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: #F7931E;
    color: white;
    border: none;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.5s ease;
    margin-top: 1.25rem;
    width: auto;
    align-self: center;
}

.extensions-section .cta-button:hover {
    background: #1E3A8A;
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.5);
    transform: scale(1.05);
}

.extensions-section .cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.extensions-section .cta-button:hover svg {
    transform: translateX(0.5rem);
}

/* Animations */
@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer-slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes tab-slide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ===================================================================
   SECTION 7: ALL-IN-ONE SOLUTION
   =================================================================== */
.solution-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, rgba(239, 246, 255, 0.4) 100%);
}

@media (min-width: 640px) {
    .solution-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .solution-section {
        padding: 6rem 2rem;
    }
}

/* Decorative Blobs */
.solution-section .blob-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(254, 215, 170, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: blob-float 20s ease-in-out infinite;
}

.solution-section .blob-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(191, 219, 254, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: blob-float 20s ease-in-out infinite;
    animation-delay: 3s;
}

.solution-section .blob-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(216, 180, 254, 0.1) 0%, rgba(251, 207, 232, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: blob-float 20s ease-in-out infinite;
    animation-delay: 6s;
}

/* Grid Pattern */
.solution-section .grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231E3A8A' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.solution-section .solution-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header */
.solution-section .solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .solution-section .solution-header {
        margin-bottom: 5rem;
    }
}

.solution-section .floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.solution-section .floating-badge-inner {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(209, 213, 219, 0.6);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.solution-section .floating-badge-inner svg {
    width: 1rem;
    height: 1rem;
    color: #F7931E;
}

.solution-section .floating-badge-inner span {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1E3A8A;
}

.solution-section .solution-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .solution-section .solution-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .solution-section .solution-title {
        font-size: 4.5rem;
    }
}

.solution-section .title-line-1 {
    position: relative;
    display: inline-block;
}

.solution-section .gradient-solution-text {
    background: linear-gradient(to right, #1E3A8A, #3B82F6, #F7931E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution-section .underline-svg {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
}

.solution-section .title-line-2 {
    color: #111827;
    margin-top: 0.5rem;
    display: inline-block;
}

.solution-section .solution-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 300;
}

@media (min-width: 640px) {
    .solution-section .solution-subtitle {
        font-size: 1.25rem;
    }
}

/* Premium Tabs */
.solution-section .tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.solution-section .tabs-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(209, 213, 219, 0.5);
    flex-wrap: wrap;
}

.solution-section .tab-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.solution-section .tab-button.active {
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1E3A8A, rgba(30, 58, 138, 0.87));
    animation: tab-pulse 2.8s ease-in-out infinite;
}

.solution-section .tab-button.inactive {
    color: #374151;
    background: transparent;
}

.solution-section .tab-button:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 10px 18px -10px rgba(15, 23, 42, 0.35);
}

.solution-section .tab-button.inactive:hover {
    background: rgba(17, 24, 39, 0.05);
}

.solution-section .tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, background 0.25s ease;
    animation: tab-icon-float 3.6s ease-in-out infinite;
}

.solution-section .tab-icon svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
    stroke: currentColor;
}

.solution-section .tab-button.active .tab-icon {
    background: rgba(255, 255, 255, 0.18);
}

.solution-section .tab-button:hover .tab-icon {
    transform: scale(1.08) rotate(-2deg);
}

/* Colorful tab icons */
.solution-section .tab-button[data-tab="dispatch"] .tab-icon {
    background: linear-gradient(135deg, #2563EB, #1E3A8A);
    color: #F8FAFC;
}

.solution-section .tab-button[data-tab="partner"] .tab-icon {
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: #FFFBEB;
}

.solution-section .tab-button[data-tab="serviceready"] .tab-icon {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #ECFDF5;
}

.solution-section .tab-button[data-tab="claimready"] .tab-icon {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    color: #F5F3FF;
}

.solution-section .tab-button[data-tab="mobile"] .tab-icon {
    background: linear-gradient(135deg, #0EA5E9, #38BDF8);
    color: #F0F9FF;
}

.solution-section .tab-button[data-tab="profitability"] .tab-icon {
    background: linear-gradient(135deg, #F43F5E, #FB7185);
    color: #FFF1F2;
}

.solution-section .tab-hover-glow {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.solution-section .tab-button.inactive:hover .tab-hover-glow {
    opacity: 1;
}

.solution-section .tabs-wrapper .tab-button:nth-child(2) .tab-icon { animation-delay: 0.2s; }
.solution-section .tabs-wrapper .tab-button:nth-child(3) .tab-icon { animation-delay: 0.4s; }
.solution-section .tabs-wrapper .tab-button:nth-child(4) .tab-icon { animation-delay: 0.6s; }
.solution-section .tabs-wrapper .tab-button:nth-child(5) .tab-icon { animation-delay: 0.8s; }
.solution-section .tabs-wrapper .tab-button:nth-child(6) .tab-icon { animation-delay: 1s; }

@keyframes tab-pulse {
    0%, 100% {
        box-shadow: 0 6px 16px -8px rgba(30, 58, 138, 0.5);
    }
    50% {
        box-shadow: 0 12px 24px -8px rgba(30, 58, 138, 0.35);
    }
}

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

/* Content Section */
.solution-section .content-section {
    animation: tab-slide-in 0.6s ease-out forwards;
}

.solution-section .content-hidden {
    display: none;
}

.solution-section .content-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .solution-section .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* Left Content */
.solution-section .content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .solution-section .content-text {
        padding-right: 2rem;
    }
}

.solution-section .content-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-section .content-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1E3A8A;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .solution-section .content-heading {
        font-size: 2.25rem;
    }
}

.solution-section .content-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.625;
}

/* Features List */
.solution-section .features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: fade-slide-up 0.6s ease-out forwards;
    opacity: 0;
}

.solution-section .feature-icon-wrapper {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.solution-section .feature-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.solution-section .feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.solution-section .feature-icon svg {
    width: 1rem;
    height: 1rem;
    color: white;
    stroke-width: 3;
}

.solution-section .feature-text {
    color: #374151;
    line-height: 1.625;
    padding-top: 0.125rem;
    font-weight: 500;
}

/* CTA Button */
.solution-section .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    color: white;
    align-self: center;
}

.solution-section .cta-button:hover {
    transform: scale(1.05);
}

.solution-section .cta-gradient-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-section .cta-button:hover .cta-gradient-overlay {
    opacity: 1;
}

.solution-section .cta-button-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-section .cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.solution-section .cta-button:hover svg {
    transform: translateX(0.5rem);
}

.solution-section .shine-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.solution-section .cta-button:hover .shine-effect {
    transform: translateX(100%);
}

/* Image Section */
.solution-section .image-wrapper {
    position: relative;
}

.solution-section .image-glow {
    position: absolute;
    inset: -1.5rem;
    border-radius: 1.5rem;
    filter: blur(64px);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.solution-section .image-wrapper:hover .image-glow {
    opacity: 1;
}

.solution-section .image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: white;
    transition: all 0.5s ease;
}

.solution-section .image-wrapper:hover .image-container {
    transform: scale(1.02);
}

.solution-section .shimmer-effect {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f3f4f6;
    min-height: 300px;
}

.solution-section .shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-slide 3s infinite;
}

.solution-section .shimmer-effect img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-section .image-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-section .image-wrapper:hover .image-overlay {
    opacity: 0.1;
}

/* Floating Badge */
.solution-section .floating-image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    border: 2px solid;
    background: linear-gradient(135deg, #FFFFFF, #F8FAFF);
    transition: transform 0.5s ease;
}

.solution-section .image-wrapper:hover .floating-image-badge {
    transform: scale(1.1);
}

.solution-section .badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-section .badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.solution-section .badge-icon svg {
    width: 1.6rem;
    height: 1.6rem;
    color: white;
    stroke-width: 2.5;
}

.solution-section .badge-icon-text {
    font-size: 1.5rem;
}

.solution-section .badge-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.solution-section .badge-label {
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 500;
}

/* Animations */
@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer-slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes tab-slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================================
   SECTION 8: EVERYTHING ELSE YOU NEED
   =================================================================== */
.everything-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, rgba(239, 246, 255, 0.3) 100%);
}

@media (min-width: 640px) {
    .everything-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .everything-section {
        padding: 6rem 2rem;
    }
}

/* Decorative Blobs */
.everything-section .blob-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08) 0%, rgba(191, 219, 254, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: blob-float-slow 25s ease-in-out infinite;
}

.everything-section .blob-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.08) 0%, rgba(254, 215, 170, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: blob-float-slow 25s ease-in-out infinite;
    animation-delay: 5s;
}

.everything-section .blob-3 {
    position: absolute;
    top: 33.33%;
    right: 25%;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(216, 180, 254, 0.08) 0%, rgba(251, 207, 232, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
    animation: blob-float-slow 25s ease-in-out infinite;
    animation-delay: 10s;
}

.everything-section .everything-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header */
.everything-section .everything-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .everything-section .everything-header {
        margin-bottom: 5rem;
    }
}

.everything-section .badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.everything-section .badge-inner {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(209, 213, 219, 0.6);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.everything-section .badge-inner svg {
    width: 1rem;
    height: 1rem;
    color: #F7931E;
}

.everything-section .badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    background: linear-gradient(to right, #F7931E, #1E3A8A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.everything-section .everything-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .everything-section .everything-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .everything-section .everything-title {
        font-size: 4.5rem;
    }
}

.everything-section .title-line-1 {
    position: relative;
    display: inline-block;
}

.everything-section .gradient-everything-text {
    background: linear-gradient(to right, #1E3A8A, #3B82F6, #F7931E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.everything-section .underline-svg {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
}

.everything-section .title-line-2 {
    color: #111827;
    margin-top: 0.5rem;
    display: inline-block;
}

.everything-section .everything-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 300;
}

@media (min-width: 640px) {
    .everything-section .everything-subtitle {
        font-size: 1.25rem;
    }
}

/* Feature Cards Grid */
.everything-section .features-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .everything-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .everything-section .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.everything-section .feature-card {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    animation: fade-slide-up 0.6s ease-out forwards;
    opacity: 0;
}

.everything-section .feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Image Background */
.everything-section .card-image-wrapper {
    position: relative;
    height: 12rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #f9fafb 100%);
}

.everything-section .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.everything-section .feature-card:hover .card-image {
    transform: scale(1.05);
}

/* Gradient Overlay */
.everything-section .card-gradient-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.9;
}

.everything-section .gradient-blue {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.everything-section .gradient-orange {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
}

/* Icon */
.everything-section .card-icon-wrapper {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.everything-section .card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.everything-section .feature-card:hover .card-icon {
    transform: scale(1.1) rotate(6deg);
}

.everything-section .card-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
    stroke-width: 2.5;
}

.everything-section .icon-bg-blue {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.everything-section .icon-bg-orange {
    background: linear-gradient(135deg, #F7931E 0%, #FF8C00 100%);
}

/* Shimmer Effect */
.everything-section .shimmer-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer-glow 3s infinite;
    opacity: 0;
}

.everything-section .feature-card:hover .shimmer-overlay {
    opacity: 1;
}

/* Content */
.everything-section .card-content {
    padding: 1.5rem;
    position: relative;
}

.everything-section .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.everything-section .feature-card:hover .card-title {
    color: #1E3A8A;
}

.everything-section .card-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.625;
}

/* Hover Accent Line */
.everything-section .accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.everything-section .feature-card:hover .accent-line {
    width: 100%;
}

/* Glow Effect */
.everything-section .card-glow {
    position: absolute;
    inset: -0.25rem;
    border-radius: 1.5rem;
    opacity: 0;
    filter: blur(24px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.everything-section .feature-card:hover .card-glow {
    opacity: 0.2;
}

/* CTA Button */
.everything-section .cta-section {
    text-align: center;
}

.everything-section .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(to right, #1E3A8A, #3B82F6);
    color: white;
    border: none;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.5s ease;
    overflow: hidden;
}

.everything-section .cta-button:hover {
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.4);
    transform: scale(1.05);
}

.everything-section .cta-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #F7931E, #FF8C00);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.everything-section .cta-button:hover .cta-gradient-overlay {
    opacity: 1;
}

.everything-section .cta-button-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.everything-section .cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.everything-section .cta-button:hover svg {
    transform: translateX(0.5rem);
}

.everything-section .shine-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.everything-section .cta-button:hover .shine-effect {
    transform: translateX(100%);
}

/* Animations */
@keyframes fade-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blob-float-slow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.15);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.85);
    }
}

@keyframes shimmer-glow {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

/* ===================================================================
   SECTION 9: TESTIMONIALS
   =================================================================== */
.testimonials-section {
    position: relative;
    padding: 4rem 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, rgba(239, 246, 255, 0.3) 100%);
}

@media (min-width: 640px) {
    .testimonials-section {
        padding: 5rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-section {
        padding: 6rem 2rem;
    }
}

/* Decorative Blob Shapes */
.testimonials-section .blob-1 {
    position: absolute;
    top: 5rem;
    right: 2.5rem;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    animation: blob-morph 20s ease-in-out infinite;
}

.testimonials-section .blob-2 {
    position: absolute;
    bottom: 5rem;
    left: 2.5rem;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    animation: blob-morph 20s ease-in-out infinite;
    animation-delay: 7s;
}

.testimonials-section .blob-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(216, 180, 254, 0.1) 0%, rgba(251, 207, 232, 0.05) 100%);
    animation: blob-morph 20s ease-in-out infinite;
    animation-delay: 14s;
}

.testimonials-section .testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header */
.testimonials-section .testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .testimonials-section .testimonials-header {
        margin-bottom: 5rem;
    }
}

.testimonials-section .badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonials-section .badge-inner {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(209, 213, 219, 0.6);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounce-gentle 3s ease-in-out infinite;
}

.testimonials-section .badge-inner svg {
    width: 1rem;
    height: 1rem;
    color: #F7931E;
}

.testimonials-section .badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    background: linear-gradient(to right, #F7931E, #1E3A8A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-section .testimonials-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .testimonials-section .testimonials-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-section .testimonials-title {
        font-size: 4.5rem;
    }
}

.testimonials-section .title-line-1 {
    position: relative;
    display: inline-block;
}

.testimonials-section .gradient-trusted-text {
    background: linear-gradient(to right, #1E3A8A, #3B82F6, #F7931E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-section .underline-svg {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
}

.testimonials-section .title-line-2 {
    color: #111827;
    margin-top: 0.5rem;
    display: inline-block;
}

.testimonials-section .testimonials-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 300;
}

@media (min-width: 640px) {
    .testimonials-section .testimonials-subtitle {
        font-size: 1.25rem;
    }
}

/* Stats Row */
.testimonials-section .stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.testimonials-section .stat-badge {
    animation: stat-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.testimonials-section .stat-card {
    position: relative;
    padding: 1rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
}

.testimonials-section .stat-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.testimonials-section .stat-hover-bg {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonials-section .stat-card:hover .stat-hover-bg {
    opacity: 1;
}

.testimonials-section .stat-bg-blue {
    background: linear-gradient(to right, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
}

.testimonials-section .stat-bg-orange {
    background: linear-gradient(to right, rgba(247, 147, 30, 0.05), rgba(255, 140, 0, 0.05));
}

.testimonials-section .stat-bg-green {
    background: linear-gradient(to right, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
}

.testimonials-section .stat-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-section .stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonials-section .stat-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
    stroke-width: 2.5;
}

.testimonials-section .stat-icon-blue {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.testimonials-section .stat-icon-orange {
    background: linear-gradient(135deg, #F7931E 0%, #FF8C00 100%);
}

.testimonials-section .stat-icon-green {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
}

.testimonials-section .stat-value {
    font-size: 1.875rem;
    font-weight: 900;
}

.testimonials-section .stat-value-blue {
    background: linear-gradient(to right, #1E3A8A, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-section .stat-value-orange {
    background: linear-gradient(to right, #F7931E, #FF8C00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-section .stat-value-green {
    background: linear-gradient(to right, #22c55e, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-section .stat-label {
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 600;
}

/* Testimonials Grid */
.testimonials-section .testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonials-section .testimonial-card {
    animation: testimonial-float 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.testimonials-section .testimonial-card-inner {
    position: relative;
    height: 100%;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.7s ease;
}

.testimonials-section .testimonial-card:hover .testimonial-card-inner {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.75rem);
}

.testimonials-section .card-gradient-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.testimonials-section .testimonial-card:hover .card-gradient-bg {
    opacity: 1;
}

.testimonials-section .card-content {
    position: relative;
    padding: 2rem;
}

/* Profile Section */
.testimonials-section .profile-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.testimonials-section .profile-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-section .profile-image-wrapper {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    overflow: hidden;
    --ring-color: rgba(30, 58, 138, 0.25);
    box-shadow:
        0 0 0 2px var(--ring-color),
        0 0 0 4px rgba(255, 255, 255, 0.9);
    transition: all 0.5s ease;
}

.testimonials-section .testimonial-card:hover .profile-image-wrapper {
    box-shadow:
        0 0 0 4px var(--ring-color),
        0 0 0 6px rgba(255, 255, 255, 0.9);
}

.testimonials-section .profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.testimonials-section .testimonial-card:hover .profile-image {
    transform: scale(1.1);
}

.testimonials-section .image-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.8s ease;
}

.testimonials-section .testimonial-card:hover .image-reveal::after {
    transform: translateX(100%) translateY(100%);
}

.testimonials-section .profile-name {
    font-weight: 700;
    color: #111827;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonials-section .profile-role {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.25;
}

/* Quote Icon */
.testimonials-section .quote-float {
    animation: quote-bob 2s ease-in-out infinite alternate;
}

.testimonials-section .quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

.testimonials-section .testimonial-card:hover .quote-icon {
    opacity: 0.4;
}

/* Stars */
.testimonials-section .stars-wrapper {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonials-section .star-icon {
    width: 1.25rem;
    height: 1.25rem;
    animation: star-twinkle 2s ease-in-out infinite;
}

/* Testimonial Text */
.testimonials-section .testimonial-text {
    color: #374151;
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

/* Bottom Section */
.testimonials-section .bottom-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.testimonials-section .company-badge {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.testimonials-section .metric-wrapper {
    text-align: right;
}

.testimonials-section .metric-value {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.125rem;
}

.testimonials-section .metric-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

/* Glow Effect */
.testimonials-section .card-glow {
    position: absolute;
    inset: -0.25rem;
    border-radius: 1.5rem;
    opacity: 0;
    filter: blur(32px);
    transition: all 0.7s ease;
    z-index: -1;
}

.testimonials-section .testimonial-card:hover .card-glow {
    opacity: 0.3;
}

/* Accent Bar */
.testimonials-section .accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    transform: scaleX(0);
    transition: transform 0.7s ease;
    transform-origin: left;
}

.testimonials-section .testimonial-card:hover .accent-bar {
    transform: scaleX(1);
}

/* Animations */
@keyframes testimonial-float {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes stat-bounce {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    60% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes blob-morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) scale(1);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes star-twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.9);
    }
}

@keyframes quote-bob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===================================================================
   SECTION 10: GET STARTED
   =================================================================== */
.get-started-section {
    position: relative;
    padding: 3rem 1rem;
    overflow: hidden;
    background: white;
}

@media (min-width: 640px) {
    .get-started-section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .get-started-section {
        padding: 5rem 2rem;
    }
}

.get-started-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header */
.get-started-section .get-started-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .get-started-section .get-started-header {
        margin-bottom: 3.5rem;
    }
}

.get-started-section .badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.get-started-section .badge-inner {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #1E3A8A, #3B82F6);
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounce-gentle 3s ease-in-out infinite, badge-pulse 3s ease-in-out infinite;
    will-change: transform, box-shadow;
}

.get-started-section .badge-inner svg {
    width: 1rem;
    height: 1rem;
    color: white;
    fill: white;
}

.get-started-section .badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.get-started-section .get-started-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .get-started-section .get-started-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .get-started-section .get-started-title {
        font-size: 4.5rem;
    }
}

.get-started-section .gradient-title-text {
    background: linear-gradient(to right, #1E3A8A, #3B82F6, #F7931E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.get-started-section .title-line-2 {
    color: #111827;
    margin-top: 0.5rem;
    display: inline-block;
}

.get-started-section .benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.get-started-section .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.get-started-section .benefit-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #22c55e;
    stroke-width: 3;
}

.get-started-section .benefit-text {
    font-size: 1.125rem;
    color: #4b5563;
    font-weight: 500;
}

@media (min-width: 640px) {
    .get-started-section .benefit-text {
        font-size: 1.25rem;
    }
}

/* Steps Grid */
.get-started-section .steps-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

/* Connecting Line - Desktop */
.get-started-section .connecting-line {
    display: none;
}

@media (min-width: 1024px) {
    .get-started-section .connecting-line {
        display: block;
        position: absolute;
        top: 4rem;
        left: 7.5%;
        right: 7.5%;
        height: 2px;
        background: linear-gradient(to right, #1E3A8A, #F7931E, #1E3A8A);
        opacity: 0.2;
    }
}

.get-started-section .steps-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .get-started-section .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .get-started-section .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.get-started-section .step-card-wrapper {
    position: relative;
}

.get-started-section .step-card {
    position: relative;
    height: 100%;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    overflow: hidden;
}

.get-started-section .step-card-blue {
    background: rgba(239, 246, 255, 0.5);
}

.get-started-section .step-card-orange {
    background: rgba(255, 247, 237, 0.5);
}

.get-started-section .step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Shine Effect */
.get-started-section .shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    pointer-events: none;
}

.get-started-section .step-card:hover .shine-effect {
    animation: shine 1s ease;
}

/* Hover Background Enhancement */
.get-started-section .hover-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.get-started-section .step-card:hover .hover-bg {
    opacity: 1;
}

.get-started-section .hover-bg-blue {
    background-color: #EFF6FF;
}

.get-started-section .hover-bg-orange {
    background-color: #FFF7ED;
}

/* Step Number Badge */
.get-started-section .step-number-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.get-started-section .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.get-started-section .step-card:hover .step-number {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.get-started-section .step-number-blue {
    background: linear-gradient(135deg, #1E3A8A, rgba(30, 58, 138, 0.87));
}

.get-started-section .step-number-orange {
    background: linear-gradient(135deg, #F7931E, rgba(247, 147, 30, 0.87));
}

/* Icon */
.get-started-section .step-icon-section {
    margin-bottom: 1.25rem;
}

.get-started-section .step-icon-wrapper {
    display: inline-block;
    transition: all 0.3s ease;
}

.get-started-section .step-card:hover .step-icon-wrapper {
    animation: iconBounce 0.6s ease infinite;
}

.get-started-section .step-icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.get-started-section .step-card:hover .step-icon-bg {
    transform: scale(1.1) rotate(5deg);
}

.get-started-section .step-icon-bg-blue {
    background-color: rgba(30, 58, 138, 0.08);
}

.get-started-section .step-icon-bg-orange {
    background-color: rgba(247, 147, 30, 0.08);
}

.get-started-section .step-icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

.get-started-section .step-icon-color-blue {
    color: #1E3A8A;
}

.get-started-section .step-icon-color-orange {
    color: #F7931E;
}

/* Title */
.get-started-section .step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.get-started-section .step-card:hover .step-title {
    transform: scale(1.05);
}

.get-started-section .step-title-text {
    transition: all 0.3s ease;
}

.get-started-section .step-card:hover .step-title-text {
    background: linear-gradient(135deg, var(--step-color), var(--step-color-dd));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.get-started-section .step-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.625;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .get-started-section .step-description {
        font-size: 1.25rem;
    }
}

.get-started-section .step-card:hover .step-description {
    color: #374151;
}

/* Bottom Accent */
.get-started-section .bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: left;
}

.get-started-section .step-card:hover .bottom-accent {
    transform: scaleX(1);
}

/* Glow Effect */
.get-started-section .glow-effect {
    position: absolute;
    inset: -0.25rem;
    border-radius: 1rem;
    opacity: 0;
    filter: blur(24px);
    transition: all 0.5s ease;
    z-index: -2;
}

.get-started-section .step-card:hover .glow-effect {
    opacity: 0.4;
}

/* Arrow Between Steps */
.get-started-section .arrow-wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .get-started-section .arrow-wrapper {
        display: flex;
        position: absolute;
        right: -1.5rem;
        top: 4rem;
        transform: translateY(-50%);
        z-index: 10;
    }
}

.get-started-section .arrow-highlight {
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.get-started-section .arrow-highlight::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, var(--arrow-glow), transparent 70%);
    opacity: 0.5;
    border-radius: 50%;
}

.get-started-section .arrow-connector {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
    stroke-width: 3;
    animation: arrowPulse 2s ease-in-out infinite;
}

/* CTA Section */
.get-started-section .cta-section {
    text-align: center;
}

.get-started-section .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(to right, #1E3A8A, #3B82F6, #1E3A8A);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.get-started-section .cta-button:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.get-started-section .cta-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.get-started-section .cta-button:hover .cta-shimmer {
    transform: translateX(100%);
}

.get-started-section .cta-button-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.get-started-section .cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.get-started-section .cta-button:hover .arrow-icon {
    transform: translateX(0.25rem);
    transition: transform 0.3s ease;
}

.get-started-section .cta-subtitle {
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(4px) scale(1.1);
        opacity: 1;
    }
}

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

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 18px 30px -6px rgba(30, 58, 138, 0.25);
    }
}

/* ===================================================================
   SECTION 11: FAQ
   =================================================================== */
.faq-section {
    position: relative;
    padding: 3rem 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 50%, #f9fafb 100%);
}

@media (min-width: 640px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 5rem 2rem;
    }
}

/* Decorative Background Elements */
.faq-section .blob-top-right {
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
}

.faq-section .blob-bottom-left {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
    width: 31.25rem;
    height: 31.25rem;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
    border-radius: 9999px;
    filter: blur(64px);
}

.faq-section .faq-container {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header */
.faq-section .faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .faq-section .faq-header {
        margin-bottom: 3.5rem;
    }
}

.faq-section .badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.faq-section .badge-inner {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #1E3A8A, #3B82F6);
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-section .badge-inner svg {
    width: 1rem;
    height: 1rem;
    color: white;
    fill: white;
}

.faq-section .badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.faq-section .faq-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .faq-section .faq-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .faq-section .faq-title {
        font-size: 4.5rem;
    }
}

.faq-section .gradient-title-text {
    background: linear-gradient(to right, #1E3A8A, #3B82F6, #F7931E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-section .title-line-2 {
    color: #111827;
    margin-top: 0.5rem;
    display: inline-block;
}

.faq-section .faq-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .faq-section .faq-subtitle {
        font-size: 1.25rem;
    }
}

/* FAQ Items */
.faq-section .faq-items-wrapper {
    margin-bottom: 3rem;
}

.faq-section .faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-section .faq-item {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.faq-section .faq-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    border: 2px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
}

.faq-section .faq-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}

.faq-section .faq-card.active {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: #e5e7eb;
}

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

.faq-section .faq-question-button:hover {
    background: rgba(249, 250, 251, 0.5);
}

/* Icon Badge */
.faq-section .faq-icon-badge {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover .faq-icon-badge {
    animation: iconPulse 0.6s ease infinite;
}

.faq-section .faq-card.active .faq-icon-badge {
    transform: scale(1.1);
}

.faq-section .faq-icon-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2.5;
}

/* Question Text */
.faq-section .faq-question-text {
    flex: 1;
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
    transition: all 0.3s ease;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

.faq-section .faq-card:hover .faq-question-text {
    color: #374151;
}

.faq-section .faq-card.active .faq-question-text {
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
}

/* Chevron Button */
.faq-section .chevron-wrapper {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    transition: all 0.3s ease;
}

.faq-section .faq-question-button:hover .chevron-wrapper {
    background: #e5e7eb;
}

.faq-section .faq-card.active .chevron-wrapper {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-section .chevron-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    stroke-width: 3;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-section .faq-card.active .chevron-icon {
    transform: rotate(180deg);
}

/* Answer */
.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section .faq-card.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-section .faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-section .faq-answer-content {
    padding-left: 4rem;
    padding-right: 3.5rem;
}

.faq-section .faq-answer-border {
    padding-top: 1rem;
    border-top: 2px solid;
}

.faq-section .faq-answer-text {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.625;
}

@media (min-width: 640px) {
    .faq-section .faq-answer-text {
        font-size: 1.25rem;
    }
}

/* Left Accent Bar */
.faq-section .accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    opacity: 0;
    transition: all 0.5s ease;
}

.faq-section .faq-card.active .accent-bar {
    opacity: 1;
}

/* Glow Effect */
.faq-section .glow-effect {
    position: absolute;
    inset: -0.25rem;
    border-radius: 1rem;
    opacity: 0;
    filter: blur(24px);
    transition: all 0.5s ease;
    z-index: -1;
}

.faq-section .faq-card.active .glow-effect {
    opacity: 0.3;
}

/* Bottom CTA */
.faq-section .bottom-cta {
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, rgba(255, 247, 237, 0.3) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .faq-section .bottom-cta {
        padding: 2.5rem;
    }
}

.faq-section .cta-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.faq-section .cta-icon-wrapper svg {
    width: 2rem;
    height: 2rem;
    color: white;
    stroke-width: 2;
}

.faq-section .cta-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .faq-section .cta-title {
        font-size: 1.875rem;
    }
}

.faq-section .cta-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .faq-section .cta-description {
        font-size: 1.25rem;
    }
}

.faq-section .cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #1E3A8A, #3B82F6);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-section .cta-button:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.faq-section .cta-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.faq-section .cta-button:hover .cta-shimmer {
    transform: translateX(100%);
}

.faq-section .cta-button-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-section .cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===================================================================
   SECTION 13: FOOTER
   =================================================================== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #0f2847 0%, #1E3A8A 50%, #0f2847 100%);
    color: white;
    overflow: hidden;
}

/* Decorative Background Elements */
.footer .decorative-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.footer .float-blob-1 {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background: #F7931E;
    border-radius: 9999px;
    filter: blur(100px);
    animation: float 6s ease-in-out infinite;
}

.footer .float-blob-2 {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 20rem;
    height: 20rem;
    background: #3B82F6;
    border-radius: 9999px;
    filter: blur(100px);
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Grid Pattern Overlay */
.footer .grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.footer .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .footer .footer-container {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer .footer-container {
        padding: 4rem 2rem;
    }
}

/* Main Footer Content */
.footer .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer .fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Logo & Description Section */
.footer .logo-section {
    animation-delay: 0.1s;
}

.footer .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer .logo-img {
    height: 4rem;
    width: auto;
}

.footer .section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer .section-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.625;
}

/* Quick Links Section */
.footer .quick-links-section {
    animation-delay: 0.2s;
}

.footer .links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer .link-item {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.footer .link-item:hover {
    color: #F7931E;
    transform: translateX(4px);
}

/* Get In Touch Section */
.footer .contact-section {
    animation-delay: 0.3s;
}

.footer .contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer .contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #F7931E;
    flex-shrink: 0;
    margin-top: 0.125rem;
    stroke-width: 2;
}

.footer .contact-link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .contact-link:hover {
    color: #F7931E;
}

.footer .contact-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Bottom Footer */
.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer .footer-bottom {
        flex-direction: row;
    }
}

.footer .copyright {
    animation-delay: 0.4s;
}

.footer .copyright-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

@media (min-width: 768px) {
    .footer .copyright-text {
        text-align: left;
    }
}

/* Social Icons */
.footer .social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation-delay: 0.5s;
}

.footer .social-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.footer .social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    border-color: transparent;
}

.footer .social-icon.youtube:hover {
    background: linear-gradient(135deg, #F7931E 0%, #FF8C00 100%);
}

.footer .social-icon.twitter:hover {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

.footer .social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    stroke-width: 2;
    transition: color 0.3s ease;
}

.footer .social-icon:hover svg {
    color: white;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LIMITED TIME OFFER CTA (HOME) */
.limited-offer-section {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f2847 0%, #1E3A8A 50%, #0f2847 100%);
    overflow: hidden;
}

@media (min-width: 640px) {
    .limited-offer-section {
        padding: 5rem 2rem;
    }
}

@media (min-width: 1024px) {
    .limited-offer-section {
        padding: 6rem 2rem;
    }
}

.limited-offer-section .cta-bg-decorations {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.limited-offer-section .cta-bg-blob-1 {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: #F7931E;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 6s ease-in-out infinite;
}

.limited-offer-section .cta-bg-blob-2 {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: #3B82F6;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.limited-offer-section .cta-bg-blob-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37.5rem;
    height: 37.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.limited-offer-section .cta-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.limited-offer-section .cta-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.limited-offer-section .cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .limited-offer-section .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.limited-offer-section .cta-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .limited-offer-section .cta-content {
        text-align: left;
    }
}

.limited-offer-section .cta-badge-wrapper {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

@media (min-width: 1024px) {
    .limited-offer-section .cta-badge-wrapper {
        display: flex;
        justify-content: flex-start;
    }
}

.limited-offer-section .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.limited-offer-section .badge-icon {
    width: 1rem;
    height: 1rem;
    color: #F7931E;
}

.limited-offer-section .badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.limited-offer-section .cta-heading {
    font-size: 2.25rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

@media (min-width: 640px) {
    .limited-offer-section .cta-heading {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .limited-offer-section .cta-heading {
        font-size: 3.75rem;
    }
}

.limited-offer-section .cta-heading-gradient {
    background: linear-gradient(90deg, #F7931E 0%, #FFB84D 50%, #F7931E 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.limited-offer-section .cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
}

@media (min-width: 640px) {
    .limited-offer-section .cta-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .limited-offer-section .cta-description {
        margin-left: 0;
        margin-right: 0;
    }
}

.limited-offer-section .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

@media (min-width: 640px) {
    .limited-offer-section .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .limited-offer-section .cta-buttons {
        justify-content: flex-start;
    }
}

.limited-offer-section .cta-button-primary {
    position: relative;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #F7931E, #FF8C00);
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.limited-offer-section .cta-button-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 20px 40px rgba(247, 147, 30, 0.4);
}

.limited-offer-section .shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.limited-offer-section .button-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.limited-offer-section .button-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.limited-offer-section .button-arrow {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.limited-offer-section .cta-button-primary:hover .button-arrow {
    transform: translateX(0.25rem);
}

.limited-offer-section .cta-button-secondary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.limited-offer-section .cta-button-secondary:hover {
    transform: translateY(-2px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.limited-offer-section .cta-benefits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 1rem;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

@media (min-width: 1024px) {
    .limited-offer-section .cta-benefits {
        justify-content: flex-start;
    }
}

.limited-offer-section .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.limited-offer-section .benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4ade80;
    stroke: #4ade80;
    fill: none;
    display: block;
}

.limited-offer-section .benefit-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.limited-offer-section .cta-image-wrapper {
    position: relative;
    display: none;
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

@media (min-width: 1024px) {
    .limited-offer-section .cta-image-wrapper {
        display: block;
    }
}

.limited-offer-section .image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 1.5rem;
    filter: blur(32px);
    animation: pulse 2s ease-in-out infinite;
}

.limited-offer-section .image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.limited-offer-section .image-aspect {
    aspect-ratio: 4/3;
    position: relative;
    background: #f3f4f6;
    min-height: 300px;
}

.limited-offer-section .main-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.limited-offer-section .image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, transparent 50%, rgba(247, 147, 30, 0.2) 100%);
}

.limited-offer-section .stat-card {
    position: absolute;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid #f3f4f6;
}

.limited-offer-section .stat-card-1 {
    top: 1.5rem;
    left: 1.5rem;
    animation: slideInFromLeft 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

.limited-offer-section .stat-card-2 {
    bottom: 1.5rem;
    right: 1.5rem;
    animation: slideInFromRight 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 1s;
}

.limited-offer-section .stat-card-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.limited-offer-section .stat-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.limited-offer-section .stat-icon-blue {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
}

.limited-offer-section .stat-icon-orange {
    background: linear-gradient(135deg, #F7931E, #FF8C00);
}

.limited-offer-section .stat-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

.limited-offer-section .stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
}

.limited-offer-section .stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
}

/* EXIT INTENT POPUP */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9999;
    width: 95%;
    max-width: 1024px;
    max-height: 95vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.popup-container.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-container .popup-content {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.popup-container .close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popup-container .close-button:hover {
    background: #f9fafb;
    border-color: #F7931E;
}

.popup-container .close-button svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #4b5563;
    transition: color 0.3s;
}

.popup-container .close-button:hover svg {
    color: #F7931E;
}

.popup-container .popup-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .popup-container .popup-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.popup-container .popup-left {
    background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #1E3A8A 100%);
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .popup-container .popup-left {
        padding: 2.5rem;
    }
}

.popup-container .popup-left-bg-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 12rem;
    height: 12rem;
    background: rgba(247, 147, 30, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.popup-container .popup-left-bg-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    background: rgba(96, 165, 250, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.popup-container .popup-left-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.popup-container .popup-logo {
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .popup-container .popup-logo {
        text-align: left;
    }
}

.popup-container .popup-logo-text {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

.popup-container .popup-logo-orange {
    color: #F7931E;
}

.popup-container .popup-title-section {
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .popup-container .popup-title-section {
        text-align: left;
    }
}

.popup-container .popup-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .popup-container .popup-title {
        font-size: 2.25rem;
    }
}

.popup-container .title-underline {
    width: 4rem;
    height: 4px;
    background: #F7931E;
    border-radius: 9999px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .popup-container .title-underline {
        margin: 0;
    }
}

.popup-container .popup-description {
    margin-bottom: 1.5rem;
}

.popup-container .popup-description p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.popup-container .popup-description .highlight {
    font-weight: 700;
}

.popup-container .benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-top: auto;
}

.popup-container .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.popup-container .benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #F7931E;
    flex-shrink: 0;
}

.popup-container .benefit-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.popup-container .popup-right {
    padding: 2rem;
    background: #f9fafb;
}

@media (min-width: 1024px) {
    .popup-container .popup-right {
        padding: 2.5rem;
    }
}

.popup-container .form-header {
    margin-bottom: 1.5rem;
}

.popup-container .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.popup-container .form-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.popup-container .popup-form {
    display: grid;
    gap: 1rem;
}

.popup-container .form-group {
    display: block;
}

.popup-container .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.375rem;
}

.popup-container .form-input-wrapper {
    position: relative;
}

.popup-container .form-icon {
    position: absolute;
    top: 50%;
    left: 0.875rem;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
    pointer-events: none;
}

.popup-container .form-input,
.popup-container .form-select {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    color: #111827;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.popup-container .form-input::placeholder {
    color: #9ca3af;
}

.popup-container .form-input:focus,
.popup-container .form-select:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #F7931E;
}

.popup-container .form-select {
    appearance: none;
    cursor: pointer;
}

.popup-container .select-arrow {
    position: absolute;
    top: 50%;
    right: 0.875rem;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
    pointer-events: none;
}

.popup-container .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .popup-container .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.popup-container .radio-group {
    display: flex;
    gap: 1.5rem;
}

.popup-container .radio-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
}

.popup-container .radio-input {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    accent-color: #F7931E;
}

.popup-container .radio-text {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
    transition: color 0.3s;
}

.popup-container .radio-label:hover .radio-text {
    color: #F7931E;
}

.popup-container .conditional-field {
    display: none;
    animation: slide-down 0.3s ease-out;
}

.popup-container .conditional-field.active {
    display: block;
}

.popup-container .submit-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #F7931E;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.3);
}

.popup-container .submit-button:hover {
    background: #E67E0E;
    box-shadow: 0 15px 35px rgba(247, 147, 30, 0.4);
    transform: scale(1.02);
}

.popup-container .form-status {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #1E3A8A;
    font-weight: 600;
}

.popup-container .form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.75rem;
}

.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1.5rem;
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background: white;
    color: #111827;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    text-align: center;
    max-width: 28rem;
    width: 100%;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scale-in {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes slide-down {
    from { opacity: 0; max-height: 0; transform: translateY(-10px); }
    to { opacity: 1; max-height: 200px; transform: translateY(0); }
}
