/* Zellion Real Estate App Design System - Modern & Professional */
/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Colors - HSL Values */
    --background: 0 0% 100%;
    --foreground: 220 15% 20%;

    --card: 0 0% 100%;
    --card-foreground: 220 15% 20%;

    --popover: 0 0% 100%;
    --popover-foreground: 220 15% 20%;

    /* Primary - Vibrant Aqua */
    --primary: 187 89% 35%; /* #0ba1ad */
    --primary-foreground: 0 0% 98%;
    --primary-light: 187 70% 50%; /* #27c3d1 */
    --primary-glow: 187 89% 75%; /* #5ee7f5 */

    /* Secondary - Cyan */
    --secondary: 187 89% 35%; /* #0e9ea9 */
    --secondary-foreground: 220 15% 20%;
    --secondary-light: 187 70% 50%; /* Lighter cyan */

    /* Neutral Grays */
    --muted: 187 40% 95%; /* #eaf6f6 */
    --muted-foreground: 220 15% 45%;

    --accent: 187 89% 35%; /* #0e9ea9 */
    --accent-foreground: 0 0% 98%;

    /* Success Green for Sold/Available */
    --success: 162 44% 46%; /* #43aa8b */
    --success-foreground: 0 0% 98%;

    --destructive: 14 89% 54%; /* #f6511d */
    --destructive-foreground: 0 0% 98%;

    --border: 220 13% 91%;
    --input: 220 13% 91%;
    --ring: 217 91% 15%;

    /* Real Estate Specific Colors */
    --luxury: 262 83% 58%;
    --luxury-foreground: 0 0% 98%;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(217 91% 15%), hsl(217 91% 25%));
    --gradient-secondary: linear-gradient(135deg, hsl(187 89% 35%), hsl(187 89% 45%)); /* #0e9ea9 */
    --gradient-hero: linear-gradient(135deg, hsl(212, 14%, 24%) 0%, hsl(217 91% 25%) 50%, hsl(187 89% 35%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(0 0% 100%) 0%, hsl(220 13% 98%) 100%);

    /* Shadows */
    --shadow-soft: 0 2px 10px hsl(217 91% 15% / 0.1);
    --shadow-medium: 0 8px 30px hsl(217 91% 15% / 0.12);
    --shadow-large: 0 20px 40px hsl(217 91% 15% / 0.15);
    --shadow-glow: 0 0 40px hsl(187 89% 35% / 0.2); /* #0e9ea9 */

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --radius: 0.5rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

@keyframes fade-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out;
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out forwards;
    opacity: 0;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius));
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px hsl(var(--ring));
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn svg {
    width: 1rem;
    height: 1rem;
}

/* Button Variants */
.btn-default {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-soft);
    height: 2.5rem;
    padding: 0.5rem 1rem;
}

.btn-default:hover {
    background: hsl(var(--primary) / 0.9);
    box-shadow: var(--shadow-medium);
}

.btn-hero {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-medium);
    height: 2.75rem;
    padding: 0.5rem 2rem;
    border-radius: calc(var(--radius));
}

.btn-hero:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.btn-cta {
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    box-shadow: var(--shadow-medium);
    height: 3.5rem;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    border-radius: calc(var(--radius) + 2px);
}

.btn-cta:hover {
    background: hsl(var(--secondary-light));
    box-shadow: var(--shadow-large);
    transform: scale(1.05);
}

.btn-download {
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    height: 3.5rem;
    padding: 0.75rem 2.5rem;
    font-size: 1rem;
    border-radius: calc(var(--radius) + 2px);
}

.btn-download:hover {
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}

.btn-download-full {
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    height: 2.75rem;
    padding: 0.5rem 2rem;
    width: 100%;
    border-radius: calc(var(--radius));
}

.btn-download-full:hover {
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
    position: relative;
    z-index: 10;
}

@media (max-width: 640px) {
    .hero-grid {
        padding: 3rem 0;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-brand {
        justify-content: flex-start;
    }
}

.smartphone-icon {
    position: relative;
    /* left: 10px; */
    width: 3.5rem;
    /* height: 4rem; */
    color: hsl(var(--secondary));
}

.brand-name {
    color: floralwhite;
    font-weight: 600;
    font-size: 1.3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
}

.title-accent {
    color: hsl(var(--secondary));
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(var(--primary-foreground) / 0.8);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .hero-description {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 640px) {
    .hero-description {
        font-size: 1.125rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

.stat-item {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--secondary));
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--primary-foreground) / 0.7);
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--secondary));
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        padding: 0 0.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

.download-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-mockup {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-mockup {
        justify-content: flex-end;
    }
}

.mockup-container {
    position: relative;
}

.mockup-image {
    width: 20rem;
    height: auto;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
    border-radius: 1.25rem;
}

