@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
    --bg-main: #ffffff;
    --bg-alt: #f8f9fc;
    --bg-card: #ffffff;
    --primary: #4F46E5;
    --primary-light: #818CF8;
    --primary-glow: rgba(79, 70, 229, 0.10);
    --primary-dark: #3730A3;
    
    /* New Thematic Gradients */
    --gradient-violet: rgba(139, 92, 246, 0.15);
    --gradient-coral: rgba(2fb, 113, 133, 0.15);
    --gradient-sky: rgba(14, 165, 233, 0.15);
    
    --text-main: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.15);
    --glass: rgba(255, 255, 255, 0.75);
    --glass-dark: rgba(15, 23, 42, 0.85);
    
    /* Neo-Editorial Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Upgraded Soft Layers */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 30px rgba(79, 70, 229, 0.05), 0 4px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 40px rgba(79, 70, 229, 0.08), 0 10px 15px rgba(0,0,0,0.03);
    --shadow-xl: 0 25px 50px rgba(79, 70, 229, 0.12), 0 15px 30px rgba(0,0,0,0.04);
    --glow-primary: 0 0 30px rgba(79, 70, 229, 0.3);
    
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --container-max: 1280px;
    --section-padding: 80px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

h4, h5, h6 {
    font-family: var(--font-sans); /* Keep smaller headers clean */
}

/* --- UTILITIES --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 3rem;
}

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

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.3);
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-main);
    color: var(--text-main);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    border: 1.5px solid var(--border-strong);
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-spacing {
    padding: var(--section-padding) 0;
    position: relative;
}

/* --- THE 2026 THEME PRIMITIVES --- */

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

.glass-panel-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-xl);
    color: white;
}

/* Atmospheric Glows & Blobs */
.mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: drift 20s ease-in-out infinite alternate;
}

.blob-violet { background: var(--gradient-violet); width: 600px; height: 600px; top: -10%; right: -5%; }
.blob-coral { background: var(--gradient-coral); width: 500px; height: 500px; bottom: 10%; left: -10%; animation-delay: -5s; }
.blob-sky { background: var(--gradient-sky); width: 400px; height: 400px; top: 40%; left: 30%; animation-delay: -10s; }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Upgraded Chrome Frame for Dashboard Images */
.browser-chrome {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}
.browser-chrome::before {
    content: '';
    display: block;
    height: 38px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.browser-chrome::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FF5F56;
    box-shadow: 18px 0 0 0 #FFBD2E, 36px 0 0 0 #27C93F;
}

/* Icon Wrappers (Replaces naked FontAwesome) */
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    position: relative;
    border: 1px solid var(--border);
}
.icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}
.icon-wrapper:hover::after { opacity: 1; filter: blur(10px); }
.icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.6rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links > li > a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links > li > a:hover {
    color: var(--text-main);
}

.nav-item {
    position: relative;
    padding: 0.5rem 0;
}

.nav-item > a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item:hover > a {
    color: var(--text-main);
}

/* --- DROPDOWNS (Multi-Column) --- */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    min-width: 560px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 2rem;
    z-index: 2100;
    pointer-events: auto;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-col {
    flex: 1;
}

.dropdown-col h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
    font-weight: 700;
}

.dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 0.25rem;
}

.dropdown-link:hover {
    background: var(--bg-alt);
}

.dropdown-link i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.dropdown-link div span {
    display: block;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
}

.dropdown-link div p {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 0.15rem;
    line-height: 1.3;
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-alt);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

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

.footer-col h4 {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

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

/* --- HERO --- */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

/* Glow Effect (subtle for light theme) */
.bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* --- LOGO CLOUD --- */
.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    opacity: 0.6;
    margin-top: 3rem;
}
.logo-cloud i { font-size: 2.5rem; transition: var(--transition); }
.logo-cloud i:hover { opacity: 1; color: var(--primary); transform: scale(1.1); }

/* --- COMPARISON CARDS (PREMIUM REDESIGN) --- */
.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

.comp-card {
    background: var(--glass);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.comp-old {
    background: rgba(248, 249, 250, 0.4);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    filter: grayscale(0.1);
}

.comp-new {
    background: var(--glass);
    border: 1px solid rgba(79, 70, 229, 0.3);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(79, 70, 229, 0.08);
    transform: translateY(-5px);
}

.comp-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #8B5CF6);
}

