/* ================================================
   CashAir - Exclusieve Salonsoftware
   Custom Stylesheet
   ================================================ */

/* ------------------------------------------------
   CSS Variables & Theme
   ------------------------------------------------ */
:root {
    /* Primary Colors */
    --navy: #1a2b4a;
    --navy-dark: #0f1a2e;
    --navy-light: #2a3f5f;
    
    /* Accent Colors */
    --gold: #c9a962;
    --gold-light: #d4bb7a;
    --gold-dark: #b8944a;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    
    /* Status Colors */
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --section-padding-sm: 60px 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(26, 43, 74, 0.08);
    --shadow-md: 0 5px 25px rgba(26, 43, 74, 0.12);
    --shadow-lg: 0 15px 50px rgba(26, 43, 74, 0.15);
    --shadow-gold: 0 5px 25px rgba(201, 169, 98, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
}

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ------------------------------------------------
   Utility Classes
   ------------------------------------------------ */
.text-gold {
    color: var(--gold) !important;
}

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

.bg-navy {
    background-color: var(--navy) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ------------------------------------------------
   Buttons
   ------------------------------------------------ */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-navy:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

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

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* ------------------------------------------------
   Navigation
   ------------------------------------------------ */
.navbar {
    padding: 15px 0;
    transition: all var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 43, 74, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 8px 16px;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--navy);
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--radius-md);
    }
}

/* ------------------------------------------------
   Hero Section
   ------------------------------------------------ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.2);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.stat-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

.hero-image {
    width: 100%;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.hero-floating-card i {
    font-size: 1.2rem;
}

.hero-floating-card.card-1 {
    bottom: 30%;
    left: -20px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    top: 20%;
    right: -10px;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-indicator a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ------------------------------------------------
   Problem Section
   ------------------------------------------------ */
.problem-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    height: 100%;
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.problem-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ------------------------------------------------
   Solution Section
   ------------------------------------------------ */
.solution-section {
    padding: var(--section-padding);
    background: var(--white);
}

.solution-image-stack {
    position: relative;
    padding: 40px;
}

.solution-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.solution-img.img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    opacity: 0.6;
    transform: rotate(-3deg);
}

.solution-img.img-front {
    position: relative;
    width: 90%;
    margin-left: 10%;
    transform: rotate(2deg);
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.solution-list li i {
    margin-top: 4px;
    font-size: 1.2rem;
}

/* ------------------------------------------------
   Features Section
   ------------------------------------------------ */
.features-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    height: 100%;
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    transition: height var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.6rem;
    color: var(--gold-dark);
}

.feature-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.feature-details {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.feature-details li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.feature-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ------------------------------------------------
   Screenshots Section
   ------------------------------------------------ */
.screenshots-section {
    padding: var(--section-padding);
    background: var(--navy);
    color: var(--white);
}

.screenshots-section .section-title,
.screenshots-section .section-badge {
    color: var(--white);
}

.screenshots-section .section-badge {
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.screenshots-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

.screenshot-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/10;
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 43, 74, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.screenshot-overlay i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.screenshot-overlay span {
    color: var(--white);
    font-weight: 500;
    text-align: center;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

/* Screenshot Modal */
#screenshotModal .modal-content {
    background: var(--navy);
    border: none;
}

#screenshotModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#screenshotModal .modal-title {
    color: var(--white);
    font-family: var(--font-display);
}

/* ------------------------------------------------
   Approach Section
   ------------------------------------------------ */
.approach-section {
    padding: var(--section-padding);
    background: var(--white);
}

.approach-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.approach-card:hover {
    box-shadow: var(--shadow-md);
}

.approach-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.approach-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.approach-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.approach-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-icon i {
    font-size: 1.3rem;
    color: var(--navy);
}

/* Development Cards */
.development-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
    height: 100%;
}

.dev-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dev-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.development-card h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.development-card p {
    color: rgba(255, 255, 255, 0.8);
}

