/* ============================================
   ATOMIC DESIGN CSS IMPORTS
   ============================================ */

/* Atoms */
@import url('atoms/_button.css');
@import url('atoms/_icon.css');
@import url('atoms/_heading.css');
@import url('atoms/_paragraph.css');
@import url('atoms/_stat-number.css');
@import url('atoms/_stat-label.css');

/* Molecules */
@import url('molecules/_app-store-button.css');
@import url('molecules/_stat-item.css');
@import url('molecules/_feature-card.css');
@import url('molecules/_step-item.css');
@import url('molecules/_testimonial-carousel.css');

/* Animation Systems */
@import url('animations/_scroll-animations.css');
@import url('animations/_icon-animations.css');

/* ============================================
   FONT DECLARATIONS
   ============================================ */

/* Font face declarations for Mendene fonts */
@font-face {
    font-family: 'Avenir Roman';
    src: url('../fonts/avenir-roman.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
}

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

body {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(125, 64, 150, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 5%;
    box-shadow: 0 2px 30px rgba(125, 64, 150, 0.12);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-link:focus {
    outline: 2px solid #7D4096;
    outline-offset: 4px;
    border-radius: 8px;
}

.logo-icon {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main-text-nav {
    font-family: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: #7D4096;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
}

.logo-sub-text-nav {
    font-family: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #7D4096;
    line-height: 1;
    letter-spacing: 0.05em;
    margin: 0;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links ul {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Navigation Links - Enhanced Hover Effect with Animated Underline */
.nav-link {
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative; /* Required for ::after positioning */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: #7D4096;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #7D4096;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:focus {
    outline: 2px solid #7D4096;
    outline-offset: 2px;
    border-radius: 4px;
}

.nav-link.active {
    color: #7D4096;
    font-weight: 600;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Maintain backward compatibility - exclude buttons */
.nav-links a:not(.btn):not(.btn--secondary):not(.nav-download-btn) {
    /* Styles now handled by .nav-link class above */
}

/* Legacy support - maintain backward compatibility */
.contact-btn {
    background: #7D4096;
    color:#FFFFFF;
    padding: 12px 28px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.contact-btn:hover {
    background: #FFFFFF;
    color:#7D4096;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(125, 64, 150, 0.4);
}

/* Atomic Design Button compatibility - Navbar download button */
.nav-links .btn--secondary,
.nav-links .nav-download-btn,
.nav-links a.btn--secondary {
    /* Ensure button styles override nav-links styles */
    text-decoration: none;
    color: white !important; /* Force white text for secondary variant */
    background: #7D4096 !important; /* Force solid purple background, no gradient */
}

.nav-links .btn--secondary:hover:not(.btn--disabled),
.nav-links .nav-download-btn:hover:not(.btn--disabled),
.nav-links a.btn--secondary:hover:not(.btn--disabled) {
    background: white !important;
    color: #7D4096 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #7D4096 0%, #AB5092 50%, #CBB3D5 100%);
    padding: 140px 5% 100px;
    position: relative;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    top: -80px;
    right: -30px;
    animation: float 8s ease-in-out infinite;
}

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

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 62px;
    color: white;
    margin-bottom: 25px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease;
    font-weight: 900;
}

.hero-text .highlight {
    background: linear-gradient(135deg, #FFFFFF, #CBB3D5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
    flex-wrap: wrap;
}

/* Legacy support - maintain backward compatibility */
.app-store-btn {
    background: white;
    color: #7D4096;
    padding: 16px 32px;
    border-radius: 15px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.app-store-btn:hover {
    background: #7D4096;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(125, 64, 150, 0.4);
}

.app-store-btn:hover svg {
    color: white;
    fill: white;
}

.app-store-btn svg {
    width: 24px;
    height: 24px;
}

/* Atomic Design Button compatibility */
/* Styles handled in component-specific CSS files */

.hero-phone {
    position: relative;
    height: 650px;
    animation: fadeInRight 1s ease;
}

.phone-mockup-hero {
    position: absolute;
    width: 320px;
    height: 640px;
    background: #1a1a1a;
    border-radius: 45px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    padding: 15px;
    transition: transform 0.3s;
    overflow: hidden;
}

.phone-mockup-hero:hover {
    transform: translateY(-15px) scale(1.02);
}

.phone-mockup-hero::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-mockup-hero:first-child {
    left: 50px;
    z-index: 2;
}

.phone-mockup-hero:last-child {
    right: 0;
    top: 50px;
    z-index: 1;
    opacity: 0.7;
}

.phone-screen-hero {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F5F5F5, #FFFFFF);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screen-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Splash Screen - Branded */
.splash-screen {
    width: 100%;
    height: 100%;
    background: #7D4096;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 50px;
    position: relative;
    overflow: hidden;
}

.splash-logo-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 1;
}

.splash-logo {
    width: 80px;
    height: 80px;
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    animation: splashLogoFadeIn 0.8s ease 0.2s backwards;
    will-change: opacity, transform;
}

.splash-text {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    z-index: 2;
}

.splash-text-main {
    font-family: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    animation: splashTextFadeIn 0.8s ease 0.4s backwards;
    will-change: opacity, transform;
}

.splash-text-sub {
    font-family: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    animation: splashTextFadeIn 0.8s ease 0.5s backwards;
    will-change: opacity, transform;
}

.splash-loader {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: white;
    border-radius: 50%;
    animation: splashLoaderSpin 1s linear infinite, splashLoaderFadeIn 0.5s ease 0.7s backwards;
    z-index: 3;
    will-change: transform, opacity;
}

@keyframes splashLoaderSpin {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes splashLogoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.85);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes splashTextFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashLoaderFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* App Interface - Second Phone Mockup */
.app-interface {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Status Bar */
.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #e5e7eb;
}

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

.status-network,
.status-signal,
.status-battery {
    font-size: 10px;
}

/* App Header */
.app-header {
    background: #fff;
    padding: 12px 16px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.app-header-top {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.app-brand-icon {
    flex-shrink: 0;
}

.brand-icon-bg {
    width: 36px;
    height: 36px;
    background: #E8D5F2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-header-text {
    flex: 1;
}

.app-title {
    font-size: 16px;
    font-weight: 900;
    color: #000;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.app-subtitle {
    font-size: 11px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.app-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 10px;
}

.search-placeholder {
    font-size: 13px;
    color: #999;
}

.app-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #7D4096;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

/* App Content */
.app-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.app-property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.property-image {
    position: relative;
    width: 100%;
    height: 100px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.property-type-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.property-favorite {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.property-info {
    padding: 10px;
}

.property-price {
    font-size: 15px;
    font-weight: 900;
    color: #7D4096;
    margin-bottom: 6px;
}

.property-location {
    font-size: 10px;
    color: #666;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-details {
    display: flex;
    gap: 8px;
    font-size: 10px;
    color: #666;
    margin-bottom: 4px;
}

.property-date {
    font-size: 9px;
    color: #999;
}

/* Bottom Navigation */
.app-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 8px 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-item.active {
    background: #7D4096;
}

.nav-item.active .nav-icon {
    filter: brightness(0) invert(1);
}

.nav-item.active .nav-label {
    color: #000;
    font-weight: 700;
}

.nav-icon {
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-label {
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Trust Section */
.trust-banner {
    background: white;
    padding: 30px 5%;
    box-shadow: 0 4px 20px rgba(125, 64, 150, 0.08);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 32px;
}

.trust-text h4 {
    font-size: 24px;
    color: #7D4096;
    font-weight: 900;
}

.trust-text p {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    padding: 120px 5%;
    background: #FAFAFA;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 900;
}

.section-header h2 .gradient-text {
    background: linear-gradient(135deg, #7D4096, #AB5092);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 19px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 5px 30px rgba(125, 64, 150, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(125, 64, 150, 0.18);
    border-color: #CBB3D5;
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: #7D4096;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(125, 64, 150, 0.25);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* How It Works */
.how-it-works {
    padding: 120px 5%;
    background: white;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #7D4096, #AB5092, #CBB3D5);
    opacity: 0.3;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #7D4096;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 8px 30px rgba(125, 64, 150, 0.3);
    border: 5px solid white;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 800;
}

.step p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Property Types */
.property-types {
    padding: 120px 5%;
    background: linear-gradient(135deg, #7D4096 0%, #AB5092 100%);
    color: white;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.property-type-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.property-type-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.5);
}

.property-type-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.property-type-card h3 {
    font-size: 18px;
    font-weight: 700;
}

/* Pricing */
.pricing {
    padding: 120px 5%;
    background: white;
}

.pricing-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    background: linear-gradient(135deg, #7D409615, #AB509215);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid #CBB3D5;
}

.pricing-intro h3 {
    font-size: 28px;
    color: #7D4096;
    margin-bottom: 15px;
    font-weight: 900;
}

.pricing-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 3px solid #E5E7EB;
    border-radius: 30px;
    padding: 50px 40px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #7D4096, #AB5092);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.pricing-card:hover {
    border-color: #7D4096;
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(125, 64, 150, 0.2);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: #7D4096;
    background: linear-gradient(135deg, #7D409608, #AB509208);
    border-width: 3px;
}

.pricing-badge {
    background: linear-gradient(135deg, #7D4096, #AB5092);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 900;
}

.price {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #7D4096, #AB5092);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.price-label {
    color: #666;
    margin-bottom: 35px;
    font-size: 15px;
}

.features-list {
    list-style: none;
    margin-bottom: 35px;
}

.features-list li {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.features-list li::before {
    content: '✓';
    color: #7D4096;
    font-weight: bold;
    font-size: 20px;
}

.pricing-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #7D4096, #AB5092);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-button:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(125, 64, 150, 0.4);
}

/* Coverage Map */
.coverage {
    padding: 120px 5%;
    background: #FAFAFA;
}

.coverage-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 900;
}

.coverage-text h2 .gradient-text {
    background: linear-gradient(135deg, #7D4096, #AB5092);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coverage-text p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.provinces-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.province-item {
    background: white;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 3px 15px rgba(125, 64, 150, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.province-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(125, 64, 150, 0.15);
    transition: all 0.3s ease;
}

.province-icon {
    font-size: 24px;
}

.province-item span {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.map-illustration {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(125, 64, 150, 0.1);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-illustration .map-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.map-illustration svg {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Testimonials */
.testimonials {
    padding: 120px 5%;
    background: white;
}

.testimonial-slider {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: linear-gradient(135deg, #7D409608, #AB509208);
    padding: 60px 50px;
    border-radius: 30px;
    text-align: center;
    border: 2px solid #CBB3D5;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 35px;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7D4096, #AB5092);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(125, 64, 150, 0.3);
}

.author-info h4 {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: 800;
}

.author-info p {
    color: #666;
    font-size: 14px;
}

/* Download CTA */
.download-cta {
    padding: 120px 5%;
    background: linear-gradient(135deg, #7D4096 0%, #AB5092 100%);
    color: white;
    text-align: center;
}

.download-cta h2 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 900;
}

.download-cta p {
    font-size: 20px;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legacy support - maintain backward compatibility */
.download-btn {
    background: white;
    color: #7D4096;
    padding: 20px 40px;
    border-radius: 18px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.download-btn:hover {
    background: #7D4096;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(125, 64, 150, 0.4);
}

.download-btn:hover svg {
    color: white;
    fill: white;
}

/* Atomic Design compatibility - download buttons now use AppStoreButton molecule */
/* Styles handled in _app-store-button.css */

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    color: #333;
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(125, 64, 150, 0.1);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Footer Logo - Matching Navbar Branding */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-logo-link:hover {
    transform: scale(1.02);
}

.footer-logo-link:focus {
    outline: 2px solid #7D4096;
    outline-offset: 4px;
    border-radius: 8px;
}

.footer-logo-icon {
    height: 40px;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-main-text {
    font-family: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: #7D4096;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
}

.footer-logo-sub-text {
    font-family: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #7D4096;
    line-height: 1;
    letter-spacing: 0.05em;
    margin: 0;
    margin-top: 2px;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: #7D4096;
    font-weight: 900;
    font-size: 18px;
    font-family: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #7D4096;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(125, 64, 150, 0.1);
    color: #999;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #7D4096, #AB5092);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(125, 64, 150, 0.5);
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #7D4096;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-phone {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-illustration {
        padding: 20px;
    }
    
    .map-illustration .map-svg {
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    /* Disable underline animation on mobile */
    .nav-link::after {
        display: none;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 16px 8px;
        font-size: 1.125rem;
    }

    .logo-icon {
        height: 32px;
    }

    .logo-main-text-nav {
        font-size: 1rem;
    }

    .logo-sub-text-nav {
        font-size: 0.55rem;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-icon {
        height: 32px;
    }

    .footer-logo-main-text {
        font-size: 1rem;
    }

    .footer-logo-sub-text {
        font-size: 0.55rem;
    }
}