:root {
    /* Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --accent-primary: #FF6B35;
    --accent-secondary: #FFA07A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-tertiary: #606060;
    --border-color: #2a2a2a;
    --success-green: #4ECDC4;

    /* Legacy Compatibility */
    --bg-dark: var(--bg-primary);
    --primary-orange: var(--accent-primary);
    --primary-orange-hover: #FF8555;
    --text-white: var(--text-primary);
    --text-gray: var(--text-secondary);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-poppins: var(--font-heading);
    /* Legacy */
    --font-inter: var(--font-body);
    /* Legacy */

    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    --space-5xl: 100px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 18px;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
}

small,
.text-small {
    font-size: 14px;
}

/* Logo */
.logo {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 24px;
    color: var(--text-white);
    z-index: 100;
    display: flex;
    align-items: center;
    height: 40px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
    /* Top padding clears logo */
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Typography */
h1 {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 24px;
}

.subheadline {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 700px;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.btn {
    text-decoration: none;
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-white);
    padding: 16px 32px;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid #FFFFFF;
    padding: 14px 30px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Hero Image Mockup */
.hero-image-container {
    width: 100%;
    max-width: 1200px;
    height: auto;
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.dashboard-placeholder {
    width: 100%;
    height: 600px;
    background: #151515;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
    border: 1px solid #2a2a2a;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 48px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    padding-left: 20px;
    gap: 8px;
    border-bottom: 1px solid #2a2a2a;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.8;
}

.red {
    background: #FF5f57;
}

.yellow {
    background: #FEBC2E;
}

.green {
    background: #28C840;
}

.mockup-body {
    flex: 1;
    display: flex;
    background: #0f0f0f;
}

.sidebar {
    width: 56px;
    background: #121212;
    border-right: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    flex-shrink: 0;
}

.main-view {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

/* Abstract dashboard elements */
.dash-header {
    width: 100%;
    height: 60px;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.dash-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    flex: 1;
}

.dash-card {
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.card-lg {
    grid-row: span 2;
}

/* Social Proof Section */
.social-proof {
    background-color: #1a1a1a;
    padding: 40px 24px;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    text-align: center;
}

.trust-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 16px;
}

.logo-box {
    min-width: 110px;
    height: 60px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding: 0 12px;
    transition: all 0.3s ease;
}

.logo-box:hover {
    border-color: rgba(255, 107, 53, 0.3);
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 107, 53, 0.05);
}

.location-text {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 14px;
    color: #808080;
    margin-top: 8px;
}

/* Problem Section */
.problem-section {
    background-color: #1a1a1a;
    padding: 80px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-headline {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 48px;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem-card {
    background-color: var(--bg-dark);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.15);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 160, 122, 0.08));
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.problem-card h3 {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 16px;
}

.problem-card p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Feature Showcase Section */
.feature-showcase {
    background-color: var(--bg-dark);
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subheadline {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    color: var(--text-gray);
    margin-top: 16px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse>* {
    direction: ltr;
}

.feature-image {
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

/* Different placeholder styles for visual variety */
.dashboard-img::before {
    content: '📊 Dashboard';
    font-size: 24px;
    color: #444;
}

.whatsapp-img::before {
    content: '💬 WhatsApp';
    font-size: 24px;
    color: #444;
}

.compliance-img::before {
    content: '🛡️ Compliance';
    font-size: 24px;
    color: #444;
}

.calculator-img::before {
    content: '💰 Calculator';
    font-size: 24px;
    color: #444;
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 160, 122, 0.08));
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.feature-content h3 {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 32px;
    color: var(--text-white);
    margin-bottom: 16px;
}

.feature-content p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Scroll Animation States */
.feature-image {
    min-height: 420px;
    /* opacity managed by .animate-on-scroll system */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.feature-block:not(.reverse) .feature-image {
    transform: translateX(-40px);
}

.feature-block.reverse .feature-image {
    transform: translateX(40px);
}

.feature-image.animate-in, .feature-image.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Process Timeline Section */
.process-timeline {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 100px 24px;
    position: relative;
}

.timeline-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-step.animate-in, .timeline-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sequential animation delays */
.timeline-step:nth-child(1) {
    transition-delay: 0s;
}

.timeline-step:nth-child(3) {
    transition-delay: 0.2s;
}

.timeline-step:nth-child(5) {
    transition-delay: 0.4s;
}

.timeline-step:nth-child(7) {
    transition-delay: 0.6s;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 36px;
    color: var(--text-white);
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.step-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 160, 122, 0.08));
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.timeline-step h3 {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.timeline-step p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
}

.timeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    opacity: 0.6;
    flex-shrink: 0;
}


/* Results Section */
.results-section {
    background-color: #1a1a1a;
    padding: 100px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-card {
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-orange);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: #FF8555;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 160, 122, 0.08));
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-primary);
}

.stat-number {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 72px;
    color: var(--primary-orange);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 16px;
}

.stat-detail {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Testimonial Card */
.testimonial-card {
    max-width: 800px;
    margin: 60px auto 0;
    background-color: #1a1a1a;
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-left-width: 6px;
    transform: scale(1.01);
}

.testimonial-quote {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    color: var(--text-white);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-primary);
    flex-shrink: 0;
    background-color: #2a2a2a;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-white);
}

.author-title {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: var(--text-gray);
}

.author-company {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: #808080;
}

.company-logo {
    width: 80px;
    height: 40px;
    background-color: #2a2a2a;
    border-radius: 4px;
    opacity: 0.5;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-dark);
    padding: 100px 24px;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2%;
    align-items: flex-start;
}

.pricing-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-orange);
}

