/* ============================================
   LANDING PAGE - MODERN DESIGN SYSTEM
   ============================================ */

:root {
    --primary: #4db896;
    --primary-dark: #3a9b7d;
    --primary-light: #6dd4a8;
    --secondary: #2d6c8e;
    --secondary-dark: #1e4d6b;
    --secondary-light: #4a8bb5;
    --accent: #4db896;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    overflow-x: hidden;
    background: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */

.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.landing-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-brand a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-brand a:hover {
    transform: scale(1.05);
}

.nav-brand-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    white-space: nowrap;
}

.login-btn {
    color: var(--primary);
    border-color: var(--gray-200);
}

.login-btn:hover {
    border-color: var(--primary);
    background: rgba(77, 184, 150, 0.1);
    transform: translateY(-1px);
}

.register-btn,
.dashboard-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(77, 184, 150, 0.3);
}

.register-btn:hover,
.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(77, 184, 150, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #4db896 0%, #6dd4a8 50%, #a8eece 100%);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-logo-container {
    margin-bottom: 2rem;
    animation: floatAnimation 3s ease-in-out infinite;
}

.hero-logo {
    width: min(400px, 80vw);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-tagline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary-hero,
.btn-secondary-hero {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-primary-hero {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: float1 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation: float2 25s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: float3 15s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, -50px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 1.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--white);
    transform: translateX(-50%) translateY(-5px);
}

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

.scroll-indicator i {
    font-size: 1.5rem;
    animation: arrowBounce 2s infinite;
}

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

/* ============================================
   COMPLEX INFO SECTION
   ============================================ */

.complex-info-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(77, 184, 150, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    color: var(--white);
    font-size: 1.75rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 8px 30px rgba(77, 184, 150, 0.15);
}

.info-card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 2rem 0;
}

.info-card-title i {
    color: var(--primary);
    font-size: 1.75rem;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 1rem;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Amenities Card */
.amenities-card {
    grid-column: 1 / -1;
}

.pqr-card {
    border: 1px solid rgba(77, 184, 150, 0.35);
    background: linear-gradient(180deg, #ffffff 0%, #f7fcfa 100%);
}

.pqr-cta-button {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(77, 184, 150, 0.25);
    transition: all 0.25s ease;
}

.pqr-cta-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(77, 184, 150, 0.35);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(77, 184, 150, 0.1) 0%, rgba(109, 212, 168, 0.05) 100%);
    border: 1px solid rgba(77, 184, 150, 0.2);
    border-radius: 12px;
    color: var(--gray-900);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.amenity-badge:hover {
    background: linear-gradient(135deg, rgba(77, 184, 150, 0.15) 0%, rgba(109, 212, 168, 0.1) 100%);
    border-color: var(--primary);
    transform: translateX(5px);
}

.amenity-badge i {
    color: var(--primary);
    font-size: 1.125rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1e293b 100%);
    color: var(--white);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-content {
    margin-top: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--gray-300);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.2;
}

.cta-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */

