/* ==========================================================================
   LocalTechEdge — 2026 Rebrand (Homie-inspired)
   Bold editorial type, warm hand-sketched feel, tons of whitespace.
   Fonts: Fraunces (serif headings), Outfit (sans-serif body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --bg: #F8F5F0;
    --bg-alt: #F0EBE3;
    --white: #FFFFFF;
    --green: #0A6847;
    --green-light: #10B981;
    --green-soft: rgba(10, 104, 71, .07);
    --accent: #D4603A;
    --charcoal: #1A1A1A;
    --text: #3D3D3D;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --border: rgba(0, 0, 0, .08);
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 32px;
    --r-full: 100px;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Fraunces', Georgia, serif;
    color: var(--charcoal);
    line-height: 1.08;
    letter-spacing: -.02em;
}

h1 { font-weight: 900; }
h2 { font-weight: 700; }
h3 { font-weight: 600; line-height: 1.25; }

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--accent); color: white; }

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* --------------------------------------------------------------------------
   3. Navigation
   -------------------------------------------------------------------------- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 2rem;
    transition: all .4s var(--ease);
}

nav.scrolled {
    background: rgba(248, 245, 240, .95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--border);
    padding: .8rem 2rem;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.logo:hover { text-decoration: none; }

.logo-mark {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border: 2px solid rgba(255, 255, 255, .6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: .85rem;
    font-weight: 500;
    transition: color .3s;
}

.nav-links a:hover { color: var(--charcoal); text-decoration: none; }

.nav-cta {
    background: var(--green) !important;
    color: white !important;
    padding: .5rem 1.3rem !important;
    border-radius: var(--r-full) !important;
    font-weight: 600 !important;
    transition: all .3s var(--ease) !important;
}

.nav-cta:hover {
    background: var(--charcoal) !important;
    transform: translateY(-1px) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all .3s;
}

/* --------------------------------------------------------------------------
   4. Eyebrow & Buttons
   -------------------------------------------------------------------------- */
.eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .15em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    padding: .9rem 2.2rem;
    border-radius: var(--r-full);
    text-decoration: none;
    transition: all .35s var(--ease);
    cursor: pointer;
    border: none;
}

.btn:hover { text-decoration: none; }

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

.btn-primary:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, .25);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    padding: .9rem 2.2rem;
    border-radius: var(--r-full);
    text-decoration: none;
    transition: all .35s var(--ease);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.btn-outline-light:hover {
    border-color: white;
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-lg {
    padding: 1.1rem 3rem;
    font-size: 1.05rem;
}

.section-sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-light);
    max-width: 480px;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   5. Illustration Clip System — one sprite, four views
   -------------------------------------------------------------------------- */
.illo-clip {
    background-image: url('../images/rishi-hero.png');
    background-size: 200% 200%;
    background-repeat: no-repeat;
    border-radius: var(--r-lg);
    flex-shrink: 0;
    aspect-ratio: 400 / 527;
}

/* Top-left: laptop guy */
.illo-laptop { background-position: 0% 0%; }
/* Top-right: phone/thumbs-up guy */
.illo-phone { background-position: 100% 0%; }
/* Bottom-left: cloud guy */
.illo-cloud { background-position: 0% 100%; }
/* Bottom-right: whiteboard guy */
.illo-whiteboard { background-position: 100% 100%; }

/* --------------------------------------------------------------------------
   6. Hero — Big, bold, editorial with illustration
   -------------------------------------------------------------------------- */
.hero {
    padding: 10rem 0 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    margin-bottom: 2rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

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

.hero-illo .illo-clip {
    width: 320px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .06));
}

/* --------------------------------------------------------------------------
   7. Trust Ticker — pure CSS
   -------------------------------------------------------------------------- */
.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
    overflow: hidden;
}

.trust-label {
    text-align: center;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.ticker-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logo-ticker {
    display: flex;
    gap: 3rem;
    animation: ticker 45s linear infinite;
    width: max-content;
}

.logo-ticker span {
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   8. Services — Horizontal scroll cards
   -------------------------------------------------------------------------- */
.services {
    padding: clamp(80px, 10vw, 140px) 0;
}

.svc-intro-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3rem;
}

.svc-intro-grid .illo-laptop {
    width: 220px;
}

.services h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1.2rem;
}

.services h2 em {
    font-style: italic;
    color: var(--accent);
}

.svc-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 2rem 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.svc-scroll::-webkit-scrollbar { display: none; }

.svc-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 2.5rem 2rem;
    transition: all .4s var(--ease);
}

.svc-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}

.svc-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .14em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.svc-card h3 {
    font-size: 1.4rem;
    margin-bottom: .8rem;
}

.svc-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   9. About
   -------------------------------------------------------------------------- */
.about {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bg-alt);
}

.about h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.about-body {
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.cred-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.5rem;
}

.cred {
    font-size: .72rem;
    font-weight: 600;
    padding: .4rem .9rem;
    background: var(--green-soft);
    color: var(--green);
    border-radius: var(--r-full);
    letter-spacing: .02em;
}

.about-quote-col {
    padding-top: 1rem;
}

.about-quote-col .illo-whiteboard {
    width: 240px;
    margin-bottom: 2rem;
}

.big-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-style: italic;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
}

.quote-cite {
    font-size: .85rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
}

