/* WishWash Premium Light & Blue Landing Page Stylesheet */

/* --- Fonts & Base Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Design Tokens - Light Theme with Blue Accents */
    --bg-main: #f8fafc;        /* Slate 50 */
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;  /* Slate 100 */
    --border-color: rgba(37, 99, 235, 0.08);
    --border-hover: rgba(37, 99, 235, 0.35);
    
    --primary: #2563eb;       /* Royal Blue */
    --primary-glow: rgba(37, 99, 235, 0.08);
    --secondary: #0ea5e9;     /* Sky Blue */
    --secondary-glow: rgba(14, 165, 233, 0.08);
    --accent: #4f46e5;        /* Indigo */
    
    --text-primary: #0f172a;  /* Slate 900 */
    --text-secondary: #475569;/* Slate 600 */
    --text-muted: #64748b;    /* Slate 500 */
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Background Glow Orbs (Light Mode Blue/Cyan) --- */
.bg-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.45;
}

.orb-1 {
    top: -10%;
    left: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    animation: float-orb 20s infinite alternate;
}

.orb-2 {
    top: 40%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    animation: float-orb-reverse 25s infinite alternate;
}

.orb-3 {
    top: 80%;
    left: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    animation: float-orb 22s infinite alternate;
}

@keyframes float-orb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(4%, 5%) scale(1.1); }
}

@keyframes float-orb-reverse {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-5%, -4%) scale(0.9); }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
    border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* --- Container & Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue-indigo {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #4338ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    gap: 8px;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.12);
    margin-bottom: 20px;
    gap: 6px;
}

/* --- Custom Cursor Spotlight (Soft Blue) --- */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* --- Header Section --- */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.8); /* Match bg-main with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}

.logo img {
    height: 34px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
}

/* --- Hero Section (Asymmetric Modern Layout) --- */
.hero-section {
    padding-top: 120px;
    padding-bottom: 140px;
    position: relative;
    overflow: hidden;
}

/* Grid Backdrop Pattern */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* Vector Line Backdrop Wrapper */
.hero-bg-svg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.6;
}

.hero-bg-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.hero-text-side {
    text-align: left;
}

.hero-text-side h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

@media (min-width: 992px) {
    .hero-text-side h1 {
        font-size: 3.8rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.65;
    max-width: 580px;
}

/* Value checklist */
.hero-checklist {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-checklist li svg {
    color: var(--primary);
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.08);
    padding: 3px;
    border-radius: 6px;
    width: 22px;
    height: 22px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-rating .stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
}

/* --- Hero Right Side Showcase --- */
.hero-visual-side {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-showcase-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
}

.hero-main-mockup {
    position: relative;
    width: 90%;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06), 
                0 0 40px rgba(37, 99, 235, 0.03);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.hero-main-mockup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 50%, var(--secondary) 100%);
    z-index: -1;
    border-radius: 22px;
    opacity: 0.12;
}

.mockup-inner {
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    aspect-ratio: 16/10;
}

.mockup-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Layered Glassmorphic Float Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 10;
    transition: transform 0.3s ease;
}

.float-card h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.float-card p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Specific Card Layouts & Floating Speeds */
.omset-card {
    top: 5%;
    left: -5%;
    width: 170px;
    padding: 14px;
    animation: float-element-1 5s ease-in-out infinite alternate;
}

.omset-card .float-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.omset-card .card-tag {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

.omset-card .card-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.omset-card .card-change {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
}

.font-green {
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
}

.omset-card .sparkline {
    margin-top: 5px;
}

.queue-card {
    bottom: 5%;
    right: -5%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    width: 200px;
    animation: float-element-2 6s ease-in-out infinite alternate;
}

.float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-sky {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
}

.font-blue {
    color: var(--primary);
}

.font-bold {
    font-weight: 700;
}


.toast-bubble {
    bottom: 12%;
    left: -8%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 30px;
    animation: float-element-4 5.5s ease-in-out infinite alternate;
}

.toast-bubble span {
    color: var(--text-primary);
}

.avatar-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Animation Keyframes with 3D Depth */
@keyframes float-element-1 {
    0% { transform: translateZ(40px) translateY(0) rotate(-1deg); }
    100% { transform: translateZ(40px) translateY(-12px) rotate(1deg); }
}

@keyframes float-element-2 {
    0% { transform: translateZ(60px) translateY(0) rotate(1deg); }
    100% { transform: translateZ(60px) translateY(-16px) rotate(-1deg); }
}


@keyframes float-element-4 {
    0% { transform: translateZ(70px) translateY(0) rotate(-0.5deg); }
    100% { transform: translateZ(70px) translateY(-14px) rotate(0.5deg); }
}

/* --- Social Proof Logos --- */
.logos-section {
    padding: 50px 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12) 50%, transparent) 1;
    background: #f1f5f9;
}