.comp-list { list-style: none; margin-top: 2.5rem; }
.comp-list li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.comp-list i { margin-top: 0.25rem; font-size: 1.2rem; color: var(--primary); }
.comp-old i { color: #94A3B8; }

/* --- THE PROCESS FUNNEL --- */
.funnel-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    position: relative;
}

.funnel-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.funnel-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #8B5CF6);
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    margin: 0 auto 2.5rem;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    position: relative;
    z-index: 2;
}

.funnel-step:nth-child(even) { margin-top: 2rem; }

.funnel-step:nth-child(1) .step-number { background: linear-gradient(135deg, #6366f1, #a855f7); }
.funnel-step:nth-child(2) .step-number { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }
.funnel-step:nth-child(3) .step-number { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2); }
.funnel-step:nth-child(4) .step-number { background: linear-gradient(135deg, #ec4899, #d946ef); box-shadow: 0 10px 20px rgba(236, 72, 153, 0.2); }

@media(max-width: 991px) {
    .funnel-container { grid-template-columns: 1fr 1fr; }
    .funnel-step:nth-child(even) { margin-top: 0; }
}
@media(max-width: 576px) {
    .funnel-container { grid-template-columns: 1fr; }
}

/* --- BENTO GRID / FEATURES --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-large {
    grid-column: span 2;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- COMPARISON TABLE --- */
.compare-container {
    max-width: 900px;
    margin: 3rem auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.25rem 2.5rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.compare-header {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    background: var(--bg-alt);
}

.compare-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    border-top: 1px solid var(--border);
}

.compare-cell {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.compare-cell:last-child { border-right: none; }

.compare-cell.header {
    background: var(--bg-alt);
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.compare-cell i.fa-check { color: var(--primary); }
.compare-cell i.fa-times { color: rgba(0,0,0,0.15); }

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- ACCORDIONS --- */
.accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--bg-card);
}

.accordion-header {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.accordion-header:hover { background: var(--bg-alt); }

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    color: var(--text-muted);
}

.accordion.active .accordion-content {
    padding: 0 1.5rem 1.25rem;
    max-height: 1000px;
}

.accordion.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* --- PROCESS FUNNEL (REDESIGN) --- */
.funnel-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-top: 3rem;
}

@media(max-width: 900px) {
    .funnel-container { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media(max-width: 600px) {
    .funnel-container { grid-template-columns: 1fr; }
}

.funnel-step {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    text-align: left;
    transition: var(--transition);
}

.funnel-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.funnel-container .funnel-step:nth-child(2) { margin-top: 2rem; }
.funnel-container .funnel-step:nth-child(3) { margin-top: 4rem; }
.funnel-container .funnel-step:nth-child(4) { margin-top: 6rem; }

@media(max-width: 900px) {
    .funnel-container .funnel-step:nth-child(n) { margin-top: 0; }
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    box-shadow: 0 10px 20px var(--primary-glow);
    border: none;
}

/* --- MOCKUP WINDOW (Light Version) --- */
.mockup-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    background: var(--bg-alt);
    padding: 10px 16px;
    display: flex;
    gap: 6px;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
}

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

/* --- SPLIT LAYOUT UTILITIES --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    grid-template-columns: 1fr 1fr;
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.split-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.split-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* --- SHOPIFY PRICING STYLES --- */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.toggle-wrapper {
    display: inline-flex;
    background: #fff;
    border: 2px solid #000;
    border-radius: 40px;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    user-select: none;
    margin: 0 auto 3rem;
}

.toggle-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #000;
    cursor: pointer;
    width: 220px;
    text-align: center;
    transition: color 0.15s ease-in-out;
}

.toggle-btn.active { color: #fff; }

.toggle-btn .save-badge {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-left: 2px;
    font-weight: 400;
}

.toggle-slider {
    position: absolute;
    top: 0; left: 0; width: 50%; height: 100%;
    background-color: #000; border-radius: 40px;
    transition: transform 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 1; pointer-events: none;
}

.is-annual .toggle-slider { transform: translateX(100%); }

.pricing-card-sh {
    border: 1px solid #e1e3e5;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
}

.card-top-stripe {
    padding: 12px; text-align: center;
    font-weight: 600; font-size: 0.85rem;
}

.stripe-green { background-color: #54f09d; color: #000; }
.stripe-blue { background-color: #2765ea; color: #fff; }

.card-content {
    padding: 32px 24px; display: flex;
    flex-direction: column; flex-grow: 1;
}

.tier-title-row {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 4px;
}

.tier-title {
    font-size: 1.5rem; font-weight: 600;
    margin: 0; color: var(--text-main);
}

.most-popular-badge {
    background-color: #54f09d; color: #000;
    font-size: 0.7rem; padding: 4px 10px;
    border-radius: 12px; font-weight: 700; text-transform: uppercase;
}

.tier-subtitle {
    font-size: 0.95rem; color: var(--text-secondary);
    margin-bottom: 24px;
}

.price-label { font-size: 0.9rem; color: var(--text-secondary); display: block; margin-bottom: 2px; }

.price-section { display: flex; align-items: flex-start; margin-bottom: 24px; }
.price-currency-symbol { font-size: 1.8rem; font-weight: 500; margin-top: 6px; margin-right: 2px; }
.price-amount { font-size: 4.5rem; font-weight: 300; line-height: 1; letter-spacing: -2px; margin: 0; }
.price-cad-month { display: flex; flex-direction: column; justify-content: center; margin-left: 8px; margin-top: 10px; }
.cad-label { font-size: 0.9rem; font-weight: 600; line-height: 1.2; }
.billed-txt { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.2; margin-top: 2px; min-height: 1rem; }

.features-header { font-size: 0.95rem; font-weight: 600; margin-bottom: 16px; }
.features-list { list-style: none; padding: 0; margin: 0 0 32px 0; }
.features-list li { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 12px; display: flex; align-items: flex-start; line-height: 1.4; }
.features-list i { color: #8c9196; font-size: 0.8rem; margin-top: 4px; margin-right: 12px; flex-shrink: 0; }
.features-list b { color: var(--text-main); font-weight: 600; }

.btn-shopify {
    background-color: #000; color: #fff;
    border-radius: 40px; padding: 16px 24px;
    text-align: center; font-weight: 600;
    font-size: 1.05rem; text-decoration: none;
    transition: all 0.2s; margin-top: auto;
    width: 100%; border: 1px solid #000; display: block;
}
.btn-shopify:hover { background-color: #333; color: #fff; box-shadow: none; transform: translateY(0); }

/* --- HOMEPAGE SPECIFIC COMPONENTS --- */
.badge-pill {
    background: var(--primary-glow);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(79, 70, 229, 0.15);
    letter-spacing: 0.5px;
}

.badge-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.floating-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.persona-card {
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
}

.persona-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0.85;
    transition: all 0.4s;
}

.persona-card:hover img { opacity: 1; transform: scale(1.03); }
.persona-card .persona-info { padding: 2rem; }

.cta-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 6rem 3rem;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* --- BEAUTY SECTIONS --- */
.beauty-section {
    position: relative;
    width: 100%;
    padding: 12rem 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.beauty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.5) 100%);
    z-index: 1;
}

.beauty-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.beauty-section h2 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.beauty-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* --- COLORED BREAKS --- */
.break-section {
    width: 100%;
    padding: 5rem 2rem;
    background: var(--primary);
    color: white;
    text-align: center;
    overflow: hidden;
}

.break-section-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.break-section h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0;
    color: white;
    letter-spacing: -1px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1200px) {
    .container { padding: 0 2rem; }
    .hero h1 { font-size: 56px; }
    .hero-grid { gap: 3rem; }
}

@media (max-width: 1024px) {
    .hero-grid, .split-layout { grid-template-columns: 1fr; text-align: center; }
    .split-layout.reverse { grid-template-columns: 1fr; }
    .split-layout.reverse .split-text { order: 2; }
    .split-layout.reverse .split-image { order: 1; }
    .hero h1 { font-size: 44px; margin: 0 auto 1.5rem; }
    .hero p { margin: 0 auto 2rem; }
    .bento-grid, .pricing-grid-3 { grid-template-columns: 1fr; }
    .card-large { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    .container { padding: 0 1.25rem; }
    :root { --section-padding: 60px; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .toggle-wrapper { flex-direction: column; width: 100%; border-radius: 12px; }
    .toggle-btn { width: 100%; }
    .toggle-slider { display: none; }
    .toggle-btn.active { background: #000; color: #fff; border-radius: 10px; }
}

/* --- DEFINITIVE CONTRAST & SPACING OVERRIDES --- 
:root { --section-padding: 70px !important; }
.glass-panel-dark { background: #0f172a !important; background: rgba(15, 23, 42, 0.98) !important; color: #ffffff !important; }
.glass-panel-dark * { color: #ffffff !important; }
.beauty-section::before { background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%) !important; }

