/* ==========================================================================
   Düğün & Nişan İmece — Landing Page Stylesheet (Apple Style Premium Edition)
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Colors (HSL & Premium Apple Harmony) */
    --primary: hsl(0, 36%, 74%);         /* Pastel Rose: #D4A5A5 */
    --primary-dark: hsl(0, 30%, 60%);
    --primary-light: hsl(0, 35%, 96%);
    --gold: #C5A059;                     /* Premium Champagne Gold for interactive states */
    --gold-light: #F4ECE1;
    --rose-gold-tint: #F7EAEA;           /* Rose Gold strictly for structural card backgrounds/underlay tints */
    
    --bg-cream: #FAF8F6;                 /* Warm Apple Cream/Champagne */
    --surface: #FFFFFF;
    
    --text-main: #1D1D1F;                /* Apple Deep Charcoal */
    --text-muted: #6E6E73;
    --text-light: #86868B;
    
    --border-color: rgba(29, 29, 31, 0.08);
    --shadow-soft: 0 12px 32px rgba(29, 29, 31, 0.04);
    --shadow-medium: 0 20px 48px rgba(29, 29, 31, 0.08);
    
    /* Spacing Grid */
    --space-2xs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* GPU-Accelerated Dark Transition Layer */
.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0B0B0C;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    will-change: opacity;
    transition: opacity 0.15s linear;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em; /* Inter body kerning */
    transition: color 0.5s ease;
}

/* Typography & Kerning Rules */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-main);
    transition: color 0.5s ease;
}

h1 {
    font-size: 3.2rem;
    letter-spacing: -0.005em; /* Clean Serif kerning */
    margin-bottom: var(--space-md);
}

h2 {
    font-size: 2.4rem;
    letter-spacing: -0.005em;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.55rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 0;
}

p {
    margin-bottom: var(--space-md);
}

/* Disable kerning on small UI items for high legibility */
.store-sub, 
.avatar-label, 
.coverage-text, 
.budget-val-label, 
.legend-item, 
.badge, 
.btn, 
.time, 
input, 
label,
.logo-text,
.nav-links a {
    letter-spacing: 0 !important;
}

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

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: var(--space-md);
}

.gold-badge {
    background-color: var(--rose-gold-tint);
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: #fff;
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.2);
}

.btn-primary:hover {
    background-color: hsl(40, 52%, 48%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(197, 160, 89, 0.35);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--text-main);
    border-color: rgba(29, 29, 31, 0.1);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    border-color: rgba(29, 29, 31, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.btn span.material-icons-round {
    font-size: 1.2rem;
    margin-left: var(--space-xs);
}

/* Shimmer shine effect */
.btn-gold-effect {
    position: relative;
    overflow: hidden;
}

.btn-gold-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.75s ease;
    opacity: 0;
}

.btn-gold-effect:hover::after {
    left: 130%;
    opacity: 1;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.central-store-buttons {
    justify-content: center;
    margin-top: var(--space-xl);
    margin-bottom: 0;
}

.store-badge-official {
    display: inline-flex;
    align-items: center;
    background-color: #000000;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 8px;
    text-decoration: none;
    border: 1.5px solid #a6a6a6;
    transition: var(--transition-smooth);
    min-width: 146px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.store-badge-official:hover {
    background-color: #1A1A1A;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.store-badge-official.dark {
    background-color: #000000;
    border-color: rgba(255, 255, 255, 0.35);
}

.store-badge-official.dark:hover {
    background-color: #111111;
    border-color: #ffffff;
}

.apple-svg, .play-svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-sub {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 400;
    color: #dfdfdf;
    line-height: 1.1;
}

.store-main {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Navigation Bar (Glassmorphism) */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 12, 12, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    padding: 14px 0;
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.gold-icon {
    color: var(--gold);
    margin-right: var(--space-xs);
    font-size: 1.6rem;
}

.nav-brand-logo {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    object-fit: contain !important;
    margin-right: 10px !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
    filter: drop-shadow(0 2px 6px rgba(197, 155, 39, 0.4));
    transition: transform 0.3s ease;
}

.logo:hover .nav-brand-logo {
    transform: scale(1.1) rotate(4deg);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(201, 162, 39, 0.4);
}

.nav-cta {
    display: flex;
    gap: var(--space-md);
}

/* Hero Section */
.hero {
    padding: var(--space-4xl) 0;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.75s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    max-width: 95%;
}

/* Responsive Sticky / Placeholder Mockup Setup */
.hero-visual-placeholder {
    display: block;
    width: 300px;
    height: 600px;
}

@media (max-width: 767px) {
    .hero-visual-placeholder {
        display: none;
    }
}

.mobile-phone-only {
    display: none !important;
}

/* absolute mockup container that is pinned dynamically by GSAP */
#hero-showcase-story {
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    #desktopStickyPhone {
        position: absolute;
        top: 15vh;
        width: 300px;
        height: 600px;
        z-index: 100;
        pointer-events: auto;
    }
}

@media (min-width: 1200px) {
    #desktopStickyPhone {
        right: calc(50% - 600px + 100px); /* Centers right of layout container */
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    #desktopStickyPhone {
        right: var(--space-xl); /* Clings to right edge on smaller screens */
    }
}

@media (max-width: 767px) {
    #desktopStickyPhone {
        display: none; /* Hidden on mobile, mobile uses static .mobile-phone-only */
    }
}

/* Phone Mockup Frame */
.phone-frame {
    width: 300px;
    height: 600px;
    background-color: #1A1919;
    border: 11px solid #2C2A29;
    border-radius: 42px;
    box-shadow: var(--shadow-medium), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 10px;
    overflow: hidden;
    
    /* WebKit 3D Transform Aliasing Optimization */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -webkit-font-smoothing: antialiased;
    will-change: transform;
    
    /* Initial Tilted Posture (for desktop) */
    transform: perspective(1000px) rotateX(8deg) rotateY(-8deg);
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}

@media (max-width: 767px) {
    .phone-frame {
        transform: none !important; /* Flat 2D for mobile performance */
    }
}

.phone-speaker {
    width: 60px;
    height: 4px;
    background-color: #2D2A29;
    border-radius: 20px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--bg-cream);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.phone-header {
    height: 32px;
    padding: 12px 20px 4px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    gap: 4px;
}

.phone-header .time {
    margin-right: auto;
    font-size: 0.72rem;
}

.phone-header .status-icon {
    font-size: 0.9rem;
}

.phone-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    width: 100%;
    box-sizing: border-box;
}

.app-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-main);
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
}

.back-icon, .calendar-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-icon svg, .calendar-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Vertical scrolling dashboard mockup layouts mirroring Flutter app */
.app-content-slider-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    background-color: #FAF6F3;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.app-dashboard-scroller {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: var(--space-md);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

.dashboard-summary-card-gradient {
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.16) 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: 0 4px 16px rgba(29, 29, 31, 0.03);
    border: 1px solid rgba(29, 29, 31, 0.05);
}

.card-divider {
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.detail-click-text {
    font-size: 0.65rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 4px;
}

.mockup-section-focus {
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: 8px 12px;
    box-sizing: border-box;
    cursor: pointer;
}

.mockup-section-focus.active-focus {
    border-color: rgba(201, 162, 39, 0.3) !important;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.15) !important;
    transform: scale(1.02);
}

.task-stats-section-layout, .budget-summary-section-layout {
    display: flex;
    flex-direction: column;
}

/* High-fidelity Mockup Role Card Styles matching actual app role cards */
.mockup-role-cards-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-role-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid rgba(29, 29, 31, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.mockup-role-card.accent-pink {
    border-left: 4px solid #D4A5A5;
    background: linear-gradient(135deg, rgba(212, 165, 165, 0.08) 0%, #ffffff 100%);
}

.mockup-role-card.accent-blue {
    border-left: 4px solid #4F7FA8;
    background: linear-gradient(135deg, rgba(79, 127, 168, 0.08) 0%, #ffffff 100%);
}

.role-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.role-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.accent-pink .role-icon-circle {
    background: rgba(212, 165, 165, 0.15);
    color: #D4A5A5;
}

.accent-blue .role-icon-circle {
    background: rgba(79, 127, 168, 0.15);
    color: #4F7FA8;
}

.role-card-title {
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--text-main);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* EventProgressRing Mockup with SVG rotating path and heart icon in center */
.progress-ring-mock {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.05);
    stroke-width: 3.5;
}

.ring-fill {
    fill: none;
    stroke: #5C9468;
    stroke-width: 3.5;
    stroke-linecap: round;
}

.ring-heart {
    font-size: 0.75rem !important;
    color: var(--text-light);
    z-index: 2;
}

.progress-ring-mock.complete .ring-heart {
    color: #5C9468 !important;
}

.assignee-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.assignee-icon {
    font-size: 0.9rem;
    color: var(--text-light);
}

.mockup-tasks-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mockup-task-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-main);
}

