/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Lanova brand color palette - extracted from new logo */
    --lanova-pink: #dc4e5b;
    --lanova-magenta: #cd4b92;
    --lanova-purple: #5a5aa6;
    --lanova-gradient-pink: #d14b81;
    --primary-color: #cd4b92;
    --secondary-color: #5a5aa6;
    --accent-color: #dc4e5b;
    --text-dark: #2d1b3d;
    --text-medium: #4a3c5a;
    --text-light: #6b5b7d;
    --text-muted: #9b8bb3;
    --background-light: #fdf9fc;
    --background-white: #FFFFFF;
    --background-grey: #f9f5f8;
    --border-light: #ede5f0;
    --gradient-primary: linear-gradient(135deg, #dc4e5b 0%, #cd4b92 42%, #5a5aa6 100%);
    --gradient-secondary: linear-gradient(135deg, #cd4b92 0%, #5a5aa6 100%);
    --gradient-accent: linear-gradient(135deg, #dc4e5b 0%, #d14b81 100%);
    --shadow-subtle: 0 2px 8px rgba(90, 90, 166, 0.08);
    --shadow-medium: 0 8px 25px rgba(90, 90, 166, 0.12);
    --shadow-strong: 0 15px 35px rgba(90, 90, 166, 0.15);
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--background-white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 254, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(248, 250, 254, 0.98);
    box-shadow: var(--shadow-subtle);
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-fast);
}

.nav-brand:hover {
    transform: translateY(-1px);
}

.logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 8px rgba(90, 90, 166, 0.1));
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(90, 90, 166, 0.15));
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.notify-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
    position: relative;
    overflow: hidden;
}

.notify-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: var(--transition);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-light) 0%, #FFFFFF 50%, #faf7fb 100%);
    overflow: hidden;
    padding-top: 120px; /* Account for fixed navbar */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.global-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23dc4e5b;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%235a5aa6;stop-opacity:0.05"/></linearGradient></defs><circle cx="200" cy="200" r="150" fill="none" stroke="%23cd4b92" stroke-width="1" opacity="0.3"/><circle cx="200" cy="200" r="120" fill="none" stroke="%235a5aa6" stroke-width="1" opacity="0.2"/><circle cx="200" cy="200" r="90" fill="none" stroke="%23dc4e5b" stroke-width="1" opacity="0.15"/><path d="M80 200 Q200 80 320 200 Q200 320 80 200" fill="none" stroke="%235a5aa6" stroke-width="2" opacity="0.1"/><circle cx="200" cy="200" r="8" fill="%23cd4b92" opacity="0.4"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.6;
}

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

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 90%;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 1.5rem;
    filter: grayscale(0.2);
}

.feature-item span {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.cta-primary, .cta-secondary {
    padding: 18px 36px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

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

.cta-primary::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: var(--transition);
}

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

.cta-primary:hover::before {
    left: 100%;
}

.cta-secondary {
    background: var(--background-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-subtle);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
}

.phone-mockup {
    width: 280px;
    height: 520px;
    background: linear-gradient(145deg, #2C3E50, #1A252F);
    border-radius: 30px;
    padding: 5px;
    position: relative;
    box-shadow: var(--shadow-strong);
    z-index: 1;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--background-white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #E1E8ED;
    border-radius: 2px;
    z-index: 10;
}

.app-preview {
    padding: 2rem 1.2rem 1rem;
    height: 100%;
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-white) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.app-logo-circle {
    width: 60px;
    height: 60px;
    background: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-subtle);
    padding: 8px;
}

.app-logo-img {
    width: 100%;
    height: auto;
    max-width: 44px;
}

.transfer-section {
    background: var(--background-white);
    border-radius: var(--border-radius);
    padding: 0.8rem;
    margin-bottom: 0.6rem;
    box-shadow: var(--shadow-subtle);
}

.section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 0.6rem;
}

.currency-input {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.currency-flag {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.currency-code {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    min-width: 40px;
    flex-shrink: 0;
}

.amount-input {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-left: auto;
    background: var(--background-grey);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 8px 12px;
    min-width: 80px;
    text-align: right;
    cursor: text;
    transition: var(--transition-fast);
}

.amount-input:hover {
    border-color: var(--primary-color);
    background: var(--background-white);
}

.amount-display {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-left: auto;
    text-align: right;
    min-width: 80px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.transfer-fee, .exchange-rate {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.transfer-arrow {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0.3rem 0;
}

.app-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.6rem;
    margin-bottom: 0.3rem;
}

.action-btn {
    padding: 8px 14px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-fast);
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-subtle);
}

.action-btn.secondary {
    background: var(--background-white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--background-light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.heritage-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.global-element {
    width: 200px;
    height: 200px;
    position: relative;
}

.globe-design {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.globe-design::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    border: 3px solid white;
    border-radius: 50%;
    opacity: 0.7;
}

.globe-design::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--background-white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--background-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.8;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: white;
}

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

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand p {
    margin: 1rem 0;
    opacity: 0.8;
}

.footer-address {
    margin: 1rem 0;
}

.footer-address p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.footer-logo {
    height: 48px;
    width: auto;
    max-width: 120px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(90, 90, 166, 0.1));
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-color);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 140px 0 2rem 0; /* Increased top padding for mobile navbar */
    }

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

    .hero-text h1 {
        font-size: 2.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-tagline {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
        gap: 1rem;
    }

    .feature-item {
        padding: 12px 20px;
    }

    .about {
        padding: 5rem 0;
    }

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

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

    .heritage-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .services {
        padding: 5rem 0;
    }

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

    .service-card {
        padding: 2rem;
    }

    .phone-mockup {
        width: 260px;
        height: 520px;
        transform: none;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }

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

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
