/* ============================================
   RETAIN — AGENCIES PAGE
   Plain CSS (zero Tailwind)
   ============================================ */

/* === 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; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === UTILITIES === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.container-lg { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-container-medium { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.section-container-narrow { max-width: 64rem; margin: 0 auto; padding: 0 1rem; }
.section-header-centered, .stat-item-centered { text-align: center; }
.process-timeline-positioned { position: relative; }
.hidden { display: none; }
.block { display: block; }
/* .flex removed - merged into descriptive classes */
.inline-flex { display: inline-flex; }
/* .grid removed - merged into descriptive classes */
/* .flex-col removed - merged into descriptive classes */

/* === VIOLET GRADIENTS === */
.violet-gradient { background: linear-gradient(135deg, #8b5cf6, #9333ea); }
.violet-gradient-text {
    background: linear-gradient(90deg, #8b5cf6 0%, #9333ea 40%, #a78bfa 50%, #9333ea 60%, #8b5cf6 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
}
@keyframes textShimmer {
    0% { background-position: 100% center; }
    100% { background-position: -100% center; }
}

/* === NAV LINK UNDERLINE === */
.nav-link { position: relative; padding-bottom: 2px; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #9333ea);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* === NAVBAR === */
.navbar {
    background: #fff;
    box-shadow: 0 1px 2px 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: 4rem;
}
.navbar-brand { display: flex; align-items: baseline; }
.navbar-brand img { height: 1.5rem; width: 1.5rem; margin-right: 0.5rem; margin-top: 0.75rem; }
.navbar-brand-name { 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-links a.nav-link { color: #374151; font-weight: 500; }
.nav-links a.nav-link:hover { color: #111827; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn { color: #374151; font-weight: 500; display: flex; align-items: center; padding: 0.5rem 0; background: none; border: none; cursor: pointer; font-size: 1rem; font-family: inherit; }
.nav-dropdown-btn:hover { color: #111827; }
.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;
    transform-origin: top;
    z-index: 50;
    border: 1px solid #f3f4f6;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%); }
.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    transition: all 0.2s;
}
.nav-dropdown-menu a:hover { background: #f9fafb; color: #7c3aed; }
.nav-dropdown-menu a i { margin-right: 0.75rem; padding: 0.375rem; border-radius: 0.5rem; }
.nav-dropdown-menu a.active-page { color: #6d28d9; font-weight: 500; background: #f5f3ff; border-radius: 0.375rem; }
.icon-emerald { color: #10b981; background: #ecfdf5; }
.icon-amber { color: #f59e0b; background: #fffbeb; }
.icon-sky { color: #0ea5e9; background: #f0f9ff; }
.icon-rose { color: #f43f5e; background: #fff1f2; }
.icon-violet { color: #8b5cf6; background: #f5f3ff; }
.icon-teal { color: #14b8a6; background: #f0fdfa; }

.nav-cta {
    color: #fff; padding: 0.5rem 1.25rem; border-radius: 0.5rem;
    font-weight: 500; white-space: nowrap;
    background: linear-gradient(135deg, #8b5cf6, #9333ea);
    box-shadow: none;
    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 {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.5rem; border-radius: 0.375rem;
    color: #9ca3af; background: none; border: none; cursor: pointer;
}
.mobile-menu-btn:hover { color: #6b7280; background: #f3f4f6; }
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu-btn-wrap { display: flex; align-items: center; }

/* Mobile menu */
.mobile-menu { padding: 0.5rem 0.75rem 0.75rem; }
.mobile-menu a {
    display: block; padding: 0.5rem 0.75rem; border-radius: 0.375rem;
    font-size: 1rem; font-weight: 500; color: #374151;
}
.mobile-menu a:hover { color: #111827; }
.mobile-menu a.active-page { color: #7c3aed; font-weight: 600; }
.mobile-menu a.mobile-cta {
    color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #9333ea);
}
.mobile-menu.open { display: block; }

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .mobile-menu-btn-wrap { display: none !important; }
    .navbar-inner { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
    .navbar-inner { padding: 0 2rem; }
}

/* === HERO === */
.hero-mesh {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(237,233,254,0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(221,214,254,0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(243,232,255,0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 30%, rgba(237,233,254,0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 70%, rgba(245,243,255,0.7) 0%, transparent 50%),
        linear-gradient(135deg, #f5f3ff 0%, #ffffff 40%, #faf5ff 70%, #f5f3ff 100%);
    padding-top: 8rem; padding-bottom: 7rem;
    position: relative; overflow: hidden;
    min-height: 90vh;
    display: flex; align-items: center;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) {
    .hero-mesh { padding-top: 11rem; padding-bottom: 10rem; }
    .hero-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 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; }
@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); } }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }

.hero-badge {
    display: inline-block; background: #ede9fe; color: #6d28d9;
    font-size: 0.875rem; font-weight: 600; padding: 0.375rem 1rem;
    border-radius: 9999px; margin-bottom: 1.5rem;
}
.hero-badge i { margin-right: 0.25rem; }

.hero-title {
    font-size: 2.25rem; font-weight: 700; color: #111827;
    line-height: 1.15; margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }

/* Hero text cycling */
.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; }
@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%); }
}

.hero-desc {
    font-size: 1.125rem; color: #4b5563; line-height: 1.75;
    margin-bottom: 2rem; max-width: 36rem;
}
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #9333ea);
    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(221,214,254,1);
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary i { margin-left: 0.5rem; }
.btn-secondary {
    background: #fff; color: #6d28d9;
    border: 2px solid #ddd6fe; padding: 0.875rem 2rem;
    border-radius: 9999px; font-weight: 600; text-align: center;
    transition: border-color 0.3s;
}
.btn-secondary:hover { border-color: #a78bfa; }

/* Shimmer CTA */
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.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 video + floating stats */
.hero-video { border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); width: 100%; object-fit: cover; }
.hero-stat-card {
    position: absolute; border-radius: 0.75rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 1rem; display: none;
}
.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);
}
@media (min-width: 1024px) { .hero-stat-card { display: block; } }
.hero-stat-bottom { bottom: -1.5rem; left: -1.5rem; }
.hero-stat-top { top: -1rem; right: -1rem; }
.stat-icon-lg {
    width: 3rem; height: 3rem; border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
}
.stat-icon-sm {
    width: 2rem; height: 2rem; border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    background: #ede9fe;
}
.stat-icon-sm i { color: #7c3aed; font-size: 0.875rem; }
.stat-value-lg { font-size: 1.5rem; font-weight: 700; color: #111827; }
.stat-value-sm { font-size: 1.125rem; font-weight: 700; color: #111827; }
.stat-label { font-size: 0.875rem; color: #6b7280; }
.stat-label-sm { font-size: 0.75rem; color: #6b7280; }

/* === TICKER === */
.ticker-section { padding: 1.25rem 0; overflow: hidden; background: #0f172a; }
.marquee-track {
    display: flex; width: max-content;
    animation: marqueeScroll 35s linear infinite;
}
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-track span {
    font-size: 0.875rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.25em; padding: 0 2rem; white-space: nowrap;
}
@media (min-width: 768px) { .marquee-track span { font-size: 1rem; } }
@media (max-width: 768px) {
    .marquee-track span { padding-left: 1rem; padding-right: 1rem; letter-spacing: 0.1em; font-size: 0.7rem; }
}

/* === SECTION SHARED === */
.section-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(237,233,254,0.8); backdrop-filter: blur(4px);
    color: #6d28d9; 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(221,214,254,0.6);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.section-badge .pulse-dot {
    width: 0.5rem; height: 0.5rem; border-radius: 9999px;
    background: #8b5cf6; animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.section-title {
    font-size: 2.25rem; font-weight: 700; color: #111827;
    margin-top: 0.5rem; margin-bottom: 1.5rem; line-height: 1.1;
}
@media (min-width: 640px) { .section-title { font-size: 3rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3.75rem; } }
.section-title-md { font-size: 2.25rem; font-weight: 700; color: #111827; margin-top: 0.5rem; margin-bottom: 1.5rem; line-height: 1.1; }
@media (min-width: 640px) { .section-title-md { font-size: 3rem; } }
.section-subtitle { color: #6b7280; max-width: 32rem; margin: 0 auto; font-size: 1.125rem; }
.section-subtitle-sm { color: #9ca3af; max-width: 32rem; margin: 0 auto; font-size: 1rem; }
.section-header-centered { margin-bottom: 4rem; }

/* === PAIN POINTS === */
.pain-section { padding: 6rem 0; background: #fff; position: relative; overflow: hidden; }
.pain-bg-blob {
    position: absolute; top: -5%; right: -8%; width: 500px; height: 500px;
    border-radius: 9999px; pointer-events: none;
    background: radial-gradient(circle, rgba(139,92,246,0.07), transparent 70%);
    filter: blur(80px);
}

/* Bento pain grid */
.bento-pain-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) {
    .bento-pain-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-featured { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
    .bento-pain-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; }
    .bento-featured { grid-column: 1 / 3; grid-row: 1 / 2; }
}

/* Animated gradient border cards */
.gradient-border-card {
    position: relative; border-radius: 1.25rem; padding: 3px;
    background: conic-gradient(from var(--angle, 0deg), #8b5cf6, #9333ea, #a78bfa, #c084fc, #8b5cf6);
    animation: rotateBorder 4s linear infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gradient-border-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(139,92,246,0.2); }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes rotateBorder { to { --angle: 360deg; } }
.gradient-border-card-inner {
    background: #fff; border-radius: calc(1.25rem - 3px);
    padding: 2.25rem; height: 100%;
}
.pain-icon-lg {
    width: 3.5rem; height: 3.5rem; background: #f5f3ff;
    border-radius: 1rem; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.pain-icon-lg i { color: #8b5cf6; font-size: 1.5rem; }
.pain-icon-sm {
    width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.pain-icon-sm i { font-size: 1.125rem; }
.pain-icon-bg-violet { background: #f5f3ff; }
.pain-icon-bg-purple { background: #faf5ff; }
.text-violet-500 { color: #8b5cf6; }
.text-purple-500 { color: #a855f7; }
.text-purple-600 { color: #9333ea; }

.pain-card-title { font-size: 1.3rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.pain-card-title-sm { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 0.375rem; }
.pain-card-desc { color: #4b5563; font-size: 0.92rem; line-height: 1.7; }
.pain-card-desc-sm { color: #4b5563; font-size: 0.85rem; line-height: 1.7; }

/* Pain banner image card */
.pain-banner-card {
    border-radius: 1rem; overflow: hidden; position: relative; cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pain-banner-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(139,92,246,0.2); }
.pain-banner-card img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 1rem;
    transition: transform 0.5s ease; min-height: 100%;
}
.pain-banner-card:hover img { transform: scale(1.05); }
.pain-banner-overlay {
    position: absolute; inset: 0; border-radius: 1rem;
    background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(88,28,135,0.6) 50%, rgba(15,23,42,0.8) 100%);
}
.pain-banner-content {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; padding: 1rem;
}
.pain-banner-content .label { color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.25rem; }
.pain-banner-content .value { color: #fff; font-size: 3rem; font-weight: 800; line-height: 1; font-family: 'Poppins', sans-serif; }
.pain-banner-content .sub { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-top: 0.5rem; }

/* === AGENCY CARD GRID === */
.agencies-section { padding: 6rem 0; background: linear-gradient(to bottom, rgba(245,243,255,0.5), #fff); position: relative; overflow: hidden; }
.agency-card-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem; align-items: stretch;
}
@media (max-width: 1024px) { .agency-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .agency-card-grid { grid-template-columns: 1fr; } }

.agency-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
    border: 1px solid rgba(139,92,246,0.1);
    border-radius: 1.5rem; padding: 2.25rem 2rem;
    position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; flex-direction: column; height: 100%;
}
.agency-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #9333ea, #c084fc, #8b5cf6);
    background-size: 200% 100%; animation: shimmerBorder 3s ease infinite;
}
@keyframes shimmerBorder { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.agency-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(139,92,246,0.06), transparent 70%);
    opacity: 0; transition: opacity 0.5s ease; pointer-events: none;
}
.agency-card:hover::after { opacity: 1; }
.agency-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139,92,246,0.18), 0 0 0 1px rgba(139,92,246,0.15);
    border-color: rgba(139,92,246,0.25);
}
.agency-card-icon {
    width: 60px; height: 60px; border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(139,92,246,0.1);
    font-size: 1.35rem;
}
.agency-card:hover .agency-card-icon { transform: scale(1.1) rotate(-3deg); box-shadow: 0 8px 24px rgba(139,92,246,0.2); }
.agency-card h3 { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 0.35rem; }
.agency-card .agency-tagline { font-size: 0.85rem; color: #9ca3af; margin-bottom: 1rem; font-style: italic; }
.agency-card ul { margin-top: auto; }
.agency-card ul li {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.85rem; color: #6b7280; line-height: 1.6; margin-bottom: 0.5rem;
}
.agency-card ul li i { color: #8b5cf6; margin-top: 0.2rem; font-size: 0.65rem; }

/* === PROCESS TIMELINE === */
.process-section { padding: 6rem 0; background: #fff; position: relative; overflow: hidden; }
.process-timeline { position: relative; padding: 1rem 0; }
.process-timeline-bg {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 3px; background: #f3f4f6; transform: translateX(-50%); border-radius: 9999px;
}
.process-timeline-progress {
    position: absolute; left: 50%; top: 0; width: 3px; height: 0;
    background: linear-gradient(180deg, #8b5cf6, #9333ea, #a78bfa);
    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);
}
.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 ease, 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, #8b5cf6, #9333ea);
    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(139,92,246,0.1); background: #f5f3ff; }
.process-step-number {
    position: absolute; left: 50%; transform: translateX(-50%) scale(0.5);
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #9333ea);
    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(139,92,246,0.3);
    opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step.step-visible .process-step-number {
    opacity: 1; transform: translateX(-50%) scale(1);
    box-shadow: 0 0 20px rgba(139,92,246,0.5), 0 4px 16px rgba(139,92,246,0.3);
}
.process-step.step-visible .process-step-number::after {
    content: ''; position: absolute; inset: 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;
}
.process-step-spacer { width: 12%; }
.step-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem;
}
.step-icon i { color: #8b5cf6; 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-slide-left, .process-slide-right { display: inline; }

@media (max-width: 768px) {
    .process-timeline-bg { display: none; }
    .process-timeline-progress { display: none; }
    .process-step, .process-step:nth-child(even) { flex-direction: row !important; }
    .process-step-number { position: relative !important; left: auto !important; transform: none !important; flex-shrink: 0; margin-right: 1rem; }
    .process-step.step-visible .process-step-number { transform: none !important; }
    .process-step-spacer { display: none; }
    .process-step-card { width: 100%; margin-left: 0; }
    .process-step { transition: opacity 0.15s ease, transform 0.15s ease; }
    .bento-pain-grid { grid-template-columns: 1fr !important; }
    .bento-featured { grid-column: 1 !important; }
}

/* === WITH VS WITHOUT RETAIN === */
.wr-section { padding: 7rem 0; background: #fff; position: relative; overflow: hidden; }
.ag-wr-bg-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(237,233,254,0.25), transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(243,232,255,0.2), transparent 60%);
    pointer-events: none;
}
.ag-wr-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; animation: floatA 8s ease-in-out infinite; }
.wr-title { font-size: 1.875rem; font-weight: 700; color: #111827; margin-top: 1rem; margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }
@media (min-width: 768px) { .wr-title { font-size: 3rem; } }
.wr-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; position: relative; }
@media (min-width: 768px) { .wr-grid { grid-template-columns: repeat(2, 1fr); } }

.ag-wr-card-dark {
    border-radius: 1.5rem; padding: 2rem 2.5rem; background: #111827; color: #fff;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
@media (min-width: 768px) { .ag-wr-card-dark { padding: 2.5rem; } }
.ag-wr-card-dark:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

.ag-wr-card-violet {
    border-radius: 1.5rem; padding: 2rem 2.5rem;
    background: linear-gradient(to bottom right, #f5f3ff, #faf5ff, #fdf4ff);
    border: 2px solid #ddd6fe;
    position: relative; overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
@media (min-width: 768px) { .ag-wr-card-violet { padding: 2.5rem; } }
.ag-wr-card-violet:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(139,92,246,0.15); }
.ag-wr-card-violet .corner-glow {
    position: absolute; top: 0; right: 0; width: 8rem; height: 8rem;
    background: linear-gradient(to bottom left, rgba(221,214,254,0.3), transparent);
    border-bottom-left-radius: 9999px;
}

.wr-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.wr-header-icon {
    width: 3rem; height: 3rem; border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    transform: scale(0); transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.wr-header-icon.visible { transform: scale(1); animation: wrIconBounce 0.6s ease 0.5s; }
@keyframes wrIconBounce { 0%{transform:scale(1)} 30%{transform:scale(1.2)} 50%{transform:scale(0.9)} 70%{transform:scale(1.1)} 100%{transform:scale(1)} }
.wr-header-icon.red { background: rgba(239,68,68,0.2); }
.wr-header-icon.violet { background: rgba(139,92,246,0.2); }
.wr-header-label { font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.wr-header-label.red { color: #f87171; }
.wr-header-label.violet { color: #7c3aed; }

.wr-list { display: flex; flex-direction: column; gap: 1.25rem; }
.wr-list-item {
    display: flex; align-items: flex-start; gap: 1rem;
    opacity: 0; transform: translateX(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.wr-list-item.visible { opacity: 1; transform: translateX(0); }
.wr-list-icon {
    width: 2rem; height: 2rem; border-radius: 9999px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 0.125rem;
    transition: transform 0.3s ease;
}
.wr-list-icon:hover { transform: scale(1.15); }
.wr-list-icon.red { background: rgba(239,68,68,0.15); }
.wr-list-icon.red i { color: #f87171; font-size: 0.875rem; }
.wr-list-icon.violet { background: rgba(139,92,246,0.2); }
.wr-list-icon.violet i { color: #7c3aed; font-size: 0.875rem; }
.wr-item-title { font-weight: 600; }
.ag-wr-card-dark .wr-item-title { color: #fff; }
.ag-wr-card-violet .wr-item-title { color: #111827; }
.wr-item-desc { font-size: 0.875rem; margin-top: 0.25rem; }
.ag-wr-card-dark .wr-item-desc { color: #9ca3af; }
.ag-wr-card-violet .wr-item-desc { color: #6b7280; }

.ag-wr-x-shake { animation: wrXShake 3s ease-in-out infinite; }
@keyframes wrXShake { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-8deg)} 40%{transform:rotate(8deg)} 60%{transform:rotate(-4deg)} 80%{transform:rotate(4deg)} }

.ag-wr-vs-badge {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 48px; height: 48px; border-radius: 50%; z-index: 10;
    background: linear-gradient(135deg, #1f2937, #374151);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.75rem;
    color: #8b5cf6; letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 15px rgba(139,92,246,0.2);
    animation: agVsPulse 3s ease-in-out infinite;
}
@keyframes agVsPulse { 0%,100%{box-shadow:0 4px 20px rgba(0,0,0,0.3),0 0 15px rgba(139,92,246,0.2)} 50%{box-shadow:0 4px 20px rgba(0,0,0,0.3),0 0 25px rgba(139,92,246,0.4)} }
@media (max-width: 767px) { .ag-wr-vs-badge { display: none; } }

/* === TABS === */
.tabs-section { padding: 6rem 0; background: linear-gradient(to bottom, #fff, rgba(245,243,255,0.3)); position: relative; overflow: hidden; }
.tab-scroll-wrapper {
    display: flex; justify-content: center; gap: 0.75rem;
    margin-bottom: 3rem; overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}
.tab-scroll-wrapper::-webkit-scrollbar { display: none; }
.tab-btn {
    padding: 0.75rem 1.5rem; border-radius: 9999px; font-weight: 600;
    font-size: 0.9rem; cursor: pointer; transition: all 0.3s;
    border: 2px solid transparent; background: #fff; color: #6b7280;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.tab-btn:hover { color: #8b5cf6; border-color: rgba(139,92,246,0.2); }
.tab-btn.active {
    background: linear-gradient(135deg, #8b5cf6, #9333ea); color: #fff;
    border-color: transparent; box-shadow: 0 4px 16px rgba(139,92,246,0.3);
}
.tab-content { display: none; animation: fadeInUp 0.4s ease; }
.tab-content.active { display: block; }
.tab-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .tab-grid { grid-template-columns: repeat(2, 1fr); } }
.tab-img { border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); width: 100%; object-fit: cover; }
.tab-title { font-size: 1.5rem; font-weight: 700; color: #111827; margin-bottom: 1rem; }
.tab-desc { color: #4b5563; margin-bottom: 1.5rem; line-height: 1.75; }
.tab-list { display: flex; flex-direction: column; gap: 0.75rem; }
.tab-list-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.tab-check {
    width: 1.5rem; height: 1.5rem; border-radius: 9999px;
    background: linear-gradient(135deg, #8b5cf6, #9333ea);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 0.125rem;
}
.tab-check i { color: #fff; font-size: 0.75rem; }
.tab-list-item span { color: #374151; font-size: 0.875rem; }
@media (max-width: 768px) {
    .tab-btn { padding: 0.6rem 1rem; font-size: 0.8rem; white-space: nowrap; flex-shrink: 0; }
    .tab-scroll-wrapper { flex-wrap: nowrap; justify-content: flex-start; }
    .tab-content img { max-height: 250px; width: 100%; object-fit: cover; }
    .tab-content .tab-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}

/* Hide tabs section on mobile */
@media (max-width: 767px) { .tabs-section { display: none; } }

/* === SHOWCASE BENTO === */
.showcase-section { padding: 6rem 0; background: #fff; position: relative; overflow: hidden; }
.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(139,92,246,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(139,92,246,0.18), 0 12px 40px rgba(139,92,246,0.12); transform: translateY(-5px); }
.showcase-card.visible:hover { transform: translateY(-5px); }
.showcase-media { overflow: hidden; position: relative; }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.showcase-card:hover .showcase-media img { transform: scale(1.05); }
.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-overlay h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.35rem; }
.showcase-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.55; }
.showcase-badge {
    position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); padding: 0.4rem 1rem; border-radius: 9999px;
    font-size: 0.72rem; font-weight: 700; color: #7c3aed; text-transform: uppercase;
    letter-spacing: 0.06em; z-index: 2; box-shadow: 0 2px 12px rgba(139,92,246,0.15);
}
.showcase-featured { grid-row: 1 / -1; }
.showcase-featured .showcase-media { height: 100%; }
.showcase-card:not(.showcase-featured) .showcase-media { height: 100%; }
@media (max-width: 768px) {
    .showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .showcase-featured { grid-row: auto; }
    .showcase-media { height: 250px !important; }
}

/* === QUOTES === */
.quotes-section {
    background: linear-gradient(135deg, rgba(245,243,255,0.3) 0%, #ffffff 50%, rgba(237,233,254,0.3) 100%);
    padding: 6rem 0; position: relative; overflow: hidden;
}
.quotes-blob {
    position: absolute; border-radius: 50%; filter: blur(80px);
    animation: blobDrift 20s ease-in-out infinite; pointer-events: none;
}
@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); } }
.quotes-dots {
    position: absolute; bottom: 0; right: 0; width: 200px; height: 200px;
    background-image: radial-gradient(circle, rgba(139,92,246,0.12) 1px, transparent 1px);
    background-size: 20px 20px; pointer-events: none;
}
.quotes-grid {
    display: grid; grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr 1fr; gap: 1.5rem; align-items: stretch;
}
.glass-quote {
    background: rgba(255,255,255,0.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(139,92,246,0.1); border-radius: 1.5rem; padding: 2rem 2.25rem;
    box-shadow: 0 0 20px rgba(139,92,246,0.12), 0 8px 32px rgba(139,92,246,0.08);
    display: flex; flex-direction: column; justify-content: space-between;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.glass-quote:hover { box-shadow: 0 0 40px rgba(139,92,246,0.2), 0 16px 50px rgba(139,92,246,0.22); transform: translateY(-4px); }
.glass-quote.featured { grid-row: 1 / -1; padding: 2.5rem; animation: quoteFloat1 4s ease-in-out infinite; display: flex; flex-direction: column; }
.glass-quote.featured > div:first-child { display: flex; flex-direction: column; flex-grow: 1; }
.glass-quote:nth-child(2) { animation: quoteFloat2 5s ease-in-out infinite 0.5s; }
.glass-quote:nth-child(3) { animation: quoteFloat3 6s ease-in-out infinite 1s; }
.glass-quote:nth-child(4) { animation: quoteFloat4 4.5s ease-in-out infinite 0.3s; }
@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); } }
@media (max-width: 768px) { .quotes-grid { grid-template-columns: 1fr; grid-template-rows: auto; } .glass-quote.featured { grid-row: auto; } }
.quote-icon-lg { color: #c4b5fd; font-size: 2.25rem; margin-bottom: 1.25rem; }
.quote-icon-sm { color: #ddd6fe; font-size: 1.25rem; margin-bottom: 0.75rem; }
.quote-text-lg { color: #1f2937; font-size: 1.25rem; font-weight: 500; line-height: 1.7; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .quote-text-lg { font-size: 1.5rem; } }
.quote-text-sm { color: #374151; font-size: 0.875rem; line-height: 1.75; }
.quote-img { width: 100%; border-radius: 0.75rem; object-fit: cover; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); flex-grow: 1; min-height: 160px; }
.quote-footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid #ede9fe; }
.quote-footer-sm { margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid #ede9fe; }
.quote-author { font-weight: 700; color: #111827; font-size: 0.875rem; }
.quote-role { color: #a78bfa; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }

/* === BIG TEXT + IMAGE === */
.bigtext-section { padding: 6rem 0; background: #fff; position: relative; overflow: hidden; }
.bigtext-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .bigtext-grid { grid-template-columns: repeat(2, 1fr); } }
.bigtext-title {
    font-size: 2.25rem; font-weight: 700; color: #111827;
    line-height: 1.1; margin-bottom: 2rem;
}
@media (min-width: 640px) { .bigtext-title { font-size: 3rem; } }
@media (min-width: 1024px) { .bigtext-title { font-size: 3.75rem; } }
.bigtext-desc { font-size: 1.25rem; color: #6b7280; line-height: 1.75; margin-bottom: 2rem; }
.bigtext-video { border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); width: 100%; object-fit: cover; }

/* === STATS DARK === */
.stats-dark {
    background: linear-gradient(-45deg, #0f172a, #1e293b, #1a1035, #2a1040, #0f172a);
    background-size: 400% 400%;
    animation: meshGradient 15s ease infinite;
    padding: 6rem 0; position: relative; overflow: hidden;
}
@keyframes meshGradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.stats-dark::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139,92,246,0.08), transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.stats-title { font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
@media (min-width: 640px) { .stats-title { font-size: 3rem; } }
.stats-subtitle { color: #9ca3af; max-width: 32rem; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-ring-wrap { position: relative; display: inline-block; margin-bottom: 1rem; }
.stat-ring-wrap svg { width: 8rem; height: 8rem; }
.stat-ring-value {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.stat-counter { font-size: 1.5rem; font-weight: 700; color: #fff; }
.stat-ring-label { color: #9ca3af; font-size: 0.875rem; }
.progress-ring-circle {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1);
    transform: rotate(-90deg); transform-origin: 50% 50%;
}

/* === TESTIMONIALS === */
.testi-section { padding: 6rem 0; background: linear-gradient(to bottom, #fff, rgba(245,243,255,0.3)); position: relative; overflow: hidden; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
    background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139,92,246,0.1); border-radius: 1.5rem; padding: 2.5rem;
    position: relative; box-shadow: 0 0 24px rgba(139,92,246,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(139,92,246,0.15), 0 12px 36px rgba(139,92,246,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(139,92,246,0.06); pointer-events: none;
}
@media (min-width: 768px) { .testi-offset { margin-top: 40px; } }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars i { color: #fbbf24; }
.testi-text { color: #374151; font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 2.5rem; height: 2.5rem; border-radius: 9999px; }
.testi-name { font-weight: 700; color: #111827; font-size: 0.875rem; }
.testi-role { color: #9ca3af; font-size: 0.75rem; }
.testi-metric {
    margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem;
    background: #f5f3ff; padding: 0.375rem 0.75rem; border-radius: 9999px;
}
.testi-metric i { color: #7c3aed; font-size: 0.75rem; }
.testi-metric span { color: #6d28d9; font-size: 0.75rem; font-weight: 700; }

/* === CONTACT FORM === */
.contact-section { padding: 6rem 0; background: #fff; position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-checklist { display: flex; flex-direction: column; gap: 1rem; }
.contact-check-item { display: flex; align-items: center; gap: 0.75rem; }
.contact-check-icon {
    width: 2rem; height: 2rem; border-radius: 9999px;
    background: linear-gradient(135deg, #8b5cf6, #9333ea);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-check-icon i { color: #fff; font-size: 0.75rem; }
.contact-check-item span { color: #374151; }

.form-card {
    background: #0f172a; border-radius: 1.5rem; padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.form-card h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1rem; }
.form-label { color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.25rem; display: block; }
.form-input {
    width: 100%; background: #1e293b; border: 1px solid #334155;
    border-radius: 0.75rem; padding: 0.75rem 1rem; color: #fff;
    font-size: 0.875rem; outline: none; transition: all 0.2s;
}
.form-input:focus { box-shadow: 0 0 0 2px #8b5cf6; border-color: transparent; }
.form-input::placeholder { color: #64748b; }
select.form-input { appearance: auto; }

.country-input-wrap { position: relative; }
.country-input-wrap .chevron { position: absolute; top: 50%; right: 0.75rem; transform: translateY(-50%); color: #6b7280; pointer-events: none; }
/* old #country-dropdown/.show rules removed — using .active variant below */

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

.form-submit {
    width: 100%; padding: 1rem; border-radius: 0.75rem;
    font-weight: 600; font-size: 1rem; color: #fff;
    background: linear-gradient(135deg, #8b5cf6, #9333ea);
    border: none; cursor: pointer; transition: opacity 0.3s;
    box-shadow: 0 10px 15px -3px rgba(139,92,246,0.3);
}
.form-submit:hover { opacity: 0.9; }
.form-submit i { margin-left: 0.5rem; }
.form-note { color: #6b7280; font-size: 0.75rem; text-align: center; margin-top: 1rem; }

/* === FOOTER === */
.site-footer {
    background: #0f172a; color: #9ca3af; padding-top: 5rem; padding-bottom: 2rem;
    position: relative;
}
.wave-divider { position: relative; }
.wave-divider::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(2, 1fr); gap: 2rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { display: flex; align-items: baseline; margin-bottom: 1rem; }
.footer-brand img { height: 1.5rem; width: 1.5rem; margin-right: 0.5rem; }
.footer-brand span { font-size: 1.25rem; font-weight: 700; color: #fff; }
.footer-desc { font-size: 0.875rem; line-height: 1.75; }
.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: #a78bfa; }
.footer-links a.active-link { color: #a78bfa; }
.footer-bottom {
    border-top: 1px solid #1e293b; padding-top: 2rem;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.875rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: #6b7280; transition: color 0.3s; }
.footer-social a:hover { color: #a78bfa; }
.footer-social a i { font-size: 1.125rem; }
.footer-study-abroad {
    color: #374151; display: block; padding: 0.5rem 0.75rem; border-radius: 0.375rem;
    font-size: 1rem; font-weight: 500; padding-left: 1.5rem;
    border-left: 2px solid transparent; transition: all 0.3s;
}
.footer-study-abroad:hover { color: #111827; border-left-color: #14b8a6; background: #f0fdfa; }

/* === 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; }

/* === 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(139, 92, 246, 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;
}
.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-line { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(to right, #a78bfa, #c084fc); }
.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(139,92,246,0.3); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.chat-status-dot { position: absolute; bottom: 0; right: 0; width: 0.875rem; height: 0.875rem; background: #a78bfa; border: 2px solid #0f172a; border-radius: 9999px; }
.chat-name { font-weight: 700; font-size: 1.125rem; line-height: 1; }
.chat-role { font-size: 0.75rem; color: #c4b5fd; 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: transparent; border: none; color: #cbd5e1; cursor: pointer;
    transition: background 0.3s;
}
.chat-close-btn:hover { background: rgba(255,255,255,0.1); }
#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-today {
    text-align: center; font-size: 10px; font-weight: 700;
    color: #94a3b8; text-transform: uppercase; letter-spacing: 0.2em;
}
.chat-form-bar {
    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: #1e293b;
}
#chatbot-input::placeholder { color: #94a3b8; }
#chatbot-form button[type="submit"] {
    background: none; border: none; color: #8b5cf6;
    cursor: pointer; transition: transform 0.2s; padding: 0;
}
#chatbot-form button[type="submit"]:hover { transform: scale(1.1); }
.chat-user-msg {
    background: #0f172a; color: #fff; padding: 1rem; border-radius: 1.5rem;
    border-bottom-right-radius: 0; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-size: 0.875rem; align-self: flex-end; max-width: 80%;
}
.chat-bot-msg {
    background: #fff; color: #000; padding: 1rem; border-radius: 1.5rem;
    border-bottom-left-radius: 0; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    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; background: #111827; border: none; cursor: pointer;
}
#chatbot-toggle i { position: absolute; }
#icon-msg { opacity: 1; transform: rotate(0) scale(1); }
#icon-close { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.chatbot-toggle-active #icon-msg { opacity: 0; transform: rotate(90deg) scale(0.5); }
.chatbot-toggle-active #icon-close { opacity: 1; transform: rotate(0) scale(1); }

/* === Country Dropdown === */
#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;
}

/* Chat widget icon sizes */
.chat-icon-sm { font-size: 1.125rem; }
.chat-icon-lg { font-size: 1.5rem; }
.chat-icon-close-violet { font-size: 1.5rem; color: #8b5cf6; opacity: 0; transform: rotate(-90deg) scale(0.5); }
.chat-icon-white { color: #fff; }


/* === Utility classes to replace inline styles === */

/* Layout utilities */
.navbar-brand-row { display: flex; align-items: center; }
.hero-stat-detail { display: flex; align-items: center; gap: 0.5rem; }
.hero-stat-row { display: flex; align-items: center; gap: 0.75rem; }
.icon-centered { display: flex; align-items: center; justify-content: center; }
.pain-card-body { display: flex; flex-direction: column; justify-content: center; }
.cta-inline { display: inline-flex; align-items: center; gap: 0.5rem; }
.content-layer { position: relative; z-index: 10; }

/* Sizing */
.section-title-wide { max-width: 56rem; margin-left: auto; margin-right: auto; }
.svg-icon-md { width: 1.5rem; height: 1.5rem; }

/* Padding */
.p-sm { padding: 0.75rem; }
.p-md { padding: 1rem; }
.input-pr-icon { padding-right: 2.5rem; }
.textarea-noresize { resize: none; }

/* Animation delays */
.animate-delay-200 { animation-delay: 0.2s; }
.animation-stagger-1 { transition-delay: 0.1s; }
.animation-stagger-1b { transition-delay: 0.15s; }
.animation-stagger-2 { transition-delay: 0.2s; }
.animation-stagger-2b { transition-delay: 0.25s; }
.animation-stagger-3 { transition-delay: 0.3s; }
.animation-stagger-3b { transition-delay: 0.35s; }
.animation-stagger-4 { transition-delay: 0.4s; }
.animation-stagger-4b { transition-delay: 0.45s; }

/* Floating orbs - hero */
.floating-orb.orb-1 { width: 120px; height: 120px; top: 10%; right: 8%; background: #a78bfa; }
.floating-orb.orb-2 { width: 80px; height: 80px; bottom: 15%; left: 5%; background: #9333ea; }
.floating-orb.orb-3 { width: 60px; height: 60px; top: 60%; right: 25%; background: #c4b5fd; }

/* WR section orbs */
.ag-wr-orb:nth-child(1) { width: 200px; height: 200px; top: -5%; left: 10%; background: rgba(139, 92, 246, 0.08); }
.ag-wr-orb:nth-child(2) { width: 150px; height: 150px; bottom: 10%; right: 5%; background: rgba(147, 51, 234, 0.06); animation-delay: 2s; }

/* Quotes blobs */
.quotes-blob:nth-child(1) { width: 400px; height: 400px; top: -10%; left: -5%; background: rgba(196, 181, 253, 0.2); }
.quotes-blob:nth-child(2) { width: 300px; height: 300px; bottom: -5%; right: -3%; background: rgba(216, 180, 254, 0.15); animation-delay: 3s; }

/* Agency card icons */
.agency-card-icon-violet { background: #f5f3ff; }
.agency-card-icon-purple { background: #faf5ff; }

/* Icon colors */
.icon-color-violet { color: #7c3aed; font-size: 1.25rem; }
.icon-color-purple { color: #9333ea; font-size: 1.25rem; }
.icon-color-violet-sm { color: #7c3aed; font-size: 1.125rem; }
.icon-color-red-sm { color: #f87171; font-size: 1.125rem; }
.icon-color-white-sm { color: #fff; font-size: 1.125rem; }

/* Text styles */
.text-gray-desc { color: #6b7280; font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }
.text-gray-body { color: #4b5563; font-size: 1.125rem; line-height: 1.75; margin-bottom: 2rem; }
.fw-700 { font-weight: 700; }

.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; }
