/* ===================================
   BINI LANDING PAGE STYLES
   Modern, clean, and responsive design
   =================================== */

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

/* ===================================
   TYPOGRAPHY HIERARCHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h3 {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

p, span, div, a, li {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.logo {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ===================================
   LAYOUT COMPONENTS
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section spacing */
.features, .testimonials, .faq, .download, .contact {
    padding: 80px 0;
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-weight: 400;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   HEADER NAVIGATION
   =================================== */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a.active {
    color: #4ade80;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4ade80;
    border-radius: 1px;
}

.nav-links a.active.scrolled {
    color: #0A5046;
}

.nav-links a.active.scrolled::after {
    background: #0A5046;
}

/* ===================================
   BUTTON COMPONENTS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0A5046, #0F4730);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0F4730, #0A5046);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   DOWNLOAD BUTTONS
   =================================== */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download-btn:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

/* Google Play Button */
.download-btn.google-play {
    background: linear-gradient(135deg, #34A853, #137333);
    color: #ffffff;
    border-color: #34A853;
}

.download-btn.google-play:hover {
    background: linear-gradient(135deg, #137333, #0F5132);
    border-color: #137333;
}

/* App Store Button */
.download-btn.app-store {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    border-color: #1a1a1a;
}

.download-btn.app-store:hover {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-color: #2d2d2d;
}

/* Header Download Button */
.header-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #0A5046, #0F4730);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.header-download-btn::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, #0A5046, #0F4730, #10b981, #0A5046);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: glowPulse 3s ease-in-out infinite;
}

.header-download-btn:hover::before {
    opacity: 0.8;
}

.header-download-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0F4730, #0A5046);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(10, 80, 70, 0.3);
}

.header-download-btn:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

/* Button Icons and Text */
.download-btn i,
.header-download-btn i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.download-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    gap: 2px;
}

.download-btn .btn-text .main-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.download-btn .btn-text .sub-text {
    font-weight: 400;
    font-size: 0.7rem;
    opacity: 0.9;
}

/* ===================================
   HAMBURGER MENU
   =================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 4px;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger.scrolled span {
    background-color: #1a1a1a;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 80, 70, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    padding-top: 1rem;
}

.mobile-nav li {
    margin: 0.5rem 0;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    display: block;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: #4ade80;
    transform: translateY(-2px);
}

/* ===================================
   FLOATING DOWNLOAD BUTTON
   =================================== */
.floating-download {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    animation: floatingPulse 2s ease-in-out infinite;
    /* Fix for square ripple effect */
    outline: none;
    border: none;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.floating-download.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-download:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.floating-download:active {
    transform: translateY(-2px) scale(1.05);
}

.floating-download:focus {
    outline: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.floating-download:focus:not(:focus-visible) {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Ensure ripple effect stays circular */
.floating-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.floating-download:active::before {
    opacity: 1;
    transform: scale(1);
}

.floating-download.active {
    transform: translateY(-2px) scale(1.05);
}

/* iOS App Store Button */
.floating-download.ios {
    background: linear-gradient(135deg, #007AFF, #0051D5);
}

.floating-download.ios:hover {
    background: linear-gradient(135deg, #0051D5, #003BA3);
}

/* Google Play Store Button */
.floating-download.android {
    background: linear-gradient(135deg, #34A853, #137333);
}

.floating-download.android:hover {
    background: linear-gradient(135deg, #137333, #0F5132);
}

/* Floating button animations */
@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(52, 168, 83, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(52, 168, 83, 0);
    }
}

/* Back to Home Button */
.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0A5046;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(10, 80, 70, 0.1);
    border: 1px solid rgba(10, 80, 70, 0.2);
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: rgba(10, 80, 70, 0.2);
    border-color: rgba(10, 80, 70, 0.3);
    transform: translateY(-1px);
}

.back-to-home i {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0A5046 0%, #0F4730 100%);
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    align-items: center;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #0A5046;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0A5046, #0F4730);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(10,80,70,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
    pointer-events: none;
}

.testimonials .section-header {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 3rem;
    color: rgba(10, 80, 70, 0.1);
    font-family: serif;
    font-weight: bold;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A5046, #0F4730, #10b981);
    border-radius: 12px 12px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #0A5046;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0A5046, #0F4730);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    box-shadow: 0 3px 10px rgba(10, 80, 70, 0.2);
}

.testimonial-avatar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0A5046, #0F4730, #10b981);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-family: 'Ubuntu', sans-serif;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 0.25rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    color: #2d3748;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(10, 80, 70, 0.2);
}

.testimonial-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #0A5046, #0F4730);
    border-radius: 1px;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 80, 70, 0.1);
}

.testimonial-date {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
}

.testimonial-verified i {
    font-size: 0.85rem;
}

/* Featured testimonial */
.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
}

.testimonial-card.featured::after {
    height: 4px;
    background: linear-gradient(90deg, #0A5046, #0F4730, #10b981, #fbbf24);
}

.testimonial-card.featured .testimonial-avatar {
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
}

.testimonial-card.featured .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: #0A5046;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.faq-question i {
    color: #4a5568;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0A5046;
    margin-bottom: 1rem;
}

.contact-section p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

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

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid #0A5046;
}