.pricing-card.featured {
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    z-index: 10;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, rgba(255, 107, 53, 0.05) 100%);
    animation: pulse-card 2s ease-in-out infinite;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 24px 70px rgba(255, 107, 53, 0.3);
}

@keyframes pulse-card {

    0%,
    100% {
        transform: scale(1.05);
    }

    50% {
        transform: scale(1.06);
    }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--text-white);
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.enterprise-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2a2a2a;
    color: var(--text-white);
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 20px;
}

.tier-name {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.setup-price {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1;
}

.price-label {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    color: #808080;
}

.monthly-price {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 18px;
    color: var(--text-white);
    margin-top: 16px;
    margin-bottom: 32px;
}

.divider {
    height: 1px;
    background-color: #2a2a2a;
    margin: 32px 0;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.features-list li {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.features-list li svg {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.target-audience {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: #808080;
    margin-bottom: 24px;
}

.pricing-btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--primary-orange);
    color: var(--text-white);
}

.pricing-btn.primary {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.pricing-btn.primary:hover {
    background: #FF8555;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(90deg, #FF6B35 0%, #FFA07A 100%);
    padding: 100px 40px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-headline {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 48px;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-subheadline {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    color: var(--text-white);
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-button {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 20px;
    padding: 20px 48px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cta-small-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: var(--text-white);
    opacity: 0.8;
    margin-top: 16px;
}

/* Footer Section */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    padding: 60px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.logo-column {
    flex: 1.5;
    /* Slightly wider */
}

.footer-logo {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: #808080;
    line-height: 1.5;
    max-width: 200px;
}

.footer-heading {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 2.2;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.contact-list li {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #FFFFFF;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 16px;
}

.whatsapp-btn:hover {
    background-color: #20BD5A;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 24px;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    color: #606060;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 40px;
        min-height: 100vh;
        height: auto;
        display: block;
        /* Align top on mobile */
    }

    h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .subheadline {
        font-size: 18px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image-container {
        margin-top: 40px;
    }

    .dashboard-placeholder {
        height: 300px;
        /* Keep rotation or reduce? Spec says full-width, commonly rotation is reduced on mobile */
        transform: rotate(-1deg);
    }

    .sidebar {
        display: none;
    }

    /* Simplify mockup on mobile */
    .dash-grid {
        grid-template-columns: 1fr;
    }

    /* Social Proof Mobile */
    .logo-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 240px;
        margin: 0 auto 16px;
    }

    .logo-box {
        width: 100px;
        height: 60px;
    }

    /* Problem Section Mobile */
    .section-headline {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .problem-card {
        padding: 32px 24px;
    }

    .problem-card h3 {
        font-size: 20px;
    }

    /* Process Timeline Mobile */
    .process-timeline {
        padding: 60px 24px;
    }

    .timeline-container {
        flex-direction: column;
        gap: 40px;
    }

    .timeline-step {
        width: 100%;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    .step-icon {
        font-size: 40px;
    }

    .timeline-step h3 {
        font-size: 18px;
    }

    .timeline-step p {
        font-size: 14px;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        font-size: 28px;
        padding: 0;
    }

    /* Results Section Mobile */
    .results-section {
        padding: 60px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .stat-number {
        font-size: 60px;
    }

    .stat-label {
        font-size: 20px;
    }

    /* Testimonial Card Mobile */
    .testimonial-card {
        padding: 32px 24px;
        margin-top: 40px;
    }

    .testimonial-quote {
        font-size: 18px;
    }

    .author-photo {
        width: 56px;
        height: 56px;
    }

    .company-logo {
        display: none;
    }

    /* Pricing Section Mobile */
    .pricing-section {
        padding: 60px 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card.featured {
        transform: scale(1);
        animation: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .setup-price {
        font-size: 40px;
    }

    /* Mobile Typography */
    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 32px !important;
    }

    h3 {
        font-size: 28px !important;
    }

    h4 {
        font-size: 20px !important;
    }

    body,
    p {
        font-size: 16px !important;
    }

    small,
    .text-small {
        font-size: 14px !important;
    }
}

/* -------------------------------------------------------------------------- */
/* CONTACT / BOOKING FORM SECTION                                             */
/* -------------------------------------------------------------------------- */

.contact-section {
    background: var(--bg-primary);
    padding: var(--space-5xl) var(--space-lg);
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Form Layout */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

/* Labels */
.form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.required {
    color: var(--accent-primary);
}

/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    height: 48px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-tertiary);
}

/* Focus State */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

/* Error State */
.contact-form input.error,
.contact-form textarea.error {
    border-color: #e53e3e;
}

.field-error {
    font-size: 12px;
    color: #e53e3e;
    display: none;
    margin-top: 2px;
}

.field-error.visible {
    display: block;
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-primary);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, opacity 0.2s ease;
    margin-top: 4px;
}

.form-submit-btn:hover {
    background: #FF8555;
    transform: translateY(-2px);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Privacy Notice */
.privacy-notice {
    font-family: var(--font-body);
    font-size: 12px;
    color: #808080;
    text-align: center;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--success-green);
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--success-green);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Mobile */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
/* ACCESSIBILITY & PERFORMANCE                                                */
/* -------------------------------------------------------------------------- */

/* Skip to main content link (screen readers / keyboard nav) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--accent-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

/* Global focus indicator - WCAG 2.1 AA */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Remove default outline only when using mouse */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Ensure minimum touch target size (44px) */
.btn,
.cta-button,
.pricing-btn,
.form-submit-btn,
.whatsapp-btn,
.footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Lazy loading images */
img[loading="lazy"] {
    content-visibility: auto;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================ */
/* RICH DASHBOARD MOCKUP                                         */
/* ============================================================ */
.mockup-title {
    font-family: var(--font-inter);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 10px;
    letter-spacing: 0.3px;
}

.sidebar-logo {
    width: 32px;
    height: 32px;
    background: var(--accent-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 11px;
    color: #fff;
    margin: 0 auto 20px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.nav-item {
    width: 28px;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
}

.nav-item.active {
    background: var(--accent-primary);
    width: 28px;
    height: 6px;
}

/* Stats Row */
.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.dash-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dsc-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-inter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dsc-value {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-poppins);
    color: #fff;
    line-height: 1.2;
}

.dsc-delta {
    font-size: 8px;
    font-family: var(--font-inter);
    font-weight: 600;
}

.dsc-delta.up {
    color: #4ade80;
}

.dsc-delta.neutral {
    color: #60a5fa;
}

/* Pipeline Kanban */
.dash-pipeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex: 1;
}

.pipeline-col {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pipeline-header {
    font-size: 9px;
    font-family: var(--font-poppins);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 1px 6px;
    font-size: 8px;
}

.badge.orange {
    background: rgba(255, 107, 53, 0.25);
    color: var(--accent-primary);
}

.pipeline-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 7px 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pc-name {
    font-size: 9px;
    font-family: var(--font-poppins);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.pc-prop {
    font-size: 8px;
    font-family: var(--font-inter);
    color: rgba(255, 255, 255, 0.4);
}

.pc-tag {
    font-size: 7px;
    font-family: var(--font-inter);
    font-weight: 600;
    border-radius: 4px;
    padding: 2px 5px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pc-tag.verified {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.pc-tag.pending {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.pc-tag.hot {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.pc-tag.closing {
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent-primary);
}

/* Feature Photos */
.feature-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
/* ============================================================ */
/* LUXURY HERO BACKGROUND                                        */
/* ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1600&q=60&auto=format&fit=crop');
    background-size: cover;
    background-position: center top;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

/* ============================================================ */
/* LUXURY RESULTS SECTION BACKGROUND                            */
/* ============================================================ */
.results-section {
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=50&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.results-section > * {
    position: relative;
    z-index: 1;
}

/* ============================================================ */
/* LUXURY FINAL CTA BACKGROUND                                  */
/* ============================================================ */
.final-cta {
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=50&auto=format&fit=crop');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

.final-cta > * {
    position: relative;
    z-index: 1;
}

/* ============================================================ */
/* LUXURY FEATURE SECTION POLISH                                */
/* ============================================================ */
.feature-image img.feature-photo {
    transition: transform 0.6s ease;
}

.feature-image:hover img.feature-photo {
    transform: scale(1.02);
}

/* Glow behind feature images */
.feature-image::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(255,107,53,0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.feature-image {
    position: relative;
}

/* ============================================================ */
/* LUXURY TESTIMONIAL POLISH                                    */
/* ============================================================ */
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 160px;
    font-family: Georgia, serif;
    color: rgba(255,107,53,0.06);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

/* ============================================================ */
/* LUXURY SECTION DIVIDERS                                      */
/* ============================================================ */
.feature-showcase {
    position: relative;
}

.feature-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255,107,53,0.4), transparent);
}


/* ============================================================ */
/* FEATURE SECTION  RICH CONTENT ELEMENTS                      */
/* ============================================================ */

/* Category label above h3 */
.feature-label {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

/* Bullet list inside feature blocks */
.feature-bullets {
    list-style: none;
    margin: 20px 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-inter);
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.feature-bullets li svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-bullets li strong {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}

/* Metric callout at bottom of feature */
.feature-metric {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 12px 20px;
    margin-top: 4px;
}

.metric-number {
    font-family: var(--font-poppins);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    white-space: nowrap;
}

.metric-label {
    font-family: var(--font-inter);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}


/* ============================================================ */
/* SCROLL ANIMATION SYSTEM  COMPLETE DEFINITIONS               */
/* ============================================================ */

/* Base state: hidden before animation triggers */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Fade up (default) */
.animate-on-scroll.fade-up {
    transform: translateY(30px);
}

/* Fade in (no movement) */
.animate-on-scroll.fade-in {
    transform: none;
}

/* Fade from left */
.animate-on-scroll.fade-left {
    transform: translateX(-40px);
}

/* Fade from right */
.animate-on-scroll.fade-right {
    transform: translateX(40px);
}

/* Triggered state: JS adds .is-visible */
.animate-on-scroll.is-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Staggered delays */
.animate-on-scroll.delay-100 { transition-delay: 0.1s; }
.animate-on-scroll.delay-200 { transition-delay: 0.2s; }
.animate-on-scroll.delay-300 { transition-delay: 0.3s; }
.animate-on-scroll.delay-400 { transition-delay: 0.4s; }
.animate-on-scroll.delay-500 { transition-delay: 0.5s; }

/* ============================================================ */
/* FEATURE IMAGE  FIXED HEIGHT & DISPLAY                       */
/* ============================================================ */

/* Override the old conflicting .feature-image animation rules */
.feature-image.animate-on-scroll {
    min-height: 420px;
}

.feature-image.animate-on-scroll.fade-left {
    transform: translateX(-40px);
}

.feature-image.animate-on-scroll.fade-right {
    transform: translateX(40px);
}

.feature-image.animate-on-scroll.is-visible {
    opacity: 1 !important;
    transform: none !important;
}

.feature-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}


/* ============================================================ */
/* COMPLIANCE ZONE-MAP MOCKUP                                   */
/* ============================================================ */
.compliance-mockup {
    width: 100%;
    min-height: 420px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    font-family: var(--font-inter);
}

.cm-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cm-dots {
    display: flex;
    gap: 5px;
}

.cm-title {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.3px;
    margin-left: 6px;
}

.cm-body {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    min-height: 380px;
}

.cm-left {
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
}

.cm-right {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cm-section-label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Buyer card */
.cm-buyer-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 4px;
}

.cm-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FF6B35, #FF8C5A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.cm-buyer-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2px;
}

.cm-buyer-meta {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}

/* Property card */
.cm-property-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 12px;
}

.cm-prop-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3px;
}

.cm-prop-meta {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}

.cm-prop-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-primary);
}

/* Result badge */
.cm-result {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    padding: 10px 12px;
    margin-top: auto;
}

.cm-result.approved {
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.25);
    color: #4ade80;
}

.cm-result-title {
    font-size: 12px;
    font-weight: 700;
    color: #4ade80;
}

.cm-result-sub {
    font-size: 10px;
    color: rgba(74,222,128,0.7);
}

/* Zone map */
.cm-map {
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    flex: 1;
    min-height: 140px;
}

.cm-zone {
    border-radius: 6px;
    padding: 6px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.approved-zone {
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.25);
}

.restricted-zone {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
}

/* Highlight the selected zone (Al Nakheel = z1) */
.cm-zone.z1 {
    background: rgba(74,222,128,0.25);
    border: 2px solid rgba(74,222,128,0.6);
    box-shadow: 0 0 12px rgba(74,222,128,0.2);
}

.zone-label {
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.approved-zone .zone-label { color: #4ade80; }
.restricted-zone .zone-label { color: #f87171; }

/* Pulse animation on selected zone */
.cm-zone-pulse {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(33.33% - 14px);
    height: calc(50% - 13px);
    border-radius: 6px;
    border: 2px solid rgba(74,222,128,0.5);
    animation: zone-pulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes zone-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

/* Legend */
.cm-legend {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.approved-dot { background: #4ade80; }
.restricted-dot { background: #f87171; }

.legend-text {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    margin-right: 8px;
}

/* Audit log */
.cm-log {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cm-log-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
}

.log-time {
    color: rgba(255,255,255,0.25);
    font-family: monospace;
    flex-shrink: 0;
}

.log-msg {
    color: rgba(255,255,255,0.55);
    flex: 1;
}

.log-ok {
    color: #4ade80;
    font-weight: 700;
    flex-shrink: 0;
}


/* ============================================================ */
/* 3D EFFECTS & DEPTH SYSTEM                                    */
/* ============================================================ */

/* Global perspective context */
.hero,
.feature-showcase,
.problem-section,
.results-section,
.process-timeline {
    perspective: 1200px;
}

/* ---- Hero Dashboard: 3D tilt perspective ---- */
.hero-image-container {
    perspective: 1000px;
}

.dashboard-placeholder {
    transform: perspective(1000px) rotateX(4deg) rotateY(-6deg) rotateZ(1deg);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.6s ease;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.06),
        20px 20px 60px rgba(0,0,0,0.4),
        -4px -4px 20px rgba(255,107,53,0.05);
    will-change: transform;
}

.dashboard-placeholder:hover {
    transform: perspective(1000px) rotateX(1deg) rotateY(-2deg) rotateZ(0deg);
    box-shadow:
        0 60px 120px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.1),
        0 0 60px rgba(255,107,53,0.08);
}

/* ---- Problem Cards: 3D hover lift ---- */
.problem-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease;
    will-change: transform;
}

.problem-card:hover {
    transform: translateY(-12px) rotateX(4deg) rotateY(-2deg) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 30px rgba(255,107,53,0.12),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ---- Stat Cards: 3D depth ---- */
.stat-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease;
    will-change: transform;
}

.stat-card:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.03);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.5),
        0 0 25px rgba(255,107,53,0.15),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ---- Pricing Cards: 3D tilt ---- */
.pricing-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s ease;
    will-change: transform;
}

.pricing-card:hover {
    transform: translateY(-14px) rotateX(3deg) rotateY(2deg);
    box-shadow:
        0 35px 70px rgba(0,0,0,0.55),
        0 0 35px rgba(255,107,53,0.1);
}

.pricing-card.popular:hover {
    transform: translateY(-16px) rotateX(3deg) rotateY(2deg);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        0 0 50px rgba(255,107,53,0.2);
}

/* ---- Testimonial Card: 3D depth ---- */
.testimonial-card {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.5s ease;
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 40px rgba(255,107,53,0.1);
}

/* ---- Feature Images: 3D perspective frame ---- */
.feature-image {
    transform-style: preserve-3d;
}

.feature-block:not(.reverse) .feature-image.is-visible {
    animation: feature-settle-left 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.feature-block.reverse .feature-image.is-visible {
    animation: feature-settle-right 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes feature-settle-left {
    from { opacity: 0; transform: perspective(800px) rotateY(15deg) translateX(-40px); }
    to   { opacity: 1; transform: perspective(800px) rotateY(4deg) translateX(0); }
}

@keyframes feature-settle-right {
    from { opacity: 0; transform: perspective(800px) rotateY(-15deg) translateX(40px); }
    to   { opacity: 1; transform: perspective(800px) rotateY(-4deg) translateX(0); }
}

.feature-image:hover {
    transform: perspective(800px) rotateY(0deg) !important;
    transition: transform 0.5s ease;
}

/* ---- Compliance mockup: 3D tilt ---- */
.compliance-mockup {
    transform: perspective(900px) rotateY(4deg) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-image:hover .compliance-mockup {
    transform: perspective(900px) rotateY(0deg) rotateX(0deg);
}

/* ---- Floating particles in hero ---- */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.6), transparent);
    animation: float-particle linear infinite;
    opacity: 0;
}

.particle:nth-child(1)  { width:4px;  height:4px;  left:10%;  animation-duration:8s;  animation-delay:0s;   }
.particle:nth-child(2)  { width:6px;  height:6px;  left:25%;  animation-duration:12s; animation-delay:2s;   }
.particle:nth-child(3)  { width:3px;  height:3px;  left:40%;  animation-duration:9s;  animation-delay:4s;   }
.particle:nth-child(4)  { width:5px;  height:5px;  left:60%;  animation-duration:11s; animation-delay:1s;   }
.particle:nth-child(5)  { width:4px;  height:4px;  left:75%;  animation-duration:10s; animation-delay:3s;   }
.particle:nth-child(6)  { width:7px;  height:7px;  left:85%;  animation-duration:14s; animation-delay:0.5s; }
.particle:nth-child(7)  { width:3px;  height:3px;  left:50%;  animation-duration:7s;  animation-delay:5s;   }
.particle:nth-child(8)  { width:5px;  height:5px;  left:90%;  animation-duration:13s; animation-delay:2.5s; }

@keyframes float-particle {
    0%   { transform: translateY(100vh) translateX(0);   opacity: 0; }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
}

/* ---- 3D Glow orbs in background ---- */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    animation: orb-pulse 6s ease-in-out infinite;
}

@keyframes orb-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.6; }
    50%       { transform: translate(-50%, -50%) scale(1.2); opacity: 1;   }
}

/* ---- Mouse-tracking tilt class (applied via JS) ---- */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

/* ---- 3D shimmer on CTA buttons ---- */
.btn-primary {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    animation: btn-shimmer 3s ease-in-out infinite;
}

@keyframes btn-shimmer {
    0%   { left: -75%; }
    60%  { left: 125%; }
    100% { left: 125%; }
}

/* ---- 3D icon circles ---- */
.icon-circle,
.feature-icon,
.step-icon,
.stat-icon {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.3s ease;
}

.problem-card:hover .icon-circle,
.stat-card:hover .stat-icon {
    transform: translateZ(20px) scale(1.1);
    box-shadow: 0 8px 24px rgba(255,107,53,0.3);
}


/* ============================================================ */
/* HERO FULL-SCREEN LAYOUT FIXES                                */
/* ============================================================ */

/* The main wrapper must not constrain the hero */
main#main-content {
    width: 100%;
    max-width: 100%;
}

/* Hero image container  right column, fills remaining space */
.hero-image-container {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    height: 100%;
    max-height: calc(100vh - 120px);
}

/* Dashboard fills the right column */
.dashboard-placeholder {
    width: 100%;
    max-width: 680px;
    height: clamp(380px, 60vh, 520px);
}

/* Hero h1  left-aligned, slightly smaller for side-by-side */
.hero h1,
.hero-content h1 {
    text-align: left;
    font-size: clamp(36px, 3.5vw, 56px);
    margin-bottom: 20px;
}

/* Hero subheadline  left-aligned */
.hero .subheadline,
.hero-content .subheadline {
    text-align: left;
    font-size: clamp(15px, 1.2vw, 18px);
    margin-bottom: 32px;
}

/* CTA group  left-aligned */
.hero .cta-group,
.hero-content .cta-group {
    justify-content: flex-start;
}

/* Hero badge/tag if any  left-aligned */
.hero .hero-badge {
    align-self: flex-start;
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 900px) {
    .hero {
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh !important;
        padding: 100px 24px 60px !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero h1,
    .hero-content h1,
    .hero .subheadline,
    .hero-content .subheadline {
        text-align: center !important;
    }

    .hero .cta-group,
    .hero-content .cta-group {
        justify-content: center !important;
    }

    .hero-image-container {
        width: 100% !important;
        max-height: 400px !important;
    }

    .dashboard-placeholder {
        height: 360px !important;
    }
}


/* ---- CRITICAL HERO OVERRIDES (highest specificity) ---- */
section.hero#home {
    min-height: 100vh !important;
    height: 100vh !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 80px 5vw 40px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: left !important;
    gap: 4vw !important;
    box-sizing: border-box !important;
}

section.hero#home .hero-content {
    flex: 0 0 auto !important;
    width: 44% !important;
    max-width: 560px !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin-bottom: 0 !important;
}

section.hero#home .hero-image-container {
    flex: 1 !important;
    min-width: 0 !important;
    height: calc(100vh - 140px) !important;
    max-height: 560px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

section.hero#home .dashboard-placeholder {
    width: 100% !important;
    height: 100% !important;
    max-height: 520px !important;
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 900px) {
    section.hero#home {
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh !important;
        padding: 100px 24px 60px !important;
        text-align: center !important;
        gap: 40px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    section.hero#home .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }

    section.hero#home .hero-image-container {
        width: 100% !important;
        height: auto !important;
        max-height: 400px !important;
        justify-content: center !important;
    }

    section.hero#home .dashboard-placeholder {
        height: 360px !important;
        max-height: 360px !important;
    }
}


/* ============================================================ */
/* HERO  NEW ELEMENTS                                          */
/* ============================================================ */

/* Eyebrow label above h1 */
.hero-eyebrow {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-primary);
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 100px;
    padding: 5px 14px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Green highlighted amount in h1 */
.highlight-green {
    color: #4ade80;
    text-shadow: 0 0 40px rgba(74, 222, 128, 0.35);
    position: relative;
}

/* Trust line below CTA buttons */
.hero-trust-line {
    font-family: var(--font-inter);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 20px;
    letter-spacing: 0.3px;
}

/* ============================================================ */
/* LUXURY BACKGROUND  DEEP DARK WITH GOLD/AMBER GRADIENT      */
/* ============================================================ */

/* Override the plain dark background with a richer one */
body {
    background: #080808;
}

/* Hero: deep luxury gradient with warm amber glow */
section.hero#home {
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255, 107, 53, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 50%, rgba(120, 60, 20, 0.08) 0%, transparent 60%),
        linear-gradient(160deg, #0c0a08 0%, #0a0a0a 40%, #080808 100%);
}

