/*
Theme Name: Prime Marketing Theme
Theme URI: https://primemarketingads.com/
Author: Prime Marketing Agency
Description: Giao diện tối ưu hóa chuyển đổi cao cấp dành riêng cho PMU Studio tại Mỹ.
Version: 2.5.6
License: GNU General Public License v2 or later
Text Domain: prime-marketing-theme
*/

/* ==========================================================================
   PRIME MARKETING - PREMIUM STYLESHEET
   Niche: PMU (Permanent Makeup) Marketing Agency
   Aesthetics: Luxury, Glassmorphism, Purple-Blue Gradients, Gold Accents
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
    /* Colors */
    --color-bg-dark: #07080d;
    --color-bg-deep: #0e111a;
    --color-bg-card: rgba(18, 22, 35, 0.6);
    --color-text-white: #f5f6f9;
    --color-text-muted: #9fa6b2;
    
    /* Brand Gradients (Purple to Blue from Logo) */
    --grad-primary: linear-gradient(135deg, #7c4dff 0%, #3f51b5 50%, #2196f3 100%);
    --grad-purple-blue: linear-gradient(135deg, #6F42C1 0%, #3550A1 100%);
    --color-purple: #6F42C1;
    --color-blue: #3550A1;
    
    /* Accents */
    --color-gold: #e2c074;
    --color-gold-hover: #f1d798;
    --grad-gold: linear-gradient(135deg, #f3d082 0%, #c49d4f 100%);
    
    --color-success: #2ecc71;
    --color-error: #e74c3c;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Be Vietnam Pro', 'Inter', sans-serif;
    
    /* Spacings */
    --container-max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadow & Glows */
    --glow-primary: 0 0 30px rgba(111, 66, 193, 0.45);
    --glow-gold: 0 0 25px rgba(226, 192, 116, 0.35);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text-white);
}

p {
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* --- Global Layout Utilities --- */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

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

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

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

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

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: rgba(111, 66, 193, 0.2);
    border: 1px solid rgba(111, 66, 193, 0.4);
    color: #c5b3e6;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(111, 66, 193, 0.15);
}

.subtitle {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-text {
    color: var(--color-gold);
    font-weight: 600;
}

.section-header {
    margin-bottom: 4.5rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 7rem 0;
    position: relative;
}

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--grad-purple-blue);
    color: var(--color-text-white);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-white);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-glow:hover {
    box-shadow: var(--glow-primary);
}

.btn-full-width {
    width: 100%;
}

/* --- Glassmorphism Card Style --- */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

/* --- Header / Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 8, 13, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.6rem 0;
    background: rgba(7, 8, 13, 0.95);
    border-bottom: 1px solid rgba(111, 66, 193, 0.25);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
    height: 70px;
}

/* High Contrast Glowing Logo area */
.logo-glow-wrapper {
    background: rgba(111, 66, 193, 0.08);
    border: 1px solid rgba(111, 66, 193, 0.25);
    padding: 0.4rem 1.2rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 15px rgba(111, 66, 193, 0.2);
    transition: var(--transition-smooth);
}

.logo-glow-wrapper:hover {
    border-color: rgba(111, 66, 193, 0.6);
    background: rgba(111, 66, 193, 0.15);
    box-shadow: 0 0 20px rgba(111, 66, 193, 0.4);
}

.brand-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.site-header.scrolled .brand-logo {
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-text-white); /* Increased contrast */
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.5rem 0;
}

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

.main-nav a:hover {
    color: var(--color-gold);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Toggle menu button */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Active Mobile menu overlay */
/* Active Mobile menu overlay (Divi-style Dropdown) */
.mobile-menu-overlay {
    position: fixed;
    top: 90px; /* matches header container height */
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 90px);
    background-color: rgba(18, 22, 35, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(111, 66, 193, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: block; /* block element for normal vertical flow */
    overflow-y: auto;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none; /* disable clicks when hidden */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Sibling selector when header is scrolled */
.site-header.scrolled + .mobile-menu-overlay {
    top: 70px;
    max-height: calc(100vh - 70px);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto; /* enable clicks when active */
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem 2.5rem;
}

.mobile-nav-links .mobile-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
    padding: 1.1rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-links .mobile-link:hover,
.mobile-nav-links .mobile-link.active {
    color: var(--color-gold);
    padding-left: 0.5rem;
}

.mobile-nav-links .mobile-link::after {
    content: '→';
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--color-gold);
}

.mobile-nav-links .mobile-link:hover::after,
.mobile-nav-links .mobile-link.active::after {
    opacity: 1;
    transform: translateX(0);
}

/* Adjust button inside mobile menu overlay */
.mobile-nav-links .btn.mobile-link {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    justify-content: center;
    border: none;
    background: var(--grad-purple-blue);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.mobile-nav-links .btn.mobile-link::after {
    display: none;
}

.mobile-nav-links .btn.mobile-link:hover {
    background: var(--grad-purple-blue-hover);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.5);
    padding-left: 0;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-falling-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.g-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.35;
}

.g-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--color-purple);
    top: -100px;
    right: -100px;
}

.g-circle-2 {
    width: 450px;
    height: 450px;
    background: var(--color-blue);
    bottom: -150px;
    left: -100px;
}

.hero-text-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
    color: #e2e4e9;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4rem;
}

/* Hero Stats */
.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
    color: var(--color-text-muted);
}

/* Hero Image Area */
.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.luxury-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-main {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* Floating Glass Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    width: 250px;
    z-index: 2;
}

