/* ========================
   CSS Variables & Reset
   ======================== */
:root {
    --primary: #5CB85C;
    --primary-dark: #4A9C4A;
    --accent: #fbbf24;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-900: #0f172a;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --teal-500: #14b8a6;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--slate-900);
    overflow-x: hidden;
}

h1, h2, h3, .hero-title, .page-header h1, .section-header h2 {
    font-family: var(--font-display);
}

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

/* ========================
   Container & Layout
   ======================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}


/* ========================
   Navigation
   ======================== */
.navbar {
    position: fixed;   /* instead of sticky */
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}


.navbar.scrolled {
    background: white; /* White background on scroll for ALL pages */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

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

.nav-brand h2 {
    color: var(--slate-900);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-display);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--slate-700);
    font-weight: 600;
    font-family: var(--font-sans);
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--slate-900);
    border-radius: 2px;
    transition: 0.3s;
}

/* ========================
   Hero Section
   ======================== */
.hero {
    position: relative;
      min-height: 20vh;   
    padding: 5rem 0 8rem;
    background: linear-gradient(to bottom, var(--green-50), white);
    overflow: hidden;
}

/* Add pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-bg.png');

    /* background-image: url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?w=1200&q=80'); */
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

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

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 2;
}

.hero-blob-1 {
    top: -80px;
    right: -80px;
    width: 384px;
    height: 384px;
    background: rgba(16, 185, 129, 0.1);
}

.hero-blob-2 {
    bottom: -80px;
    left: -80px;
    width: 384px;
    height: 384px;
    background: rgba(251, 191, 36, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-100);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-green {
    color: #4A9C4A;
}

.text-black {
    color: var(--slate-900);
}

.text-primary {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.underline-svg {
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: -4px;
    left: 0;
    color: var(--accent);
    opacity: 0.4;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.store-badge {
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.store-badge img {
    height: 56px;
    width: auto;
    display: block;
}

.store-badge:hover {
    transform: translateY(-3px);
}

/* Hero Custom Image */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-custom-image {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 10;
}

/* ========================
   Features Section
   ======================== */
.features {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--slate-600);
}

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

.feature-card {
    background: var(--slate-50);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon svg {
    color: white;
}

.bg-green {
    background: #10b981;
}

.bg-accent {
    background: #fbbf24;
}

.bg-teal {
    background: #14b8a6;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--slate-600);
    line-height: 1.7;
}

/* ========================
   App Gallery Section
   ======================== */
.app-gallery {
    padding: 6rem 0;
    background: var(--green-50);
    overflow: hidden;
}

.gallery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.gallery-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--slate-700);
    margin-bottom: 1rem;
}

.check-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

.btn-primary {
    background: var(--slate-900);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--slate-700);
}

.gallery-screens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.screen-card {
  
    padding: 0.5rem;
   
}

.screen-left {
    transform: rotate(-6deg);
    margin-top: 3rem;
}

.screen-right {
    transform: rotate(6deg);
    margin-bottom: 3rem;
}

.screen-placeholder {
    background: var(--slate-100);
    aspect-ratio: 9/16;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-placeholder span {
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
}

/* ========================
   CTA Section
   ======================== */
.cta {
    padding: 5rem 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 32px 32px;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--green-100);
    margin-bottom: 2.5rem;
}

.btn-white {
    background: white;
    color: var(--primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ========================
   Footer
   ======================== */
.footer {
    background: var(--slate-900);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* ========================
   About Page
   ======================== */
.about-page {
    padding: 2rem 0 6rem;
}

.page-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--slate-600);
    line-height: 1.7;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem;
}

.story-image {
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    height: 400px;
    position: relative;
    transition: transform 0.3s;
}

.story-image:hover {
    transform: scale(1.02);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    padding: 2rem;
}

.image-overlay p {
    color: white;
    font-weight: 500;
    font-size: 1.125rem;
}

.story-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.founded-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.badge-line {
    width: 48px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--green-50);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--slate-600);
    line-height: 1.7;
}

/* Updated Contact Page Styles - Add these to your existing styles.css after the Privacy Page section */