/* Problem section: subtle warm depth */
.problem-section {
    background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255, 107, 53, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, #0f0d0b 0%, #0a0a0a 100%);
}

/* Feature showcase: alternating depth */
.feature-showcase {
    background:
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(255, 140, 50, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0a 0%, #0d0b09 50%, #0a0a0a 100%);
}

/* Pricing: premium dark with subtle gold shimmer */
.pricing-section {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 180, 80, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 20% 80%, rgba(255, 107, 53, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #0d0b09 0%, #080808 100%);
}

/* Results section: rich dark */
.results-section {
    background:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, #0a0a0a 0%, #0c0a08 100%);
}

/* Process timeline: subtle warm */
.process-timeline {
    background:
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(255, 107, 53, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, #0d0b09 0%, #0a0a0a 100%);
}

/* Footer: deepest dark */
.site-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 180, 80, 0.06);
}

/* Subtle gold top border on nav */
.site-header {
    border-bottom: 1px solid rgba(255, 180, 80, 0.06);
    background: rgba(8, 8, 8, 0.92);
}

/* Noise texture overlay for luxury feel */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
    mix-blend-mode: overlay;
}


/* ============================================================ */
/* NAVIGATION BAR                                               */
/* ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 180, 80, 0.06);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-primary), #FF8C5A);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 800;
    font-size: 13px;
    color: #fff;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.3px;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Nav CTA button  compact version */