.mockup-task-item.done {
    color: var(--text-muted);
}

.mockup-status-chip.compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    box-sizing: border-box;
    padding: 2.5px;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Done state: Light green background, dark green check icon */
.mockup-status-chip.compact.done {
    background-color: #E0EFE2;
    color: #5C9468;
}
.mockup-status-chip.compact.done svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 3.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* In Progress state: Light blue background, dark blue sync icon */
.mockup-status-chip.compact.progress {
    background-color: #DCE9F4;
    color: #4F7FA8;
}
.mockup-status-chip.compact.progress svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 3.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Pending state: Light gold background, dark gold hourglass icon */
.mockup-status-chip.compact.pending {
    background-color: #FBEAD2;
    color: #C98A3D;
}
.mockup-status-chip.compact.pending svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Progress Ring Heart SVG styles */
.ring-heart-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ring-heart-svg {
    width: 100%;
    height: 100%;
    transition: fill 0.3s ease, stroke 0.3s ease;
}
.ring-heart-svg.outline {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ring-heart-svg.filled {
    fill: var(--gold);
    stroke: none;
}



.add-task-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 4px;
    padding: 4px 6px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.add-task-btn .add-icon {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    stroke-width: 3.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.accent-pink .add-task-btn {
    color: #D4A5A5;
}
.accent-pink .add-task-btn:hover {
    background-color: rgba(212, 165, 165, 0.12);
}

.accent-blue .add-task-btn {
    color: #4F7FA8;
}
.accent-blue .add-task-btn:hover {
    background-color: rgba(79, 127, 168, 0.12);
}

.avatar-badge.pending {
    background-color: #C98A3D !important;
}

.avatar-badge span {
    font-size: 9px !important;
}

/* Assignee Capsule styles for RoleCards */
.assignee-capsule-row {
    display: inline-flex;
    align-items: center;
    background: #F0EAE5;
    border-radius: 20px;
    padding: 3px;
    font-size: 0.75rem;
    color: var(--text-main);
    max-height: 32px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.assignee-capsule-row:hover {
    background: #E6DFDA;
}

.assignee-capsule-row:active {
    transform: scale(0.96);
}

.assignee-picker-area {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 8px 0 3px;
    cursor: pointer;
}

.assignee-avatar-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5px;
    border: 2px solid transparent;
}

.assignee-avatar-wrapper.verified-border {
    border-color: #5C9468;
}

.assignee-avatar-wrapper.pending-border {
    border-color: #C98A3D;
}

.assignee-avatar-mini {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #757575;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.65rem;
}

.assignee-name {
    font-weight: 600;
    color: var(--text-main);
    max-width: 80px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swap-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.swap-icon svg {
    width: 11px;
    height: 11px;
}

.capsule-divider {
    width: 1px;
    height: 14px;
    background: rgba(0,0,0,0.1);
}

.capsule-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    cursor: pointer;
    color: #C98A3D;
}

.capsule-send-btn .send-icon {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: rotate(-30deg);
}

.app-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: 0 4px 16px rgba(29, 29, 31, 0.03);
    border: 1px solid rgba(29, 29, 31, 0.05);
}

/* Pinned Unified Showcase & Hero Layouts */
.unified-story-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
}

.story-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-3xl);
    align-items: center;
    height: 100%;
    position: relative;
}

.story-content-left {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.story-slide-hero {
    position: absolute;
    width: 100%;
    max-width: 540px;
    opacity: 1;
    transform: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.showcase-slide-text {
    position: absolute;
    max-width: 480px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: none;
}

.showcase-slide-text.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.story-content-right-placeholder {
    display: block;
    width: 300px;
    height: 600px;
}

/* Mockup Elements: Team Pool Bar */
.team-pool-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 2px;
    width: 100%;
    box-sizing: border-box;
}

.team-pool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.team-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}

.cohost-heart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cohost-heart-btn .heart-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
}

.cohost-heart-btn:hover {
    background: rgba(201, 162, 39, 0.2);
    transform: scale(1.1);
}

/* Pulsating heartbeat animation when Slide 3 is active - Gentle box-shadow glow only to prevent scale conflicts with GSAP */
.mockup-section-focus.heartbeat-active .cohost-heart-btn {
    animation: heartbeat 2.0s infinite ease-in-out;
}

@keyframes heartbeat {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6), 0 0 4px rgba(201, 162, 39, 0.2);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(201, 162, 39, 0), 0 0 12px rgba(201, 162, 39, 0.5);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0), 0 0 4px rgba(201, 162, 39, 0.2);
    }
}

.team-pool-bar {
    display: flex;
    gap: 12px;
    padding: 2px 0 6px 0;
}

.avatar-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 48px;
    flex-shrink: 0;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    background-color: rgba(29, 29, 31, 0.05);
    color: var(--text-main);
    position: relative;
}

.avatar.admin {
    background-color: var(--gold);
    color: #ffffff;
}

.avatar.add-btn {
    background-color: var(--gold-light);
    color: var(--gold);
    border: 1px dashed var(--gold);
}

.avatar.add-btn .add-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
}

.avatar-badge.done {
    background-color: #5C9468;
    color: #ffffff;
}

.avatar-badge.pending {
    background-color: var(--gold);
    color: #ffffff;
}

.avatar-badge svg {
    width: 8px;
    height: 8px;
    stroke: #ffffff;
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
}
.avatar-badge.pending svg {
    stroke-width: 2.5px;
}

.avatar-label {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* Summary Card */
.summary-card {
    background: linear-gradient(135deg, var(--rose-gold-tint) 0%, var(--surface) 100%);
    border: 1px solid rgba(212, 165, 165, 0.25);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
}

.summary-card-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    text-align: left;
}

.task-stats-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Donut Chart */
.donut-chart-container {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
}

.donut-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0% 0%, var(--text-light) 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.donut-hole {
    width: 40px;
    height: 40px;
    background-color: #FAF6F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-main);
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-muted);
}

.legend-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.legend-item .dot.done { background-color: var(--gold); }
.legend-item .dot.progress { background-color: var(--rose-gold-tint); }
.legend-item .dot.pending { background-color: var(--text-light); }

.coverage-text {
    font-size: 0.58rem;
    color: var(--text-light);
    font-weight: 700;
    margin-top: 2px;
}

.card-divider {
    height: 1px;
    background-color: rgba(29, 29, 31, 0.05);
    margin: 0;
}

/* Budget Stats */
.budget-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: left;
}

.budget-val-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.budget-val-label {
    font-size: 0.6rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
}

.budget-val-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.budget-val-amount.actual {
    color: var(--gold);
}

.budget-progress-bar-wrapper {
    height: 6px;
    background-color: rgba(29, 29, 31, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.budget-progress-bar-fill {
    height: 100%;
    background-color: var(--gold);
    border-radius: 10px;
}

/* Packages list inside mock */
.packages-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.package-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--surface);
    border-radius: var(--radius-sm);
    padding: 8px var(--space-sm);
    border: 1px solid rgba(29, 29, 31, 0.05);
}

.package-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.package-icon {
    font-size: 1.25rem;
    color: var(--gold);
}

.package-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.package-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.package-tasks {
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 700;
}

.chevron {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* Why Imece Section */
.why-imece {
    padding: var(--space-4xl) 0;
    background-color: transparent;
    position: relative;
    z-index: 10;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.comparison-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.comparison-card h3 {
    margin-bottom: var(--space-xl);
    font-size: 1.6rem;
    font-weight: 600;
}

.comparison-card.negative h3 {
    color: var(--text-main);
}

.comparison-card.positive {
    background-color: var(--surface);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-medium);
}

.comparison-card.positive h3 {
    color: var(--gold);
}

.comparison-card.positive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--gold), var(--rose-gold-tint));
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.close-icon {
    color: #C36A6A;
    font-size: 1.25rem;
    margin-top: 2px;
}

.check-icon {
    color: #5C9468;
    font-size: 1.25rem;
    margin-top: 2px;
}

.card-badge {
    position: absolute;
    top: -14px;
    right: var(--space-2xl);
    margin-bottom: 0;
}

/* Kriz & Cozum Grid (8 Kart İçin 4-2-1 Kolon Düzeni) */
.kriz-cozum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

@media (max-width: 1200px) {
    .kriz-cozum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kriz-cozum-grid {
        grid-template-columns: 1fr;
    }
}