.logos-section p {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 600;
}

.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: var(--transition-smooth);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.logo-item svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.logo-item:hover {
    opacity: 0.9;
    color: var(--primary);
}

/* --- Bento Grid Features --- */
.features-section {
    padding: 100px 0;
    position: relative;
    background: #eff6ff;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12) 50%, transparent) 1;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 24px;
}

/* Bento Card Style (Light Glassmorphism) */
.bento-card {
    position: relative;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Card Mouse Radial Highlight (Soft Blue Glow) */
.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 200px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(37, 99, 235, 0.04), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

/* Technical blueprint corner plus accent */
.bento-card::after, .pricing-card::after {
    content: '+';
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(37, 99, 235, 0.25);
    pointer-events: none;
    z-index: 3;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
    transform: translateY(-4px);
}

/* Bento Layout Span */
.bento-span-2-w {
    grid-column: span 2;
}

.bento-span-2-h {
    grid-row: span 2;
}

.bento-card.bento-horizontal {
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.bento-card.bento-horizontal .bento-card-content {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card.bento-horizontal .card-visual {
    flex: 0.9;
    margin-top: 0;
    width: 100%;
    height: 100%;
    min-height: 180px;
}

.bento-card-content {
    z-index: 2;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.bento-card:hover .feature-icon-wrapper {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.bento-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    color: var(--text-primary);
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Interactive card visualizations */
.card-visual {
    margin-top: 30px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Multi-Tenant Node Visual */
.tenant-nodes {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 80%;
    position: relative;
}

.tenant-nodes::before {
    content: '';
    position: absolute;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 0;
}

.node {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.node-center {
    width: 60px;
    height: 60px;
    background: var(--primary-glow);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
    color: var(--primary);
}

.node:not(.node-center):hover {
    border-color: var(--secondary);
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.2);
    transform: scale(1.1);
}

/* Real-Time Chart Visual */
.mini-chart {
    width: 90%;
    height: 80%;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.2), var(--primary));
    border-radius: 6px 6px 0 0;
    height: 30%;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--text-primary);
}

.chart-bar:hover {
    background: linear-gradient(to top, rgba(14, 165, 233, 0.2), var(--secondary));
}

.chart-bar:hover::after {
    opacity: 1;
}

/* WhatsApp Order Check Visual */
.wa-message-box {
    width: 85%;
    background: #e7f7e9;
    border-radius: 12px;
    border-left: 4px solid #25d366;
    padding: 14px;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transform: translateY(10px);
    animation: bounce-wa 3s infinite alternate;
}

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

.wa-header {
    color: #128c7e;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-text {
    color: #334155;
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12) 50%, transparent) 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feat-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.about-feat-item:hover {
    background: #f8fafc;
    border-color: rgba(37, 99, 235, 0.15);
}

.about-feat-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.about-feat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-visual-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    background: #ffffff;
}

.about-visual-container img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

.about-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    z-index: -1;
    filter: blur(50px);
}

/* --- Pricing Section --- */
.pricing-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12) 50%, transparent) 1;
}

.pricing-bg-svg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.45;
}

.pricing-bg-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pricing-section .section-header, .pricing-grid {
    position: relative;
    z-index: 1;
}

/* Gradient Section Dividers */
.section-divider-gradient {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12) 50%, transparent);
    border: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.08);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 50px;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary);
}

.price-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pricing-features li svg {
    color: #10b981; /* Green */
    flex-shrink: 0;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.05);
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
}

/* --- Interactive Testimonial Section --- */
.testimonials-section {
    padding: 100px 0;
    background: #eff6ff;
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12) 50%, transparent) 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.testimonial-card:hover {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.stars {
    color: #f59e0b; /* Amber star */
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.user-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.user-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    font-style: normal;
}

/* --- CTA Banner (Light Blue Gradient) --- */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 32px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.22);
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    z-index: 0;
}

.cta-box-content {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .btn-primary {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cta-box .btn-primary:hover {
    background: #f1f5f9;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

/* --- Footer --- */
footer {
    padding: 80px 0 40px 0;
    background: #f8fafc;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12) 50%, transparent) 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 16px;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-span-2-w {
        grid-column: span 2;
    }
    .pricing-grid, .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pricing-card.popular {
        grid-column: span 2;
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: -24px;
        right: -24px;
        flex-direction: column;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        padding: 30px 24px;
        gap: 20px;
        z-index: 99;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-section {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-text-side {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-checklist {
        align-items: flex-start;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-visual-side {
        justify-content: center;
    }
    .float-card {
        display: none !important;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-span-2-w {
        grid-column: span 1;
    }
    .bento-card.bento-horizontal {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    .bento-card.bento-horizontal .card-visual {
        margin-top: 24px;
    }
    .pricing-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