.nav-cta {
    font-size: 14px !important;
    padding: 10px 20px !important;
    min-height: 40px !important;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta   { display: none; }
}


/* ============================================================ */
/* CRITICAL: HERO CONTENT VISIBILITY FIX                        */
/* ============================================================ */

/* Ensure hero particles don't block content */
.hero-particles {
    z-index: 0 !important;
    pointer-events: none !important;
}

/* Force hero content above ALL backgrounds and overlays */
.hero-content {
    position: relative !important;
    z-index: 10 !important;
    opacity: 1 !important;
}

.hero-content h1,
.hero-content .subheadline,
.hero-content .cta-group,
.hero-content .hero-eyebrow,
.hero-content .hero-trust-line {
    position: relative !important;
    z-index: 10 !important;
    opacity: 1;
    color: inherit;
}

/* Force h1 to be white and visible */
section.hero#home h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}

/* Subheadline explicit white */
section.hero#home .subheadline {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Hero image container below content in z-order */
.hero-image-container {
    position: relative !important;
    z-index: 5 !important;
}

/* Fix noise texture  pointer-events off, bring below content */
body::before {
    z-index: 0 !important;
    pointer-events: none !important;
}

/* Fix hero::before and hero::after overlays  keep below content */
section.hero#home::before,
section.hero#home::after {
    z-index: 0 !important;
    pointer-events: none !important;
}


