/* ===========================
   Retain E-commerce Page Styles
   =========================== */

/* --- CSS Custom Properties --- */
:root {
    --amber: #f59e0b;
    --orange: #ea580c;
    --gold: #fbbf24;
    --dark: #0f172a;
}

/* --- Base / Reset --- */
html { scroll-behavior: smooth; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #fff;
    overflow-x: hidden;
    animation: pageLoadFadeIn 0.8s ease forwards;
}
@keyframes pageLoadFadeIn { from { opacity: 0; } to { opacity: 1; } }
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
button { border: none; cursor: pointer; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Utility Classes --- */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0;
    margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, #f59e0b, #ea580c, #f59e0b, #fbbf24, #f59e0b);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0%{background-position:100% 0} 50%{background-position:0 0} 100%{background-position:100% 0} }

/* --- Section Label --- */
.section-label {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(234,88,12,0.1));
    border: 1px solid rgba(245,158,11,0.2);
    color: #d97706;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid #f3f4f6;
    transition: box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.navbar-inner {
    max-width: 80rem;
    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 a {
    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-brand-sub {
    color: #6b7280;
    font-size: 0.875rem;
    margin-left: 0.5rem;
    transition: color 0.3s;
}
.navbar-brand-sub:hover { color: #374151; }

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-link {
    position: relative;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover { color: #111827; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
    font-size: 1rem;
}
.nav-dropdown-btn:hover { color: #111827; }
.nav-dropdown-btn i {
    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: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    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; }
.nav-dropdown-item i {
    margin-right: 0.75rem;
    padding: 0.375rem;
    border-radius: 0.5rem;
}
.nav-dropdown-item-active {
    color: #92400e;
    font-weight: 500;
    background: #fffbeb;
    border-radius: 0.375rem;
}

/* Nav CTA */
.nav-cta {
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    white-space: nowrap;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transition: box-shadow 0.3s;
}
.nav-cta:hover { box-shadow: 0 8px 25px rgba(245,158,11,0.3); }

/* Mobile menu button */
.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: #9ca3af;
    transition: color 0.2s, background 0.2s;
}
.mobile-menu-btn:hover { color: #6b7280; background: #f3f4f6; }
.mobile-menu-btn:focus { outline: 2px solid #f59e0b; outline-offset: 2px; }
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }

/* Mobile menu panel */
.mobile-menu {
    display: none;
    padding: 0.5rem 0.75rem 0.75rem;
}
.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-sub-header {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mobile-menu-sub-link {
    display: block;
    padding: 0.5rem 0.75rem;
    padding-left: 1.5rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}
.mobile-menu-sub-link:hover { color: #111827; }
.mobile-menu-sub-link-active {
    color: #92400e;
    font-weight: 600;
    border-left-color: #f59e0b;
    background: #fffbeb;
}
.mobile-menu-cta {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

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

/* --- Hero Section --- */
.hero {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #fffbeb, #ffffff, #fff7ed);
    position: relative;
    overflow: hidden;
}
.hero .dot-grid {
    background-image: radial-gradient(circle, rgba(245,158,11,0.12) 1px, transparent 1px);
    background-size: 28px 28px;
}
.hero-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}
.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}
.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.hero-desc {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 36rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 25px rgba(245,158,11,0.3);
    transition: box-shadow 0.3s, transform 0.2s;
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.hero-cta-primary:hover { box-shadow: 0 12px 35px rgba(245,158,11,0.4); }
.hero-cta-primary i { margin-left: 0.5rem; }
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    border: 2px solid #fde68a;
    color: #92400e;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.3s;
}
.hero-cta-secondary:hover { background: #fffbeb; }

.hero-image-wrap {
    overflow: hidden;
    border-radius: 1rem;
}
.hero-image-wrap img {
    width: 100%;
    border-radius: 1rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.hero-image-wrap:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

@media (min-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 3.75rem; }
}
@media (min-width: 768px) {
    .hero-title { font-size: 3rem; }
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite;
}
@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(20px,-30px) scale(1.05); }
    66% { transform: translate(-15px,15px) scale(0.95); }
}

/* Floating badges */
.floating-badge {
    position: absolute;
    z-index: 10;
    display: none;
    animation: badgeBob 3s ease-in-out infinite;
}
.floating-badge-inner {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid #fde68a;
    font-size: 0.75rem;
    font-weight: 600;
    color: #92400e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
@keyframes badgeBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

@keyframes pulseGlow { 0%,100%{box-shadow:0 4px 15px rgba(245,158,11,0.3)} 50%{box-shadow:0 4px 30px rgba(245,158,11,0.6)} }

/* Rotating text */
.rotating-text-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    height: 1.15em;
    position: relative;
    line-height: inherit;
    top: 0.08em;
}
.rotating-text-inner {
    display: flex;
    flex-direction: column;
    animation: rotateWords 10s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes rotateWords {
    0%, 20% { transform: translateY(0); }
    25%, 45% { transform: translateY(-25%); }
    50%, 70% { transform: translateY(-50%); }
    75%, 92% { transform: translateY(-75%); }
    92.01%, 100% { transform: translateY(0); }
}
.rotating-word {
    height: 1.15em;
    display: block;
    line-height: 1.15;
}

/* Float animation */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.float { animation: float 6s ease-in-out infinite; }

/* Image hover container */
.img-hover-container { overflow: hidden; border-radius: 1rem; }
.img-hover-container img { transition: transform 0.5s ease, box-shadow 0.5s ease; }
.img-hover-container:hover img { transform: scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

/* --- Reveal Animations --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94), transform 0.7s cubic-bezier(.25,.46,.45,.94); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translate(0); }

/* --- Social Proof Ticker --- */
.ticker-section {
    padding: 2.5rem 0;
    background: white;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    overflow: hidden;
}
.ticker-wrapper { position: relative; }
.ticker-wrapper::before, .ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.ticker-wrapper::before { left: 0; background: linear-gradient(to right, white, transparent); }
.ticker-wrapper::after { right: 0; background: linear-gradient(to left, white, transparent); }

.ticker-track-outer { display: flex; white-space: nowrap; }

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    animation: marquee 25s linear infinite;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.ticker-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ticker-icon i { font-size: 0.875rem; }
.ticker-icon-pink { background: #fdf2f8; }
.ticker-icon-pink i { color: #f472b6; }
.ticker-icon-purple { background: #faf5ff; }
.ticker-icon-purple i { color: #a78bfa; }
.ticker-icon-blue { background: #eff6ff; }
.ticker-icon-blue i { color: #60a5fa; }
.ticker-icon-green { background: #f0fdf4; }
.ticker-icon-green i { color: #4ade80; }
.ticker-icon-cyan { background: #ecfeff; }
.ticker-icon-cyan i { color: #22d3ee; }
.ticker-icon-orange { background: #fff7ed; }
.ticker-icon-orange i { color: #fb923c; }
.ticker-icon-amber { background: #fffbeb; }
.ticker-icon-amber i { color: #fbbf24; }
.ticker-icon-teal { background: #f0fdfa; }
.ticker-icon-teal i { color: #2dd4bf; }

/* --- Challenges Bento --- */
.challenges-section {
    padding: 7rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}
.challenges-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1rem;
}
.section-header p {
    color: #6b7280;
    margin-top: 1.25rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .section-header h2 { font-size: 3rem; }
}

/* Bento grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.25rem;
}
.bento-span-2 { grid-column: span 2; }
.bento-row-2 { grid-row: span 2; }
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-span-2 { grid-column: span 1; }
}
@media (max-width: 640px) { .bento-grid { grid-template-columns: 1fr; } }

/* Card hover */
.card-hover { transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), box-shadow 0.4s; }
.card-hover:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(245,158,11,0.15); }

/* Tilt card */
.tilt-card { transition: transform 0.2s ease-out; transform-style: preserve-3d; }

/* Bento cards */
.bento-card {
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border: 1px solid;
}
.bento-card-lg { padding: 2rem; }
.bento-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.bento-card-icon-lg {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
}
.bento-card h3 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}
.bento-card-lg h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.bento-card p { color: #6b7280; font-size: 0.875rem; }
.bento-card-lg p { font-size: 1rem; }
.bento-stat {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Card color variants */
.bento-red { background: linear-gradient(to bottom right, #fef2f2, white); border-color: #fecaca; }
.bento-orange { background: linear-gradient(to bottom right, #fff7ed, white); border-color: #fed7aa; }
.bento-yellow { background: linear-gradient(to bottom right, #fefce8, white); border-color: #fef08a; }
.bento-amber { background: linear-gradient(to bottom right, #fffbeb, white); border-color: #fde68a; }

.bento-icon-red { background: #fee2e2; }
.bento-icon-red i { color: #ef4444; font-size: 1.5rem; }
.bento-icon-orange { background: #ffedd5; }
.bento-icon-orange i { color: #f97316; font-size: 1.25rem; }
.bento-icon-yellow { background: #fef9c3; }
.bento-icon-yellow i { color: #ca8a04; font-size: 1.25rem; }
.bento-icon-amber { background: #fef3c7; }
.bento-icon-amber i { color: #d97706; font-size: 1.75rem; }

.bento-connector {
    grid-column: span 2;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgba(239,68,68,0.05), rgba(249,115,22,0.05), rgba(245,158,11,0.05));
    border: 1px dashed #fde68a;
    text-align: center;
}
.bento-connector-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.bento-connector p { font-size: 0.875rem; font-weight: 600; color: #4b5563; }
.bento-connector .small { font-size: 0.75rem; color: #9ca3af; margin-top: 0.25rem; }

/* Icon animations */
@keyframes iconPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
@keyframes iconBounce { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-6px)} }
.icon-pulse { animation: iconPulse 2s ease-in-out infinite; }
.icon-bounce { animation: iconBounce 2s ease-in-out infinite; }

/* Cursor glow */
.cursor-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s;
    transform: translate(-50%, -50%);
}

/* --- Key Features Grid --- */
.key-features-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f9fafb, white);
    position: relative;
    overflow: hidden;
}
.key-features-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}
.key-features-header {
    text-align: center;
    margin-bottom: 3rem;
}
.key-features-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-top: 1rem;
}
.key-features-header p {
    color: #6b7280;
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .key-features-header h2 { font-size: 3.75rem; }
}

/* KF Grid */
.kf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
@media (max-width: 1024px) { .kf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .kf-grid { grid-template-columns: 1fr; } }

.kf-tile {
    position: relative;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    cursor: default;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94), box-shadow 0.4s, border-color 0.4s, filter 0.4s;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}
.kf-tile.visible { opacity: 1; transform: translateY(0) scale(1); }
.kf-tile:hover { transform: scale(1.05); z-index: 2; filter: brightness(0.92); }

.kf-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.15) 55%, transparent 60%);
    background-size: 400% 100%;
    animation: kfShimmer 10s linear infinite;
}
@keyframes kfShimmer { 0%{background-position:300% 0} 100%{background-position:-300% 0} }

.kf-tile::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    z-index: 1;
    pointer-events: none;
    animation: kfDotFloat 4s ease-in-out infinite;
}
@keyframes kfDotFloat { 0%,100%{transform:translate(0,0);opacity:0.3} 50%{transform:translate(8px,-12px);opacity:0.6} }

.kf-tile-icon {
    font-size: 2.25rem;
    color: white;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
}
.kf-tile:hover .kf-tile-icon { animation: kfIconBounce 0.6s ease; }
@keyframes kfIconBounce { 0%{transform:translateY(0)} 30%{transform:translateY(-8px)} 50%{transform:translateY(-3px)} 70%{transform:translateY(-6px)} 100%{transform:translateY(0)} }

.kf-tile-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    margin-top: 0.75rem;
    z-index: 2;
    transition: text-shadow 0.3s;
}
.kf-tile:hover .kf-tile-title { text-shadow: 0 0 20px rgba(255,255,255,0.4); }

.kf-tile-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    z-index: 2;
    line-height: 1.5;
    margin-top: 0.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Tile color variants */
.kf-t-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.kf-t-amber:hover { box-shadow: 0 8px 30px rgba(245,158,11,0.4), inset 0 0 30px rgba(0,0,0,0.08); border-color: rgba(255,255,255,0.5); }
.kf-t-orange { background: linear-gradient(135deg, #ea580c, #c2410c); }
.kf-t-orange:hover { box-shadow: 0 8px 30px rgba(234,88,12,0.4), inset 0 0 30px rgba(0,0,0,0.08); border-color: rgba(255,255,255,0.5); }
.kf-t-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.kf-t-red:hover { box-shadow: 0 8px 30px rgba(239,68,68,0.4), inset 0 0 30px rgba(0,0,0,0.08); border-color: rgba(255,255,255,0.5); }
.kf-t-green { background: linear-gradient(135deg, #10b981, #059669); }
.kf-t-green:hover { box-shadow: 0 8px 30px rgba(16,185,129,0.4), inset 0 0 30px rgba(0,0,0,0.08); border-color: rgba(255,255,255,0.5); }
.kf-t-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.kf-t-purple:hover { box-shadow: 0 8px 30px rgba(139,92,246,0.4), inset 0 0 30px rgba(0,0,0,0.08); border-color: rgba(255,255,255,0.5); }
.kf-t-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.kf-t-blue:hover { box-shadow: 0 8px 30px rgba(59,130,246,0.4), inset 0 0 30px rgba(0,0,0,0.08); border-color: rgba(255,255,255,0.5); }
.kf-t-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.kf-t-teal:hover { box-shadow: 0 8px 30px rgba(20,184,166,0.4), inset 0 0 30px rgba(0,0,0,0.08); border-color: rgba(255,255,255,0.5); }
.kf-t-rose { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.kf-t-rose:hover { box-shadow: 0 8px 30px rgba(244,63,94,0.4), inset 0 0 30px rgba(0,0,0,0.08); border-color: rgba(255,255,255,0.5); }

/* Stagger dot positions */
.kf-tile:nth-child(1)::after{top:15%;left:20%;animation-delay:0s}
.kf-tile:nth-child(2)::after{top:70%;right:15%;left:auto;animation-delay:0.5s}
.kf-tile:nth-child(3)::after{bottom:20%;left:25%;top:auto;animation-delay:1s}
.kf-tile:nth-child(4)::after{top:25%;right:20%;left:auto;animation-delay:1.5s}
.kf-tile:nth-child(5)::after{top:60%;left:15%;animation-delay:0.7s}
.kf-tile:nth-child(6)::after{bottom:15%;right:25%;left:auto;top:auto;animation-delay:1.2s}
.kf-tile:nth-child(7)::after{top:20%;left:60%;animation-delay:0.3s}
.kf-tile:nth-child(8)::after{top:40%;right:12%;left:auto;animation-delay:1.8s}
.kf-tile:nth-child(2)::before{animation-delay:0.8s}
.kf-tile:nth-child(3)::before{animation-delay:1.6s}
.kf-tile:nth-child(4)::before{animation-delay:2.4s}
.kf-tile:nth-child(5)::before{animation-delay:0.4s}
.kf-tile:nth-child(6)::before{animation-delay:1.2s}
.kf-tile:nth-child(7)::before{animation-delay:2s}
.kf-tile:nth-child(8)::before{animation-delay:2.8s}

/* --- Deep Dive Tabs (Desktop) --- */
.deep-dive-outer { position: relative; z-index: 2; }
.deep-dive-section {
    background: white;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    z-index: 2;
}
.deep-dive-section .deco-dots {
    position: absolute;
    width: 8rem;
    height: 8rem;
    opacity: 0.1;
    background-image: radial-gradient(#f59e0b 2px, transparent 2px);
    background-size: 12px 12px;
}
.deep-dive-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 7rem 1.5rem;
    position: relative;
    z-index: 10;
    width: 100%;
}
.deep-dive-header {
    text-align: center;
    margin-bottom: 4rem;
}
.deep-dive-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1rem;
}
@media (min-width: 768px) {
    .deep-dive-header h2 { font-size: 3rem; }
}

/* Desktop layout */
.deep-dive-layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
    margin-left: -2rem;
}
@media (min-width: 1024px) {
    .deep-dive-layout { grid-template-columns: 280px 1fr; }
}

/* Tab buttons - mobile horizontal pills */
.tab-pills-mobile {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}
.tab-pills-mobile::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
    .tab-pills-mobile { display: none; }
}

/* Tab buttons base */
.tab-btn {
    transition: all 0.35s ease !important;
    background: transparent;
    border: none;
    cursor: pointer;
}
.tab-btn:not(.active) { color: #9ca3af; }
.tab-btn:not(.active):hover { color: #374151; background: rgba(245,158,11,0.05); }
.tab-btn.active { color: #92400e; font-weight: 700; background: rgba(245,158,11,0.08); }

@media (max-width: 1023px) {
    .tab-btn {
        background: white;
        border: 2px solid #fde68a !important;
        border-radius: 9999px;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        font-weight: 600;
        white-space: nowrap;
    }
    .tab-btn.active {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        border-color: transparent !important;
        box-shadow: 0 4px 15px rgba(245,158,11,0.4);
    }
    .tab-btn:not(.active) { color: #6b7280; }
    .tab-btn:not(.active):hover { background: #fffbeb; border-color: #f59e0b !important; }
}

/* Desktop vertical timeline tabs */
.tab-timeline-desktop {
    display: none;
    position: relative;
}
@media (min-width: 1024px) {
    .tab-timeline-desktop { display: flex; }
}
.tab-progress-track {
    position: absolute;
    left: 18px;
    top: 28px;
    bottom: 28px;
    width: 3px;
    background: #e5e7eb;
    border-radius: 9999px;
}
.tab-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #f59e0b, #d97706);
    border-radius: 9999px;
    transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.tab-timeline-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}
.tab-timeline-btn {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem 1.5rem 3rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-size: 1rem;
}
.tab-timeline-dot {
    position: absolute;
    left: 7px;
    top: 1.5rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid #d1d5db;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.tab-timeline-dot-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s;
}
.tab-timeline-btn.active .tab-timeline-dot {
    border-color: #fbbf24;
}
.tab-timeline-btn.active .tab-timeline-dot-inner,
.tab-timeline-btn.filled .tab-timeline-dot-inner {
    background: #f59e0b;
}
.tab-timeline-btn.filled .tab-timeline-dot {
    border-color: #fbbf24;
}
.tab-timeline-btn .tab-label {
    display: block;
    font-weight: 600;
}
.tab-timeline-btn .tab-sublabel {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}
.tab-timeline-btn:not(.active) .tab-label { color: #6b7280; }
.tab-timeline-btn.active .tab-label { font-weight: 700; }

/* Tab content area */
.tab-content-area {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 768px) {
    .tab-content-area { grid-template-columns: 1fr 1fr; }
}
.tab-text-wrap {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}
.tab-content {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), scale 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.tab-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .tab-content h3 { font-size: 1.875rem; }
}
.tab-content > p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.125rem;
}
.tab-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #6b7280;
}
.tab-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.tab-check-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.tab-check-icon i { color: #d97706; font-size: 0.75rem; }

/* Tab image area */
.tab-image-wrap {
    position: relative;
}
.tab-image-bg {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to bottom right, rgba(254,243,199,0.5), rgba(255,237,213,0.5));
    border-radius: 1.5rem;
    z-index: -1;
}
.tab-images-container {
    position: relative;
    overflow: hidden;
}
.tab-img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), scale 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Deep Dive responsive */
@media (min-width: 768px) {
    #scrollTabsOuter { display: block !important; }
    .mobile-swiper-wrap { display: none !important; }
}
@media (max-width: 767px) {
    #scrollTabsOuter { display: none !important; }
}

/* --- Mobile Swiper --- */
.mobile-swiper-wrap { display: none; }
@media (max-width: 767px) {
    .mobile-swiper-wrap { display: block; }
}
.mobile-swiper-section {
    padding: 3rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}
.mobile-swiper-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.mobile-swiper-header {
    text-align: center;
    margin-bottom: 2rem;
}
.mobile-swiper-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1rem;
}
.mobile-swiper-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 1rem 0.75rem;
    margin-bottom: 1.25rem;
}
.mobile-swiper-tabs::-webkit-scrollbar { display: none; }
.mobile-swiper-tab {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    border: 2px solid #fde68a;
    background: white;
    color: #6b7280;
    transition: all 0.3s ease;
    cursor: pointer;
}
.mobile-swiper-tab.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(245,158,11,0.4);
}
.mobile-swiper-track-wrap {
    overflow: hidden;
    border-radius: 1rem;
}
.mobile-swiper-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.mobile-swiper-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    padding: 0 1rem;
    box-sizing: border-box;
}
.mobile-swiper-slide img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-swiper-slide h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}
.mobile-swiper-slide p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.mobile-swiper-slide ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.mobile-swiper-slide li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.85rem;
    color: #6b7280;
}
.mobile-swiper-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.mobile-swiper-check i { font-size: 0.55rem; color: #d97706; }
.mobile-swiper-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.mobile-swiper-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}
.mobile-swiper-dot.active {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    width: 24px;
    border-radius: 4px;
}

/* --- How It Works Timeline --- */
.hiw-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, rgba(245,158,11,0.03), white);
    position: relative;
    overflow: hidden;
}
.hiw-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}
.hiw-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.hiw-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1rem;
}
.hiw-header p {
    color: #6b7280;
    margin-top: 1rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) { .hiw-header h2 { font-size: 3rem; } }

.hiw-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.hiw-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(245,158,11,0.15);
    transform: translateX(-50%);
    border-radius: 4px;
}
.hiw-timeline-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #f59e0b, #ea580c, #fbbf24);
    border-radius: 4px;
    transition: height 0.15s linear;
}
.hiw-timeline-dot {
    position: absolute;
    left: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid rgba(245,158,11,0.3);
    transform: translateX(-50%);
    z-index: 3;
    transition: border-color 0.4s, box-shadow 0.4s, background 0.4s;
}
.hiw-timeline-dot.active {
    border-color: #f59e0b;
    background: #f59e0b;
    box-shadow: 0 0 12px rgba(245,158,11,0.5);
}

.hiw-step { position: relative; z-index: 2; }
.hiw-step-left .hiw-step-card { margin-right: calc(50% + 28px); }
.hiw-step-right .hiw-step-card { margin-left: calc(50% + 28px); }

.hiw-step-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(245,158,11,0.12);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s, border-color 0.4s;
}
.hiw-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245,158,11,0.12);
    border-color: rgba(245,158,11,0.25);
}
.hiw-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.hiw-num {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: white;
    flex-shrink: 0;
    z-index: 2;
}
.hiw-num::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.1rem;
    opacity: 0.35;
    z-index: -1;
    animation: hiwGlow 3s ease-in-out infinite;
}
@keyframes hiwGlow {
    0%, 100% { filter: blur(6px); opacity: 0.25; transform: scale(1); }
    50% { filter: blur(10px); opacity: 0.5; transform: scale(1.06); }
}
.hiw-num-1 { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.hiw-num-1::after { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.hiw-num-2 { background: linear-gradient(135deg, #ea580c, #dc2626); }
.hiw-num-2::after { background: linear-gradient(135deg, #ea580c, #dc2626); animation-delay: 1s; }
.hiw-num-3 { background: linear-gradient(135deg, #fbbf24, #10b981); }
.hiw-num-3::after { background: linear-gradient(135deg, #fbbf24, #10b981); animation-delay: 2s; }

.hiw-step-card h3 {
    font-weight: 700;
    color: #111827;
    font-size: 1.25rem;
}
.hiw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.25rem;
}
.hiw-tag {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid;
}
.hiw-tag-amber { background: #fffbeb; color: #92400e; border-color: #fef3c7; }
.hiw-tag-pink { background: #fdf2f8; color: #9d174d; border-color: #fce7f3; }
.hiw-tag-blue { background: #eff6ff; color: #1e40af; border-color: #dbeafe; }
.hiw-tag-orange { background: #fff7ed; color: #9a3412; border-color: #ffedd5; }
.hiw-tag-red { background: #fef2f2; color: #991b1b; border-color: #fecaca; }
.hiw-tag-purple { background: #faf5ff; color: #6b21a8; border-color: #f3e8ff; }
.hiw-tag-emerald { background: #ecfdf5; color: #065f46; border-color: #d1fae5; }

.hiw-step-card > p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}

.hiw-reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94), transform 0.7s cubic-bezier(.25,.46,.45,.94); }
.hiw-reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s cubic-bezier(.25,.46,.45,.94), transform 0.7s cubic-bezier(.25,.46,.45,.94); }
.hiw-reveal-left.visible, .hiw-reveal-right.visible { opacity: 1; transform: translateX(0); }

@media (max-width: 767px) {
    .hiw-timeline-line { left: 24px; }
    .hiw-timeline-dot { left: 24px; }
    .hiw-step-left .hiw-step-card,
    .hiw-step-right .hiw-step-card { margin-left: 56px; margin-right: 0; }
    .hiw-reveal-left, .hiw-reveal-right { transform: translateX(30px); }
}

/* --- Stats Section --- */
.stats-section {
    background: linear-gradient(-45deg, #0f172a, #1e293b, #2a1f0a, #1a1028, #0f172a);
    background-size: 400% 400%;
    animation: ecStatsBg 15s ease infinite;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
@keyframes ecStatsBg { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.stats-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.stats-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.stats-header h2 { font-size: 1.875rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.stats-header p { color: #fde68a; font-size: 1.125rem; }
@media (min-width: 640px) { .stats-header h2 { font-size: 2.25rem; } }

/* Typewriter */
.typewriter {
    display: inline-block;
    border-right: 3px solid #f59e0b;
    white-space: nowrap;
    overflow: hidden;
    animation: typewrite 3.5s steps(40, end) forwards, blinkCaret 0.75s step-end 6, hideCaret 0s forwards 4.5s;
}
@keyframes typewrite { from { width: 0; } to { width: 100%; } }
@keyframes blinkCaret { from, to { border-color: transparent; } 50% { border-color: #f59e0b; } }
@keyframes hideCaret { to { border-right-color: transparent; border-right-width: 0; } }

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

.stat-card {
    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-card:nth-child(odd) { transform: rotate(-2deg); }
.stat-card:nth-child(even) { transform: rotate(2deg); }
.stat-card:hover { transform: rotate(0deg) translateY(-8px) !important; box-shadow: 0 20px 50px rgba(245,158,11,0.2); }
.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}
@media (min-width: 1024px) { .stat-value { font-size: 3.75rem; } }
.stat-label { color: #fde68a; font-weight: 500; }

/* --- Why Retain Section --- */
.why-retain-section {
    padding: 7rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}
.wr-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(255,251,235,0.4), rgba(255,255,255,0.2), rgba(254,243,199,0.3), rgba(255,255,255,0.2));
    background-size: 400% 400%;
    animation: wrBgShift 12s ease-in-out infinite;
}
@keyframes wrBgShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

.wr-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    opacity: 0.15;
}
.wr-orb-1 { width:300px; height:300px; background:radial-gradient(circle,#fbbf24,transparent); top:10%; left:-5%; animation: wrOrbFloat1 10s ease-in-out infinite; }
.wr-orb-2 { width:250px; height:250px; background:radial-gradient(circle,#f59e0b,transparent); bottom:5%; right:-3%; animation: wrOrbFloat2 12s ease-in-out infinite; }
.wr-orb-3 { width:180px; height:180px; background:radial-gradient(circle,#ea580c,transparent); top:50%; left:50%; transform:translate(-50%,-50%); animation: wrOrbFloat3 8s ease-in-out infinite; }
@keyframes wrOrbFloat1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-20px)} }
@keyframes wrOrbFloat2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-25px,15px)} }
@keyframes wrOrbFloat3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.2)} }

.why-retain-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}
.why-retain-header {
    text-align: center;
    margin-bottom: 4rem;
}
.why-retain-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.why-retain-header p {
    color: #4b5563;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}
@media (min-width: 768px) { .why-retain-header h2 { font-size: 3rem; } }

.wr-label-glow { animation: wrLabelPulse 3s ease-in-out infinite; }
@keyframes wrLabelPulse { 0%,100%{box-shadow:0 0 0 0 rgba(245,158,11,0)} 50%{box-shadow:0 0 20px 4px rgba(245,158,11,0.15)} }

.wr-gradient-text-animated {
    background: linear-gradient(135deg, #f59e0b, #ea580c, #fbbf24, #ef4444, #f59e0b, #d97706);
    background-size: 500% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wrGradientShift 6s ease-in-out infinite;
}
@keyframes wrGradientShift { 0%{background-position:0% 50%} 25%{background-position:50% 50%} 50%{background-position:100% 50%} 75%{background-position:50% 50%} 100%{background-position:0% 50%} }

.wr-cards-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
}
@media (min-width: 768px) { .wr-cards-grid { grid-template-columns: 1fr 1fr; } }

/* VS badge */
.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: #f59e0b;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 15px rgba(245,158,11,0.2);
    animation: wrVsPulse 3s ease-in-out infinite;
}
@keyframes wrVsPulse { 0%,100%{box-shadow:0 4px 20px rgba(0,0,0,0.3),0 0 15px rgba(245,158,11,0.2)} 50%{box-shadow:0 4px 20px rgba(0,0,0,0.3),0 0 25px rgba(245,158,11,0.4)} }
@media (max-width: 767px) { .wr-vs-badge { display: none; } }

/* Without Retain card */
.wr-card-dark {
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    background: #111827;
    color: white;
    transition: transform 0.5s cubic-bezier(.25,.46,.45,.94), box-shadow 0.5s !important;
}
.wr-card-dark:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(239,68,68,0.15) !important;
}
.wr-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.wr-card-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-card-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-card-header-icon-red { background: rgba(239,68,68,0.2); }
.wr-card-header-icon-red i { color: #f87171; font-size: 1.125rem; }
.wr-card-header-icon-amber { background: rgba(245,158,11,0.2); }
.wr-card-header-icon-amber i { color: #d97706; font-size: 1.125rem; }
.wr-card-header-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.wr-card-header-label-red { color: #f87171; }
.wr-card-header-label-amber { color: #d97706; }

.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(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.wr-list-item.visible { opacity: 1; transform: translateX(0); }

.wr-icon-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}
.wr-icon-circle.visible { transform: scale(1); }
.wr-icon-circle-red { background: rgba(239,68,68,0.15); }
.wr-icon-circle-red i { color: #f87171; font-size: 0.875rem; }
.wr-icon-circle-amber { background: rgba(245,158,11,0.2); }
.wr-icon-circle-amber i { color: #d97706; font-size: 0.875rem; }

.wr-item-title { font-weight: 600; }
.wr-item-title-white { color: white; }
.wr-item-title-dark { color: #111827; }
.wr-item-desc { font-size: 0.875rem; margin-top: 0.25rem; }
.wr-item-desc-gray { color: #9ca3af; }
.wr-item-desc-muted { color: #6b7280; }

.wr-x-shake { display: inline-flex; }
.wr-x-shake.animate { animation: wrShake 0.5s ease-in-out; }
@keyframes wrShake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-3px)} 40%{transform:translateX(3px)} 60%{transform:translateX(-2px)} 80%{transform:translateX(2px)} }

/* With Retain card */
.wr-card-amber {
    border-radius: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(to bottom right, #fffbeb, #fff7ed, #fefce8);
    border: 2px solid #fde68a;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(.25,.46,.45,.94), box-shadow 0.5s !important;
}
.wr-card-amber:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(245,158,11,0.2), 0 0 30px rgba(245,158,11,0.15) !important;
}
.wr-card-amber::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    border-radius: 1.5rem;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.4) 45%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.4) 55%, transparent 60%);
    background-size: 300% 100%;
    animation: wrShimmerSweep 4s ease-in-out infinite;
}
@keyframes wrShimmerSweep { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.wr-card-amber-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom left, rgba(251,191,36,0.3), transparent);
    border-bottom-left-radius: 100%;
}
.wr-card-amber .wr-list { position: relative; z-index: 10; }

/* --- Quotes Section --- */
.quotes-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, rgba(255,251,235,0.3) 0%, #ffffff 50%, rgba(255,247,237,0.3) 100%);
    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-dot-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(245,158,11,0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}
.quotes-inner {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}
.quotes-header {
    text-align: center;
    margin-bottom: 4rem;
}
.quotes-header-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(254,243,199,0.8);
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.quotes-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1.25rem;
}
.quotes-header p {
    color: #6b7280;
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}
@media (min-width: 768px) { .quotes-header h2 { font-size: 3rem; } }

.quotes-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 768px) {
    .quotes-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
}

.glass-quote {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(245,158,11,0.15);
    border-radius: 1.5rem;
    padding: 2rem 2.25rem;
    box-shadow: 0 4px 20px rgba(245,158,11,0.08), 0 12px 40px rgba(245,158,11,0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.glass-quote:hover {
    box-shadow: 0 8px 30px rgba(245,158,11,0.18), 0 20px 60px rgba(245,158,11,0.15);
    transform: translateY(-4px);
}
.glass-quote.featured {
    grid-row: 1 / -1;
    padding: 2.5rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    animation: quoteFloat1 4s ease-in-out infinite;
}
@media (max-width: 768px) {
    .glass-quote.featured { grid-row: span 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); } }

.quote-icon { color: #fbbf24; margin-bottom: 1.25rem; }
.quote-text {
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.quote-text-featured { font-size: 1.5rem; line-height: 1.8; font-weight: 500; }
@media (min-width: 768px) { .quote-text-featured { font-size: 2.25rem; } }
.quote-text-normal { font-size: 1rem; line-height: 1.75; }

.quote-author {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.quote-author-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fbbf24;
    display: inline-block;
}
.quote-author-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: #d97706;
    background: #fffbeb;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
}
.quote-author-title {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-left: 0.25rem;
}
.quote-featured-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245,158,11,0.15);
}
.quote-featured-icons {
    display: flex;
}
.quote-featured-icons > * { margin-left: -0.5rem; }
.quote-featured-icons > *:first-child { margin-left: 0; }
.quote-featured-icon-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quote-featured-icon-circle i { font-size: 0.75rem; }
.quote-featured-meta p {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.4;
}

/* --- Contact Form Section --- */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom right, white, rgba(245,158,11,0.03), white);
    position: relative;
    overflow: hidden;
}
.contact-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-left-header { margin-bottom: 1rem; }
.contact-left h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}
@media (min-width: 768px) { .contact-left h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .contact-left h2 { font-size: 3rem; } }
.contact-left > p {
    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-amber { background: #fef3c7; }
.contact-feature-icon-amber i { color: #d97706; }
.contact-feature-icon-orange { background: #ffedd5; }
.contact-feature-icon-orange i { color: #ea580c; }
.contact-feature-icon-green { background: #dcfce7; }
.contact-feature-icon-green i { color: #16a34a; }
.contact-feature-icon-blue { background: #dbeafe; }
.contact-feature-icon-blue i { color: #2563eb; }
.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 60px rgba(0,0,0,0.2);
}
.contact-form-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.form-label {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245,158,11,0.3);
}
.form-input::placeholder { color: #64748b; }

.form-select-wrap { position: relative; }
.form-select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.form-select:hover { border-color: #475569; background: #1a2332; }
.form-select:focus { border-color: #f59e0b; box-shadow: 0 0 0 2px rgba(245,158,11,0.3); }
.form-select option { background: #1e293b; }
.form-select-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9ca3af;
}
.form-select-arrow svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s;
}

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

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    color: white;
    font-size: 0.875rem;
    outline: none;
    resize: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245,158,11,0.3);
}
.form-textarea::placeholder { color: #64748b; }

/* Country dropdown */
.country-input-wrap { position: relative; }
.country-input-chevron {
    position: absolute;
    inset: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.75rem;
    pointer-events: none;
    color: #6b7280;
}
.country-dropdown {
    position: absolute;
    z-index: 10;
    width: 100%;
    margin-top: 0.25rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-height: 15rem;
    overflow: auto;
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.2s ease-in-out;
}
.country-dropdown.open {
    display: block;
    opacity: 1;
    transform: scale(1);
}
.country-options { padding: 0.5rem 0; color: #111827; }

.form-submit {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 8px 25px rgba(245,158,11,0.3);
    transition: box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
    border: none;
}
.form-submit:hover { box-shadow: 0 12px 35px rgba(245,158,11,0.4); transform: scale(1.02); }
.form-submit:active { transform: scale(0.98); }
.form-submit i { margin-left: 0.5rem; }
.form-note {
    color: #6b7280;
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0.75rem;
}

/* --- Footer --- */
.site-footer {
    background: #111827;
    color: #9ca3af;
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
}
/* Wave divider */
.site-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-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.footer-brand img { height: 1.75rem; width: 1.75rem; }
.footer-brand span { font-family: 'Poppins', sans-serif; font-weight: 700; color: white; font-size: 1.125rem; }

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.footer-desc a { color: #fbbf24; transition: color 0.3s; }
.footer-desc a:hover { color: #fde68a; }

.footer-socials { display: flex; gap: 0.75rem; }
.footer-social {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s;
}
.footer-social i { font-size: 0.875rem; }
.footer-social:hover { color: white; }
.footer-social-fb:hover { background: #f59e0b; }
.footer-social-ig:hover { background: #ec4899; }
.footer-social-li:hover { background: #3b82f6; }
.footer-social-tw:hover { background: #0ea5e9; }

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: #9ca3af; transition: color 0.3s; }
.footer-links a:hover { color: #fbbf24; }

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}
.footer-bottom a { transition: color 0.3s; }
.footer-bottom a:hover { color: #fbbf24; }

/* --- Chat Widget --- */
@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
.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-toggle {
    position: relative;
    width: 4rem;
    height: 4rem;
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background: #111827;
    border: none;
    cursor: pointer;
}
.chatbot-toggle.ripple-active::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(245, 158, 11, 0.4);
    border-radius: 9999px;
    z-index: -1;
    animation: ripple 2s infinite;
}
.chatbot-toggle .icon-transition {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    font-size: 1.5rem;
}
.chatbot-toggle .icon-hidden {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}
.chatbot-toggle.chatbot-toggle-active { background: #111827; }

.chatbot-window {
    margin-bottom: 1.5rem;
    width: 24rem;
    max-width: 90vw;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    height: 600px;
    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;
}
.chatbot-window.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.chat-header {
    padding: 1.5rem;
    color: white;
    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: 4px;
    background: linear-gradient(to right, #fbbf24, #f97316);
}
.chat-header-info { display: flex; align-items: center; gap: 1rem; }
.chat-avatar-wrap { position: relative; }
.chat-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid rgba(245,158,11,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.chat-avatar-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.875rem;
    height: 0.875rem;
    background: #fbbf24;
    border: 2px solid #0f172a;
    border-radius: 50%;
}
.chat-header-name { font-weight: 700; font-size: 1.125rem; line-height: 1; }
.chat-header-status {
    font-size: 0.75rem;
    color: #fde68a;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.chat-close {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.chat-close:hover { background: rgba(255,255,255,0.1); }
.chat-close i { font-size: 1.125rem; }

.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 1.5rem;
    gap: 1rem;
    background: linear-gradient(to bottom, #f8fafc, white);
    scrollbar-width: none;
}
.chat-messages::-webkit-scrollbar { display: none; }
.chat-timestamp {
    text-align: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.chat-message {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    display: inline-block;
    word-break: break-word;
    padding: 1rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    max-width: 80%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.chat-message.show { transform: translateY(0); opacity: 1; }
.chat-message-user {
    background: #0f172a;
    color: white;
    border-bottom-right-radius: 0;
    align-self: flex-end;
}
.chat-message-bot {
    background: white;
    color: #111827;
    border-bottom-left-radius: 0;
    align-self: flex-start;
}

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

.chat-form-wrap {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #f8fafc;
    flex-shrink: 0;
}
.chat-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f1f5f9;
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    width: 100%;
}
.chat-input {
    background: transparent;
    border: none;
    outline: none;
    flex: 1;
    font-size: 0.875rem;
    color: #111827;
}
.chat-input::placeholder { color: #94a3b8; }
.chat-send {
    color: #f59e0b;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 1.125rem;
}
.chat-send:hover { transform: scale(1.1); }

/* --- Back to top (removed but keeping class) --- */
.back-to-top.show { opacity: 1; transform: translateY(0); }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
    body { opacity: 1; }
    .marquee-track { animation: none; }
}

/* --- @property for border rotation --- */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Hidden helper */
.hidden { display: none !important; }



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

/* Staggered transition delays for bento cards */
.bento-grid > .bento-card:nth-child(1) { transition-delay: 0.05s; }
.bento-grid > .bento-card:nth-child(2) { transition-delay: 0.15s; }
.bento-grid > .bento-card:nth-child(3) { transition-delay: 0.25s; }
.bento-grid > .bento-card:nth-child(4) { transition-delay: 0.35s; }
.bento-grid > .bento-connector { transition-delay: 0.4s; }
.bento-grid > .bento-card.bento-card-lg.bento-amber { flex-direction: row; align-items: center; gap: 2rem; }
.bento-grid > .bento-card.bento-card-lg.bento-red { justify-content: space-between; }

/* HIW step card delays — first/second/third steps */
.hiw-step-card.hiw-reveal-left { transition-delay: 0.1s; }
.hiw-step-card.hiw-reveal-right { transition-delay: 0.25s; }
.hiw-step:last-child .hiw-step-card.hiw-reveal-left { transition-delay: 0.4s; }

/* HIW step spacing */
.hiw-step { margin-bottom: 2.5rem; }
.hiw-step:last-of-type { margin-bottom: 0; }

/* Why Retain card delays */
.wr-card-dark { transition-delay: 0.1s; }
.wr-card-amber { transition-delay: 0.2s; }
.wr-card-dark .wr-list-item:nth-child(1) { transition-delay: 0.1s; }
.wr-card-dark .wr-list-item:nth-child(2) { transition-delay: 0.2s; }
.wr-card-dark .wr-list-item:nth-child(3) { transition-delay: 0.3s; }
.wr-card-dark .wr-list-item:nth-child(4) { transition-delay: 0.4s; }
.wr-card-amber .wr-list-item:nth-child(1) { transition-delay: 0.15s; }
.wr-card-amber .wr-list-item:nth-child(2) { transition-delay: 0.25s; }
.wr-card-amber .wr-list-item:nth-child(3) { transition-delay: 0.35s; }
.wr-card-amber .wr-list-item:nth-child(4) { transition-delay: 0.45s; }
.wr-card-amber .wr-card-header { position: relative; z-index: 10; }

/* Bento amber icon sizing */
.bento-card.bento-amber .bento-card-icon { flex-shrink: 0; width: 5rem; height: 5rem; }

/* Mobile menu button visibility & floating badges */
.mobile-menu-btn-wrap { display: none; }
@media (max-width: 767px) {
    .mobile-menu-btn-wrap { display: block !important; }
    .floating-badge { display: none !important; }
}
@media (min-width: 1024px) {
    .floating-badge { display: block !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .contact-left h2 { font-size: 2.25rem; }
}

/* Cursor glow default hidden */
.cursor-glow { display: none; }

/* Nav dropdown icon colors */
.nav-dropdown-item i { padding: 0.375rem; border-radius: 0.5rem; margin-right: 0.75rem; }
.nav-dropdown-icon-blue { color: #3b82f6; background: #eff6ff; }
.nav-dropdown-icon-amber { color: #f59e0b; background: #fffbeb; }
.nav-dropdown-icon-sky { color: #0ea5e9; background: #f0f9ff; }
.nav-dropdown-icon-rose { color: #f43f5e; background: #fff1f2; }
.nav-dropdown-icon-violet { color: #8b5cf6; background: #faf5ff; }
.nav-dropdown-icon-teal { color: #14b8a6; background: #f0fdfa; }

/* Tab label inactive color */
.tab-timeline-btn:not(.active) .tab-label { color: #6b7280; }
.tab-timeline-btn.active .tab-label { font-weight: 700; }

/* HIW timeline dot positions */
#hiwDot1 { top: 28px; }
#hiwDot2 { top: calc(33.3% + 28px); }
#hiwDot3 { top: calc(66.6% + 28px); }

/* Quote icon circles */
.quote-icon-circle-yellow { background: #fef3c7; }
.quote-icon-circle-yellow i { color: #f59e0b; }
.quote-icon-circle-orange { background: #ffedd5; }
.quote-icon-circle-orange i { color: #f97316; }
.quote-icon-circle-gold { background: #fef9c3; }
.quote-icon-circle-gold i { color: #eab308; }

/* === Inline style replacements === */

/* Hero orbs nth-child */
.hero .orb:nth-child(1) { width:400px; height:400px; background:radial-gradient(circle,#fbbf24,transparent); top:-100px; left:-100px; animation-delay:0s; }
.hero .orb:nth-child(2) { width:300px; height:300px; background:radial-gradient(circle,#ea580c,transparent); bottom:-50px; right:-80px; animation-delay:2s; }
.hero .orb:nth-child(3) { width:200px; height:200px; background:radial-gradient(circle,#f59e0b,transparent); top:40%; left:60%; animation-delay:4s; }

/* Floating badges positioning */
.hero .floating-badge:nth-of-type(4) { top:10rem; right:3rem; animation-delay:0s; }
.hero .floating-badge:nth-of-type(5) { top:14rem; right:7rem; animation-delay:1s; }
.hero .floating-badge:nth-of-type(6) { bottom:8rem; left:3rem; animation-delay:0.5s; }

/* Hero image */
.hero-img-full { width:100%; border-radius:1rem; }

/* Mobile menu indent */
.mobile-menu-indent { padding-left:0.75rem; }

/* Bento icon font sizes */
.bento-icon-red i.icon-pulse { font-size:1.5rem; }
.bento-card-lg.bento-red h3 { font-size:1.25rem; }
.bento-card-lg.bento-red p { font-size:1rem; }
.bento-stat-red { color:#f87171; }
.bento-icon-amber i.icon-bounce { font-size:1.75rem; animation-delay:0.5s; }
.bento-card-lg.bento-amber h3 { font-size:1.25rem; }
.bento-card-lg.bento-amber p { font-size:1rem; }
.bento-icon-yellow i.icon-pulse { animation-delay:1s; }

/* Bento connector arrows */
.bento-connector-arrows i:nth-child(1) { color:#fca5a5; }
.bento-connector-arrows i:nth-child(2) { color:#fdba74; }
.bento-connector-arrows i:nth-child(3) { color:#fbbf24; }

/* Deco dots positioning */
.deep-dive-section > .deco-dots:nth-of-type(1) { top:5rem; left:2.5rem; }
.deep-dive-section > .deco-dots:nth-of-type(2) { bottom:5rem; right:2.5rem; }

/* Tab content items - default hidden state */
.dd-tab-content-item { position:absolute; top:0; left:0; right:0; transform:translateY(100%); visibility:hidden; }
.dd-tab-content-item.active, .dd-tab-content-item-first { position:relative; transform:none; visibility:visible; }

/* Tab images - default hidden state */
.dd-tab-img-item { position:absolute; top:0; left:0; right:0; transform:translateY(70px); opacity:0; scale:0.97; visibility:hidden; }
.dd-tab-img-item.active, .dd-tab-img-item-first { position:relative; transform:none; opacity:1; scale:1; visibility:visible; }

/* Quote blobs positioning */
.quotes-blob:nth-child(1) { width:400px; height:400px; background:rgba(245,158,11,0.1); top:-100px; left:-100px; animation-delay:0s; }
.quotes-blob:nth-child(2) { width:350px; height:350px; background:rgba(249,115,22,0.1); bottom:-80px; right:-60px; animation-delay:-7s; }
.quotes-blob:nth-child(3) { width:250px; height:250px; background:rgba(253,224,71,0.12); top:40%; left:60%; animation-delay:-13s; }

/* Featured quote layout */
.glass-quote.featured { display:flex; flex-direction:column; align-items:center; }
.glass-quote.featured > div:first-child { display:flex; flex-direction:column; align-items:center; }

/* Quote icons */
.quote-icon-featured { font-size:1.125rem; }
.quote-icon-normal { font-size:1rem; display:block; margin-bottom:1rem; }

/* Quote author */
.quote-author-featured { margin-top:1.5rem; }
.quote-author-dot-sm { width:6px; height:6px; }

/* Contact left heading */
.contact-heading { font-family:'Poppins',sans-serif; font-size:1.875rem; font-weight:800; color:#111827; margin-bottom:1rem; line-height:1.2; }
.contact-subtext { color:#6b7280; font-size:1.125rem; margin-bottom:2rem; }

/* Country input padding */
.form-input-country { padding-right:2.5rem; }

/* Chat icon color */
.chatbot-toggle .icon-msg-color { color:#ffffff; }

/* Form validation */
.form-input-error { border-color: #ef4444; }
.form-error-text { color: #ef4444; font-size: 0.75rem; margin-top: 0.25rem; }

.country-name-text { margin-left: 0.5rem; }
.tab-label-active { color: inherit; font-weight: 700; }
.tab-label-inactive { color: #6b7280; font-weight: normal; }