.dev-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.dev-benefits li i {
    color: var(--gold);
}

/* ------------------------------------------------
   Pricing Section
   ------------------------------------------------ */
.pricing-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--light-gray);
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 24px;
    border-radius: 50px;
}

.pricing-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-soon {
    font-size: 1.3rem;
    color: var(--gold-dark);
    font-weight: 600;
    font-style: italic;
}

.pricing-description {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success);
    font-size: 1.1rem;
}

.pricing-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* ------------------------------------------------
   Waitlist Section
   ------------------------------------------------ */
.waitlist-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}

.waitlist-section .section-title {
    color: var(--white);
}

.waitlist-section .section-badge {
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.waitlist-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.waitlist-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.waitlist-card .form-label {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
}

.waitlist-card .form-control,
.waitlist-card .form-select {
    border: 1px solid var(--light-gray);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.waitlist-card .form-control:focus,
.waitlist-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

/* ------------------------------------------------
   Ideas Section
   ------------------------------------------------ */
.ideas-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.ideas-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--navy);
}

.benefit-item i {
    font-size: 1.3rem;
    color: var(--gold-dark);
}

.ideas-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.ideas-card .form-label {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
}

.ideas-card .form-control,
.ideas-card .form-select {
    border: 1px solid var(--light-gray);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.ideas-card .form-control:focus,
.ideas-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

/* ------------------------------------------------
   Contact Section
   ------------------------------------------------ */
.contact-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-info-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: var(--radius-md);
    height: 100%;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--navy);
}

.contact-info-card h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-info-card p {
    color: var(--medium-gray);
    margin: 0;
}

.contact-info-card a {
    color: var(--navy);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--gold-dark);
}

.contact-form-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-card h4 {
    font-size: 1.3rem;
}

.contact-form-card .form-label {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid var(--light-gray);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: all var(--transition-fast);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

/* ------------------------------------------------
   Footer
   ------------------------------------------------ */
.footer-section {
    background: var(--navy-dark);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo {
    height: 40px;
}

.footer-brand .brand-text {
    font-size: 1.3rem;
}

.footer-tagline {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-company {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-copyright {
    font-size: 0.85rem;
    margin: 0;
}

.footer-slogan {
    font-size: 0.9rem;
    color: var(--gold);
    font-style: italic;
    margin: 0;
}

/* ------------------------------------------------
   Back to Top Button
   ------------------------------------------------ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-5px);
}

/* ------------------------------------------------
   Form Validation States
   ------------------------------------------------ */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--danger);
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--success);
}

.invalid-feedback {
    color: var(--danger);
    font-size: 0.85rem;
}

/* ------------------------------------------------
   Alert Styles
   ------------------------------------------------ */
.alert {
    border: none;
    border-radius: var(--radius-sm);
    padding: 15px 20px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
}

/* ------------------------------------------------
   Loading Spinner
   ------------------------------------------------ */
.btn .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
    margin-right: 8px;
}

/* ------------------------------------------------
   Responsive Adjustments
   ------------------------------------------------ */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-image-wrapper {
        margin-top: 50px;
    }
    
    .hero-floating-card.card-1 {
        left: 10px;
    }
    
    .hero-floating-card.card-2 {
        right: 10px;
    }
    
    .solution-image-stack {
        padding: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .waitlist-card,
    .ideas-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
}

/* ------------------------------------------------
   Founder Section
   ------------------------------------------------ */
.founder-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}

.founder-section .section-title {
    color: var(--white);
}

.founder-section .section-badge {
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.founder-image-wrapper {
    position: relative;
    padding: 20px;
}

.founder-image-frame {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), rgba(201, 169, 98, 0.05));
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(201, 169, 98, 0.3);
}

.founder-placeholder {
    font-size: 8rem;
    color: rgba(201, 169, 98, 0.3);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold);
    color: var(--navy);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.founder-experience-badge .experience-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.founder-experience-badge .experience-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.founder-intro {
    margin-bottom: 20px;
}

