/* ==========================================================================
   Appocado Premium Landing Page Stylesheet
   ========================================================================== */

/* Color & Layout Tokens */
/* Color & Layout Tokens - Light Theme */
:root {
    --color-bg-dark: #f8fafc;
    --color-bg-panel: #ffffff;
    --color-emerald: #059669;
    --color-emerald-light: #10b981;
    --color-cyan: #0284c7;
    --color-purple: #7c3aed;
    --color-text-white: #0f172a;
    --color-text-gray: #475569;
    --color-text-muted: #64748b;
    --color-glass-border: rgba(15, 23, 42, 0.08);
    --color-glass-bg: rgba(255, 255, 255, 0.8);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at 50% 0%, #e0f2fe 0%, #f0fdf4 35%, #f8fafc 70%);
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

/* Claude-style Dot Grid Pattern for Hero Section */
.bg-particles {
    display: none;
}

/* Floating Capsule Navigation Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    padding: 10px 16px 10px 20px;
    background: rgba(6, 32, 36, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 229, 153, 0.25);
    border-radius: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(0, 229, 153, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.logo-mark {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 229, 153, 0.4));
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00e599;
    transition: width 0.25s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    transition: color 0.2s;
}

.btn-login:hover {
    color: #ffffff;
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-emerald), var(--color-cyan));
    padding: 8px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
}

.btn-cta:hover {
    background: #10b981;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 229, 153, 0.45);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.4);
}

/* Hero & Prompt Section */
.hero-section {
    padding: 140px 24px 80px;
    position: relative;
    z-index: 10;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: radial-gradient(rgba(15, 23, 42, 0.15) 1.2px, transparent 1.2px);
    background-size: 17px 17px;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent 15%, black 70%);
    mask-image: radial-gradient(circle at 50% 50%, transparent 15%, black 70%);
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-header {
    margin-bottom: 48px;
}

.badge-container {
    margin-bottom: 20px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background-color: #7c3aed;
    border-radius: 50%;
    box-shadow: 0 0 8px #7c3aed;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(124, 58, 237, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-text-white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-cyan) 50%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-text-gray);
    max-width: 720px;
    margin: 0 auto;
    font-weight: 500;
}

/* Prompt Box Panel Setup */
.prompt-box-wrapper {
    position: relative;
    max-width: 740px;
    margin: 0 auto 36px;
}

.prompt-glow-layer {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-purple), var(--color-cyan), var(--color-emerald));
    border-radius: 24px;
    z-index: 1;
    filter: blur(14px);
    opacity: 0.25;
    transition: opacity 0.3s;
}

.prompt-box-wrapper:focus-within .prompt-glow-layer {
    opacity: 0.5;
}

.prompt-box-panel {
    position: relative;
    background: #ffffff;
    backdrop-filter: blur(24px);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 16px;
    z-index: 2;
}

.category-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

.tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--color-text-gray);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--color-text-white);
    background: rgba(15, 23, 42, 0.04);
}

.tab-btn.active {
    background: rgba(5, 150, 105, 0.1);
    border-color: rgba(5, 150, 105, 0.25);
    color: var(--color-emerald);
}

.prompt-input-area {
    padding: 4px;
}

.prompt-textarea {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    resize: none;
    line-height: 1.6;
}

.prompt-textarea::placeholder {
    color: rgba(15, 23, 42, 0.35);
}

.prompt-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.prompt-utilities {
    display: flex;
    gap: 8px;
}

.util-btn {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--color-text-gray);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.util-btn:hover {
    color: var(--color-text-white);
    background: rgba(15, 23, 42, 0.08);
}

.btn-generate {
    background: linear-gradient(135deg, var(--color-emerald), var(--color-cyan));
    border: 0;
    padding: 10px 24px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
    transition: all 0.25s;
}

.btn-generate:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 10px 28px rgba(5, 150, 105, 0.4);
}

/* Examples list */
.examples-container {
    max-width: 740px;
    margin: 0 auto;
    text-align: left;
}

.examples-intro-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-gray);
    margin-bottom: 12px;
}

.examples-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.example-chip {
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.example-chip:hover {
    border-color: rgba(0, 229, 153, 0.35);
    background: rgba(0, 229, 153, 0.03);
    color: var(--color-emerald);
}

/* Built with Appocado Showcase Grid Section */
.showcase-section {
    padding: 80px 24px 100px;
    background: transparent;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.showcase-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.1);
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(5, 150, 105, 0.08);
    color: var(--color-emerald);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    width: fit-content;
}

