/* Base Variables - Premium Palette */
:root {
    --primary-color: #6366f1; /* Indigo */
    --primary-dark: #4338ca;
    --primary-light: #818cf8;
    --secondary-color: #f59e0b; /* Amber/Gold */
    --text-main: #111827;
    --text-muted: #4b5563;
    --text-light: #9ca3af;
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a; /* Slate dark for footer */
    --border-color: #e2e8f0;
    
    /* Premium Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 40px rgba(99, 102, 241, 0.15);
    --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.4);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Prevent zooming on mobile */
    touch-action: manipulation; 
}

body {
    /* English text uses Outfit, Hindi text uses Noto Sans Devanagari */
    font-family: 'Outfit', 'Noto Sans Devanagari', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

@keyframes blinkCursor {
    from { border-right-color: var(--primary-color); }
    to { border-right-color: transparent; }
}

/* Logo Sizing */
.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.mobile-app-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.4));
}

.mobile-app-title {
    font-size: 1.5rem; /* Smaller as requested */
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Scroll Animations (Triggered via JS) */
.slide-up, .slide-left, .slide-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-up { transform: translateY(50px); }
.slide-left { transform: translateX(-50px); }
.slide-right { transform: translateX(50px); }

.slide-up.show, .slide-left.show, .slide-right.show {
    opacity: 1;
    transform: translate(0, 0);
}

/* ----------------------------------
   BUTTONS
----------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary i {
    font-size: 2rem;
}

.btn-primary .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-primary .btn-text span {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-primary .btn-text strong {
    font-size: 1.2rem;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    display: inline-block;
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.btn-outline:hover {
    background: #d97706; /* Darker amber for hover */
    border-color: #d97706;
    color: white;
    box-shadow: 0 6px 15px rgba(217, 119, 6, 0.5);
    transform: translateY(-2px);
}

/* Button Glow Animation */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 30px rgba(245, 158, 11, 0.8); }
    100% { box-shadow: 0 0 15px rgba(245, 158, 11, 0.4); }
}

.glow-btn {
    animation: pulseGlow 2s infinite;
    background: linear-gradient(135deg, var(--secondary-color), #d97706);
    color: white;
    border: 2px solid transparent;
}

.glow-btn .btn-text strong, .glow-btn .btn-text span {
    color: white; 
}

.glow-btn:hover {
    animation: none;
    background: linear-gradient(135deg, #f59e0b, #b45309);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.8), 0 0 40px rgba(245, 158, 11, 0.4);
    border: 2px solid rgba(255,255,255,0.5);
}

/* ----------------------------------
   NAVBAR (Glassmorphism)
----------------------------------- */
.navbar {
    background: var(--primary-dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(30, 27, 75, 0.95); /* Deep dark for scrolled */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
}

.logo-text {
    white-space: nowrap;
}

.close-drawer {
    display: none;
}

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

.nav-links a:not(.btn-outline) {
    font-weight: 600;
    color: #e2e8f0;
    transition: var(--transition);
    font-size: 1.05rem;
    position: relative;
}

.nav-links a:not(.btn-outline)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:not(.btn-outline):hover::after, 
.nav-links a.active:not(.btn-outline)::after {
    width: 100%;
}

.nav-links a:not(.btn-outline):hover, 
.nav-links a.active:not(.btn-outline) {
    color: white;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2000;
}

.hamburger-lines {
    display: block;
    height: 24px;
    width: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines .line {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 10px;
    background: white;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

.hamburger.active .line1 {
    opacity: 0;
}

.hamburger.active .line2 {
    opacity: 0;
}

.hamburger.active .line3 {
    opacity: 0;
}

/* ----------------------------------
   HERO SECTION
----------------------------------- */
.hero {
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e0e7ff 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative background shapes */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(80px);
}

.hero::before {
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: rgba(99, 102, 241, 0.15);
}

.hero::after {
    bottom: -10%; left: -10%;
    width: 500px; height: 500px;
    background: rgba(245, 158, 11, 0.1);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 25px;
}

.hero-line1 {
    font-size: 2.2rem;
    white-space: nowrap;
    color: var(--text-main);
}

.hero-line2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    line-height: 1.1;
}

.hero-line3 {
    font-size: 1.8rem;
    color: var(--text-main);
    white-space: nowrap;
    font-weight: 600;
}

/* Typing Effect */
.typing-container {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 25px;
    min-height: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.typing-prefix {
    font-size: 1.3rem;
    margin-right: 8px;
    color: var(--text-muted);
}

.typing-text {
    color: var(--secondary-color);
    border-right: 3px solid var(--primary-color);
    padding-right: 5px;
    animation: blinkCursor 0.7s steps(1) infinite;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 550px;
}

/* Phone Mockup Premium */
.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Glow behind phone */
.hero-image::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
    z-index: -1;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background: var(--bg-white);
    border: 14px solid #0f172a;
    border-radius: 45px;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary-dark), var(--primary-color));
    overflow: hidden;
}

/* Notch */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 30px;
    background: #0f172a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 2;
}

/* Screen overlay/glow */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 0; left: -50%;
    width: 200%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
}

.phone-screen {
    color: white;
    text-align: center;
    z-index: 1;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

.mobile-app-logo {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.4));
}