/* 3D Flip Card Structure & Animation */
@keyframes gentle-wobble {
    0% { transform: translate3d(0, 0, 0) rotateX(0.5deg) rotateY(0deg); }
    25% { transform: translate3d(0, -2px, 6px) rotateX(1deg) rotateY(8deg); }
    50% { transform: translate3d(0, 0, 0) rotateX(0.5deg) rotateY(-8deg); }
    75% { transform: translate3d(0, 2px, 4px) rotateX(1deg) rotateY(6deg); }
    100% { transform: translate3d(0, 0, 0) rotateX(0.5deg) rotateY(0deg); }
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 480px;
    perspective: 1500px;
    cursor: pointer;
    outline: none;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.flip-card-wobble {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: none !important;
}

/* Scale up on hover/focus */
.flip-card:hover, .flip-card:focus-within {
    transform: scale(1.03);
}

/* Pause wobble animation on hover, focus, or when card is flipped */
.flip-card:hover .flip-card-wobble,
.flip-card:focus-within .flip-card-wobble,
.flip-card.flipped .flip-card-wobble,
.flip-card.scroll-teased .flip-card-wobble {
    animation-play-state: paused;
}

/* Keyboard accessibility outline */
.flip-card:focus-visible .flip-card-front,
.flip-card:focus-visible .flip-card-back {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: transform;
}

/* Flip state & Scroll Tease state */
.flip-card.flipped .flip-card-inner,
.flip-card.scroll-teased .flip-card-inner {
    transform: rotateY(180deg);
}

/* Glassmorphism Card Style (Champagne Tint & Dark Surface) */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(22, 18, 18, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(201, 162, 39, 0.22);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.flip-card-front {
    color: var(--text-main);
}

.flip-card-front:hover {
    border-color: rgba(201, 162, 39, 0.55);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.18);
}

.flip-card-back {
    transform: rotateY(180deg);
    border: 1.5px solid rgba(201, 162, 39, 0.7);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.22);
}

/* Card Content Layout */
.card-content-top {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.card-icon-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.card-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zorluk-icon {
    background: rgba(184, 76, 76, 0.15);
    border: 1px solid rgba(184, 76, 76, 0.3);
}

.zorluk-icon svg {
    width: 20px;
    height: 20px;
    stroke: #C36A6A;
    stroke-width: 2;
    fill: none;
}

.cozum-icon {
    background: rgba(58, 133, 88, 0.15);
    border: 1px solid rgba(58, 133, 88, 0.3);
}

.cozum-icon svg {
    width: 20px;
    height: 20px;
    stroke: #5C9468;
    stroke-width: 2;
    fill: none;
}

.zorluk-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #C36A6A;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.cozum-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 2px 0 6px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.flip-card-front .card-title {
    color: var(--text-main);
}

.flip-card-back .card-title {
    color: var(--gold);
}

.card-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #E5E5EA !important; /* Force readable cream color */
    margin-top: 4px;
}

.flip-card-back .card-desc {
    color: #E5E5EA !important;
}

/* Premium Gold Highlights */
.highlight-gold {
    color: var(--gold) !important;
    font-weight: 600;
}

/* ------------------------------------------------------------ */
/* Inner Graphics (Marketing Visual Elements) */
/* ------------------------------------------------------------ */

/* WhatsApp Chat Mockup */
.mini-whatsapp-chat {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--space-xs) var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.chat-bubble {
    max-width: 85%;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.78rem;
    line-height: 1.4;
}

.chat-bubble.left {
    background: #28282c;
    color: #f1f1f7;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.right {
    background: #0f624f;
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-bubble.system {
    background: rgba(201, 162, 39, 0.08);
    color: var(--gold);
    align-self: center;
    max-width: 100%;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 3px 8px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.chat-name {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 1px;
}

.chat-bubble.left .chat-name {
    color: #D4A5A5;
}

.chat-bubble.right .chat-name {
    color: #E6D297;
}

/* Adaletsiz Görev Listesi */
.mini-todo-list {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--space-xs) var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0;
    font-family: 'Inter', sans-serif;
}

.mini-todo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    padding: 3px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mini-todo-item:last-child {
    border-bottom: none;
}

.mini-todo-item .todo-check {
    color: #5C9468;
    font-weight: bold;
    font-size: 0.9rem;
}

.mini-todo-item .todo-uncheck {
    width: 13px;
    height: 13px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.mini-todo-item.alert .todo-uncheck {
    border-color: #C36A6A;
    background: rgba(195, 106, 106, 0.15);
    position: relative;
}

.mini-todo-item.alert .todo-uncheck::after {
    content: '!';
    color: #C36A6A;
    font-size: 0.6rem;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mini-todo-item .todo-text {
    color: var(--text-muted);
}

.mini-todo-item.alert .todo-text {
    color: #C36A6A;
    font-weight: 600;
}

/* Limit Asimi Butce Cubugu */
.mini-budget-visual {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--space-xs) var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0;
    font-family: 'Inter', sans-serif;
}

.budget-bar-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
}

.budget-pct {
    font-weight: 700;
}

.budget-pct.text-red {
    color: #C36A6A;
}

.budget-bar-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.budget-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #C9A227, #C36A6A);
    border-radius: 3px;
    animation: fillBudget 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes fillBudget {
    to { width: 100%; }
}

.budget-warning {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #C36A6A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulseWarning 1.5s infinite alternate;
}

.budget-warning span {
    font-size: 0.9rem;
}

@keyframes pulseWarning {
    from { opacity: 0.65; }
    to { opacity: 1; }
}

/* Solutions HTML/CSS Mockups (High-Fidelity Native App UI Visuals) */
.mini-app-mockup {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    margin: 6px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 4px;
    margin-bottom: 2px;
}

.mockup-header span {
    font-size: 0.8rem;
}

/* Chat Mockup Back (Native App style) */
.mockup-chat-stream {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mockup-chat-row {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    margin-bottom: 2px;
}

.mockup-chat-row.left {
    justify-content: flex-start;
}

.mockup-chat-row.right {
    justify-content: flex-end;
}

.mockup-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mockup-avatar.pink {
    background: #e1b3b3;
    color: #1e1a1a;
}

.mockup-avatar.gold {
    background: var(--gold);
    color: #1e1a1a;
}

.mockup-bubble {
    max-width: 80%;
    padding: 5px 8px;
    line-height: 1.3;
    font-size: 0.72rem;
}

.mockup-bubble.left {
    background: rgba(255, 255, 255, 0.07);
    color: #f1f1f7;
    border-radius: 10px 10px 10px 2px;
}

.mockup-bubble.right {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(201, 162, 39, 0.15));
    color: #ffffff;
    border-radius: 10px 10px 2px 10px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.mockup-chat-name {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    margin-bottom: 1px;
}

.mockup-bubble.left .mockup-chat-name {
    color: #D4A5A5;
}

.mockup-bubble.right .mockup-chat-name {
    color: var(--gold);
}

/* Task Allocation Mockup (Native App style) */
.mockup-todo-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mockup-todo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.mockup-todo-row:last-child {
    border-bottom: none;
}

.todo-title {
    font-size: 0.72rem;
    color: #ffffff;
}

.todo-meta {
    display: flex;
    gap: 5px;
    align-items: center;
}

.mockup-user-chip {
    font-size: 0.58rem;
    padding: 1px 5px;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 500;
}

.mockup-user-chip.gold {
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.mockup-user-chip.pink {
    background: rgba(225, 179, 179, 0.12);
    border: 1px solid rgba(225, 179, 179, 0.25);
}

.mockup-user-chip.silver {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.todo-status {
    font-size: 0.58rem;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 700;
}

.todo-status.done {
    background: rgba(92, 148, 104, 0.15);
    color: #82C38F;
}

.todo-status.active {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
}

.todo-status.delay {
    background: rgba(195, 106, 106, 0.15);
    color: #C36A6A;
}

/* Budget Panel Mockup (Native App style) */
.mockup-budget-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 2px 0;
}

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

.budget-label {
    font-size: 0.72rem;
    color: #ffffff;
    font-weight: 600;
}

.budget-percent {
    font-size: 0.68rem;
    font-weight: 700;
}

.budget-percent.green {
    color: #82C38F;
}

.mockup-budget-bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.mockup-budget-bar-fill.green {
    height: 100%;
    background: linear-gradient(90deg, #5C9468, #82C38F);
    border-radius: 3px;
}

.mockup-budget-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    margin-top: 2px;
}

.budget-kalan-lbl {
    color: var(--text-muted);
}

.budget-kalan-val {
    color: #82C38F;
    font-weight: 700;
}

/* Surprise Panel Mockup (Native App style) */
.mockup-surprise-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 2px 0;
}

.surprise-info-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.surprise-icon-shield {
    font-size: 1.1rem;
}

.surprise-text-col {
    display: flex;
    flex-direction: column;
}

.surprise-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.72rem;
}

.surprise-status {
    color: #82C38F;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.surprise-members-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    align-items: center;
}

.member-tag {
    background: rgba(255, 255, 255, 0.06);
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 0.58rem;
    color: #f1f1f7;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.member-tag.blocked {
    background: rgba(195, 106, 106, 0.12);
    color: #C36A6A;
    border: 1px solid rgba(195, 106, 106, 0.22);
    text-decoration: line-through;
    opacity: 0.85;
}

/* Conversion CTA Button on Back */
.card-cta-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: var(--space-sm);
    align-self: stretch;
    text-decoration: none;
    text-align: center;
}