.showcase-preview-frame {
    background: #0f172a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.preview-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.preview-dot.red { background: #ff5f56; }
.preview-dot.yellow { background: #ffbd2e; }
.preview-dot.green { background: #27c93f; }

.preview-url {
    font-size: 9px;
    font-family: monospace;
    color: #94a3b8;
    margin-left: 6px;
}

.preview-body {
    height: 120px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

/* Previews mock styles */
.site-preview .nav-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-preview .bar-brand { width: 40px; height: 6px; background: var(--color-emerald); border-radius: 4px; }
.site-preview .bar-btn { width: 24px; height: 6px; background: #38bdf8; border-radius: 4px; }
.site-preview .hero-mock { display: flex; flex-direction: column; gap: 6px; align-items: center; margin-top: 10px; }
.site-preview .line-lg { width: 80%; height: 8px; background: #ffffff; border-radius: 4px; }
.site-preview .line-sm { width: 50%; height: 6px; background: #64748b; border-radius: 4px; }
.site-preview .btn-mock { width: 36px; height: 12px; background: var(--color-emerald); border-radius: 10px; margin-top: 4px; }

.app-preview .stat-row { display: flex; gap: 8px; }
.app-preview .stat-box { flex: 1; height: 40px; background: rgba(255,255,255,0.06); border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); }
.app-preview .list-row { display: flex; flex-direction: column; gap: 6px; }
.app-preview .list-item { height: 16px; background: rgba(0,229,153,0.1); border-radius: 4px; }

.game-preview .score-bar { font-size: 9px; color: #f59e0b; font-weight: 800; text-align: center; }
.game-preview .game-board { height: 75px; background: #020617; border-radius: 8px; position: relative; overflow: hidden; border: 1px dashed rgba(255,255,255,0.15); }
.game-preview .player-avatar { width: 12px; height: 12px; background: #00e599; border-radius: 3px; position: absolute; bottom: 10px; left: 16px; box-shadow: 0 0 6px #00e599; }
.game-preview .obstacle-node { width: 10px; height: 14px; background: #ef4444; border-radius: 2px; position: absolute; bottom: 10px; right: 40px; }
.game-preview .obstacle-node.alt { right: 80px; height: 22px; background: #38bdf8; }

.blog-preview .article-card { background: rgba(255,255,255,0.04); border-radius: 6px; padding: 6px; display: flex; gap: 8px; align-items: center; }
.blog-preview .img-mock { width: 24px; height: 24px; background: #38bdf8; border-radius: 4px; }
.blog-preview .article-meta { flex: 1; height: 10px; background: rgba(255,255,255,0.2); border-radius: 4px; }

.showcase-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.showcase-card p {
    font-size: 13px;
    color: var(--color-text-gray);
    line-height: 1.5;
}

/* Platform Showcase Tour Section */
.tour-section {
    padding: 100px 24px;
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid var(--color-glass-border);
    border-bottom: 1px solid var(--color-glass-border);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--color-text-gray);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 500;
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }
}

.tour-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tour-tab-card {
    display: flex;
    gap: 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
}

.tour-tab-card:hover {
    background: #ffffff;
    border-color: rgba(5, 150, 105, 0.2);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.tour-tab-card.active {
    background: #ffffff;
    border-color: rgba(5, 150, 105, 0.4);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.12);
}

.tab-icon {
    font-size: 24px;
    background: linear-gradient(135deg, var(--color-emerald), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.tab-info h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #0f172a;
}

.tab-info p {
    font-size: 13px;
    color: var(--color-text-gray);
    line-height: 1.5;
}

/* Tour showcase Display sandbox frame */
.tour-showcase-panel {
    position: relative;
    min-height: 380px;
}

.showcase-glowing-back {
    position: absolute;
    inset: 20px;
    background: radial-gradient(circle, var(--color-cyan) 0%, transparent 60%);
    z-index: 1;
    filter: blur(40px);
    opacity: 0.2;
}

.showcase-frame {
    position: relative;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.showcase-header {
    background: rgba(0, 0, 0, 0.25);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.showcase-header .dot.red { background: #ff5f56; }
.showcase-header .dot.yellow { background: #ffbd2e; }
.showcase-header .dot.green { background: #27c93f; }

.window-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 10px;
    font-family: monospace;
}

.showcase-body {
    padding: 24px;
    flex-grow: 1;
}

.slide-content {
    display: none;
}

.slide-content.active {
    display: flex;
    flex-direction: column;
    animation: fadeSlide 0.4s ease-out;
}

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

.showcase-caption {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-caption .badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-right: 6px;
}

/* Core Capabilities features-section grid */
.features-section {
    padding: 100px 24px;
    background: radial-gradient(ellipse at 50% 50%, rgba(224, 242, 254, 0.5) 0%, rgba(240, 253, 244, 0.4) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-emerald), var(--color-cyan));
    opacity: 0.6;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(5, 150, 105, 0.35);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(5, 150, 105, 0.12), 0 0 20px rgba(2, 132, 199, 0.08);
}

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

.feat-icon-box {
    font-size: 30px;
    margin-bottom: 20px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.15), rgba(2, 132, 199, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
}

.feature-card p {
    color: var(--color-text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Pricing Section Toggle and Cards */
.pricing-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, rgba(236, 253, 245, 0.7) 0%, rgba(240, 249, 255, 0.6) 100%);
    border-top: 1px solid rgba(5, 150, 105, 0.15);
    border-bottom: 1px solid rgba(5, 150, 105, 0.15);
}

.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.toggle-btn {
    width: 50px;
    height: 28px;
    background: #cbd5e1;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-btn.active {
    background: rgba(5, 150, 105, 0.2);
    border-color: rgba(5, 150, 105, 0.4);
}

.toggle-indicator {
    width: 20px;
    height: 20px;
    background: #0f172a;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toggle-btn.active .toggle-indicator {
    left: 24px;
    background: var(--color-emerald);
}

.discount-badge {
    background: rgba(5, 150, 105, 0.15);
    color: var(--color-emerald);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 4px;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
    align-items: stretch;
}

.price-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 16px 40px rgba(5, 150, 105, 0.12);
}

.price-card.popular {
    background: #ffffff;
    border: 2px solid var(--color-emerald);
    box-shadow: 0 20px 50px rgba(5, 150, 105, 0.2), 0 0 20px rgba(2, 132, 199, 0.1);
    position: relative;
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-emerald), var(--color-cyan));
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-header-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
}

.card-header-info p {
    font-size: 13px;
    color: var(--color-text-gray);
    margin-bottom: 24px;
}

.price-val {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    color: #0f172a;
}

.price-val .symbol {
    font-size: 20px;
    font-weight: 800;
}

.price-val .value {
    font-size: 40px;
    font-weight: 900;
    font-family: var(--font-heading);
}

.price-val .period {
    color: var(--color-text-gray);
    font-size: 14px;
    margin-left: 4px;
}

.card-features {
    flex-grow: 1;
    margin-bottom: 32px;
}

.card-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-features li {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

.card-features li i.bi-check-circle-fill {
    color: #059669;
}

.card-features li i.text-emerald {
    color: var(--color-emerald) !important;
}

.card-features li i.text-muted {
    color: #cbd5e1 !important;
}

.btn-price-action {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    transition: all 0.25s;
}

.btn-price-action:hover {
    background: #e2e8f0;
}

.btn-price-action.premium {
    background: linear-gradient(135deg, var(--color-emerald), var(--color-cyan));
    border: 0;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25);
}

.btn-price-action.premium:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 10px 28px rgba(5, 150, 105, 0.4);
}

/* Testimonials section with infinite scrolling marquee tracks */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(240, 253, 244, 0.6) 0%, transparent 80%);
}

.feedback-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.track-left {
    animation: scrollLeft 35s linear infinite;
}

.track-right {
    animation: scrollRight 35s linear infinite;
}

.feedback-marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.feedback-card {
    width: 380px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-3px);
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.12);
}

.feedback-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #334155;
    font-weight: 500;
}

.feedback-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(2, 132, 199, 0.1));
    border: 1px solid rgba(5, 150, 105, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: var(--color-emerald);
}

.feedback-author h4 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.feedback-author span {
    font-size: 12px;
    color: var(--color-text-gray);
}

/* Footer Section */
.footer {
    padding: 80px 24px 40px;
    background: #ffffff;
    border-top: 1px solid var(--color-glass-border);
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #0f172a;
}

.footer-brand p {
    color: var(--color-text-gray);
    font-size: 13px;
    max-width: 280px;
    margin-bottom: 20px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--color-text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.socials a:hover {
    color: #0f172a;
    background: rgba(15, 23, 42, 0.08);
}

.footer-links-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #0f172a;
}

.footer-links-col a {
    display: block;
    color: var(--color-text-gray);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-links-col a:hover {
    color: var(--color-emerald);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-text-muted);
}