/* ========================
   Contact Page - Updated
   ======================== */
.contact-page {
    padding: 2rem 0 4rem;
    background: white;
    min-height: 100vh;
}

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

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.contact-detail {
    font-size: 1.125rem;
    color: var(--slate-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--slate-700);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--primary);
}

.contact-subtext {
    font-size: 0.9375rem;
    color: var(--slate-600);
}

/* Business Hours */
.business-hours {
    background: var(--green-50);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--primary);
    margin-bottom: 4rem;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hours-header svg {
    color: var(--primary);
}

.hours-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

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

.hours-item {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hours-item .day {
    font-weight: 600;
    color: var(--slate-700);
}

.hours-item .time {
    font-weight: 700;
    color: var(--primary);
}

.hours-item.closed .time {
    color: var(--slate-500);
}

.hours-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    color: var(--slate-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.hours-note svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--primary);
}

/* Service Info Section */
.service-info-section {
    margin-bottom: 4rem;
}

.service-info-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-info-card {
    background: var(--slate-50);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.service-info-card:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.service-info-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.service-info-card p {
    color: var(--slate-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Quick Contact CTA */
.quick-contact-cta {
    background: var(--primary);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 32px 32px;
}

.cta-content-box {
    position: relative;
    z-index: 10;
}

.cta-content-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.cta-content-box p {
    font-size: 1.125rem;
    color: var(--green-100);
    margin-bottom: 2rem;
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .business-hours {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-info-section {
        margin-bottom: 3rem;
    }

    .service-info-section h2 {
        font-size: 1.5rem;
    }

    .service-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-contact-cta {
        padding: 2.5rem 1.5rem;
    }

    .cta-content-box h3 {
        font-size: 1.5rem;
    }

    .cta-content-box p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
/* ========================
   Privacy Page
   ======================== */
.privacy-page {
    padding: 4rem 0;
    background: white;
    min-height: 100vh;
}

.privacy-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate-100);
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-meta {
    color: #64748b;
    font-size: 0.875rem;
}

.privacy-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--slate-700);
}

.privacy-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    margin-bottom: 1.5rem;
}

.privacy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.75rem;
}

.privacy-content strong {
    color: var(--slate-900);
    font-weight: 600;
}

/* ========================
   Responsive Design
   ======================== */

/* Desktop - align to left */
@media (min-width: 1025px) {
    .hero-text .app-buttons {
        justify-content: flex-start;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-content,
    .about-story,
    .gallery-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-phone {
        margin-top: 3rem;
    }

    .hero-custom-image {
        max-width: 450px;
        max-height: 550px;
    }

    .app-buttons {
        justify-content: center;
    }
    
    .store-badge img {
        height: 52px;
    }

    .gallery-screens {
        max-width: 400px;
        margin: 2rem auto 0;
    }

    .story-image {
        order: -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-brand h2 {
        font-size: 1.25rem;
    }
     .hero-phone {
        width: 100%;
        justify-content: flex-start;
    }
      .hero-badge {
        order: 2;
        margin-top: 0.5rem;
    }

    .hero-title {
        order: 1;
    }
     .hero-phone {
        margin-top: 0;
    }
    .logo-img {
        height: 32px;
    }
 .hero-text {
        text-align: center;
    }
    .hero-content {
        padding-top: 2.5rem;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--slate-100);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

   .hero-custom-image {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: none;
        border-radius: 0;
    }
    .app-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .store-badge img {
        height: 48px;
    }

    .section-header h2 {
        font-size: 1.875rem;
    }

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

    .gallery-text h2 {
        font-size: 1.875rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .story-text h2 {
        font-size: 1.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }
      .hero .container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 2rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

  .hero-custom-image {
        width: 100vw;
        max-width: 100vw;
        height: auto;
        max-height: none;
    }

    .app-buttons {
        gap: 0.5rem;
    }
    
    .store-badge img {
        height: 44px;
    }

    .features,
    .app-gallery {
        padding: 3rem 0;
    }

    .cta {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}
