/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: #1f2937; background: #fff; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }
a, button { transition: all 0.3s ease; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }
input, textarea, button { font-family: inherit; }

/* ========== UTILITIES ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.section-container-narrow { max-width: 1024px; margin: 0 auto; padding: 0 1rem; }
.section-container-medium { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }
.section-header-block, .section-header-compact, .section-header-mid, .section-subheader, .section-centered { text-align: center; }
.hero-visual-wrap { position: relative; }
/* .flex removed */
/* .grid removed */
/* .items-center removed */
.items-start { align-items: start; }
/* .flex-col removed */
/* .gap-2 removed */
/* .gap-3 removed */
/* .gap-4 removed */
/* .gap-8 removed */
/* .gap-12 removed */
.font-poppins { font-family: 'Poppins', sans-serif; }

/* ========== GRADIENT UTILITIES ========== */
.teal-gradient { background: linear-gradient(135deg, #14b8a6, #0891b2); }
.teal-gradient-text {
    background: linear-gradient(90deg, #14b8a6 0%, #0891b2 40%, #22d3ee 50%, #0891b2 60%, #14b8a6 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
}
.gradient-headline {
    background: linear-gradient(90deg, #14b8a6 0%, #0891b2 35%, #22d3ee 50%, #0891b2 65%, #14b8a6 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4.5s ease-in-out infinite;
}

/* ========== ANIMATIONS ========== */
@keyframes textShimmer {
    0% { background-position: 100% center; }
    100% { background-position: -100% center; }
}
@keyframes floatA { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(15px, -20px) scale(1.05); } 66% { transform: translate(-10px, 10px) scale(0.95); } }
@keyframes floatB { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-20px, -15px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes heroCycle {
    0%, 8% { transform: translateY(0); }
    20%, 28% { transform: translateY(-20%); }
    40%, 48% { transform: translateY(-40%); }
    60%, 68% { transform: translateY(-60%); }
    80%, 96% { transform: translateY(-80%); }
    100% { transform: translateY(-80%); }
}
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes typewrite { from { width: 0; } to { width: 100%; } }
@keyframes blinkCaret { from, to { border-color: transparent; } 50% { border-color: #14b8a6; } }
@keyframes hideCaret { to { border-right-color: transparent; border-right-width: 0; } }
@keyframes meshGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes blobDrift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-20px) scale(1.05); } 66% { transform: translate(-20px,15px) scale(0.95); } }
@keyframes quoteFloat1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes quoteFloat2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes quoteFloat3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes quoteFloat4 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ========== NAVBAR ========== */
.navbar {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    z-index: 50;
}
.navbar.scrolled { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}
.navbar-logo { display: flex; align-items: baseline; }
.navbar-logo img { height: 24px; width: 24px; margin-right: 0.5rem; margin-top: 12px; }
.navbar-logo-text { font-size: 1.5rem; font-weight: 700; color: #111827; }
.navbar-by-solven { color: #6b7280; font-size: 0.875rem; margin-left: 0.5rem; transition: color 0.3s; }
.navbar-by-solven:hover { color: #374151; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
@media (max-width: 767px) { .nav-links { display: none !important; } }
.nav-link { position: relative; padding-bottom: 2px; color: #374151; font-weight: 500; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    transition: width 0.3s ease;
}
.nav-link:hover { color: #111827; }
.nav-link:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
    background: none; border: none; cursor: pointer;
    color: #374151; font-weight: 500; font-size: 1rem;
    display: flex; align-items: center; padding: 0.5rem 0;
}
.nav-dropdown-btn i { margin-left: 0.375rem; font-size: 0.75rem; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-btn i { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    width: 14rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 50;
    border: 1px solid #f3f4f6;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; }
.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    transition: background 0.2s, color 0.2s;
}
.nav-dropdown-item:hover { background: #f9fafb; color: #0d9488; }
.nav-dropdown-item i {
    margin-right: 0.75rem;
    padding: 0.375rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}
.nav-dropdown-item i.icon-realestate { color: #10b981; background: #ecfdf5; }
.nav-dropdown-item i.icon-ecommerce { color: #f59e0b; background: #fffbeb; }
.nav-dropdown-item i.icon-travel { color: #0ea5e9; background: #f0f9ff; }
.nav-dropdown-item i.icon-food { color: #f43f5e; background: #fff1f2; }
.nav-dropdown-item i.icon-agencies { color: #8b5cf6; background: #f5f3ff; }
.nav-dropdown-item i.icon-studyabroad { color: #14b8a6; background: #f0fdfa; }
.nav-dropdown-item-active {
    color: #0f766e;
    font-weight: 500;
    background: #f0fdfa;
    border-radius: 0.375rem;
}

.nav-cta {
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    white-space: nowrap;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    transition: box-shadow 0.3s;
}
.nav-cta:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }

/* Mobile menu button */
.mobile-menu-btn-wrap {
    display: flex;
}
@media (min-width: 768px) {
    .mobile-menu-btn-wrap { display: none; }
}
.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.mobile-menu-btn:hover { color: #6b7280; background: #f3f4f6; }
.mobile-menu-btn svg { height: 24px; width: 24px; }

/* Mobile menu */
.mobile-menu { padding: 0.5rem; display: none; }
.mobile-menu.open { display: block; }
.mobile-menu-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.2s;
}
.mobile-menu-link:hover { color: #111827; }
.mobile-menu-link-active { color: #0d9488; font-weight: 600; }
.mobile-menu-cta {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
}

/* ========== FLOATING ORBS ========== */
.floating-orb { position: absolute; border-radius: 50%; pointer-events: none; opacity: 0.12; filter: blur(1px); }
.float-a { animation: floatA 8s ease-in-out infinite; }
.float-b { animation: floatB 10s ease-in-out infinite; }

/* ========== HERO ========== */
.hero-mesh {
    padding-top: 8rem;
    padding-bottom: 7rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(204,251,241,0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(153,246,228,0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(207,250,254,0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 30%, rgba(204,251,241,0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 70%, rgba(240,253,250,0.7) 0%, transparent 50%),
        linear-gradient(135deg, #f0fdfa 0%, #ffffff 40%, #ecfeff 70%, #f0fdfa 100%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-200 { animation-delay: 0.2s; }

.hero-badge {
    display: inline-block;
    background: #ccfbf1;
    color: #0f766e;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-cycle-wrapper { display: block; position: relative; overflow: hidden; height: 1.2em; line-height: 1.2; }
.hero-cycle-list { display: flex; flex-direction: column; animation: heroCycle 10s cubic-bezier(0.4,0,0.2,1) infinite; }
.hero-cycle-item { height: 1.2em; display: flex; align-items: center; white-space: nowrap; }

.hero-desc { font-size: 1.125rem; color: #4b5563; line-height: 1.7; margin-bottom: 2rem; max-width: 36rem; }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
.hero-btn-primary {
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.3s;
    box-shadow: 0 10px 15px -3px rgba(153,246,228,0.4);
    border: none;
    cursor: pointer;
}
.hero-btn-primary:hover { opacity: 0.9; }
.hero-btn-secondary {
    background: #fff;
    color: #0f766e;
    border: 2px solid #99f6e4;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-align: center;
    transition: border-color 0.3s;
    cursor: pointer;
}
.hero-btn-secondary:hover { border-color: #2dd4bf; }

/* CTA shimmer effect */
.cta-shimmer { position: relative; overflow: hidden; }
.cta-shimmer::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    border-radius: inherit;
}

/* Hero visual card */
.hero-visual {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    width: 100%;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ccfbf1, #a7f3d0, #cffafe);
}
.hero-visual i { font-size: 6rem; color: #2dd4bf; opacity: 0.4; }

/* Glass card */
.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 1rem;
}
.hero-stat-card { position: absolute; }
.hero-stat-left { bottom: -1.5rem; left: -1.5rem; }
.hero-stat-right { top: -1rem; right: -1rem; padding: 0.75rem; }
.hero-stat-icon {
    width: 3rem; height: 3rem;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
}
.hero-stat-icon-sm {
    width: 2rem; height: 2rem;
    background: #ccfbf1;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
}
.hero-stat-icon-sm i { color: #0d9488; font-size: 0.875rem; }
.hero-stat-value { font-size: 1.5rem; font-weight: 700; color: #111827; }
.hero-stat-value-sm { font-size: 1.125rem; font-weight: 700; color: #111827; }
.hero-stat-label { font-size: 0.875rem; color: #6b7280; }
.hero-stat-label-sm { font-size: 0.75rem; color: #6b7280; }

/* ========== MARQUEE ========== */
.marquee-section { padding: 1.25rem 0; overflow: hidden; background: #0f172a; }
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 0 2rem;
    white-space: nowrap;
}

/* ========== SECTION BADGE ========== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(204,251,241,0.8);
    backdrop-filter: blur(4px);
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(153,246,228,0.6);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.section-badge .pulse-dot {
    width: 0.5rem; height: 0.5rem;
    border-radius: 9999px;
    background: #14b8a6;
    animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ========== PAIN POINTS ========== */
.pain-section { padding: 6rem 0; background: #fff; position: relative; overflow: hidden; }
.pain-section .bg-blur {
    position: absolute; top: -5%; right: -8%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,184,166,0.07), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}
.pain-title { font-size: 2.25rem; font-weight: 700; color: #111827; margin-top: 0.5rem; margin-bottom: 1.5rem; line-height: 1.1; max-width: 56rem; margin-left: auto; margin-right: auto; }
.pain-subtitle { color: #9ca3af; max-width: 32rem; margin: 0 auto; font-size: 1rem; }

.pain-hero-image {
    margin-bottom: 3.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(20,184,166,0.08), 0 4px 16px rgba(0,0,0,0.04);
}
.pain-hero-image-inner {
    width: 100%;
    height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f766e, #0e7490, #155e75);
}
.pain-hero-image-inner i { font-size: 4.5rem; color: #5eead4; opacity: 0.3; }

/* Bento grid */
.pain-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pain-bento-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(20,184,166,0.08);
    border-radius: 1.25rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.pain-bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20,184,166,0.2);
    box-shadow: 0 0 30px rgba(20,184,166,0.1), 0 12px 32px rgba(20,184,166,0.08);
}
.pain-bento-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #14b8a6, #0891b2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pain-bento-card:hover::after { transform: scaleX(1); }
.pain-bento-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(240,253,250,0.8), rgba(255,255,255,0.9));
    padding: 2.5rem;
}
.pain-bento-featured .pain-icon-wrap { width: 64px; height: 64px; }
.pain-bento-featured .pain-icon-wrap i { font-size: 1.5rem; }
.pain-bento-featured h3 { font-size: 1.35rem; }
.pain-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(20,184,166,0.1);
    border: 1px solid rgba(20,184,166,0.08);
}
.pain-icon-wrap i { font-size: 1.15rem; }
.pain-bento-num {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(20,184,166,0.04);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
}
.pain-bento-card h3 { font-size: 1.125rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.pain-bento-card p { color: #6b7280; font-size: 0.875rem; line-height: 1.65; }
.pain-bento-featured h3 { font-size: 1.25rem; }
.pain-bottom-text { font-size: 1.125rem; font-weight: 600; color: #374151; margin-top: 3.5rem; }

/* ========== PROCESS TIMELINE ========== */
.process-section { padding: 4rem 0; background: #fff; }
.process-section .section-header { margin-bottom: 3rem; }
.process-title { font-size: 2.25rem; font-weight: 700; color: #111827; margin-top: 0.5rem; margin-bottom: 1.5rem; line-height: 1.15; max-width: 56rem; margin-left: auto; margin-right: auto; }
.process-subtitle { color: #9ca3af; max-width: 32rem; margin: 0 auto; font-size: 1rem; }
.process-slide-left, .process-slide-right { display: inline-block; will-change: transform, opacity; }

.process-timeline { position: relative; padding: 1rem 0; }
.process-timeline-progress {
    position: absolute; left: 50%; top: 0; width: 3px; height: 0;
    background: linear-gradient(180deg, #14b8a6, #0891b2, #22d3ee);
    transform: translateX(-50%); z-index: 0; will-change: height;
    transition: height 0.15s linear; border-radius: 0 0 3px 3px;
}
.process-step {
    display: flex; align-items: center; margin-bottom: 2rem; position: relative;
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: opacity, transform;
}
.process-step.step-visible { opacity: 1; transform: translateY(0); }
.process-step:last-child { margin-bottom: 0; }
.process-step:nth-child(odd) { flex-direction: row; }
.process-step:nth-child(even) { flex-direction: row-reverse; }
.process-step-card {
    width: 44%; background: #fff; border: 1px solid #f0f0f0; border-radius: 1rem;
    padding: 1.75rem 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease, background 0.4s ease;
    position: relative; overflow: hidden;
}
.process-step-card::after {
    content: ''; position: absolute; bottom: 0; left: 1.5rem; right: 1.5rem; height: 2px;
    background: linear-gradient(90deg, #14b8a6, #0891b2);
    opacity: 0; transform: scaleX(0);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.step-visible .process-step-card::after { opacity: 1; transform: scaleX(1); }
.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(20,184,166,0.1), 0 2px 8px rgba(0,0,0,0.04);
    background: #f0fdfa;
}
.process-step-card .step-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem;
}
.process-step-card .step-icon i { color: #14b8a6; font-size: 1.1rem; }
.process-step-card h3 { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 0.35rem; }
.process-step-card p { color: #6b7280; line-height: 1.6; margin: 0; font-size: 0.88rem; }
.process-step-spacer { width: 12%; }
.process-step-number {
    position: absolute; left: 50%; transform: translateX(-50%) scale(0.5);
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 1.1rem; z-index: 2;
    box-shadow: 0 4px 16px rgba(20,184,166,0.3);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.6s ease;
    will-change: opacity, transform;
}
.process-step.step-visible .process-step-number {
    opacity: 1; transform: translateX(-50%) scale(1);
    box-shadow: 0 0 20px rgba(20,184,166,0.5), 0 4px 16px rgba(20,184,166,0.3);
}
.process-step.step-visible .process-step-number::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50%;
    background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    background-size: 200% 100%; animation: shimmer 3s ease-in-out infinite; pointer-events: none;
}

/* ========== COMPARISON ========== */
.comparison-section { padding: 5rem 0; background: #fff; position: relative; overflow: hidden; }
.comparison-title { font-size: 1.875rem; font-weight: 800; color: #111827; margin-top: 0.5rem; margin-bottom: 1.25rem; line-height: 1.2; }
.comparison-subtitle { color: #9ca3af; max-width: 42rem; margin: 0 auto; font-size: 1.125rem; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.comparison-card-without {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.comparison-card-with {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 0 24px rgba(20,184,166,0.08), 0 4px 16px rgba(0,0,0,0.04);
    border: 1px solid rgba(20,184,166,0.1);
}
.comparison-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.comparison-icon {
    width: 2.5rem; height: 2.5rem;
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
}
.comparison-icon-red { background: #fee2e2; }
.comparison-icon-red i { color: #ef4444; }
.comparison-icon-teal { background: #ccfbf1; }
.comparison-icon-teal i { color: #14b8a6; }
.comparison-card-header h3 { font-size: 1.125rem; font-weight: 700; color: #111827; }
.comparison-list { display: flex; flex-direction: column; gap: 1.25rem; }
.comparison-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.comparison-list li > i { font-size: 0.75rem; margin-top: 0.5rem; }
.comparison-list .icon-minus { color: #f87171; }
.comparison-list .icon-check { color: #14b8a6; }
.comparison-list p.item-title { font-weight: 500; color: #374151; }
.comparison-list p.item-desc { color: #9ca3af; font-size: 0.875rem; margin-top: 0.125rem; }

/* ========== SHOWCASE ========== */
.showcase-section { padding: 6rem 0; background: linear-gradient(to bottom right, #f9fafb, #fff, rgba(240,253,250,0.2)); }
.showcase-title { font-size: 1.875rem; font-weight: 800; color: #111827; margin-top: 0.5rem; margin-bottom: 1.25rem; line-height: 1.2; }
.showcase-subtitle { color: #9ca3af; max-width: 42rem; margin: 0 auto; font-size: 1.125rem; letter-spacing: 0.025em; }
.showcase-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-rows: 280px 280px; gap: 1.25rem;
}
.showcase-card {
    position: relative; border-radius: 1.5rem; overflow: hidden; background: #fff;
    box-shadow: 0 0 24px rgba(20,184,166,0.08), 0 4px 16px rgba(0,0,0,0.04);
    transition: box-shadow 0.5s ease, transform 0.4s ease;
    opacity: 0; transform: translateY(30px);
}
.showcase-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.5s ease; }
.showcase-card:hover { box-shadow: 0 0 40px rgba(20,184,166,0.18), 0 12px 40px rgba(20,184,166,0.12); transform: translateY(-5px); }
.showcase-card.visible:hover { transform: translateY(-5px); }
.showcase-card .showcase-media { overflow: hidden; position: relative; }
.showcase-card .showcase-media .showcase-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.showcase-card:hover .showcase-media .showcase-placeholder { transform: scale(1.05); transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.showcase-card .showcase-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 2rem 1.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%); color: #fff;
}
.showcase-card .showcase-overlay h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.35rem; }
.showcase-card .showcase-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.55; }
.showcase-card .showcase-badge {
    position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 1rem; border-radius: 999px;
    font-size: 0.72rem; font-weight: 700; color: #0d9488; text-transform: uppercase;
    letter-spacing: 0.06em; z-index: 2; box-shadow: 0 2px 12px rgba(20,184,166,0.15);
    transition: transform 0.3s ease;
}
.showcase-card:hover .showcase-badge { transform: translateY(-2px); }
.showcase-card.showcase-featured { grid-row: 1 / -1; }
.showcase-card.showcase-featured .showcase-media { height: 100%; }
.showcase-card:not(.showcase-featured) .showcase-media { height: 100%; }

/* ========== QUOTES ========== */
.sa-quotes-glass {
    padding: 7rem 0;
    background: linear-gradient(135deg, rgba(240,253,250,0.3) 0%, #ffffff 50%, rgba(204,251,241,0.3) 100%);
    position: relative; overflow: hidden;
}
.sa-quotes-blob {
    position: absolute; border-radius: 50%; filter: blur(80px);
    animation: blobDrift 20s ease-in-out infinite; pointer-events: none;
}
.sa-quotes-dots {
    position: absolute; bottom: 0; right: 0; width: 200px; height: 200px;
    background-image: radial-gradient(circle, rgba(20,184,166,0.12) 1px, transparent 1px);
    background-size: 20px 20px; pointer-events: none;
}
.sa-quotes-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; grid-template-rows: 1fr 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.sa-glass-quote {
    background: rgba(255,255,255,0.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(20,184,166,0.1); border-radius: 1.5rem; padding: 2rem 2.25rem;
    box-shadow: 0 0 20px rgba(20,184,166,0.12), 0 8px 32px rgba(20,184,166,0.08);
    display: flex; flex-direction: column; justify-content: space-between; min-height: 0;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.sa-glass-quote:hover { box-shadow: 0 0 40px rgba(20,184,166,0.2), 0 16px 50px rgba(20,184,166,0.22); transform: translateY(-4px); }
.sa-glass-quote.featured { grid-row: 1 / -1; padding: 2.5rem; animation: quoteFloat1 4s ease-in-out infinite; text-align: center; align-items: center; justify-content: center; }
.sa-glass-quote:nth-child(2) { animation: quoteFloat2 5s ease-in-out infinite 0.5s; }
.sa-glass-quote:nth-child(3) { animation: quoteFloat3 6s ease-in-out infinite 1s; }
.sa-glass-quote:nth-child(4) { animation: quoteFloat4 4.5s ease-in-out infinite 0.3s; }

.quote-icon { color: #2dd4bf; margin-bottom: 1.25rem; display: block; }
.quote-icon-sm { color: #2dd4bf; margin-bottom: 1rem; display: block; }
.quote-text-lg { color: #374151; font-size: 1.5rem; font-style: italic; line-height: 1.6; font-weight: 500; }
.quote-text { color: #374151; font-size: 1rem; font-style: italic; line-height: 1.65; }
.quote-author-row { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.quote-author-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: #2dd4bf; display: inline-block; }
.quote-author-dot-sm { width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: #2dd4bf; display: inline-block; }
.quote-author-name {
    font-weight: 700; color: #0d9488;
    background: #f0fdfa;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}
.quote-author-title { color: #9ca3af; font-size: 0.75rem; margin-left: 0.25rem; }
.quote-icon-group { display: flex; gap: -0.5rem; }
.quote-icon-group > div { margin-left: -0.5rem; }
.quote-icon-group > div:first-child { margin-left: 0; }
.quote-icon-circle {
    width: 2rem; height: 2rem;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
}
.quote-icon-circle i { font-size: 0.75rem; }
.quote-divider { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(153,246,228,0.6); display: flex; align-items: center; gap: 1rem; }
.quote-caption { font-size: 0.75rem; color: #9ca3af; line-height: 1.4; }

/* ========== BIG TEXT SECTION ========== */
.big-text-section { padding: 7rem 0; background: #fff; }
.big-text-title { font-size: 2.25rem; font-weight: 800; line-height: 1.2; }
.big-text-subtitle { color: #d1d5db; font-size: 1.875rem; font-weight: 700; margin-top: 1rem; display: block; }
.big-text-image {
    margin-top: 3.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}
.big-text-image-inner {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(20,184,166,0.15), 0 8px 32px rgba(0,0,0,0.1);
}
.big-text-image-placeholder {
    width: 100%; height: 20rem;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0f766e, #0e7490, #1e293b);
}
.big-text-image-placeholder i { font-size: 6rem; color: #5eead4; opacity: 0.25; }

/* ========== STATS BANNER ========== */
.sa-stats-banner {
    padding: 5rem 0;
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0f2a2a, #1a2828, #0f172a);
    background-size: 400% 400%;
    animation: meshGradient 15s ease infinite;
    position: relative; overflow: hidden;
}
.sa-stats-banner::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(20,184,166,0.08), transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.stats-title { font-size: 1.875rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.stats-subtitle { color: #99f6e4; font-size: 1.125rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-float-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.stat-float-card:nth-child(odd) { transform: rotate(-2deg); }
.stat-float-card:nth-child(even) { transform: rotate(2deg); }
.stat-float-card:hover { transform: rotate(0deg) translateY(-8px) !important; box-shadow: 0 20px 50px rgba(20,184,166,0.2); }
.stat-value { font-size: 3rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.stat-label { color: #99f6e4; font-weight: 500; }

.typewriter {
    display: inline-block;
    border-right: 3px solid #14b8a6;
    white-space: nowrap;
    overflow: hidden;
    animation: typewrite 3.5s steps(40, end) forwards, blinkCaret 0.75s step-end 6, hideCaret 0s forwards 4.5s;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #fff, rgba(240,253,250,0.2), #fff);
    position: relative; overflow: hidden;
}
.testimonials-section .bg-blur-1 {
    position: absolute; top: -5%; right: -5%;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,184,166,0.08), transparent 70%);
    filter: blur(60px); pointer-events: none;
}
.testimonials-section .bg-blur-2 {
    position: absolute; bottom: -5%; left: 10%;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8,145,178,0.06), transparent 70%);
    filter: blur(50px); pointer-events: none;
}
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.testi-card {
    background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(20,184,166,0.1); border-radius: 1.5rem; padding: 2.5rem;
    position: relative; box-shadow: 0 0 24px rgba(20,184,166,0.08), 0 4px 16px rgba(0,0,0,0.03);
    transition: box-shadow 0.4s ease, transform 0.4s ease; overflow: hidden;
}
.testi-card:hover { box-shadow: 0 0 40px rgba(20,184,166,0.15), 0 12px 36px rgba(20,184,166,0.1); transform: translateY(-4px); }
.testi-card::before {
    content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; top: 1.5rem; right: 2rem; font-size: 3.5rem;
    color: rgba(20,184,166,0.06); pointer-events: none;
}
.testi-stars { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.testi-stars i { color: #fbbf24; font-size: 0.875rem; }
.testi-text { color: #4b5563; font-size: 1.05rem; font-style: italic; line-height: 1.65; margin-bottom: 1.75rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(153,246,228,0.6); }
.testi-author img {
    width: 3.5rem; height: 3.5rem;
    border-radius: 9999px; object-fit: cover;
    border: 3px solid #99f6e4;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.testi-author-name { font-weight: 700; color: #111827; font-size: 0.95rem; }
.testi-author-role { color: #9ca3af; font-size: 0.75rem; margin-top: 0.125rem; }
.testi-badge {
    display: inline-flex; align-items: center; gap: 0.375rem;
    background: linear-gradient(to right, #f0fdfa, #ecfeff);
    color: #0d9488;
    font-size: 0.75rem; font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
}
.testi-badge i { font-size: 0.6rem; }

/* ========== CONTACT FORM ========== */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, #fff, rgba(240,253,250,0.3), #fff);
    position: relative; overflow: hidden;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact-label-top {
    color: #0d9488;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: inline-block;
    text-transform: uppercase;
}
.contact-title { font-size: 1.875rem; font-weight: 800; color: #111827; margin-bottom: 1rem; line-height: 1.2; }
.contact-desc { color: #6b7280; font-size: 1.125rem; margin-bottom: 2rem; }
.contact-features { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-feature { display: flex; align-items: flex-start; gap: 1rem; }
.contact-feature-icon {
    width: 2.5rem; height: 2.5rem;
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.contact-feature-icon-teal { background: #ccfbf1; }
.contact-feature-icon-teal i { color: #0d9488; }
.contact-feature-icon-cyan { background: #cffafe; }
.contact-feature-icon-cyan i { color: #0891b2; }
.contact-feature-icon-emerald { background: #d1fae5; }
.contact-feature-icon-emerald i { color: #059669; }
.contact-feature h4 { font-weight: 600; color: #111827; }
.contact-feature p { font-size: 0.875rem; color: #6b7280; }

/* Form */
.contact-form-card {
    background: #0f172a;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.contact-form-card h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.25rem; display: block; }
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 0.875rem;
    outline: none;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.form-input:focus { box-shadow: 0 0 0 2px #14b8a6; border-color: transparent; }
.form-input::placeholder { color: #64748b; }
.form-textarea { resize: none; }

/* Country dropdown */
.country-input-wrapper { position: relative; }
.country-input-wrapper .dropdown-arrow {
    position: absolute; top: 50%; right: 0.75rem;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}
#country-dropdown {
    position: absolute; z-index: 10; width: 100%; margin-top: 0.25rem;
    background: #fff; border: 1px solid #e5e7eb; border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); max-height: 15rem; overflow: auto;
    opacity: 0; transform: scale(0.95);
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    pointer-events: none;
}
#country-dropdown.active {
    opacity: 1; transform: scale(1);
    visibility: visible;
    pointer-events: auto;
}
#country-options { padding: 0.5rem 0; color: #111827; }
.country-option {
    padding: 0.6rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.country-option:hover, .country-option.focused {
    background: #f0fdfa;
}
.country-option .flag { font-size: 1.1rem; }
.country-option .name { flex: 1; }
.country-option .code { color: #9ca3af; font-size: 0.8rem; }

/* Phone row */
.phone-row { display: flex; gap: 0.5rem; }
.phone-code {
    width: 25%;
    background: #1e293b;
    color: #2dd4bf;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #334155;
    text-align: center;
    font-weight: 500;
}
.phone-input-wrap { width: 75%; }

.form-submit {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s, transform 0.2s;
}
.form-submit:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: scale(1.02); }
.form-submit:active { transform: scale(0.98); }
.form-disclaimer { color: #6b7280; font-size: 0.75rem; text-align: center; margin-top: 0.75rem; }

/* ========== FOOTER ========== */
.footer {
    background: #111827;
    color: #9ca3af;
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
}
.footer::before {
    content:''; position:absolute; top:-60px; left:0; right:0; height:60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%230f172a' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,35 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand img { height: 1.75rem; width: 1.75rem; }
.footer-brand-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand-name { font-weight: 700; color: #fff; font-size: 1.125rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; }
.footer-heading { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: #2dd4bf; }
.footer-links a.active { color: #2dd4bf; }
.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.875rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: #6b7280; transition: color 0.3s; }
.footer-socials a:hover { color: #2dd4bf; }
.footer-socials a i { font-size: 1.125rem; }

/* ========== SCROLL REVEALS ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ========== CHAT WIDGET ========== */
@keyframes ripple { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
.ripple-active::after {
    content: ""; position: absolute; inset: 0;
    background: rgba(20, 184, 166, 0.4);
    border-radius: 9999px; z-index: -1; animation: ripple 2s infinite;
}
.no-scrollbar::-webkit-scrollbar { display: none; }
.chat-message { transform: translateY(20px); opacity: 0; transition: all 0.3s ease; display: inline-block; word-break: break-word; max-width: 80%; }
.chat-message.show { transform: translateY(0); opacity: 1; }
.typing-dots { display: inline-flex; gap: 3px; align-items: center; justify-content: center; }
.typing-dots span { width: 6px; height: 6px; background-color: black; border-radius: 50%; animation: blink 1.4s infinite both; }
.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } }
.icon-transition { transition: all 0.4s cubic-bezier(0.4,0,0.2,1); }

#chatbot-container {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
    display: flex; flex-direction: column; align-items: flex-end;
    font-family: 'Inter', sans-serif;
}
#chatbot-window {
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: scale(0.8) translateY(40px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    transform-origin: bottom right;
    margin-bottom: 1.5rem;
    width: 24rem; max-width: 90vw;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex; flex-direction: column;
    border: 1px solid #f1f5f9;
    height: 600px;
}
#chatbot-window.is-active {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: scale(1) translateY(0);
}
.chat-header {
    padding: 1.5rem;
    color: #fff;
    display: flex; justify-content: space-between; align-items: center;
    position: relative; overflow: hidden; flex-shrink: 0;
    background: rgba(15,23,42,0.9);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.chat-header-bar { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(to right, #2dd4bf, #22d3ee); }
.chat-header-info { display: flex; align-items: center; gap: 1rem; }
.chat-avatar-wrap { position: relative; }
.chat-avatar {
    width: 3rem; height: 3rem;
    border-radius: 9999px;
    border: 2px solid rgba(20,184,166,0.3);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.chat-online-dot {
    position: absolute; bottom: 0; right: 0;
    width: 0.875rem; height: 0.875rem;
    background: #2dd4bf;
    border: 2px solid #0f172a;
    border-radius: 9999px;
}
.chat-header-name { font-weight: 700; font-size: 1.125rem; line-height: 1; }
.chat-header-role { font-size: 0.75rem; color: #5eead4; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.chat-close-btn {
    width: 2.5rem; height: 2.5rem;
    border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    color: #cbd5e1; transition: background 0.2s;
}
.chat-close-btn:hover { background: rgba(255,255,255,0.1); }
.chat-close-btn i { font-size: 1.125rem; }
#chatbot-messages {
    flex: 1; display: flex; flex-direction: column;
    overflow-y: auto; padding: 1.5rem; gap: 1rem;
    background: linear-gradient(to bottom, #f8fafc, #fff);
}
.chat-timestamp {
    text-align: center; font-size: 0.625rem; font-weight: 700;
    color: #94a3b8; text-transform: uppercase; letter-spacing: 0.2em;
}
.chat-input-area { padding: 1.5rem; background: #fff; border-top: 1px solid #f8fafc; flex-shrink: 0; }
#chatbot-form {
    display: flex; align-items: center; gap: 0.75rem;
    background: #f1f5f9; border-radius: 1rem; padding: 0.75rem 1.25rem; width: 100%;
}
#chatbot-input {
    background: transparent; border: none; outline: none;
    flex: 1; font-size: 0.875rem; color: #111827;
}
#chatbot-input::placeholder { color: #94a3b8; }
#chatbot-form button[type="submit"] {
    background: none; border: none; cursor: pointer;
    color: #14b8a6; transition: transform 0.2s;
}
#chatbot-form button[type="submit"]:hover { transform: scale(1.1); }
.chat-user-msg {
    background: #0f172a; color: #fff;
    padding: 1rem; border-radius: 1.5rem 1.5rem 0 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-size: 0.875rem; align-self: flex-end; max-width: 80%;
}
.chat-bot-msg {
    background: #fff; color: #000;
    padding: 1rem; border-radius: 1.5rem 1.5rem 1.5rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-size: 0.875rem; align-self: flex-start; max-width: 80%;
}
#chatbot-toggle {
    position: relative;
    width: 4rem; height: 4rem;
    color: #fff; border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    border: none; cursor: pointer;
    background: #111827;
}
#chatbot-toggle i { position: absolute; }
.icon-hidden { opacity: 0; transform: rotate(90deg) scale(0.5); }
.icon-visible { opacity: 1; transform: rotate(0deg) scale(1); }
#icon-close { color: #14b8a6; }

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
    .navbar-inner { padding: 0 1.5rem; }
    .hero-buttons { flex-direction: row; }
    .hero-title { font-size: 3rem; }
    .marquee-item { font-size: 1rem; }
    .pain-title { font-size: 3rem; }
    .process-title { font-size: 3rem; }
    .comparison-title { font-size: 2.25rem; }
    .showcase-title { font-size: 2.25rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-value { font-size: 3.75rem; }
    .big-text-title { font-size: 3rem; }
    .big-text-subtitle { font-size: 2.25rem; }
    .contact-title { font-size: 2.25rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: row; }
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .mobile-menu-btn { display: none; }
    .quote-text-lg { font-size: 1.875rem; }
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-stat-card { display: none; }
    .hero-visual { height: 16rem; }
    .pain-bento { grid-template-columns: 1fr; }
    .pain-bento-featured { grid-column: span 1; }
    .process-timeline-progress { left: 28px; }
    .process-step, .process-step:nth-child(even) { flex-direction: row !important; }
    .process-step-number { left: 28px !important; transform: translateX(-50%); }
    .process-step-spacer { display: none; }
    .process-step-card { width: 100%; margin-left: 72px; }
    .process-step { transition: opacity 0.15s ease, transform 0.15s ease; }
    .comparison-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .showcase-card.showcase-featured { grid-row: auto; }
    .showcase-card .showcase-media { height: 250px !important; }
    .sa-quotes-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .sa-glass-quote.featured { grid-row: auto; }
    .testi-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1024px) {
    .navbar-inner { padding: 0 2rem; }
    .hero-mesh { padding-top: 11rem; padding-bottom: 10rem; }
    .hero-title { font-size: 3.75rem; }
    .hero-visual { height: 420px; }
    .hero-stat-card { display: block; }
    .pain-title { font-size: 3.75rem; }
    .process-title { font-size: 3.75rem; }
    .comparison-title { font-size: 3rem; }
    .showcase-title { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .stat-value { font-size: 3.75rem; }
    .big-text-title { font-size: 4.5rem; }
    .big-text-subtitle { font-size: 3rem; }
    .contact-title { font-size: 3rem; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* === Utility classes to replace inline styles === */
.content-layer { position: relative; z-index: 10; }
/* .z10 removed - merged into content-layer */
.section-header-compact { margin-bottom: 3rem; }
.section-header-mid { margin-bottom: 3.5rem; }
.section-header-block { margin-bottom: 4rem; }
.badge-spaced { margin-bottom: 1rem; }
/* .mt-1-5 removed */
.section-subheader { margin-top: 3.5rem; }
.icon-space-right { margin-right: 0.25rem; }
.icon-space-left { margin-left: 0.5rem; }
.icon-overlap-left { margin-left: -0.5rem; }
.d-none { display: none; }
.icon-centered { display: flex; align-items: center; justify-content: center; }
.justify-center { justify-content: center; }
.input-pr-icon { padding-right: 2.5rem; }
.content-padded-layer { z-index: 10; padding: 0 1.5rem; position: relative; }
.img-rounded { width: 100%; border-radius: 1rem; }
.img-rounded-sm { width: 100%; border-radius: 0.75rem; }

/* Transition delays */
.animation-stagger-0 { transition-delay: 0ms; }
.animation-stagger-1 { transition-delay: 100ms; }
.animation-stagger-2 { transition-delay: 200ms; }
.animation-stagger-3 { transition-delay: 300ms; }
.animation-stagger-4 { transition-delay: 400ms; }
.animation-stagger-5 { transition-delay: 500ms; }

/* Floating orbs */
.floating-orb.orb-1 { background: #2dd4bf; width: 120px; height: 120px; top: 10%; right: 8%; }
.floating-orb.orb-2 { background: #06b6d4; width: 80px; height: 80px; bottom: 15%; left: 5%; }
.floating-orb.orb-3 { background: #5eead4; width: 60px; height: 60px; top: 60%; right: 25%; }

/* Quotes blobs */
.sa-quotes-blob:nth-child(1) { width: 400px; height: 400px; background: rgba(20,184,166,0.1); top: -100px; left: -100px; animation-delay: 0s; }
.sa-quotes-blob:nth-child(2) { width: 350px; height: 350px; background: rgba(8,145,178,0.1); bottom: -80px; right: -60px; animation-delay: -7s; }
.sa-quotes-blob:nth-child(3) { width: 250px; height: 250px; background: rgba(34,211,238,0.12); top: 40%; left: 60%; animation-delay: -13s; }

/* Pain icon colors */
.pain-icon-teal i { color: #14b8a6; }
.pain-icon-cyan i { color: #06b6d4; }
.pain-icon-teal-dark i { color: #0d9488; }
.pain-icon-cyan-dark i { color: #0891b2; }
.pain-icon-emerald i { color: #10b981; }

/* Icon colors */
.icon-color-teal { color: #14b8a6; }
.icon-color-white-sm { color: #fff; font-size: 1.125rem; }
.icon-sm-1125 { font-size: 1.125rem; }
.icon-sm-1 { font-size: 1rem; }

/* Quote icon circles */
.quote-icon-circle-teal { background: #ccfbf1; }
.quote-icon-circle-cyan { background: #cffafe; margin-left: -0.5rem; }
.quote-icon-circle-green { background: #d1fae5; margin-left: -0.5rem; }
.quote-icon-circle-teal i { color: #14b8a6; }
.quote-icon-circle-cyan i { color: #06b6d4; }
.quote-icon-circle-green i { color: #10b981; }

/* Section styles */
.section-badge-teal { background: rgba(204,251,241,0.8); padding: 0.375rem 1rem; }
.section-title-quotes { font-size: 1.875rem; font-weight: 700; color: #111827; margin-top: 1.25rem; }
.text-muted-desc { color: #6b7280; margin-top: 1rem; max-width: 42rem; margin-left: auto; margin-right: auto; font-size: 1.125rem; }
.text-muted-sub-sm { color: #9ca3af; margin-top: 1rem; max-width: 36rem; margin-left: auto; margin-right: auto; font-size: 1.125rem; }
.quote-author-row-center { margin-top: 1.5rem; justify-content: center; }
.quote-divider-center { justify-content: center; }

/* Section header */
.section-title-testi { font-size: 1.875rem; font-weight: 800; color: #111827; line-height: 1.2; }

/* Chat widget icon sizes */
.chat-icon-sm { font-size: 1.125rem; }
.chat-icon-lg { font-size: 1.5rem; }
.chat-icon-lg-white { font-size: 1.5rem; color: #fff; }


.country-name-text { margin-left: 0.5rem; }
.form-input-error { border-color: #ef4444; }
.form-error-text { color: #ef4444; font-size: 0.75rem; margin-top: 0.25rem; }

/* Descriptive combined classes */
.navbar-brand-row { display: flex; align-items: center; }
.hero-stat-row { display: flex; align-items: center; gap: 0.75rem; }
.hero-stat-detail { display: flex; align-items: center; gap: 0.5rem; }
.quote-content-centered { display: flex; flex-direction: column; align-items: center; }
.quote-icons-row { display: flex; }