.card-cta-btn:hover {
    background: var(--gold);
    color: #1e1a1a;
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.25);
}

.card-cta-hint {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    align-self: center;
    margin-top: 4px;
    opacity: 0.8;
}

/* Prefers Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
    .flip-card {
        animation: none !important;
    }
    .flip-card-inner {
        transition: transform 0.1s !important;
    }
    .budget-bar-fill {
        animation: none !important;
        width: 100% !important;
    }
    .budget-warning {
        animation: none !important;
    }
}

@media (max-width: 767px) {
    .kriz-cozum-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        margin-top: var(--space-xl);
    }
    .flip-card {
        height: 540px;
        min-height: 500px;
    }
    .flip-card-front, .flip-card-back {
        padding: 14px 12px;
    }
    .card-content-top {
        gap: 4px !important;
    }
    .card-icon-header-row {
        margin-bottom: 2px !important;
    }
    .flip-card-front .card-title,
    .flip-card-back .card-title {
        font-size: 0.98rem !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
    }
    .flip-card-front .card-desc,
    .flip-card-back .card-desc {
        font-size: 0.8rem !important;
        line-height: 1.35 !important;
    }
    .mini-whatsapp-chat {
        margin: 4px 0 !important;
    }
    .chat-bubble {
        font-size: 0.74rem !important;
        padding: 5px 8px !important;
    }
    .mini-app-mockup {
        padding: 5px 8px !important;
        margin: 4px 0 !important;
        gap: 3px !important;
    }
    .mockup-header {
        font-size: 0.6rem !important;
        margin-bottom: 1px !important;
        padding-bottom: 2px !important;
    }
    .mockup-chat-stream {
        gap: 2px !important;
    }
    .mockup-bubble {
        padding: 4px 8px !important;
        font-size: 0.72rem !important;
    }
    .mockup-chat-name {
        font-size: 0.6rem !important;
        margin-bottom: 1px !important;
    }
    .flip-trigger-badge {
        padding: 5px 12px;
        font-size: 0.76rem;
    }
    .flip-back-footer {
        gap: 6px;
        margin-top: auto;
        padding-top: 4px;
    }
    .flip-back-footer .card-cta-btn {
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
    }
    .flip-back-close {
        padding: 6px 8px !important;
        font-size: 0.73rem !important;
        white-space: nowrap;
    }
}

/* Details Grid Section (Progressive Disclosure - iOS Style Drawer) */
.details-section {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl) auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.details-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: left;
}

.details-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold);
}

.details-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--gold-light);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-card-icon span {
    font-size: 1.5rem;
}

.details-card h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0;
}

.details-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    flex: 1;
}

.details-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.details-link span {
    font-size: 1rem;
}

/* Drawers & Backdrops for Spec Sheets */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    opacity: 0;
    pointer-events: none;
    z-index: 1500;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.spec-drawer {
    position: fixed;
    background-color: var(--surface);
    z-index: 2000;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .spec-drawer {
        top: 0;
        right: 0;
        width: 460px;
        height: 100vh;
        transform: translateX(100%);
        border-left: 1px solid rgba(29, 29, 31, 0.08);
    }
}

@media (max-width: 767px) {
    .spec-drawer {
        bottom: 0;
        left: 0;
        right: 0;
        height: 75vh;
        width: 100%;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateY(100%);
    }
}

.spec-drawer.active {
    transform: none !important;
}

.drawer-header {
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    color: var(--text-main);
}

.close-drawer-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.drawer-body {
    padding: var(--space-lg);
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.spec-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.spec-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.spec-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th, .spec-table td {
    padding: 10px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(29, 29, 31, 0.06);
    text-align: left;
}

.spec-table th {
    font-weight: 600;
    color: var(--text-muted);
    width: 40%;
}

.spec-table td {
    color: var(--text-main);
}

/* Features grid elements */
.features {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--gold-light);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.feature-icon-wrapper span {
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Interactive Calculator */
.interactive-calculator {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    align-items: center;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.input-group label {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.25rem;
    margin-left: 4px;
}

/* Range Slider */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(197, 160, 89, 0.25);
    outline: none;
    transition: background 0.3s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: hsl(40, 52%, 48%);
}

.input-hint {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Custom Checkbox */
.check-group {
    margin-top: var(--space-xs);
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    user-select: none;
    color: var(--text-main);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--gold-light);
    border-radius: 4px;
    border: 1px solid var(--gold);
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(197, 160, 89, 0.2);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Calculator Result Card */
.calculator-result {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: var(--transition-smooth);
}

.result-badge {
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--gold-light);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.calculator-result h3 {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: var(--space-xs);
}

.result-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.calculator-result p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

/* Tactile scale animation and glow shadow */
.tactile-bump {
    animation: tactileBounce 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.4);
}

@keyframes tactileBounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 24px rgba(197, 160, 89, 0.35);
    }
    100% {
        transform: scale(1);
    }
}

.active-recommend {
    border: 3px solid var(--gold) !important;
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15) !important;
}

/* Hide the static badge when this card is actively recommended to avoid overlap */
.pricing-card.active-recommend .card-badge {
    display: none !important;
}

.active-recommend::after {
    content: attr(data-badge);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.3);
    white-space: nowrap;
}

/* Pricing Card (Highlight) */
.pricing {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: var(--space-lg);
    max-width: 1040px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-2xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card.premium-card {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-medium);
}

.pricing-card.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--gold), var(--rose-gold-tint));
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.pricing-header h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: var(--space-sm);
}

.price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: var(--space-xs);
}

.price span {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features li.disabled {
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-features .icon {
    font-size: 1.25rem;
    color: #5C9468;
}

.pricing-features .icon.gold {
    color: var(--gold);
}

.pricing-features li.disabled .icon {
    color: #C36A6A;
}

/* FAQ Accordion Section (Thin borders) */
.faq-section {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
}

.faq-accordion {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
    transition: border-bottom-color 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    padding: var(--space-md) 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-arrow {
    color: var(--text-light);
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-bottom: var(--space-md);
    line-height: 1.6;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--gold);
}

/* CTA Bottom Section */
.cta-bottom {
    padding: var(--space-4xl) 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
    text-align: center;
}

.cta-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-3xl) var(--space-2xl);
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-container h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: var(--space-md);
    color: #ffffff;
}

.cta-container p {
    font-size: 1.15rem;
    color: #B4AEAB;
    max-width: 600px;
    margin: 0 auto var(--space-xl) auto;
}

/* ==========================================================================
   Dynamic Premium Dark Mode Overrides (Strict SPECIFICITY values for readability)
   ========================================================================== */

body.dark-active {
    color: #ECEAE9 !important;
}

body.dark-active h1, 
body.dark-active h2, 
body.dark-active h3, 
body.dark-active h4, 
body.dark-active label,
body.dark-active .logo-text {
    color: #ffffff !important;
}

body.dark-active .section-subtitle {
    color: #B4AEAB !important;
}

body.dark-active .input-hint {
    color: #8E8E93 !important;
}

body.dark-active .faq-arrow {
    color: var(--gold) !important;
}

/* Cards & Containers Override in Dark Active */
body.dark-active .calculator-container,
body.dark-active .calculator-result,
body.dark-active .pricing-card,
body.dark-active .feature-card,
body.dark-active .comparison-card {
    background-color: #1C1C1E !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25) !important;
}

body.dark-active .comparison-card.positive {
    background-color: #242426 !important;
    border: 2px solid var(--gold) !important;
}

body.dark-active .comparison-card h3 {
    color: #ffffff !important;
}

body.dark-active .comparison-card.positive h3 {
    color: var(--gold) !important;
}

body.dark-active .comparison-card li,
body.dark-active .feature-card p,
body.dark-active .pricing-features li,
body.dark-active .calculator-result p,
body.dark-active .faq-answer p {
    color: #ECEAE9 !important;
}

body.dark-active .pricing-features li.disabled {
    color: #6E6E73 !important;
}

body.dark-active .pricing-features li.disabled .icon {
    color: rgba(195, 106, 106, 0.4) !important;
}

body.dark-active .feature-card h3,
body.dark-active .pricing-header h3,
body.dark-active .price,
body.dark-active .calculator-result h3 {
    color: #ffffff !important;
}