.new-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.decorative-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.decorative-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: hsl(var(--secondary) / 0.2);
}

.decorative-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: hsl(var(--primary-glow) / 0.2);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: hsl(var(--muted) / 0.3);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 48rem;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
    transition: var(--transition-smooth);
    text-align: center;
}

.feature-card:hover {
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.feature-description {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Showcase Section */
.showcase-section {
    padding: 5rem 0;
    background: hsl(var(--background));
}

.showcase-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.showcase-image {
    position: relative;
}

.showcase-img {
    width: 100%;
    height: 31.25rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-large);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--primary) / 0.3), transparent);
    border-radius: 1rem;
}

.stats-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1rem;
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.stats-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stats-number.primary {
    color: hsl(var(--primary));
}

.stats-number.success {
    color: hsl(var(--success));
}

.stats-number.secondary {
    color: hsl(var(--secondary));
}

.stats-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .showcase-title {
        font-size: 3rem;
    }
}

.showcase-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.6;
}

.property-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.property-type {
    padding: 1rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.property-type:hover {
    box-shadow: var(--shadow-soft);
}

.property-icon {
    width: 3rem;
    height: 3rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: calc(var(--radius));
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.property-info {
    flex: 1;
}

.property-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.property-title {
    font-weight: 600;
    color: hsl(var(--foreground));
}

.property-count {
    font-size: 0.875rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.property-desc {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Download Section */
.download-section {
    padding: 5rem 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.bg-element-1 {
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: hsl(var(--secondary) / 0.1);
}

.bg-element-2 {
    bottom: 0;
    right: 0;
    width: 20rem;
    height: 20rem;
    background: hsl(var(--primary-glow) / 0.1);
}

.download-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .download-title {
        font-size: 3rem;
    }
}

.download-description {
    font-size: 1.25rem;
    color: hsl(var(--primary-foreground) / 0.8);
    max-width: 32rem;
    margin: 0 auto;
}

.download-cards {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .download-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.download-card {
    padding: 2rem;
    background: hsl(var(--background) / 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(var(--primary-foreground) / 0.2);
    text-align: center;
    border-radius: calc(var(--radius));
    transition: var(--transition-smooth);
}

.download-card:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.download-icon {
    width: 4rem;
    height: 4rem;
    /* background: hsl(var(--background)); */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 1rem; */
    font-size: 1.5rem;
}

.download-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--primary-foreground));
    margin-bottom: 0.5rem;
}

.download-card-desc {
    color: hsl(var(--primary-foreground) / 0.7);
    margin-bottom: 1.5rem;
}

.download-icon-btn {
    width: 1.25rem;
    height: 1.25rem;
}

.social-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: hsl(var(--primary-foreground) / 0.8);
    position: relative;
    z-index: 10;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.proof-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--secondary));
}

.proof-text {
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, hsl(0 0% 8%) 0%, hsl(0 0% 12%) 100%);
    color: hsl(var(--primary-foreground));
    padding: 4rem 0;
    border-top: 1px solid hsl(0 0% 15%);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr repeat(4, auto);
        gap: 2rem;
    }
}