.landing-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .nav-brand-logo {
        width: 140px;
    }
    
    .hero-section {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-trust-badges {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .trust-badge {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }
    
    .trust-badge i {
        font-size: 1rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.75rem;
    }
    
    .complex-info-section {
        padding: 3rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .login-btn {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .trust-badge {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-info-grid {
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

    margin-bottom: 20px;
    color: #1a1a1a;
}

.demo-content p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 30px;
    line-height: 1.7;
}

.demo-mockup {
    background: linear-gradient(135deg, #d4f1e8, #d4f1e8);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mockup-screen {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d4f1e8;
}
.mockup-header-title {
    margin-left: 20px;
    color: #718096;
    font-size: 14px;
}
.mockup-metric {
    font-size: 1.5rem;
}
.mockup-metric--green { color: #4db896; }
.mockup-metric--indigo { color: #4db896; }
.mockup-metric--red { color: #ef4444; }
.mockup-metric--orange { color: #f59e0b; }

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #4db896; }

.mockup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mockup-card {
    background: #f8fdfb;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #4db896;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #8be5bc;
}

.footer-brand-logo {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-section p, .footer-section a {
    color: #718096;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #8be5bc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    color: #718096;
}

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

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

.floating {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-logo { width: min(360px, 86vw); }
    .hero-subtitle { font-size: 1.2rem; }
    .demo-container { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .nav-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .nav-brand-logo {
        width: 154px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.landing-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin: 0;
    text-align: center;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0.5rem 0 0;
    text-align: center;
    max-width: 500px;
    line-height: 1.5;
}

/* Footer CTA Section */
.footer-cta {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(77, 184, 150, 0.1) 0%, rgba(109, 212, 168, 0.05) 100%);
    border: 1px solid rgba(77, 184, 150, 0.2);
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    border-color: rgba(77, 184, 150, 0.4);
    background: linear-gradient(135deg, rgba(77, 184, 150, 0.15) 0%, rgba(109, 212, 168, 0.08) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(77, 184, 150, 0.2);
}

.footer-cta-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(77, 184, 150, 0.3);
}

.footer-cta-icon i {
    font-size: 1.5rem;
    color: white;
}

.footer-cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-cta-content h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.footer-cta-content p {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(77, 184, 150, 0.3);
}

.footer-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(77, 184, 150, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.footer-cta-button i:first-child {
    font-size: 1.125rem;
}

.footer-cta-button i:last-child {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.footer-cta-button:hover i:last-child {
    transform: translateX(4px);
}

.footer-divider {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(77, 184, 150, 0.3) 20%, 
        rgba(77, 184, 150, 0.6) 50%, 
        rgba(77, 184, 150, 0.3) 80%, 
        transparent 100%);
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-copyright i {
    font-size: 1.125rem;
    color: var(--primary);
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-developer i.ti-heart-filled {
    color: var(--primary);
    font-size: 1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(77, 184, 150, 0.5));
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.footer-link:hover {
    color: var(--primary-light);
    background: rgba(77, 184, 150, 0.1);
    transform: translateY(-2px);
}

.footer-link i {
    font-size: 0.875rem;
}

/* Brand and Company Links */
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
}

.footer-brand-link:hover {
    color: var(--primary-light);
    background: rgba(77, 184, 150, 0.15);
    transform: translateY(-1px);
}

.footer-company-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.footer-company-link:hover {
    color: var(--primary);
    background: rgba(77, 184, 150, 0.1);
    transform: translateY(-2px);
}

.footer-company-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.footer-company-link:hover i {
    transform: translate(2px, -2px);
}

.footer-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: translate(2px, -2px);
}

/* ============================================
   COMMERCIAL SECTIONS
   ============================================ */

.commercial-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
}

.commercial-section--soft {
    background: linear-gradient(180deg, #f6fbf9 0%, #ffffff 100%);
}

.commercial-section__header {
    max-width: 860px;
    margin: 0 auto 3rem;
    text-align: center;
}

.commercial-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--gray-900);
    margin: 1rem 0;
}

.commercial-section__subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin: 0 auto;
}

.commercial-grid {
    display: grid;
    gap: 1.5rem;
}

.commercial-grid--modules {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commercial-grid--addons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commercial-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(77, 184, 150, 0.12);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(31, 78, 64, 0.08);
}

.commercial-card__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(77, 184, 150, 0.18), rgba(45, 108, 142, 0.12));
    color: var(--secondary-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.commercial-card__title {
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.commercial-card__body {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.commercial-card__caption {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.commercial-card__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--secondary-dark);
    margin-bottom: 0.9rem;
}

.commercial-list {
    padding-left: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 0;
}

.commercial-list li + li {
    margin-top: 0.45rem;
}

.commercial-note-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.commercial-note {
    background: rgba(45, 108, 142, 0.06);
    border: 1px solid rgba(45, 108, 142, 0.12);
    border-radius: 22px;
    padding: 1.25rem 1.35rem;
}

.commercial-note strong {
    display: block;
    color: var(--secondary-dark);
    margin-bottom: 0.45rem;
}

.commercial-note p {
    color: var(--gray-700);
    margin-bottom: 0;
}

.commercial-plan-overview {
    display: flex;
    flex-direction: column;
}

.commercial-plan-stack {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.commercial-plan-detail {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 248, 0.94));
    border: 1px solid rgba(77, 184, 150, 0.14);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 44px rgba(31, 78, 64, 0.08);
}

.commercial-plan-detail__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(77, 184, 150, 0.14);
}

.commercial-plan-detail__eyebrow {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.commercial-plan-detail__header h3 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--gray-900);
}

.commercial-plan-detail__meta {
    text-align: right;
}

.commercial-plan-detail__meta span {
    display: block;
    color: var(--gray-600);
    margin-bottom: 0.35rem;
}

.commercial-plan-detail__meta strong {
    color: var(--primary-dark);
    font-size: 1.15rem;
}

.commercial-plan-detail__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.commercial-plan-detail__grid h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.55rem;
}

.commercial-plan-detail__grid p {
    color: var(--gray-700);
    margin-bottom: 0;
}

.commercial-plan-detail__footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(77, 184, 150, 0.12);
}

.commercial-plan-detail__footer p {
    margin-bottom: 0;
    color: var(--secondary-dark);
    font-weight: 600;
}

.commercial-inline-note {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(45, 108, 142, 0.07);
    color: var(--secondary-dark);
    font-size: 0.92rem;
}

.commercial-callout {
    margin-top: 1.75rem;
    padding: 1.5rem 1.75rem;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(45, 108, 142, 0.92), rgba(77, 184, 150, 0.88));
    color: #ffffff;
    box-shadow: 0 20px 44px rgba(26, 68, 82, 0.18);
}

.commercial-callout h3 {
    margin-bottom: 0.65rem;
    font-size: 1.35rem;
}

.commercial-callout p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Responsive Commercial Sections */
@media (max-width: 992px) {
    .commercial-grid--modules,
    .commercial-grid--addons,
    .commercial-plan-detail__grid,
    .commercial-note-grid {
        grid-template-columns: 1fr;
    }

    .commercial-plan-detail__header {
        flex-direction: column;
    }

    .commercial-plan-detail__meta {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .commercial-section {
        padding: 4rem 0;
    }

    .commercial-card,
    .commercial-plan-detail,
    .commercial-callout {
        padding: 1.4rem;
        border-radius: 22px;
    }

    .commercial-section__header {
        margin-bottom: 2rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .landing-footer {
        padding: 2rem 1rem 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-cta {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .footer-cta-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-cta-content h3 {
        font-size: 1rem;
    }
    
    .footer-cta-button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }
    
    .footer-copyright,
    .footer-developer {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .landing-footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-info {
        gap: 1rem;
    }
    
    .footer-cta {
        padding: 1.25rem;
    }
    
    .footer-cta-content h3 {
        font-size: 0.9375rem;
    }
    
    .footer-cta-content p {
        font-size: 0.875rem;
    }
    
    .footer-cta-button {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    .footer-developer {
        font-size: 0.8125rem;
    }
} 