/* Slider Track override in dark mode */
body.dark-active input[type="range"] {
    background: rgba(255, 255, 255, 0.15) !important;
}

/* SSS / FAQ overrides in dark active mode */
body.dark-active .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

body.dark-active .faq-question {
    color: #ffffff !important;
}

body.dark-active .faq-question:hover {
    color: var(--gold) !important;
}

body.dark-active .faq-arrow {
    color: var(--gold) !important;
}

body.dark-active .faq-answer p {
    color: #B4AEAB !important;
}

/* ==========================================================================
   Footer Overrides (Always Dark)
   ========================================================================== */

footer {
    background-color: #0B0B0C;
    color: #ECEAE9;
    padding: var(--space-3xl) 0 0 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-brand .logo {
    color: #ffffff;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #B4AEAB;
    line-height: 1.7;
    max-width: 85%;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

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

.footer-contact p {
    font-size: 0.9rem;
    color: #B4AEAB;
    margin-bottom: var(--space-md);
}

.email-link {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.email-link:hover {
    color: var(--gold);
    border-bottom-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #8C8683;
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Interactive elements */
.interactive-phone {
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}

.interactive-item {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.interactive-item:hover {
    transform: scale(1.02);
    border-color: var(--gold);
    background-color: var(--gold-light);
}

.mockup-hint {
    font-size: 0.62rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: auto;
    text-align: center;
    padding-top: 4px;
}

/* Responsive Breakpoints */
@media (max-width: 767px) {
    /* Mobile layout degradation for pinned elements */
    .unified-story-section {
        height: auto !important;
        overflow: visible !important;
    }
    
    .story-container {
        grid-template-columns: 1fr !important;
        gap: var(--space-2xl) !important;
        height: auto !important;
    }
    
    .story-content-left {
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-2xl) !important;
    }
    
    .story-slide-hero {
        position: relative !important;
        max-width: 100% !important;
    }
    
    .showcase-slide-text {
        position: relative !important;
        opacity: 1 !important;
        transform: none !important;
        display: block !important;
        max-width: 100% !important;
        margin-bottom: var(--space-xl);
    }
    
    .story-content-right-placeholder {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .faq-accordion {
        padding: 0 var(--space-md);
    }
    
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.95rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .hero-lead {
        max-width: 100%;
    }
    
    .store-buttons {
        justify-content: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 8px 0;
    }
    .logo-text {
        font-size: 0.98rem !important;
    }
    .nav-brand-logo {
        width: 24px !important;
        height: 24px !important;
        margin-right: 5px !important;
    }
    .navbar .nav-cta .btn {
        padding: 6px 13px !important;
        font-size: 0.73rem !important;
        font-weight: 700 !important;
        border-radius: 20px !important;
        letter-spacing: 0.01em !important;
        white-space: nowrap !important;
        box-shadow: 0 2px 8px rgba(184, 134, 11, 0.2) !important;
        line-height: 1.2 !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: var(--space-xl) 0;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* High-Fidelity Modal Bottom Sheet matching Flutter app showModalBottomSheet */
.mockup-bottom-sheet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mockup-bottom-sheet.active {
    pointer-events: auto;
}

.sheet-scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.mockup-bottom-sheet.active .sheet-scrim {
    opacity: 1;
    pointer-events: auto;
}

.sheet-container {
    position: relative;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-height: 80%;
    padding: 8px 16px 20px 16px;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1001;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

.mockup-bottom-sheet.active .sheet-container {
    transform: translateY(0);
}

/* Drag handle bar at top of sheet */
.sheet-drag-handle {
    width: 36px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin: 0 auto 16px auto;
}

.sheet-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Accent icon (gold heart matching tertiary color Scheme) */
.sheet-icon-circle {
    width: 42px;
    height: 42px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A227;
    margin-bottom: 12px;
}

.sheet-icon-circle .heart-svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.sheet-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.sheet-subtitle {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0 0 18px 0;
    line-height: 1.4;
    padding: 0 8px;
}

/* Golden Code Box (Copy trigger) */
.sheet-code-card {
    width: 100%;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 14px;
    transition: background-color 0.2s ease;
}

.sheet-code-card:hover {
    background: rgba(201, 162, 39, 0.14);
}

.sheet-code-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #C9A227;
    letter-spacing: 0.5px;
}

.sheet-code-card .copy-icon {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #C9A227;
    stroke-width: 2.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Send button (FilledButton.icon) matching M3 primary style */
.sheet-send-btn {
    width: 100%;
    background: #8B5A5A;
    color: #ffffff;
    border: none;
    border-radius: 20px; /* M3 pill shape */
    height: 40px; /* M3 standard compact height */
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 4px;
}

.sheet-send-btn:hover {
    background: #754B4B;
}

.sheet-send-btn:active {
    transform: scale(0.98);
}

.sheet-send-btn .link-icon {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Compact Toast SnackBar */
.mockup-toast {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 20px);
    background: rgba(29, 29, 31, 0.95);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1100;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.mockup-toast.active {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Automatic Click Ripple Indicator inside Phone Mockup */
.auto-tap-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    background: rgba(201, 162, 39, 0.6); /* More visible gold tint */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    z-index: 10;
}

/* Tap ripple keyframe trigger class */
.auto-tap-ripple.trigger {
    animation: tap-ripple-anim 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes tap-ripple-anim {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.6); /* Larger expansion scale */
        opacity: 0;
    }
}

/* Visual pressed state for simulated clicks */
.assignee-capsule-row.tap-active {
    transform: scale(0.96) !important;
    background: rgba(29, 29, 31, 0.08) !important;
    border-color: rgba(201, 162, 39, 0.4) !important;
}

.cohost-heart-btn.tap-active {
    transform: scale(0.85) !important;
    background: rgba(201, 162, 39, 0.25) !important;
}

/* Central Alert Dialog for Co-Host Creation */
.mockup-dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    box-sizing: border-box;
    padding: 20px;
}

.mockup-dialog-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mockup-dialog-overlay .dialog-container {
    background: #ffffff;
    border-radius: 14px;
    width: 90%;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    text-align: left;
    transform: scale(0.9);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mockup-dialog-overlay.active .dialog-container {
    transform: scale(1);
}

.dialog-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 6px 0;
    text-align: center;
}

.dialog-subtitle {
    font-size: 0.68rem;
    color: #86868b;
    margin: 0 0 14px 0;
    text-align: center;
    line-height: 1.3;
}

.dialog-input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dialog-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dialog-input-box {
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.72rem;
    color: #1d1d1f;
    font-weight: 500;
}

.dialog-actions-row {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
}

.dialog-btn {
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
}

.dialog-btn.cancel-btn {
    background: transparent;
    color: #8B5A5A;
}

.dialog-btn.confirm-btn {
    background: #8B5A5A;
    color: #ffffff;
    transition: background-color 0.2s ease;
}

.dialog-btn.confirm-btn:hover {
    background: #754B4B;
}

.dialog-btn.confirm-btn.tap-active {
    transform: scale(0.95) !important;
    background: #754B4B !important;
}

/* ==========================================================================
   Premium Navbar Micro-Animations & Scroll Effects
   ========================================================================== */

/* Thinner state on scroll */
.navbar.navbar-scrolled {
    padding: var(--space-xs) 0 !important; /* 8px padding */
    background: rgba(250, 248, 246, 0.96) !important;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02) !important;
}

/* Sliding underline hover animation for navbar links */
.nav-links a {
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

/* Metallic sheen shine sweep animation for CTA button */
.navbar .btn-primary {
    position: relative;
    overflow: hidden;
}
.navbar .btn-primary::before {
    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.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}
.navbar .btn-primary:hover::before {
    animation: shineSweep 0.85s ease-in-out forwards;
}
@keyframes shineSweep {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* Heart pulsating micro-animation for the logo icon on hover */
.logo {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.logo:hover {
    transform: translateY(-0.5px);
}
.logo:hover .gold-icon {
    animation: heartBeatGlow 1.4s infinite alternate ease-in-out;
}
@keyframes heartBeatGlow {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(201, 162, 39, 0)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.5)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(201, 162, 39, 0)); }
}

/* Dark mode support for navbar */
body.dark-active .navbar {
    background: rgba(11, 11, 12, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
body.dark-active .navbar.navbar-scrolled {
    background: rgba(11, 11, 12, 0.93) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25) !important;
}
body.dark-active .nav-links a {
    color: #B4AEAB !important;
}
body.dark-active .nav-links a:hover {
    color: var(--gold) !important;
}

/* Dark mode overrides for outline buttons (pricing cards) */
body.dark-active .btn-outline {
    color: #ffffff !important;
    border-color: rgba(201, 162, 39, 0.7) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}
body.dark-active .btn-outline:hover {
    background-color: var(--gold) !important;
    color: #ffffff !important;
    border-color: var(--gold) !important;
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.25) !important;
}

/* Dark mode overrides for details cards */
body.dark-active .details-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}
body.dark-active .details-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}
body.dark-active .details-card-icon {
    background-color: rgba(201, 162, 39, 0.12) !important;
    color: var(--gold) !important;
}
body.dark-active .details-card p {
    color: #B4AEAB !important;
}

/* Mobile-only responsive step mockup layouts */
.mobile-only-mockup {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only-mockup {
        display: block;
        width: 100%;
        margin: var(--space-md) auto 0 auto;
        text-align: center;
    }
    
    .phone-frame-mini {
        width: 250px;
        height: 480px;
        background-color: #1A1919;
        border: 8px solid #2C2A29;
        border-radius: 32px;
        box-shadow: var(--shadow-medium);
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    
    .phone-screen-mini {
        width: 100%;
        height: 100%;
        background-color: var(--surface);
        border-radius: 24px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        font-family: var(--font-body);
        color: var(--text-main);
        text-align: left;
    }
}

/* Redesigned Premium Calculator layout elements */
.calculator-inputs-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.calc-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: var(--space-xs);
}

/* Ceremony Tag Grid */
.ceremony-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xs);
}

.ceremony-tag {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    outline: none;
    font-family: var(--font-body);
}

.ceremony-tag:hover {
    border-color: var(--gold);
    background-color: var(--gold-light);
    transform: translateY(-1px);
}

.ceremony-tag.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

/* Team Selection Cards */
.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
}

.team-card {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.team-card span {
    color: var(--text-light);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.team-card h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 4px 0 0 0;
    color: var(--text-main);
}

.team-card p {
    font-size: 0.65rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.3;
}

.team-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: var(--shadow-soft);
}

.team-card.active {
    border-color: var(--gold);
    background-color: var(--gold-light);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.1);
}