.founder-intro .lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.founder-section p {
    color: rgba(255, 255, 255, 0.8);
}

.founder-quote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--gold);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.founder-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    margin: 0 0 10px;
    position: relative;
}

.founder-quote blockquote i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-right: 10px;
    opacity: 0.5;
}

.founder-quote cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gold);
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.credential-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ------------------------------------------------
   Demo Section
   ------------------------------------------------ */
.demo-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

/* Live Demo Block */
.live-demo-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    margin-top: 40px;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.live-demo-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

.live-demo-content {
    padding-right: 30px;
}

.live-demo-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.live-pulse {
    font-size: 0.5rem;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-demo-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.live-demo-content p {
    color: var(--medium-gray);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* Browser Frame Preview */
.live-demo-preview {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.live-demo-browser-frame {
    background: #f1f3f5;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--light-gray);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
}

.browser-dots span:first-child { background: #ff6b6b; }
.browser-dots span:nth-child(2) { background: #ffd43b; }
.browser-dots span:last-child { background: #51cf66; }

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    color: var(--medium-gray);
    font-family: monospace;
}

.live-demo-screenshot {
    display: block;
    position: relative;
    overflow: hidden;
}

.live-demo-screenshot img {
    width: 100%;
    display: block;
    transition: transform var(--transition-normal);
}

.live-demo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 43, 74, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    color: var(--white);
}

.live-demo-overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.live-demo-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

.live-demo-screenshot:hover img {
    transform: scale(1.03);
}

.live-demo-screenshot:hover .live-demo-overlay {
    opacity: 1;
}

/* Wizard Block */
.wizard-block {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--light-gray);
}

.wizard-block-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.wizard-block-subtitle {
    color: var(--medium-gray);
    font-size: 1rem;
}

.wizard-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 25px;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

a.wizard-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: inherit;
    text-decoration: none;
}

.wizard-card-number {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-card-body h5 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.wizard-card-body p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.wizard-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
}

a.wizard-card:hover .wizard-card-link {
    color: var(--navy);
}

.wizard-card-coming-soon {
    opacity: 0.6;
    border-style: dashed;
}

.wizard-card-coming-soon .wizard-card-number {
    background: var(--light-gray);
    color: var(--medium-gray);
}

/* Demo Divider */
.demo-divider {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.demo-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-gray);
}

.demo-divider span {
    position: relative;
    background: var(--off-white);
    padding: 0 25px;
    color: var(--medium-gray);
    font-size: 0.95rem;
    font-style: italic;
}

/* Persoonlijke demo kaarten */
.demo-option-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    height: 100%;
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all var(--transition-normal);
    position: relative;
}

.demo-option-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.demo-option-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.demo-option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.demo-option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.demo-option-icon i {
    font-size: 2rem;
    color: var(--gold-dark);
}

.demo-option-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.demo-option-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.demo-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--navy);
}

.demo-features li i {
    color: var(--success);
}

.demo-cta-text {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

/* Responsive live demo */
@media (max-width: 991.98px) {
    .live-demo-block {
        padding: 30px;
    }
    
    .live-demo-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .live-demo-content h3 {
        font-size: 1.6rem;
    }
}

/* Demo request box in waitlist form */
.demo-request-box {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.05));
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
}

.demo-request-box .form-check-label strong {
    color: var(--navy);
}

.demo-location-options {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 15px 20px;
}

.demo-location-options .form-check {
    padding: 10px 0;
    padding-left: 28px;
    border-bottom: 1px solid var(--light-gray);
}

.demo-location-options .form-check:last-child {
    border-bottom: none;
}

.demo-location-options .form-check-label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.demo-location-options .form-check-label i {
    color: var(--gold-dark);
}

/* ------------------------------------------------
   Print Styles
   ------------------------------------------------ */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .back-to-top,
    form,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }
    
    section {
        padding: 30px 0;
    }
}