.contact-btn.primary {
    background: linear-gradient(135deg, #0A5046, #0F4730);
    color: #ffffff;
}

.contact-btn.secondary {
    background: transparent;
    color: #0A5046;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* ===================================
   DOWNLOAD SECTION
   =================================== */
.download {
    padding: 80px 0;
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    background: rgba(10, 80, 70, 0.1);
    color: #0A5046;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 80, 70, 0.2);
}

.download-content {
    position: relative;
    z-index: 2;
}

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

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.download-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.download-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #0A5046;
    font-size: 1rem;
}

.download-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(10, 80, 70, 0.1);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(10, 80, 70, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(10, 80, 70, 0.2);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0A5046, #0F4730);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #4a5568;
    margin-top: 4px;
}

.download .section-header h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download .section-header p {
    color: #4a5568;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section:first-child {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Ubuntu', sans-serif;
    letter-spacing: -0.02em;
}

.footer-logo i {
    font-size: 1.5rem;
    color: #ffffff;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    letter-spacing: -0.02em;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background: #0A5046;
    border-radius: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.25rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    padding: 0.1rem 0;
    min-height: 28px;
    font-size: 0.9rem;
    line-height: 1.3;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
    font-weight: 500;
}

.footer-section ul li span {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    padding: 0.1rem 0;
    min-height: 28px;
    font-size: 0.9rem;
    line-height: 1.3;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid transparent;
    min-width: 40px;
    min-height: 40px;
}

.social-links a:hover {
    background: #0A5046;
    transform: translateY(-3px);
    border-color: #0A5046;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    margin: 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.01);
    }
}

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   ENHANCED BUTTON EFFECTS
   =================================== */
/* Hero Download Buttons with Glow */
.hero .download-btn {
    position: relative;
    overflow: hidden;
}

.hero .download-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0A5046, #0F4730, #10b981, #0A5046);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero .download-btn:hover::before {
    opacity: 0.9;
}