.team-card.active span {
    color: var(--gold);
    transform: scale(1.1);
}

/* Custom switch toggle */
.inline-toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

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

.slider-round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .4s;
    border-radius: 34px;
}

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

input:checked + .slider-round {
    background-color: var(--gold);
}

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

/* Dark Mode Overrides */
body.dark-active .ceremony-tag {
    border-color: rgba(255, 255, 255, 0.08);
    color: #E2DFDD;
}

body.dark-active .ceremony-tag:hover {
    background-color: rgba(201, 162, 39, 0.1);
    border-color: var(--gold);
}

body.dark-active .ceremony-tag.active {
    background-color: var(--gold);
    color: #ffffff;
}

body.dark-active .team-card {
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-active .team-card h4 {
    color: #ffffff;
}

body.dark-active .team-card p {
    color: #8E8E93;
}

body.dark-active .team-card:hover {
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.02);
}

body.dark-active .team-card.active {
    border-color: var(--gold);
    background-color: rgba(201, 162, 39, 0.08);
}

body.dark-active .slider-round {
    background-color: rgba(255, 255, 255, 0.15);
}

body.dark-active .phone-frame-mini {
    background-color: #0b0b0c;
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-active .phone-screen-mini {
    background-color: #0F0F10;
}

body.dark-active .app-header-mini {
    background-color: #0F0F10 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Mobile Interactive Showcase Styles */
.mobile-interactive-showcase {
    display: none;
}

@media (max-width: 767px) {
    /* Hide desktop showcase step slides on mobile */
    .story-container .showcase-slide-text {
        display: none !important;
    }
    .mobile-interactive-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px var(--space-md);
        box-sizing: border-box;
        border-top: 1px solid var(--border-color);
        background-color: var(--surface);
    }
    
    .mobile-mockup-wrap {
        position: relative;
        width: 280px;
        margin: 0 auto 10px auto;
        overflow: visible !important;
        /* Default small screen sizes (under 360px viewport) */
        height: 302px;
    }
    
    #phoneMockupMobile {
        width: 280px;
        height: 550px;
        border-width: 9px;
        border-radius: 38px;
        box-shadow: var(--shadow-medium);
        position: absolute;
        top: 0;
        left: 0;
        transform: scale(0.52) !important;
        transform-origin: top center;
        pointer-events: auto;
    }
    
    /* Medium mobile screen sizes (viewport >= 360px) */
    @media (min-width: 360px) {
        .mobile-mockup-wrap {
            height: 349px;
        }
        #phoneMockupMobile {
            transform: scale(0.60) !important;
        }
    }
    
    /* Large mobile screen sizes (viewport >= 400px) */
    @media (min-width: 400px) {
        .mobile-mockup-wrap {
            height: 396px;
        }
        #phoneMockupMobile {
            transform: scale(0.68) !important;
        }
    }
    
    /* Active step texts styles inside swiper */
    .mobile-slide-text {
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .mobile-slide-text.active {
        display: block;
        opacity: 1;
    }
    
    .flow-dot {
        background-color: rgba(29, 29, 31, 0.15) !important;
    }
    
    .flow-dot.active {
        background-color: var(--gold) !important;
        transform: scale(1.2);
    }
    
    /* Dark mode support */
    body.dark-active .mobile-interactive-showcase {
        border-top-color: rgba(255, 255, 255, 0.06);
        background-color: #0B0B0C;
    }
    
    body.dark-active .mobile-flow-text-card {
        background-color: rgba(255, 255, 255, 0.02) !important;
        border-color: rgba(255, 255, 255, 0.06) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    }
    
    body.dark-active .flow-dot {
        background-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    body.dark-active .flow-dot.active {
        background-color: var(--gold) !important;
    }
    
    body.dark-active .flow-nav-btn {
        background-color: rgba(255, 255, 255, 0.04) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
    }
    
    body.dark-active #phoneMockupMobile {
        background-color: #0b0b0c !important;
        border-color: rgba(255, 255, 255, 0.06) !important;
    }
}

/* ============================================================
   NEW INTERACTIVE MODULES (RSVP Sim, Timeline, Surprise Guard, Templates)
   ============================================================ */

/* 1. RSVP Showcase Simulator */
.rsvp-showcase-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.8) 0%, rgba(20, 18, 15, 0.95) 100%);
    border-top: 1px solid rgba(184, 134, 11, 0.15);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.rsvp-sim-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.rsvp-sim-controls {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 36px;
}

.rsvp-sim-controls h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 12px;
}

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

.sim-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.sim-input-group label {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
}

.sim-input-group input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.sim-input-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.25);
}

.sim-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sim-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sim-info-item span {
    color: var(--gold);
    font-size: 1.4rem;
}

.sim-info-item strong {
    color: #ffffff;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 2px;
}

.sim-info-item p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
}

/* Phone Simulator Frame */
/* Phone Simulator Frame */
.rsvp-sim-phone-wrap {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.sim-phone-frame,
.rsvp-sim-frame-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    position: relative !important;
    width: min(340px, 92vw) !important;
    height: 650px !important;
    margin: 0 auto !important;
    background: #111010 !important;
    border: 10px solid #2d2b29 !important;
    border-radius: 48px !important;
    padding: 10px !important;
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.4), inset 0 0 10px rgba(0, 0, 0, 0.9), 0 25px 65px rgba(0, 0, 0, 0.8) !important;
    box-sizing: border-box !important;
}

.sim-phone-notch {
    width: 95px !important;
    height: 22px !important;
    background: #000000 !important;
    border-radius: 20px !important;
    margin: 4px auto 12px auto !important;
    position: relative !important;
    z-index: 10 !important;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1) !important;
    flex-shrink: 0 !important;
}

/* Isolated Iframe Simulator Preview (Guarantees 100% Faithful Replica of rsvp.html) */
.sim-phone-screen {
    width: 100% !important;
    height: calc(100% - 38px) !important;
    flex: 1 !important;
    background-color: #FAF7F2 !important;
    border-radius: 36px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: relative !important;
}

.sim-iframe-preview {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 36px !important;
    display: block !important;
    background: #FAF7F2 !important;
}

.sim-phone-actions {
    margin-top: 16px !important;
    text-align: center !important;
}

.sim-open-live-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #B8860B 0%, #9A6E00 100%) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35) !important;
    transition: all 0.25s ease !important;
}

.sim-open-live-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(184, 134, 11, 0.45) !important;
}

.rsvp-prefix-real {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    font-size: 1.15rem !important;
    color: #C59B27 !important;
    display: block !important;
    margin-bottom: 2px !important;
}

.rsvp-guest-name-real {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.85rem !important;
    font-weight: 700 !important;
    color: #1C1917 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.2 !important;
}

.rsvp-diamond-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 8px 0 16px 0 !important;
}