.card-top-right {
    top: 12%;
    right: -15%;
    animation: float-1 6s ease-in-out infinite;
}

/* iOS style notification transitions for card-top-right */
.card-top-right > * {
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-top-right.transition-out > * {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
.card-top-right.transition-in > * {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: none !important;
}

.card-bottom-left {
    bottom: 8%;
    left: -15%;
    animation: float-2 7s ease-in-out infinite;
}

.card-icon-pulse {
    width: 10px;
    height: 10px;
    background-color: var(--color-success);
    border-radius: 50%;
    position: relative;
}

.card-icon-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-success);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

.floating-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.card-stat-trend {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(46, 204, 113, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0.8rem;
    color: var(--color-success);
}

.trend-num {
    font-weight: 700;
    font-size: 0.9rem;
}

.trend-icon {
    font-size: 0.75rem;
}

/* Animations */
@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(14px) rotate(1deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

/* --- Facebook Ad Phone Mockup Feed (Hero Ads Focus) --- */
.fb-ad-feed-mockup {
    width: 100%;
    max-width: 440px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #18191a; /* Facebook dark mode base */
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, sans-serif;
    color: #e4e6eb;
}

.ad-mock-header {
    display: flex;
    align-items: center;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #2f3031;
}

.ad-mock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-purple-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.95rem;
    margin-right: 0.8rem;
}

.ad-mock-author-meta h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e4e6eb;
    font-family: system-ui, -apple-system, sans-serif;
}

.ad-mock-author-meta .sponsored-tag {
    color: #385898;
    font-weight: 500;
    font-size: 0.8rem;
}

.ad-mock-author-meta .time {
    font-size: 0.75rem;
    color: #b0b3b8;
}

.ad-mock-options {
    margin-left: auto;
    color: #b0b3b8;
    cursor: pointer;
    font-size: 0.9rem;
}

.ad-mock-content {
    padding: 0.8rem 1rem;
}

.ad-text {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #e4e6eb;
}

.ad-mock-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-top: 1px solid #2f3031;
    border-bottom: 1px solid #2f3031;
}

.ad-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-mock-footer-bar {
    background: #242526;
    padding: 0.9rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.ad-footer-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ad-domain {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #b0b3b8;
    letter-spacing: 0.03em;
}

.ad-headline {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e4e6eb;
    margin-top: 0.15rem;
    line-height: 1.25;
}

.ad-subtext {
    font-size: 0.78rem;
    color: #b0b3b8;
    margin-top: 0.1rem;
}

.ad-cta-btn {
    background: #3a3b3c;
    border: none;
    outline: none;
    color: #e4e6eb;
    font-weight: 600;
    padding: 0.55rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.ad-cta-btn:hover {
    background: #4e4f50;
}

.ad-mock-likes-comments {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    border-top: 1px solid #2f3031;
    font-size: 0.8rem;
    color: #b0b3b8;
}

/* --- Facebook Ad Feed Carousel --- */
.ad-mockup-carousel-wrapper {
    position: relative;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    min-width: 0;
    overflow: hidden;
}

.ad-mockup-carousel-clip {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: #18191a;
}

.ad-mockup-carousel-track {
    display: flex;
    width: 100%;
    max-width: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fb-ad-feed-mockup.ad-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.ad-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.carousel-control-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e4e6eb;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.carousel-control-btn:hover {
    background: var(--grad-purple-blue);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(111, 66, 193, 0.4);
}

.carousel-control-btn svg {
    display: block;
    width: 18px;
    height: 18px;
}

.ad-carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-purple);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--primary-purple);
}

@media (max-width: 768px) {
    .ad-mockup-carousel-wrapper {
        max-width: 100%;
    }
}

/* --- Facebook Ad Mockup Text Expand/Collapse & Mobile Styling --- */
.ad-text .ad-text-short {
    display: inline;
}

.ad-text .ad-text-full {
    display: none;
}

.ad-text.expanded .ad-text-short {
    display: none;
}

.ad-text.expanded .ad-text-full {
    display: inline;
}

.ad-see-more-link {
    color: #b0b3b8;
    cursor: pointer;
    font-weight: 600;
    margin-left: 4px;
    white-space: nowrap;
}

.ad-see-more-link:hover {
    text-decoration: underline;
    color: #fff;
}

/* Checklist Items in Showcase Text Area */
.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.check-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.check-icon {
    width: 32px;
    height: 32px;
    background: var(--grad-purple-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(111, 66, 193, 0.45);
}

.check-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.check-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* Extra optimization on small mobiles to prevent ad mockup layout issues */
@media (max-width: 480px) {
    .ad-mock-header {
        padding: 0.7rem 0.8rem;
    }
    .ad-mock-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
        margin-right: 0.6rem;
    }
    .ad-mock-author-meta h4 {
        font-size: 0.82rem;
    }
    .ad-mock-content {
        padding: 0.6rem 0.8rem;
    }
    .ad-text {
        font-size: 0.8rem;
    }
    .ad-mock-footer-bar {
        padding: 0.7rem 0.8rem;
        gap: 0.5rem;
    }
    .ad-headline {
        font-size: 0.82rem;
    }
    .ad-subtext {
        display: none; /* Hiding description on very small screens to fit layout neatly */
    }
    .ad-cta-btn {
        padding: 0.45rem 0.8rem;
        font-size: 0.75rem;
    }
    .checklist-items {
        gap: 1.2rem;
    }
    .check-item {
        gap: 0.8rem;
    }
}

/* --- Facebook Ads Manager Simulator Mockup --- */
.ads-manager-section {
    background: rgba(7, 8, 13, 0.8);
}