/* ----------------------------------
   FEATURES SECTION
----------------------------------- */
.features {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    white-space: nowrap;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

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

.feature-card {
    background: #eff6ff; /* Light Blue for high visibility */
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #bfdbfe; 
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Bottom border gradient effect */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-white);
    border-color: transparent;
}

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

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(99,102,241,0.2));
    color: var(--primary-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ----------------------------------
   ABOUT SECTION
----------------------------------- */
.about {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, #eef2ff 100%);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-shape {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-glow);
    animation: float 8s ease-in-out infinite alternate;
    position: relative;
}

.about-shape::after {
    content: '';
    position: absolute;
    width: 105%; height: 105%;
    border: 2px dashed var(--secondary-color);
    border-radius: inherit;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-shape i {
    font-size: 9rem;
    color: rgba(255, 255, 255, 0.95);
    z-index: 1;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.about-content {
    background: white;
    padding: 40px 35px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
    white-space: nowrap;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin-top: 40px;
}

.about-list li {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main);
}

.about-list li i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 10px;
    border-radius: 50%;
}

/* ----------------------------------
   CTA SECTION
----------------------------------- */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.cta::before, .cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta::before {
    width: 300px; height: 300px;
    top: -100px; left: -100px;
}
.cta::after {
    width: 400px; height: 400px;
    bottom: -150px; right: -150px;
}

.cta-container {
    position: relative;
    z-index: 1;
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-container h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.cta-container p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.white-btn {
    background: white;
    color: var(--primary-dark);
}

.white-btn .btn-text strong {
    color: var(--primary-dark);
}

.white-btn:hover {
    background: var(--bg-main);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: translateY(-5px) scale(1.05);
}

/* ----------------------------------
   DETAILED FOOTER
----------------------------------- */
.main-footer {
    background: var(--bg-main);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-container {
    background: var(--bg-dark);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bg-white);
    font-family: 'Outfit', sans-serif;
}

.footer-brand h3 i { color: var(--primary-light); }

.footer-brand p {
    line-height: 1.8;
    max-width: 350px;
    font-size: 1.05rem;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--bg-white);
    position: relative;
}

.footer-links h4::after, .footer-legal h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 5px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links a, .footer-legal a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-links a i, .footer-legal a i {
    font-size: 0.8rem;
    color: var(--primary-light);
}

.footer-links a:hover, .footer-legal a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white; /* Made background white */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark); /* Icon color dark */
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
}

/* ----------------------------------
   RESPONSIVE DESIGN
----------------------------------- */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.2rem; }
    .phone-mockup { width: 280px; height: 580px; }
    .about-shape { width: 350px; height: 350px; }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem; /* Slightly larger as requested */
    }
    .nav-logo {
        height: 30px;
    }
    
    .hamburger { 
        display: block; 
        z-index: 2000; /* Keep above drawer */
    }
    
    /* Custom Premium Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Slide from right */
        width: 280px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98); 
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 25px;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 40px rgba(0,0,0,0.7);
        border-left: 1px solid rgba(255,255,255,0.15);
        border-radius: 25px 0 0 25px;
    }
    
    .close-drawer {
        display: flex;
        align-items: center;
        gap: 8px;
        align-self: flex-end;
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        padding: 8px 16px;
        background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50px;
        margin-bottom: 40px;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .close-drawer:hover {
        background: rgba(245, 158, 11, 0.9);
        border-color: rgba(245, 158, 11, 1);
        transform: scale(1.05);
    }
    
    .nav-links.active { right: 0; }
    
    .nav-links a:not(.btn-outline) { 
        font-size: 1.4rem; 
        color: white;
        margin-bottom: 20px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 15px;
    }
    
    .nav-links a:not(.btn-outline)::after {
        display: none; /* Remove underline effect in mobile */
    }
    
    .nav-links a.btn-outline {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
    
    .hero { padding-top: 130px; }
    .hero-container, .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Mobile Hero Typography adjustments */
    .hero-line1 { 
        font-size: 1.8rem; /* Increased as requested */
        white-space: nowrap;
    }
    .hero-line2 { 
        font-size: 7vw; /* Slightly larger */
        white-space: nowrap;
    }
    .hero-line3 { 
        font-size: 1.6rem; 
        white-space: nowrap;
    }
    
    .hero-desc { margin: 0 auto 30px; font-size: 1.05rem; }
    .typing-container { 
        justify-content: center; 
        font-size: 1.3rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    .about-list {
        text-align: left; /* Align list perfectly straight */
    }
    .about-list li {
        font-size: 1.05rem;
        white-space: nowrap;
    }
    
    .section-title h2 {
        font-size: 2rem;
        white-space: nowrap;
    }
    
    .phone-mockup { margin: 40px auto 0; }
    
    .about-shape { width: 300px; height: 300px; margin-bottom: 30px; }
    .about-list li { justify-content: center; }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px; /* Better mobile spacing */
    }
    
    .footer-links h4::after, .footer-legal h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand p {
        margin: 0 auto; /* Center the description */
    }
    
    .footer-links ul, .footer-legal ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a, .footer-legal a, .footer-contact p { justify-content: center; }
    .footer-brand h3 { justify-content: center; }
    .social-links { justify-content: center; }
}