.rsvp-diamond-divider::before,
.rsvp-diamond-divider::after {
    content: '' !important;
    height: 1px !important;
    width: 36px !important;
    background: linear-gradient(90deg, transparent, rgba(197, 155, 39, 0.4), transparent) !important;
}

.rsvp-diamond-divider span {
    color: #C59B27 !important;
    font-size: 0.65rem !important;
}

.rsvp-box-real {
    background-color: #FAF3E8 !important;
    border: 1px solid rgba(197, 155, 39, 0.25) !important;
    border-radius: 22px !important;
    padding: 20px 14px !important;
    margin-bottom: 16px !important;
    text-align: center !important;
}

.rsvp-venue-name-real {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #1C1917 !important;
    margin: 0 0 4px 0 !important;
}

.rsvp-couple-subtitle-real {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    font-size: 1.05rem !important;
    color: #C59B27 !important;
    margin-bottom: 10px !important;
}

.rsvp-date-row-real {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #57534E !important;
    margin-bottom: 4px !important;
}

.rsvp-date-row-real span.material-icons-round {
    color: #C59B27 !important;
    font-size: 0.95rem !important;
}

.rsvp-location-inner-real {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(197, 155, 39, 0.2) !important;
    border-radius: 16px !important;
    padding: 14px 10px !important;
    margin: 12px 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
}

.rsvp-location-address-real {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.88rem !important;
    color: #1C1917 !important;
}

.rsvp-location-address-real span.material-icons-round {
    color: #C59B27 !important;
    font-size: 1.1rem !important;
}

.rsvp-map-btn-real {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    background: #C59B27 !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(197, 155, 39, 0.25) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.rsvp-party-chip-real {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #C59B27 !important;
    background-color: #FFFFFF !important;
    border: 1.5px solid rgba(197, 155, 39, 0.5) !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    margin-top: 6px !important;
}

.rsvp-party-chip-real span.material-icons-round {
    font-size: 0.95rem !important;
}

.rsvp-box-title-real {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1C1917 !important;
    margin: 0 0 4px 0 !important;
}

.rsvp-timeline-list-real {
    border-left: 2px solid #C59B27 !important;
    padding-left: 14px !important;
    margin-left: 24px !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 10px !important;
}

.rsvp-tl-item-real {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 0.8rem !important;
}

.rsvp-tl-time-real {
    font-weight: 700 !important;
    color: #C59B27 !important;
    min-width: 42px !important;
}

.rsvp-tl-desc-real {
    font-weight: 700 !important;
    color: #1C1917 !important;
}

.sim-tl-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--gold);
}

.sim-tl-text {
    color: var(--text-secondary);
}

/* 2. Timeline Showcase */
.timeline-showcase-section {
    padding: 100px 0;
}

.timeline-interactive-container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.timeline-nodes::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1A1A1D;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.timeline-node.active .timeline-dot {
    background: var(--gold);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.6);
    transform: scale(1.3);
}

.timeline-node.active .timeline-time,
.timeline-node.active .timeline-title {
    color: var(--gold-light);
}

.timeline-detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
}

.node-badge-time {
    background: var(--gold);
    color: #000000;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 4px 12px;
    border-radius: 12px;
}

.timeline-card-header h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
}

.timeline-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tl-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tl-info-row span.material-icons-round {
    color: var(--gold);
    font-size: 1.2rem;
}

.tl-info-row.gold strong {
    color: var(--gold-light);
}

/* 3. Surprise Guard Simulator */
.surprise-sim-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.surprise-toggle-container {
    max-width: 680px;
    margin: 40px auto 0;
}

.surprise-toggle-btn-wrap {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 6px;
    gap: 6px;
    margin-bottom: 24px;
}

.surprise-toggle-btn {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.surprise-toggle-btn.active {
    background: var(--gold);
    color: #000000;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.surprise-card-view {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold-border);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(12px);
}

.surprise-status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.surprise-status-badge.locked {
    background: rgba(184, 76, 76, 0.2);
    color: #E57373;
    border: 1px solid rgba(184, 76, 76, 0.3);
}

.surprise-status-badge.unlocked {
    background: rgba(58, 133, 88, 0.2);
    color: #82C38F;
    border: 1px solid rgba(58, 133, 88, 0.3);
}

.surprise-content-box {
    transition: all 0.4s ease;
}

.surprise-content-box.bride-blurred {
    filter: blur(4px);
    opacity: 0.5;
    pointer-events: none;
}

.surprise-content-box h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.surprise-content-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.surprise-detail-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.surprise-detail-chips .chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
}

.surprise-detail-chips .chip.active {
    background: rgba(184, 134, 11, 0.15);
    border-color: var(--gold-border);
    color: var(--gold-light);
}

/* 4. Preset Templates Showcase */
.templates-showcase-section {
    padding: 100px 0;
}

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

.template-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.3s ease;
}

.template-card.featured {
    background: linear-gradient(145deg, rgba(28, 26, 22, 0.9) 0%, rgba(18, 17, 15, 0.95) 100%);
    border: 1px solid var(--gold-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(184, 134, 11, 0.15);
    transform: translateY(-8px);
}

.template-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-border);
}

.tpl-icon {
    font-size: 2.5rem;
}

.template-card h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0;
}

.tpl-badge {
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.tpl-badge.gold {
    background: rgba(184, 134, 11, 0.2);
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
}

.template-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.tpl-link {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.2s ease;
}

.tpl-link:hover {
    color: var(--gold-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .rsvp-sim-wrapper {
        grid-template-columns: 1fr;
    }
    .templates-grid {
        grid-template-columns: 1fr;
    }
    .timeline-nodes {
        overflow-x: auto;
        padding-bottom: 20px;
    }
}

/* ============================================================
   FLIP CARD CLICKABILITY HINTS & TRIGGER BADGES
   ============================================================ */

.section-flip-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 134, 11, 0.12);
    border: 1px solid var(--gold-border);
    padding: 8px 18px;
    border-radius: 20px;
    margin-top: 14px;
    color: var(--gold-light);
    font-size: 0.88rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gold-spin {
    color: var(--gold);
    animation: goldSpin 6s linear infinite;
}

@keyframes goldSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Trigger Badge on Card Front (Sade & Zarif) */
.flip-trigger-badge {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 6px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px dashed rgba(201, 162, 39, 0.35);
    border-radius: 20px;
    padding: 6px 14px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flip-card:hover .flip-trigger-badge {
    background: var(--gold);
    color: #000000;
    border-style: solid;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
    transform: translateY(-2px);
}

.icon-arrow {
    font-size: 0.95rem;
    transition: transform 0.4s ease;
}

.flip-card:hover .icon-arrow {
    transform: rotate(180deg);
}

/* Back Footer Layout */
.flip-back-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.flip-back-footer .card-cta-btn {
    flex: 1;
    margin-top: 0;
}

.flip-back-close {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.flip-back-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

/* ============================================================
   PRICING 50% DISCOUNT STYLES
   ============================================================ */

.pricing-offer-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(184, 134, 11, 0.3) 100%);
    border: 1px solid var(--gold-border);
    padding: 10px 22px;
    border-radius: 20px;
    margin-top: 16px;
    color: #ffffff;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.2);
}

.pricing-offer-banner span.material-icons-round {
    color: var(--gold);
    font-size: 1.2rem;
}

.old-price {
    font-size: 1.15rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    text-decoration: line-through;
    text-decoration-color: #E57373;
    text-decoration-thickness: 2px;
    margin-right: 8px;
    font-weight: 500 !important;
}

.discount-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(229, 115, 115, 0.2);
    color: #E57373;
    border: 1px solid rgba(229, 115, 115, 0.3);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.discount-badge.gold {
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 100%);
    color: #000000;
    border: none;
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.4);
}

/* ============================================================
   ÖZEL ASİSTANLAR SECTION STYLES
   ============================================================ */

.asistan-section {
    padding: var(--space-4xl) 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
}

.asistan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

@media (max-width: 992px) {
    .asistan-grid {
        grid-template-columns: 1fr;
    }
}

.asistan-card {
    background: rgba(22, 18, 18, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.asistan-card:hover {
    border-color: rgba(201, 162, 39, 0.55);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.18);
    transform: translateY(-4px);
}

.asistan-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.asistan-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.asistan-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gold-light);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.asistan-card h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.asistan-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.asistan-mockup {
    margin-top: auto;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
}

/* Music Mockup */
.mini-music-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 8px 0;
}

.music-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
}

.music-row.active {
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.music-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
}

.music-badge.gold {
    color: #F3E7D5;
}

.music-title {
    color: #ffffff;
    font-weight: 500;
}

.music-link-icon {
    font-size: 0.65rem;
    color: #82C38F;
}

.action-whatsapp-btn, .action-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
}