.ads-manager-mockup {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #0f121d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* Header of Simulator */
.mock-header {
    background: #191e2f;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-nav {
    display: flex;
    gap: 0.5rem;
    margin-right: 2rem;
}

.mock-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

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

.mock-title-bar {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
}

/* Simulator Settings Control Panel inside Ads Manager mockup */
.simulator-control-panel {
    background: #121623;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.sim-ctrl-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sim-ctrl-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-white);
}

/* Table Simulation */
.mock-table-wrapper {
    overflow-x: auto;
}

.mock-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
    background: #0f121d;
    min-width: 900px;
}

.mock-table th, .mock-table td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mock-table th {
    background: #121623;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
}

.mock-table td {
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

/* Interactive Campaign switch toggle buttons */
.switch {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #3a3b3c;
    transition: .3s;
    border-radius: 20px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .switch-slider {
    background-color: var(--color-success);
}

input:checked + .switch-slider:before {
    transform: translateX(18px);
}

/* Table Row states */
.mock-table tr.campaign-row-disabled td {
    opacity: 0.35;
}

.campaign-name-cell {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.campaign-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-on {
    background-color: var(--color-success);
    box-shadow: 0 0 8px var(--color-success);
}

.campaign-name-cell strong {
    display: block;
    color: var(--color-text-white);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.campaign-name-cell .sub-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.cell-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.badge-running {
    background: rgba(46, 204, 113, 0.1);
    color: var(--color-success);
}

.badge-paused {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
}

.text-white {
    color: var(--color-text-white) !important;
}

.text-gold {
    color: var(--color-gold) !important;
    font-weight: 700;
}

.text-green {
    color: var(--color-success) !important;
    font-weight: 600;
}

.badge-roas {
    background: rgba(111, 66, 193, 0.15);
    color: #b39ddb;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(111, 66, 193, 0.2);
    display: inline-block;
}

.badge-roas-total {
    background: var(--grad-purple-blue);
    color: var(--color-text-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
}

.table-totals {
    background: #121623;
}

.table-totals td {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: none;
    color: var(--color-text-white);
    font-weight: 700;
}

/* Footer Simulation metrics */
.mock-footer-stats {
    background: #141827;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.footer-stat-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-stat-card span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.footer-stat-card strong {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--color-text-white);
}

/* --- Problem & Solution Section --- */
.compare-grid {
    gap: 2.5rem;
}

.compare-card {
    background: rgba(18, 22, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.compare-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.badge-red {
    background: rgba(231, 76, 60, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

.badge-green {
    background: rgba(46, 204, 113, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(46, 204, 113, 0.2);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.1);
}

.compare-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.compare-list li {
    display: flex;
    gap: 1.2rem;
}

.compare-list li span {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.1rem;
}

.icon-close {
    color: var(--color-error);
}

.icon-check {
    color: var(--color-success);
}

.compare-list li strong {
    display: block;
    color: var(--color-text-white);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.bad-way {
    border-top: 3px solid rgba(231, 76, 60, 0.3);
}

.good-way {
    background: rgba(111, 66, 193, 0.06);
    border: 1px solid rgba(111, 66, 193, 0.2);
    border-top: 3px solid var(--color-purple);
    box-shadow: var(--shadow-card);
}

/* --- Services Section --- */
.services-grid {
    gap: 2rem;
}

.service-card {
    background: rgba(18, 22, 35, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 3rem 2.2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-purple-blue);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(18, 22, 35, 0.7);
    border-color: rgba(111, 66, 193, 0.25);
    box-shadow: var(--shadow-card), 0 0 20px rgba(111, 66, 193, 0.1);
}

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

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(111, 66, 193, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.45rem;
    margin-bottom: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.service-features li::before {
    content: '◆';
    color: var(--color-gold);
    font-size: 0.65rem;
}

/* --- New PMU Artist Roadmap Guide --- */
.guide-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-top: 2rem;
}

.guide-step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.guide-step-item .step-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(226, 192, 116, 0.1);
    border: 1px solid rgba(226, 192, 116, 0.2);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.guide-step-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--color-text-white);
}

.guide-step-item p {
    font-size: 0.92rem;
    line-height: 1.55;
}

/* --- Pricing Table Section --- */
.pricing-section {
    background: rgba(111, 66, 193, 0.01);
}

.billing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.billing-toggle-box {
    background: rgba(18, 22, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 50px;
    display: flex;
    gap: 4px;
    box-shadow: var(--shadow-card);
}

.toggle-btn {
    border: none;
    outline: none;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    background: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.toggle-btn.active {
    background: var(--grad-purple-blue);
    color: var(--color-text-white);
    box-shadow: 0 4px 10px rgba(111, 66, 193, 0.3);
}

/* --- Homepage Pricing Carousel --- */
.pricing-carousel-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    min-width: 0;
    overflow: hidden;
    padding: 1.5rem 0;
}

.pricing-carousel-clip {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
}

.pricing-carousel-track {
    display: flex;
    width: 100%;
    max-width: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card.pricing-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    transform: scale(0.96);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                background-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.price-card.pricing-slide:hover,
.price-card.pricing-slide.active {
    transform: scale(1.0);
}

.pricing-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.pricing-carousel-dots {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .pricing-carousel-wrapper {
        max-width: 100%;
        padding: 1rem 0;
    }
}

.pricing-grid {
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: rgba(18, 22, 35, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                background-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.price-card:hover {
    transform: translateY(-8px) scale(1.02);
    background-color: rgba(22, 27, 43, 0.75);
    border-color: rgba(111, 66, 193, 0.4);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
}

/* Shimmer shine sweep animation */
.price-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: 0.75s;
    pointer-events: none;
    z-index: 2;
}

.price-card:hover::after {
    left: 150%;
    transition: 0.75s ease-out;
}

/* Animate button inside on hover */
.price-card .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover .btn {
    transform: scale(1.03);
}

/* Staggered entrance transition delays for price cards */
.pricing-grid .price-card:nth-child(1) {
    transition-delay: 0.1s;
}
.pricing-grid .price-card:nth-child(2) {
    transition-delay: 0.25s;
}

.price-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.price-card-header h3 {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.price-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-display {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-display .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-white);
    line-height: 1.1;
}

.price-display .period {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
}

.original-price {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-bottom: 0.2rem;
}

.save-badge {
    background: var(--color-purple);
    color: var(--color-text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-top: 0.5rem;
}

.price-notice {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.notice-red {
    color: #ff7675;
    font-weight: 600;
}

.price-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 1.8rem 0;
}

.plan-features {
    list-style: none !important;
    list-style-type: none !important;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.8rem;
    padding: 0;
}

.plan-features li {
    list-style: none !important;
    list-style-type: none !important;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    line-height: 1.4;
}

.plan-features li strong {
    color: var(--color-text-white);
}

.plan-features li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--grad-purple-blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(111, 66, 193, 0.3);
    margin-top: 2px;
}

.plan-excludes {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: 1.4;
    text-align: center;
}

/* Featured Price Card Plus */
.price-card.featured {
    border: 2px solid var(--color-purple);
    background: rgba(18, 22, 35, 0.75);
    box-shadow: 0 25px 50px rgba(111, 66, 193, 0.25);
}

.price-card.featured:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(226, 192, 116, 0.25), 0 0 100px rgba(111, 66, 193, 0.15);
}

.featured-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--color-purple);
    filter: blur(100px);
    top: -50px;
    right: -50px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.price-card.featured .plan-badge {
    color: #b39ddb;
}

.price-card.featured .plan-features li::before {
    background: var(--grad-gold);
    color: var(--color-bg-dark);
    box-shadow: 0 2px 5px rgba(226, 192, 116, 0.3);
}

.price-card .btn {
    margin-top: auto;
}

/* --- Visual Showcase Section --- */
.showcase-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.showcase-image-main {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1;
    position: relative;
}

.gold-gradient-border {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 2px solid transparent;
    background: var(--grad-gold) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    border-radius: 32px;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

/* --- ROI Calculator Section --- */
.calculator-wrapper {
    padding: 3.5rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
}

.calc-inputs h3, .calc-outputs h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.calc-inputs h3 {
    color: var(--color-text-white);
}

.calc-outputs h3 {
    color: var(--color-gold);
}

.input-group {
    margin-bottom: 2.2rem;
}

.input-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.input-labels label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-white);
}

.input-val {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Custom Sliders */
.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin-bottom: 0.5rem;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(226, 192, 116, 0.5);
    transition: transform 0.15s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

/* Firefox support */
.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(226, 192, 116, 0.5);
    transition: transform 0.15s ease;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.25);
}

.slider::-moz-range-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.slider-markers {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Output Styling */
.outputs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.output-card {
    background: rgba(7, 8, 13, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.output-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.output-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.output-desc {
    font-size: 0.75rem;
    color: rgba(159, 166, 178, 0.7);
}

.highlight-gold {
    color: var(--color-gold);
    text-shadow: 0 0 15px rgba(226, 192, 116, 0.2);
}

.highlight-purple {
    color: #b39ddb;
    text-shadow: 0 0 15px rgba(179, 157, 219, 0.2);
}

.highlight-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(111, 66, 193, 0.2));
}

.calc-cta-box {
    background: rgba(111, 66, 193, 0.08);
    border: 1px solid rgba(111, 66, 193, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.calc-cta-box p {
    font-size: 0.9rem;
    color: var(--color-text-white);
    margin-bottom: 1.2rem;
}

/* --- Exclusivity Zone Checker & AI Market Analyzer layout --- */
.checker-section {
    background: rgba(111, 66, 193, 0.02);
}

.checker-map-grid {
    align-items: stretch;
}

.checker-map-grid .map-container,
.checker-map-grid .checker-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-block-title, .checker-block-title {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
    font-family: var(--font-heading);
}

.map-block-title {
    color: var(--color-text-white);
}

.checker-block-title {
    color: var(--color-gold);
}

/* US Map container inside double column */
.map-container {
    padding: 2.5rem;
}

/* --- Leaflet Map Portal Layout --- */
.map-portal-layout {
    display: flex;
    gap: 1.5rem;
    height: 480px;
    margin-top: 1.5rem;
}

.map-leaflet-box {
    flex: 1;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.leaflet-map-element {
    width: 100%;
    height: 100%;
    background: #0f121d; /* Matches dark theme */
}

/* --- Glowing Gold Pulse Map Markers --- */
.pm-glow-marker {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-dot {
    width: 10px;
    height: 10px;
    background: var(--color-gold); /* elegant gold center */
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-gold), 0 0 20px var(--color-gold);
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pm-glow-marker:hover .marker-dot {
    transform: scale(1.3);
    background: #fff;
    box-shadow: 0 0 15px #fff, 0 0 25px var(--color-gold);
}

.marker-pulse {
    position: absolute;
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.25); /* gold pulsing halo */
    border-radius: 50%;
    animation: marker-pulse-glow 2s infinite ease-out;
    z-index: 1;
}

.marker-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-purple);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 10px;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

@keyframes marker-pulse-glow {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* --- Luxury Popup Content --- */
.pm-popup-luxury {
    padding: 0.4rem;
    min-width: 220px;
    max-width: 280px;
    font-family: inherit;
}

.pm-popup-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.4rem;
    margin-bottom: 0.5rem;
}

.pm-popup-header h4 {
    color: var(--color-gold);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.pm-popup-subtitle {
    font-size: 0.72rem;
    color: #b0b3b8;
    display: block;
    margin-top: 0.15rem;
}

.pm-popup-body {
    max-height: 150px;
    overflow-y: auto;
    padding-right: 0.2rem;
}

/* Custom mini scrollbar for popup */
.pm-popup-body::-webkit-scrollbar {
    width: 3px;
}
.pm-popup-body::-webkit-scrollbar-track {
    background: transparent;
}
.pm-popup-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.pm-popup-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.pm-popup-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pm-popup-icon {
    color: var(--color-gold);
    font-size: 0.65rem;
    flex-shrink: 0;
}

.pm-popup-item-info {
    display: flex;
    flex-direction: column;
}

.pm-popup-item-info strong {
    font-size: 0.8rem;
    color: #e4e6eb;
    font-weight: 500;
    line-height: 1.3;
}

/* Leaflet Popups */
.leaflet-popup-content-wrapper {
    background: rgba(15, 18, 29, 0.95) !important;
    border: 1px solid rgba(226, 192, 116, 0.3) !important;
    backdrop-filter: blur(15px) !important;
    border-radius: 12px !important;
    color: #e4e6eb !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7) !important;
    padding: 0.3rem !important;
}

.leaflet-popup-tip {
    background: rgba(15, 18, 29, 0.95) !important;
    border-left: 1px solid rgba(226, 192, 116, 0.3) !important;
    border-bottom: 1px solid rgba(226, 192, 116, 0.3) !important;
}

.pm-popup {
    padding: 0.2rem 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.pm-popup strong {
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 700;
}

.leaflet-popup-close-button {
    color: #b0b3b8 !important;
    padding: 8px 8px 0 0 !important;
}

.leaflet-popup-close-button:hover {
    color: #fff !important;
    background: transparent !important;
}

/* Zoom Controls styling */
.leaflet-bar {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.leaflet-bar a {
    background-color: rgba(24, 25, 38, 0.9) !important;
    color: #e4e6eb !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.2s;
}

.leaflet-bar a:hover {
    background-color: var(--primary-purple) !important;
    color: #fff !important;
}

.loading-spinner-sidebar {
    text-align: center;
    color: #b0b3b8;
    font-size: 0.85rem;
    padding: 2rem 0;
}

@media (max-width: 980px) {
    .map-portal-layout {
        flex-direction: column;
        height: auto;
    }
    
    .map-leaflet-box {
        height: 350px;
    }
}


/* AI Checker panel styling */
.checker-wrapper {
    padding: 2.5rem;
}

.checker-inputs-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.checker-inputs-layout .chk-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checker-inputs-layout .chk-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-white);
}

.checker-inputs-layout input, 
.checker-inputs-layout select {
    background: rgba(7, 8, 13, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.checker-inputs-layout select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e2c074' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.9rem;
    padding-right: 2.2rem;
}

.checker-inputs-layout input:focus, 
.checker-inputs-layout select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(226, 192, 116, 0.15);
}

.checker-inputs-layout select option {
    background: var(--color-bg-deep);
}

.checker-inputs-layout .btn {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
}

/* Checker Output Results Container */
.checker-results {
    background: rgba(7, 8, 13, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 2rem;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

.res-placeholder span {
    font-size: 2.5rem;
}

.res-placeholder p {
    font-size: 0.88rem;
    max-width: 320px;
    line-height: 1.6;
}

/* Spinner and Status states */
.chk-spinner {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-purple);
    border-radius: 50%;
    animation: chk-spin 0.8s linear infinite;
}

@keyframes chk-spin {
    to { transform: rotate(360deg); }
}

.res-card {
    width: 100%;
    animation: fade-in 0.4s ease-out forwards;
}

.status-loading, .status-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.status-loading h4, .status-error h4 {
    font-size: 1.25rem;
}

.status-loading .desc, .status-error .desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* AI Report layout */
.status-analyzer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.analyzer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.8rem;
}

.analyzer-header h4 {
    font-size: 1.4rem;
    font-weight: 800;
}

.badge-status-market {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-status-market.free {
    background: rgba(46, 204, 113, 0.15);
    color: var(--color-success);
    border: 1px solid rgba(46, 204, 113, 0.25);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.15);
}

.badge-status-market.busy {
    background: rgba(226, 192, 116, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(226, 192, 116, 0.25);
    box-shadow: 0 0 10px rgba(226, 192, 116, 0.15);
}

.data-source-badge {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    color: #8a8d91;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 2x2 Stats Grid */
.analyzer-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.an-stat {
    background: rgba(7, 8, 13, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.an-stat .lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
}

.an-stat strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-white);
}

/* Race Bar Styling */
.analyzer-race-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.analyzer-race-wrap h5, .analyzer-rec-box h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.race-bar-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.race-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--color-text-white);
}

.progress-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fill-purple { background: linear-gradient(90deg, #9b51e0, #7c4dff); }
.fill-blue { background: linear-gradient(90deg, #2196f3, #00d2ff); }
.fill-gold { background: linear-gradient(90deg, #c49d4f, #f3d082); }
.fill-green { background: linear-gradient(90deg, #2ecc71, #27c93f); }

/* Recommendation Box */
.analyzer-rec-box {
    background: rgba(111, 66, 193, 0.06);
    border: 1px solid rgba(111, 66, 193, 0.15);
    border-radius: 14px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.analyzer-rec-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.analyzer-rec-box li {
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--color-text-muted);
}

.analyzer-rec-box li strong {
    color: var(--color-text-white);
}

.analyzer-cta-area {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

/* --- Testimonials Section --- */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-track {
    display: flex;
    flex-direction: row;
    align-items: stretch; /* Make all slides equal height */
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0; /* Prevent flex items from shrinking and wrapping */
    box-sizing: border-box;
    opacity: 0.3;
    transform: scale(0.95);
    transition: opacity 0.6s, transform 0.6s;
    padding: 3rem 2.5rem;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Space content evenly */
    align-items: center;
    text-align: center;
    position: relative;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(111, 66, 193, 0.2);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.15;
    position: absolute;
    top: -1rem;
    left: 2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-white);
    line-height: 1.75;
    margin-bottom: 2rem;
    z-index: 1;
    flex-grow: 1; /* Stretch text to push author details to the bottom */
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-align: left;
    margin-top: auto; /* Push to the bottom */
    width: 100%;
    justify-content: center; /* Center horizontally */
}

.author-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad-purple-blue);
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(111, 66, 193, 0.3);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--color-gold);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--color-purple);
    border-color: var(--color-purple);
    transform: scale(1.1);
    box-shadow: var(--glow-primary);
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--color-gold);
    box-shadow: var(--glow-gold);
}

/* --- Facebook Page Feed Mockup Layout --- */
.fb-page-section {
    background: rgba(111, 66, 193, 0.01);
}

.fb-page-layout {
    align-items: stretch;
    gap: 4rem;
}

.fb-page-card {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.fb-page-banner {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-page-banner .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-page-profile-wrap {
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.fb-page-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--grad-purple-blue);
    border: 4px solid #141724;
    color: #fff;
    font-weight: 900;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.fb-page-details {
    padding-top: 55px; /* Offset avatar overlay */
    display: flex;
    flex-direction: column;
}

.fb-page-details h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text-white);
}

.fb-page-details .handle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.fb-page-details .followers {
    font-size: 0.88rem;
    margin-top: 0.4rem;
    color: var(--color-text-muted);
}

.fb-page-details strong {
    color: var(--color-text-white);
}

.fb-page-actions {
    padding: 0 1.5rem 2rem;
    display: flex;
    gap: 1rem;
}

.fb-page-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

/* Custom Facebook Page Mobile Live Phone Mockup - iPhone 17 Pro Max Luxury Style */
.phone-mockup-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}

.phone-device {
    position: relative;
    width: 320px;
    height: 680px; /* Increased height for iPhone 17 Pro Max luxury proportion */
    background: #111112;
    border-radius: 42px;
    border: 7px solid #1c1a17; /* Space Black luxury metal bezel */
    box-shadow: 
        0 0 0 1.5px #c5a880, /* Gold Titanium frame highlight accent line */
        0 25px 60px -12px rgba(0, 0, 0, 0.85), 
        0 0 40px rgba(111, 66, 193, 0.25), 
        inset 0 0 12px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin: 0 auto;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.phone-device:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 70px -10px rgba(0, 0, 0, 0.9), 
        0 0 50px rgba(111, 66, 193, 0.4), 
        0 0 0 1.5px #e2c074, /* Brighter gold hover accent */
        inset 0 0 12px rgba(255, 255, 255, 0.1);
}

/* Call Ringing Vibration Animation */
@keyframes ring-vibration {
    0%, 20%, 40% { transform: translate(1px, 1px) rotate(0.3deg); }
    10%, 30%, 50% { transform: translate(-1px, -1px) rotate(-0.3deg); }
    60%, 100% { transform: translate(0, 0) rotate(0); }
}

.phone-device.ringing {
    animation: ring-vibration 1.5s infinite;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f0f2f5; /* Facebook background */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 35px; /* Clean screen screen inner corner curve */
}

/* iPhone 17 Pro Max Dynamic Island */
.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 24px;
    background: #000000;
    border-radius: 12px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* Allow buttons inside notch to be clicked */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Morph Notch into Calling Banner */
.phone-notch.incoming-call {
    width: 284px;
    height: 56px;
    border-radius: 28px;
    background: rgba(10, 10, 12, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0 10px 0 14px;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

/* Hardware indicators (camera, speaker) */
.notch-hardware {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s ease;
}

.phone-notch.incoming-call .notch-hardware {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.phone-speaker {
    width: 32px;
    height: 3px;
    background: #1c1c1e;
    border-radius: 2px;
}

.phone-camera {
    width: 5px;
    height: 5px;
    background: #0b0c10;
    border-radius: 50%;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.4);
}

/* Calling UI layout inside Dynamic Island */
.notch-call-ui {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phone-notch.incoming-call .notch-call-ui {
    display: flex;
    opacity: 1;
}

.call-avatar {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.call-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.call-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid #2ecc71;
    animation: call-pulse-ani 1.5s infinite;
    pointer-events: none;
}

@keyframes call-pulse-ani {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.call-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-left: 10px;
    text-align: left;
}

.caller-name {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.call-status {
    font-size: 9px;
    color: #2ecc71;
    font-weight: 500;
    line-height: 1.2;
    animation: text-pulse 0.8s infinite alternate;
}

@keyframes text-pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.call-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.call-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.call-btn:hover {
    transform: scale(1.15);
}

.call-btn:active {
    transform: scale(0.92);
}

.btn-decline {
    background: #ff3b30;
}

.btn-decline:hover {
    background: #ff453a;
}

.btn-accept {
    background: #34c759;
}

.btn-accept:hover {
    background: #30d158;
}

/* Status Bar */
.phone-status-bar {
    height: 35px;
    padding: 10px 18px 0;
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    border-bottom: 1px solid #e5e5e5;
    user-select: none;
    z-index: 20;
    flex-shrink: 0;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Battery Icon */
.phone-battery {
    width: 18px;
    height: 9px;
    border: 1px solid #000;
    border-radius: 2.5px;
    padding: 0.5px;
    display: flex;
    align-items: center;
    position: relative;
}

.phone-battery::after {
    content: '';
    position: absolute;
    right: -2.5px;
    top: 2px;
    width: 1.5px;
    height: 3px;
    background: #000;
    border-top-right-radius: 0.5px;
    border-bottom-right-radius: 0.5px;
}

.phone-battery-level {
    height: 100%;
    width: 80%;
    background: #000;
    border-radius: 1px;
}

/* Home Indicator */
.phone-home-indicator {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 2px;
    z-index: 30;
    pointer-events: none;
}

.fb-page-iframe {
    width: 100%;
    height: 100%;
    border: none;
    flex-grow: 1;
    background: #ffffff;
}

/* Educational Post Mock Grid */
.fb-posts-mock-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fb-post-mock-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.fb-post-mock-card:hover {
    border-color: rgba(111, 66, 193, 0.2);
    background: rgba(18, 22, 35, 0.8);
    transform: translateX(5px);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
}

.badge-gold {
    background: rgba(226, 192, 116, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(226, 192, 116, 0.25);
}

.badge-purple {
    background: rgba(155, 81, 224, 0.15);
    color: #b39ddb;
    border: 1px solid rgba(155, 81, 224, 0.25);
}

.badge-blue {
    background: rgba(33, 150, 243, 0.15);
    color: #90caf9;
    border: 1px solid rgba(33, 150, 243, 0.25);
}

.post-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.fb-post-mock-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text-white);
}

.fb-post-mock-card .post-preview {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

.post-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-top: 0.4rem;
}

.post-read-more:hover {
    color: var(--color-gold-hover);
    text-decoration: underline;
}

/* --- Footer --- */
.site-footer {
    background: #040508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .brand-logo {
    height: 44px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.social-links a:hover {
    background: var(--grad-purple-blue);
    border-color: var(--color-purple);
    color: var(--color-text-white);
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.social-icon-svg {
    width: 18px;
    height: 18px;
}

.footer-grid h3 {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.footer-links ul, .footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a, .footer-services a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    padding: 2rem 0;
    font-size: 0.8rem;
    color: rgba(159, 166, 178, 0.5);
}

/* --- Interactive Popup Form Overlay --- */
.pm-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 8, 13, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    padding: 2rem;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

.pm-popup-box {
    width: 100%;
    max-width: 540px;
    margin: auto;
    padding: 3rem;
    position: relative;
    background: #0e111a;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pm-popup-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2.2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.pm-popup-close:hover {
    color: var(--color-text-white);
    transform: scale(1.1);
}

.pm-popup-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.pm-popup-box p {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.pm-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.pm-form input, .pm-form select, .pm-form textarea {
    background: rgba(7, 8, 13, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--color-text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.pm-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e2c074' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.pm-form select option {
    background: var(--color-bg-deep);
}

.pm-form input:focus, .pm-form select:focus, .pm-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(226, 192, 116, 0.2);
}

.pm-form textarea {
    min-height: 90px;
    resize: vertical;
}

/* Popup Success states */
.popup-state-container {
    text-align: center;
    padding: 2rem 0;
    animation: fade-in 0.4s ease-out forwards;
}

.popup-state-container .btn {
    margin-top: 1.5rem;
}

/* --- Scroll Animation reveal effects --- */
.animate-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Hero text load animations */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: text-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-text-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: text-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-text-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: text-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes text-reveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-container {
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .card-top-right {
        right: 0;
    }
    
    .card-bottom-left {
        left: 0;
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .checker-map-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .fb-page-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .hero-section {
        padding-top: 130px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Toggle Mobile Navigation show */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-actions .btn {
        display: none; /* Hide header btn on small mobile, show in menu */
    }
    
    /* Active State toggle mobile button bars */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .calculator-wrapper, .checker-wrapper, .pm-popup-box {
        padding: 2rem;
    }
    
    .outputs-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .mock-footer-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .simulator-control-panel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.2rem;
    }
    
    .checker-inputs-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-container {
        padding: 1.5rem;
    }
    
    .map-tooltip {
        width: 180px;
        padding: 0.8rem;
    }
    
    .tooltip-stats {
        gap: 0.4rem;
    }
}

/* Equal height alignment for Facebook Section on Desktop */
@media (min-width: 1025px) {
    .phone-mockup-wrapper {
        display: flex;
        align-items: stretch;
        justify-content: center;
    }
    
    .fb-posts-mock-grid {
        height: 680px; /* Match taller phone-device height exactly */
        justify-content: space-between;
    }
    
    .fb-post-mock-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 1.25rem 1.75rem; /* Compact padding to fit 200px height nicely */
    }
    
    .fb-post-mock-card h3 {
        font-size: 1.15rem;
        line-height: 1.35;
        margin: 0.25rem 0 0.5rem;
    }
    
    .fb-post-mock-card p.post-preview {
        font-size: 0.85rem;
        line-height: 1.45;
        margin-bottom: auto;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .fb-post-mock-card .post-read-more {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
}

/* Mobile responsive fixes for Testimonials section */
@media (max-width: 768px) {
    .testimonial-slide {
        padding: 2.2rem 1.5rem;
        border-radius: 20px;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }
    
    .quote-icon {
        font-size: 4.5rem;
        top: -0.5rem;
        left: 1rem;
    }
    
    .testimonial-author {
        gap: 0.8rem;
    }
    
    .author-avatar-placeholder {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }
}

/* --- Multi-page Navigation Active Indicators --- */
.main-nav a.active {
    color: var(--color-gold);
}
.main-nav a.active::after {
    width: 100%;
}
.mobile-nav-links .mobile-link.active {
    color: var(--color-gold);
}

/* --- Sub-page Banner / Breadcrumbs --- */
.page-header-section {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(180deg, rgba(14, 17, 26, 0.95) 0%, rgba(7, 8, 13, 0.98) 100%);
    border-bottom: 1px solid rgba(111, 66, 193, 0.15);
    text-align: center;
    overflow: hidden;
}

.page-header-section h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #dcdcdc 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: var(--color-text-muted);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

.breadcrumb span.divider {
    opacity: 0.5;
}

.breadcrumb span.current-page {
    color: var(--color-gold);
    font-weight: 500;
}

/* --- Contact Page Specific Styles --- */
.contact-grid {
    padding: 80px 0;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-box {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-item-box .icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    background: rgba(226, 192, 116, 0.1);
    border: 1px solid rgba(226, 192, 116, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(226, 192, 116, 0.1);
}

.contact-item-box h4 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.contact-item-box p,
.contact-item-box a {
    color: var(--color-text-muted);
}

.contact-item-box a:hover {
    color: var(--color-gold);
}

.hq-map-wrapper {
    margin-top: 2rem;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(111, 66, 193, 0.2);
    box-shadow: var(--shadow-card);
}

.contact-form-card {
    padding: 2.5rem;
}

.contact-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-card p {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.8rem;
    }
}

/* --- Automated Blog / News Styling --- */
.blog-section {
    position: relative;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.25;
    }
}

.blog-skeleton-card {
    background: rgba(18, 22, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-content-scroll::-webkit-scrollbar {
    width: 6px;
}

.blog-content-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.blog-content-scroll::-webkit-scrollbar-thumb {
    background: rgba(111, 66, 193, 0.3);
    border-radius: 4px;
}

.blog-content-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(111, 66, 193, 0.5);
}

/* Custom styles for article content inside modal */
.blog-content-scroll h2 {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.blog-content-scroll h3 {
    font-size: 1.15rem;
    color: var(--color-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.blog-content-scroll p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.blog-content-scroll ul, .blog-content-scroll ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
}

.blog-content-scroll li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-content-scroll strong {
    color: #fff;
}

/* Premium Blog Post Card styling */
.blog-post-card {
    background: rgba(18, 22, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}

.blog-post-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(111, 66, 193, 0.4);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.15);
}

.blog-post-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.blog-post-card:hover::after {
    left: 150%;
}

.blog-card-image-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-post-card:hover .blog-card-image {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.blog-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.blog-card-title {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.4rem;
    text-align: left;
}

.blog-card-summary {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.2rem;
    text-align: left;
    flex-grow: 1;
}

/* Pain Points Section */
.pain-points-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(7, 8, 13, 0) 0%, rgba(20, 10, 30, 0.2) 100%);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.pain-card {
    background: rgba(25, 15, 35, 0.3);
    border: 1px solid rgba(239, 83, 80, 0.15); /* Soft red border for pain points */
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.pain-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 83, 80, 0.4);
    box-shadow: 0 15px 35px rgba(239, 83, 80, 0.1);
}

.pain-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(239, 83, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #ef5350;
    font-size: 1.5rem;
    font-weight: 700;
}

.pain-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pain-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* PMU Solution Section */
.pmu-system-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(7, 8, 13, 0.4);
}

.system-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.system-visual-panel {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(18, 22, 35, 0.6);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
}

.system-flow-preview {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.system-benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.system-benefit-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(111, 66, 193, 0.2);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-purple-glow) 0%, var(--color-indigo) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

/* Luxury Flow (Timeline) Section */
.luxury-flow-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.flow-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
}

.flow-step-card {
    background: rgba(18, 22, 35, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    text-align: left;
    height: 100%;
}

.flow-step-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8860b 100%);
    color: #07080d;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.flow-step-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.flow-step-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Pricing Homepage Wrapper & Toggle */
.homepage-pricing-wrapper {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(7, 8, 13, 0.2);
}

/* Homepage high converting CTA Card */
.homepage-cta-card-wrapper {
    padding: 4rem 0 6rem 0;
}

.homepage-cta-card {
    background: linear-gradient(135deg, rgba(20, 15, 35, 0.6) 0%, rgba(7, 8, 13, 0.8) 100%);
    border: 2px solid var(--color-gold-border);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.08), inset 0 0 20px rgba(212, 175, 55, 0.05);
    position: relative;
    overflow: hidden;
}

.homepage-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 991px) {
    .pain-points-grid, .flow-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .system-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .homepage-cta-card {
        padding: 2.5rem 1.5rem;
    }
}