.stat-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 2rem 3rem;
    background: var(--white);
    border-radius: var(--r-md);
}

.stat-num {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: .3rem;
}

.stat-label {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

.pillar {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--r-md);
    transition: transform .3s var(--ease);
}

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

.pillar h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.pillar p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. Process
   -------------------------------------------------------------------------- */
.process {
    padding: clamp(80px, 10vw, 140px) 0;
}

.process-intro-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3rem;
}

.process-intro-grid .illo-cloud {
    width: 200px;
}

.process h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1.2rem;
}

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

.step {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--white);
    transition: all .4s var(--ease);
}

.step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
}

.step-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    opacity: .3;
    display: block;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: .6rem;
}

.step p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   11. Areas
   -------------------------------------------------------------------------- */
.areas {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bg-alt);
}

.areas h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 2rem;
}

.area-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.area {
    padding: .9rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: .88rem;
    color: var(--text-light);
    transition: all .3s var(--ease);
}

.area:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.area strong {
    color: var(--charcoal);
    margin-right: .3rem;
}

/* --------------------------------------------------------------------------
   12. Learn
   -------------------------------------------------------------------------- */
.learn-content {
    padding: clamp(80px, 10vw, 140px) 0;
}

.learn-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1.5rem;
}

.learn-intro {
    max-width: 680px;
    margin-bottom: 3rem;
}

.learn-intro p {
    font-size: 1rem;
    line-height: 1.8;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.learn-grid article {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: all .3s var(--ease);
}

.learn-grid article:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.learn-grid h3 {
    font-size: 1.1rem;
    margin-bottom: .7rem;
}

.learn-grid p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bg-alt);
}

.faq h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 680px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color .3s;
}

.faq-q:hover { color: var(--accent); }

.faq-q::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-a p {
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. CTA
   -------------------------------------------------------------------------- */
.cta {
    padding: clamp(100px, 12vw, 180px) 0;
    background: var(--charcoal);
    text-align: center;
}

.cta h2 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: 1.2rem;
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 2.5rem;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.cta .btn-primary:hover {
    background: white;
    color: var(--charcoal);
}

.cta-note {
    font-size: .82rem;
    color: rgba(255, 255, 255, .35);
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-brand .logo-mark {
    width: 24px;
    height: 24px;
    border-radius: 7px;
}

.footer-brand .logo-mark::after {
    width: 9px;
    height: 9px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: .82rem;
    color: var(--text-light);
    text-decoration: none;
}

.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-bottom p,
.footer-bottom a {
    font-size: .78rem;
    color: var(--text-muted);
}

.footer-seo {
    font-size: .6rem;
    color: rgba(0, 0, 0, .06);
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   16. Scroll Reveals
   -------------------------------------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.steps .reveal-up:nth-child(2) { transition-delay: .12s; }
.steps .reveal-up:nth-child(3) { transition-delay: .24s; }

.pillars .reveal-up:nth-child(2) { transition-delay: .1s; }
.pillars .reveal-up:nth-child(3) { transition-delay: .2s; }

.learn-grid .reveal-up:nth-child(2) { transition-delay: .08s; }
.learn-grid .reveal-up:nth-child(3) { transition-delay: .16s; }
.learn-grid .reveal-up:nth-child(4) { transition-delay: .24s; }

/* --------------------------------------------------------------------------
   17. Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal-up { opacity: 1; transform: none; }
    .logo-ticker { animation: none; }
}

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-illo { order: -1; }
    .hero-illo .illo-clip { width: 240px; }
    .hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.5rem); }
    .hero-sub { margin-left: auto; margin-right: auto; }

    .svc-intro-grid { grid-template-columns: 1fr; text-align: center; }
    .svc-intro-grid .illo-laptop { width: 180px; margin: 0 auto 1rem; }

    .process-intro-grid { grid-template-columns: 1fr; text-align: center; }
    .process-intro-grid .illo-cloud { width: 160px; margin: 0 auto 1rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-quote-col .illo-whiteboard { width: 200px; }

    .steps { grid-template-columns: 1fr; max-width: 480px; }

    .pillars { grid-template-columns: 1fr; max-width: 480px; }

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

    .stat-row { flex-wrap: wrap; }
}

@media (max-width: 640px) {
    .mobile-menu-btn { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    }

    .nav-links.open { display: flex; }
    .nav-links li { padding: .6rem 0; }

    .nav-cta {
        margin-top: .5rem;
        text-align: center;
        display: block !important;
    }

    .hero { padding: 7rem 0 2rem; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-illo .illo-clip { width: 200px; }
    .svc-intro-grid .illo-laptop { width: 150px; }
    .process-intro-grid .illo-cloud { width: 140px; }
    .about-quote-col .illo-whiteboard { width: 160px; }

    .svc-card { flex: 0 0 280px; }

    .stat-row { gap: 1rem; }
    .stat { padding: 1.5rem 1.5rem; }
    .stat-num { font-size: 2rem; }

    .area-pills { gap: .6rem; }
    .area { padding: .7rem 1.2rem; font-size: .82rem; }

    .cta-btns { flex-direction: column; align-items: center; }
    .cta-btns .btn, .cta-btns .btn-outline-light { width: 100%; max-width: 300px; justify-content: center; }

    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