.action-whatsapp-btn {
    background: #25D366;
    color: #000000;
}

.action-pdf-btn {
    background: linear-gradient(135deg, #C9A227 0%, #B8860B 100%);
    color: #000000;
}

/* Dietary Mockup */
.mini-diet-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0;
}

.diet-chip {
    font-size: 0.72rem;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 600;
}

.diet-chip.veg { background: rgba(92, 148, 104, 0.18); color: #82C38F; border: 1px solid rgba(92, 148, 104, 0.3); }
.diet-chip.vgn { background: rgba(201, 162, 39, 0.18); color: var(--gold); border: 1px solid rgba(201, 162, 39, 0.3); }
.diet-chip.alg { background: rgba(195, 106, 106, 0.18); color: #C36A6A; border: 1px solid rgba(195, 106, 106, 0.3); }

/* Map & Timeline Mockup */
.mini-map-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.map-location-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.map-buttons-row {
    display: flex;
    gap: 6px;
}

.map-location-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-buttons-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.map-btn {
    font-size: 0.68rem;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-light);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.mini-timeline-nodes {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.time-pill {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 14px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.time-pill.gold {
    background: rgba(201, 162, 39, 0.22);
    color: var(--gold-light);
    border: 1px solid rgba(201, 162, 39, 0.4);
    font-weight: 700;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.2);
}

/* Proposal & Approval Mockup */
.mini-proposal-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}

.proposal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px;
    border-radius: 8px;
}

.proposal-text {
    font-size: 0.74rem;
    color: #ffffff;
    line-height: 1.3;
}

.proposal-btn.approve {
    font-size: 0.68rem;
    background: #2E7D32;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.host-approval-status {
    font-size: 0.7rem;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    padding: 6px;
    border-radius: 6px;
    text-align: center;
    border: 1px dashed rgba(201, 162, 39, 0.3);
}

/* ============================================================
   MASTER SHOWCASE STEPPER TABS (4 ADIMDA CANLI İMECE DENEYİMİ)
   ============================================================ */

.master-showcase-sticky-section {
    position: relative;
    height: 320vh; /* Smooth scroll track space for 4 stages */
    background: radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
}

.sticky-showcase-inner {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 20px;
}

/* Premium Tab Shimmer Pulse for Inactive Showcase Tabs */
.showcase-tab:not(.active) {
    animation: tab-gold-shimmer 3.5s infinite ease-in-out;
    border-color: rgba(201, 162, 39, 0.3) !important;
}

@keyframes tab-gold-shimmer {
    0%, 100% {
        box-shadow: 0 0 6px rgba(201, 162, 39, 0.15);
        border-color: rgba(201, 162, 39, 0.25);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 162, 39, 0.5), inset 0 0 12px rgba(201, 162, 39, 0.2);
        border-color: rgba(201, 162, 39, 0.7);
    }
}

.showcase-pipeline-btn.idle-pulse {
    animation: pipeline-gold-pulse 2s infinite;
}

@keyframes pipeline-gold-pulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.8); }
    70% { box-shadow: 0 0 0 16px rgba(201, 162, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}

.pipeline-icon {
    font-size: 1.1rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.showcase-pipeline-btn:hover .pipeline-icon {
    color: #000000;
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .showcase-pipeline-btn-wrap {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    .showcase-pipeline-btn {
        width: 100%;
        justify-content: center;
    }
}



.showcase-tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

/* Master Showcase Section Layout & Premium Header Card */
.master-showcase-section {
    padding-top: 60px;
    padding-bottom: 30px;
    margin-top: 40px;
}

.showcase-header-card {
    background: linear-gradient(135deg, rgba(26, 21, 21, 0.85) 0%, rgba(18, 14, 14, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 24px;
    padding: 24px 28px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(212, 175, 55, 0.08);
    box-sizing: border-box;
}

.showcase-header-card h2 {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
    margin: 8px 0 0 0;
    line-height: 1.3;
}

/* Luxury Gold Pill Tag Badge & Gradient Text */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(255, 248, 230, 0.25) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.08);
    margin-bottom: 4px;
}

.text-gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
    .showcase-tabs-nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .master-showcase-section {
        padding-top: 44px;
        padding-bottom: 20px;
        margin-top: 28px;
    }
    .showcase-header-card {
        padding: 18px 16px;
        border-radius: 20px;
        margin-bottom: 14px;
    }
    .showcase-header-card h2 {
        font-size: 1.32rem !important;
        line-height: 1.25 !important;
        margin-top: 6px !important;
    }
    .section-tag {
        font-size: 0.7rem !important;
        padding: 5px 13px !important;
        margin-bottom: 4px !important;
    }
    #master-showcase .section-subtitle {
        display: none !important;
    }
    #neden-imece .section-header {
        display: none !important;
    }
    .showcase-tabs-nav {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 4px !important;
        margin-top: 14px !important;
        background: rgba(18, 14, 14, 0.75);
        border: 1px solid rgba(201, 162, 39, 0.25);
        border-radius: 18px;
        padding: 5px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .showcase-tab {
        padding: 8px 3px !important;
        border-radius: 14px !important;
        border: none !important;
        background: transparent !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
        text-align: center !important;
        box-shadow: none !important;
        min-height: 52px;
    }
    .showcase-tab.active {
        background: linear-gradient(135deg, var(--gold) 0%, #A8841B 100%) !important;
        box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35) !important;
    }
    .showcase-tab .tab-num {
        font-size: 0.68rem !important;
        opacity: 0.9;
        margin: 0 !important;
    }
    .showcase-tab.active .tab-num {
        color: #000000 !important;
        font-weight: 800 !important;
    }
    .showcase-tab .tab-icon {
        font-size: 1.15rem !important;
        margin: 0 !important;
    }
    .showcase-tab.active .tab-icon {
        color: #000000 !important;
    }
    .showcase-tab .tab-label {
        font-size: 0.62rem !important;
        line-height: 1.1 !important;
        font-weight: 700 !important;
        color: rgba(255, 255, 255, 0.85);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .showcase-tab.active .tab-label {
        color: #000000 !important;
    }
    .showcase-tab-progress {
        display: none !important;
    }
}

.showcase-tab {
    position: relative;
    background: rgba(22, 18, 18, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    text-align: left;
}

.showcase-tab:hover {
    border-color: rgba(201, 162, 39, 0.5);
    background: rgba(30, 24, 24, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.15);
}

.showcase-tab.active {
    background: rgba(35, 28, 28, 0.95);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.25);
}

.showcase-tab-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold) 0%, #F3E7D5 100%);
    transition: width 0.3s ease;
}

.showcase-tab.active .showcase-tab-progress {
    width: 100%;
}

.tab-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.8;
}

.tab-icon {
    font-size: 1.4rem;
    color: var(--gold-light);
}

.showcase-tab.active .tab-icon {
    color: var(--gold);
}

.tab-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.showcase-panels-wrapper {
    margin-top: 24px;
    position: relative;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 20px;
}

.showcase-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Showcase Guided Tour Next Step Bar */
.showcase-next-step-bar {
    margin-top: 36px;
    background: rgba(24, 18, 18, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 20px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.next-step-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-indicator-badge {
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.step-guide-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.showcase-next-step-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
    color: #000000;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.showcase-next-step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.6);
    background: linear-gradient(135deg, #F0E68C 0%, var(--gold) 100%);
}

@media (max-width: 768px) {
    .showcase-next-step-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 18px 18px;
    }
    .next-step-info {
        flex-direction: column;
        gap: 8px;
    }
    .showcase-next-step-btn {
        justify-content: center;
        width: 100%;
}

/* Hero Section Gold Wax Seal Brand Badge */
.hero-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px 6px 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14) 0%, rgba(255, 248, 230, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 22px;
    box-shadow: 
        0 4px 16px rgba(184, 134, 11, 0.12),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
}

.hero-brand-badge:hover {
    border-color: rgba(212, 175, 55, 0.65);
    box-shadow: 
        0 8px 24px rgba(184, 134, 11, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.hero-seal-img {
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.35));
    transition: transform 0.35s ease;
}

.hero-brand-badge:hover .hero-seal-img {
    transform: scale(1.1) rotate(5deg);
}

.hero-badge-title {
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.hero-badge-sep {
    font-size: 0.75rem;
    color: rgba(212, 175, 55, 0.5);
}

.hero-badge-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    .hero-brand-badge {
        padding: 5px 14px 5px 6px;
        gap: 6px;
        margin-bottom: 16px;
    }
    .hero-seal-img {
        width: 34px;
        height: 34px;
        max-width: 34px;
        max-height: 34px;
    }
    .hero-badge-title {
        font-size: 0.78rem;
    }
    .hero-badge-subtitle {
        font-size: 0.66rem;
    }
}