.footer-brand {
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .footer-brand {
        margin-bottom: 0;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #0ba1ad;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: hsl(var(--primary-foreground) / 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary-foreground) / 0.7);
    font-size: 0.875rem;
}

.contact-icon {
    width: 1rem;
    height: 1rem;
}

.footer-section-title {
    font-weight: 600;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: hsl(var(--primary-foreground) / 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: #0ba1ad;
}

.footer-bottom {
    border-top: 1px solid hsl(var(--primary-foreground) / 0.2);
    padding-top: 2rem;
}

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

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: hsl(var(--primary-foreground) / 0.7);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: hsl(var(--primary-foreground) / 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: #0ba1ad;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: var(--transition-smooth);
}

.social-link:hover .social-icon {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
    

    
    .stats-card {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    
    .stats-item {
        min-width: auto;
        flex: 1;
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* Page-specific styles */
.page-header {
    background: hsl(var(--background));
    padding: 1rem 0;
    border-bottom: 1px solid hsl(var(--border));
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-content {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.page-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
}

.content-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.content-text p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
}

.values-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
    text-align: center;
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.value-card p {
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

.team-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
}

.member-avatar {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.member-role {
    color: hsl(var(--primary));
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.5;
}

.stats-section {
    background: hsl(var(--muted) / 0.3);
    padding: 3rem 0;
    border-radius: 1rem;
}

.stats-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: hsl(var(--background));
    border-radius: calc(var(--radius));
    box-shadow: var(--shadow-soft);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid hsl(var(--primary-foreground) / 0.2);
}

@media (max-width: 768px) {
    .footer-simple {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer-links-simple {
    display: flex;
    gap: 2rem;
}

.footer-links-simple a {
    color: hsl(var(--primary-foreground) / 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links-simple a:hover {
    color: #0ba1ad;
}

/* Privacy Policy Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: hsl(var(--foreground));
}

.privacy-section p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: hsl(var(--muted) / 0.3);
    padding: 1.5rem;
    border-radius: calc(var(--radius));
    margin-top: 1rem;
}

/* Contact Page Styles */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-methods {
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
}

.method-icon {
    width: 3rem;
    height: 3rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.method-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.contact-method h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.contact-method p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
}

.contact-link {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-section {
    margin-bottom: 4rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: calc(var(--radius));
    border: 1px solid hsl(var(--border));
}

.form-container h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: hsl(var(--foreground));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) - 2px);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Styles */
.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: hsl(var(--foreground));
}

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

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    padding: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
}

.faq-item p {
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, hsl(0 0% 8%) 0%, hsl(0 0% 12%) 100%);
    color: hsl(var(--primary-foreground));
    padding: 4rem 0;
    border-top: 1px solid hsl(0 0% 15%);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-brand {
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .footer-brand {
        margin-bottom: 0;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: hsl(var(--secondary));
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: hsl(var(--primary-foreground) / 0.8);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsl(var(--primary-foreground) / 0.7);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    color: hsl(var(--secondary));
}

.contact-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: hsl(var(--secondary));
}

.footer-section {
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .footer-section {
        margin-bottom: 0;
    }
}

.footer-section-title {
    font-weight: 600;
    color: hsl(var(--primary-foreground));
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: hsl(var(--primary-foreground) / 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: hsl(var(--secondary));
    padding-left: 0.5rem;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: hsl(var(--secondary));
    transition: var(--transition-smooth);
}

.footer-link:hover::before {
    width: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid hsl(var(--primary-foreground) / 0.15);
    padding-top: 2rem;
}

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

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: hsl(var(--primary-foreground) / 0.6);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.social-link {
    color: hsl(var(--primary-foreground) / 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 0.5rem;
    border-radius: 50%;
    background: hsl(var(--primary-foreground) / 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: hsl(var(--secondary));
    background: hsl(var(--secondary) / 0.1);
    transform: translateY(-2px);
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: var(--transition-smooth);
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* Features Page Styles */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.feature-highlight {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 1024px) {
    .feature-highlight {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-highlight:nth-child(even) {
        direction: rtl;
    }
    
    .feature-highlight:nth-child(even) > * {
        direction: ltr;
    }
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
    background: linear-gradient(135deg, hsl(var(--foreground)) 0%, hsl(var(--primary)) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: hsl(var(--foreground));
    font-weight: 500;
}

.feature-benefits li::before {
    content: '✓';
    width: 1.5rem;
    height: 1.5rem;
    background: hsl(var(--success));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-icon-large {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, hsl(var(--secondary) / 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.feature-icon-large svg {
    width: 4rem;
    height: 4rem;
    color: hsl(var(--primary));
}

/* Help Center Styles */
.help-search {
    margin-bottom: 4rem;
}

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

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--muted-foreground));
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 2px);
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.help-categories {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .help-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .help-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

.help-category {
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
    transition: var(--transition-smooth);
}

.help-category:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.category-icon {
    width: 3rem;
    height: 3rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(var(--primary));
}

.help-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
}

.help-category p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.category-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-links a {
    color: hsl(var(--primary));
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    padding: 0.25rem 0;
}

.category-links a:hover {
    color: hsl(var(--secondary));
    padding-left: 0.5rem;
}

.quick-actions {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .quick-actions {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
    transition: var(--transition-smooth);
}

.action-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.action-icon {
    width: 4rem;
    height: 4rem;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.action-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.action-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.action-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* FAQ Expandable Items */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 3rem;
}

.faq-category-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
    padding-bottom: 0.5rem;
    border-bottom: 2px solid hsl(var(--border));
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-expandable {
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius));
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item-expandable:hover {
    box-shadow: var(--shadow-soft);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: hsl(var(--muted) / 0.5);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
}

.expand-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: hsl(var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    display: none;
}

.help-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
}

.help-cta h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.help-cta p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .help-buttons {
        flex-direction: row;
    }
}

/* Mobile-specific improvements */
@media (max-width: 640px) {
    .btn-cta,
    .btn-download {
        height: 3rem;
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 280px;
    }
    
    .btn-download-full {
        height: 2.5rem;
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .download-cards {
        gap: 1.5rem;
        margin: 0 auto 2rem;
        padding: 0 0.5rem;
    }
    
    .download-card {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        padding: 0 0.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 358px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-grid {
        padding: 3rem 0;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Logo Image Styles */
.brand-logo {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .logo-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}