/* ============================================================ */
/* MACBOOK BROWSER FRAME + PROPERTYFLOW DASHBOARD TABLE         */
/* ============================================================ */

/* Outer frame  3D tilted MacBook-style */
.macbook-frame {
    width: 100%;
    max-width: 720px;
    border-radius: 12px;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.7),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transform: perspective(1200px) rotateX(4deg) rotateY(-6deg) rotateZ(1deg);
    transform-origin: center center;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    z-index: 5;
}

/* Browser chrome bar */
.browser-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    padding: 9px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.bdot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
}
.bdot.red    { background: #ff5f57; }
.bdot.yellow { background: #febc2e; }
.bdot.green  { background: #28c840; }

.browser-url-bar {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-inter), monospace;
    font-size: 9.5px;
    color: rgba(255,255,255,0.4);
    overflow: hidden;
    white-space: nowrap;
}
.url-lock { font-size: 8px; opacity: 0.6; }
.url-text  { overflow: hidden; text-overflow: ellipsis; }

.browser-actions {
    font-size: 14px;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* Inner dashboard */
.pf-dashboard {
    background: #111111;
    padding: 0;
    overflow: hidden;
}

/* Dashboard header */
.pf-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: #141414;
}

.pf-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pf-logo-badge {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 800;
    font-size: 9px;
    color: #fff;
    flex-shrink: 0;
}

.pf-brand {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 11px;
    color: #fff;
    line-height: 1.2;
}

.pf-subtitle {
    font-family: var(--font-inter);
    font-size: 8px;
    color: rgba(255,255,255,0.35);
    margin-top: 1px;
}

.pf-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pf-live-badge {
    font-family: var(--font-inter);
    font-size: 8px;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 100px;
    padding: 2px 7px;
    animation: pulse-live 2s ease infinite;
}

@keyframes pulse-live {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.6; }
}

.pf-date {
    font-family: var(--font-inter);
    font-size: 8px;
    color: rgba(255,255,255,0.3);
}

/* KPI stats row */
.pf-kpi-row {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pf-kpi {
    flex: 1;
    padding: 8px 10px;
    border-right: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.pf-kpi:last-child { border-right: none; }

.pf-kpi-val {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    line-height: 1;
    margin-bottom: 2px;
}

.pf-kpi-label {
    font-family: var(--font-inter);
    font-size: 7.5px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 3px;
}

.pf-kpi-delta {
    font-family: var(--font-inter);
    font-size: 8px;
    font-weight: 600;
}
.pf-kpi-delta.up    { color: #4ade80; }
.pf-kpi-delta.green { color: #4ade80; }
.pf-kpi-delta.safe  { color: #4ade80; }

/* Table wrapper  scrollable */
.pf-table-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 320px;
}

.pf-table-wrapper::-webkit-scrollbar { width: 4px; height: 4px; }
.pf-table-wrapper::-webkit-scrollbar-track { background: transparent; }
.pf-table-wrapper::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

/* The table itself */
.pf-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-inter);
    font-size: 9px;
    table-layout: auto;
}

.pf-table thead tr {
    background: #1a1a1a;
    position: sticky;
    top: 0;
    z-index: 2;
}

.pf-table th {
    padding: 7px 10px;
    text-align: left;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    white-space: nowrap;
}

.pf-table td {
    padding: 6px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
    vertical-align: middle;
}

.pf-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.td-id {
    font-family: monospace;
    font-size: 8.5px;
    color: rgba(255,255,255,0.35) !important;
    letter-spacing: 0.3px;
}

.td-name {
    font-weight: 600;
    color: rgba(255,255,255,0.9) !important;
}

.td-budget {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 9px;
    color: rgba(255,255,255,0.8) !important;
    text-align: right;
}

.td-zone {
    color: rgba(255,180,80,0.75) !important;
    font-size: 8.5px;
}

.td-agent {
    font-size: 8.5px;
    color: rgba(255,255,255,0.5) !important;
}

.flag {
    font-size: 11px;
    margin-right: 3px;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 100px;
    font-size: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.status-badge.verified {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.status-badge.pending {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.25);
}

.status-badge.finance {
    background: rgba(96, 165, 250, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.25);
}

/* Table footer */
.pf-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 14px;
    background: #141414;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-inter);
    font-size: 8px;
    color: rgba(255,255,255,0.25);
}

.pf-powered {
    color: rgba(255,107,53,0.5);
    font-weight: 600;
}

/* Override hero-image-container to use the macbook-frame */
.hero-image-container .macbook-frame {
    width: 100%;
}

/* Remove old JS tilt from macbook-frame  override style from script.js */
.macbook-frame { will-change: transform; }


/* ============================================================ */
/* TRUST BAR                                                    */
/* ============================================================ */
.trust-bar {
    background: #1a1a1a;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    padding: 40px 5vw;
}

.trust-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.trust-bar-rule {
    flex: 1;
    height: 1px;
    background: #2a2a2a;
}

.trust-bar-content {
    flex-shrink: 0;
    text-align: center;
}

.trust-bar-headline {
    font-family: 'Inter', var(--font-inter), sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #808080;
    margin: 0 0 6px 0;
    letter-spacing: 0.2px;
}

.trust-bar-sub {
    font-family: 'Inter', var(--font-inter), sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #555555;
    margin: 0;
    letter-spacing: 0.3px;
}


/* ============================================================ */
/* RESULTS SECTION                                              */
/* ============================================================ */
.results-section {
    background: #1a1a1a;
    padding: 80px 5vw;
}

.results-section .section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
    justify-content: center;
}

.results-section .section-headline {
    font-size: clamp(22px, 3vw, 32px);
    text-align: center;
    flex-shrink: 0;
    margin: 0;
}

.results-rule {
    flex: 1;
    height: 1px;
    background: #2a2a2a;
}

/* Stat cards row */
.results-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto 48px;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
}

.result-card {
    flex: 1;
    padding: 40px 32px;
    text-align: center;
}

.result-divider {
    width: 1px;
    height: 100px;
    background: #2a2a2a;
    flex-shrink: 0;
}

.result-number {
    font-family: var(--font-poppins);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.result-label {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-detail {
    font-family: var(--font-inter);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
}

/* Standalone rule */
.results-section > .container > .results-rule {
    max-width: 800px;
    margin: 0 auto 48px;
    flex: none;
    display: block;
    width: 100%;
}

/* Testimonial */
.results-testimonial {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
    padding: 40px 0;
}

.testimonial-quote {
    font-family: var(--font-inter);
    font-size: clamp(16px, 2.2vw, 20px);
    font-style: italic;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0 0 20px 0;
    quotes: none;
}

.testimonial-cite {
    font-family: var(--font-inter);
    font-size: 13px;
    font-style: normal;
    color: rgba(255,255,255,0.35);
    display: block;
}

/* ============================================================ */
/* FOOTER  PROPERTYFLOW BRANDING UPDATES                       */
/* ============================================================ */
.site-footer .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.footer-logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FF6B35, #FF8C5A);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 800;
    font-size: 11px;
    color: #fff;
    flex-shrink: 0;
}

.site-footer .footer-logo span {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

.footer-brand-sub {
    font-family: var(--font-inter);
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin: 0 0 12px 0;
}

.footer-brand-sub strong {
    color: rgba(255,140,80,0.6);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    margin: 0;
}

.footer-bottom-right {
    font-size: 12px;
    color: rgba(255,255,255,0.15) !important;
}

/* Contact links clickable */
.contact-list a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-list a:hover { color: #FF6B35; }


/* ============================================================ */
/* LUXURY TYPOGRAPHY  FONT WEIGHT REFINEMENT                   */
/* ============================================================ */

/* Section headlines: 700 ? 600 */
.section-headline,
h2.section-headline {
    font-weight: 600 !important;
}

/* Feature section h3 headings: 700 ? 600 */
.feature-content h3,
.feature-block h3 {
    font-weight: 600 !important;
}

/* Problem card titles: 700 ? 600 */
.problem-card h3 {
    font-weight: 600 !important;
}

/* Process/timeline step titles */
.step-title,
.timeline-step h3,
.timeline-step h4 {
    font-weight: 600 !important;
}

/* Results section headline */
.results-section .section-headline {
    font-weight: 600 !important;
}

/* Testimonial section / final CTA headline */
.cta-headline {
    font-weight: 600 !important;
}

/* Contact form section headline */
.contact-section .section-headline {
    font-weight: 600 !important;
}

/* Pricing section headline */
.pricing-section .section-headline {
    font-weight: 600 !important;
}

/* KEEP bold: CTA buttons, pricing numbers, stat numbers */
.btn,
.btn-primary,
.btn-secondary,
.setup-price,
.monthly-price,
.result-number,
.pf-kpi-val,
.metric-number,
.dsc-value,
.nav-logo-text,
.footer-logo span {
    font-weight: 700 !important;
}

/* Hero h1 stays heavy  it's the largest element */
section.hero h1 {
    font-weight: 800 !important;
}

/* Tier names */
.tier-name {
    font-weight: 700 !important;
}