.hero .download-btn.google-play::before {
    background: linear-gradient(45deg, #34A853, #137333, #10b981, #34A853);
}

.hero .download-btn.app-store::before {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d, #4a5568, #1a1a1a);
}

.hero .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .download-btn.google-play:hover {
    background: linear-gradient(135deg, #137333, #0F5132);
    border-color: #137333;
}

.hero .download-btn.app-store:hover {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-color: #2d2d2d;
}

/* Download Section Buttons with Glow */
.download .download-btn {
    position: relative;
    overflow: hidden;
}

.download .download-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0A5046, #0F4730, #10b981, #0A5046);
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: glowPulse 3s ease-in-out infinite;
}

.download .download-btn:hover::before {
    opacity: 0.9;
}

.download .download-btn.google-play::before {
    background: linear-gradient(45deg, #34A853, #137333, #10b981, #34A853);
}

.download .download-btn.app-store::before {
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d, #4a5568, #1a1a1a);
}

.download .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download .download-btn.google-play:hover {
    background: linear-gradient(135deg, #137333, #0F5132);
    border-color: #137333;
}

.download .download-btn.app-store:hover {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-color: #2d2d2d;
}

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

/* Responsive Button Sizing */
@media (max-width: 768px) {
    .download-btn {
        min-width: 180px;
        padding: 14px 20px;
        gap: 10px;
    }

    .header-download-btn {
        padding: 6px 12px;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .download-btn {
        min-width: 160px;
        padding: 12px 16px;
        gap: 8px;
    }

    .header-download-btn {
        padding: 5px 10px;
        gap: 5px;
    }
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card.featured {
        grid-column: span 1;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-header {
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .testimonial-info h4 {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .testimonial-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section:first-child {
        grid-column: 1;
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-section {
        text-align: center !important;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-section ul li {
        margin-bottom: 0.15rem;
    }
    
    .footer-section ul li a,
    .footer-section ul li span {
        font-size: 0.8rem;
        min-height: 24px;
        padding: 0.03rem 0;
        line-height: 1.2;
        justify-content: center;
        text-align: center;
    }
    
    .social-links {
        gap: 0.6rem;
        margin-top: 0.75rem;
        justify-content: center;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
    
    .footer-bottom {
        padding-top: 1.25rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.4;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        justify-content: center;
    }
    
    .footer-logo i {
        font-size: 1.25rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.25rem;
    }
    
    .footer-section {
        text-align: center !important;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        text-align: center;
    }
    
    .footer-section h4::after {
        width: 18px;
        height: 1.5px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-section ul li {
        margin-bottom: 0.25rem;
    }
    
    .footer-section ul li a,
    .footer-section ul li span {
        font-size: 0.8rem;
        min-height: 28px;
        padding: 0.05rem 0;
        text-align: center;
        justify-content: center;
    }
    
    .social-links {
        gap: 0.5rem;
        margin-top: 0.6rem;
        justify-content: center;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }
    
    .social-links a i {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .floating-download {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 1.75rem 0 0.75rem;
    }
    
    .footer-content {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-logo i {
        font-size: 1.1rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.1rem;
    }
    
    .footer-section ul li a,
    .footer-section ul li span {
        font-size: 0.75rem;
        min-height: 22px;
        line-height: 1.1;
        padding: 0.02rem 0;
    }
    
    .social-links a {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }
    
    .social-links a i {
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
}

/* General Responsive Styles */
@media (max-width: 768px) {
    /* All pages */
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-download-btn {
        display: none !important;
    }
    
    .floating-download {
        display: flex;
    }
    
    .back-to-home {
        display: inline-flex !important;
    }
    
    .navbar {
        justify-content: space-between;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    /* Remove conflicting font-size declarations - now handled by typography system */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .download-actions {
        justify-content: center;
        height: auto;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        justify-content: center;
    }

    .download-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    .download-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
        text-align: center;
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (min-width: 769px) {
    .floating-download {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
    
    .back-to-home {
        display: inline-flex !important;
    }
    
    .header-download-btn {
        display: inline-flex !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-content {
        padding: 2rem 1rem;
    }
    
    .floating-download {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .footer-section ul li a {
        padding: 0.5rem 0;
        min-height: 48px;
    }
    
    .footer-section ul li span {
        padding: 0.5rem 0;
        min-height: 48px;
    }
    
    .social-links a {
        min-width: 48px;
        min-height: 48px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer-section ul li a {
        color: #ffffff;
        text-decoration: underline;
    }
    
    .footer-section ul li a:hover {
        text-decoration: none;
    }
    
    .social-links a {
        border: 2px solid #ffffff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .footer-section ul li a,
    .social-links a,
    .download-btn,
    .feature-card,
    .testimonial-card,
    .btn,
    .contact-btn {
        transition: none;
    }
    
    .footer-section ul li a:hover {
        transform: none;
    }
    
    .social-links a:hover,
    .download-btn:hover,
    .feature-card:hover,
    .testimonial-card:hover,
    .btn:hover,
    .contact-btn:hover {
        transform: none;
    }
    
    @keyframes glowPulse {
        from, to {
            opacity: 1;
            transform: none;
        }
    }
    
    @keyframes float {
        from, to {
            opacity: 1;
            transform: none;
        }
    }
    
    @keyframes slideInUp {
        from, to {
            opacity: 1;
            transform: none;
        }
    }
    
    @keyframes fadeInScale {
        from, to {
            opacity: 1;
            transform: none;
        }
    }
    
    @keyframes floatingPulse {
        from, to {
            opacity: 1;
            transform: none;
        }
    }
} 

/* ===================================
   MOBILE TYPOGRAPHY SYSTEM
   Consistent font hierarchy for all pages
   =================================== */

/* Mobile Typography Variables (Applied via Media Queries) */
@media (max-width: 768px) {
    /* ===================================
       MOBILE TYPOGRAPHY HIERARCHY
       =================================== */
    
    /* Primary Headings */
    h1, .hero h1 {
        font-size: 2.25rem !important; /* 36px - Main page titles */
    }
    
    /* Secondary Headings */
    h2, .section-header h2, .page-header h1 {
        font-size: 1.875rem !important; /* 30px - Section titles */
    }
    
    /* Tertiary Headings */
    h3, .feature-card h3, .testimonial-info h4, .faq-question h3, 
    .help-card h3, .contact-section h3 {
        font-size: 1.25rem !important; /* 20px - Card/component titles */
    }
    
    /* Quaternary Headings */
    h4, .footer-section h4 {
        font-size: 1.125rem !important; /* 18px - Sub-section headings */
    }
    
    /* Body Text Large */
    .hero p, .section-header p, .page-header p {
        font-size: 1.125rem !important; /* 18px - Hero/intro text */
    }
    
    /* Body Text Standard */
    p, .feature-card p, .testimonial-text, .faq-answer p, 
    .help-card p, .contact-section p, .footer-section p {
        font-size: 1rem !important; /* 16px - Standard body text */
    }
    
    /* Body Text Small */
    .testimonial-info p, .testimonial-date, .stat-label,
    .footer-section ul li a, .footer-section ul li span {
        font-size: 0.875rem !important; /* 14px - Secondary info text */
    }
    
    /* Micro Text */
    .testimonial-verified, .footer-bottom p, .back-link,
    .download-btn .btn-text .sub-text {
        font-size: 0.75rem !important; /* 12px - Fine print/labels */
    }
    
    /* ===================================
       NAVIGATION TYPOGRAPHY
       =================================== */
    
    /* Logo */
    .logo {
        font-size: 1.375rem !important; /* 22px - Brand consistency */
    }
    
    /* Mobile Navigation */
    .mobile-nav a {
        font-size: 1.25rem !important; /* 20px - Touch-friendly nav */
    }
    
    /* Header Download Button */
    .header-download-btn {
        font-size: 0.875rem !important; /* 14px - Compact header button */
    }
    
    /* ===================================
       BUTTON TYPOGRAPHY
       =================================== */
    
    /* Primary Buttons */
    .download-btn, .btn, .contact-btn.primary {
        font-size: 1rem !important; /* 16px - Primary actions */
    }
    
    .download-btn .btn-text .main-text {
        font-size: 1rem !important; /* 16px - Button main text */
    }
    
    /* Secondary Buttons */
    .contact-btn.secondary, .back-to-home {
        font-size: 0.875rem !important; /* 14px - Secondary actions */
    }
    
    /* Floating Button */
    .floating-download {
        font-size: 1.125rem !important; /* 18px - Prominent floating action */
    }
    
    /* ===================================
       COMPONENT-SPECIFIC TYPOGRAPHY
       =================================== */
    
    /* Feature Items */
    .feature-item {
        font-size: 0.875rem !important; /* 14px - Feature list items */
    }
    
    /* Stats */
    .stat-number {
        font-size: 1.75rem !important; /* 28px - Prominent numbers */
    }
    
    /* Testimonials */
    .testimonial-rating i {
        font-size: 0.875rem !important; /* 14px - Star ratings */
    }
    
    /* Icons in Components */
    .feature-icon i, .stat-icon {
        font-size: 1.125rem !important; /* 18px - Component icons */
    }
    
    .download-btn i, .contact-btn i, .header-download-btn i {
        font-size: 1rem !important; /* 16px - Button icons */
    }
    
    .social-links a i {
        font-size: 0.875rem !important; /* 14px - Social icons */
    }
    
    /* ===================================
       FORM & INPUT TYPOGRAPHY
       =================================== */
    
    /* Badge/Label Elements */
    .section-badge {
        font-size: 0.75rem !important; /* 12px - Small badges */
    }
}

/* ===================================
   EXTRA SMALL MOBILE (≤480px)
   =================================== */
@media (max-width: 480px) {
    /* Reduce sizes slightly for very small screens */
    
    h1, .hero h1 {
        font-size: 2rem !important; /* 32px */
    }
    
    h2, .section-header h2, .page-header h1 {
        font-size: 1.625rem !important; /* 26px */
    }
    
    h3, .feature-card h3, .testimonial-info h4, .faq-question h3,
    .help-card h3, .contact-section h3 {
        font-size: 1.125rem !important; /* 18px */
    }
    
    .hero p, .section-header p, .page-header p {
        font-size: 1rem !important; /* 16px */
    }
    
    .stat-number {
        font-size: 1.5rem !important; /* 24px */
    }
    
    .logo {
        font-size: 1.25rem !important; /* 20px */
    }
    
    .mobile-nav a {
        font-size: 1.125rem !important; /* 18px */
    }
}

/* ===================================
   VERY SMALL MOBILE (≤360px)
   =================================== */
@media (max-width: 360px) {
    /* Further optimize for very small screens */
    
    h1, .hero h1 {
        font-size: 1.75rem !important; /* 28px */
    }
    
    h2, .section-header h2, .page-header h1 {
        font-size: 1.5rem !important; /* 24px */
    }
    
    .logo {
        font-size: 1.125rem !important; /* 18px */
    }
    
    .mobile-nav a {
        font-size: 1rem !important; /* 16px */
    }
} 