/*=============================================
  CSS Reset & Variables
=============================================*/
:root {
    /* Brand (Quality Limp logo) */
    --color-brand-cyan: #00adef;
    --color-brand-lime: #8dc63f;
    --color-primary: var(--color-brand-cyan);
    --color-primary-dark: #0088c0;
    --color-primary-light: #e5f7fd;
    --color-primary-muted: rgba(0, 173, 239, 0.12);

    --color-accent: #25d366;
    /* WhatsApp — reconhecimento */
    --color-accent-dark: #1ea952;
    --color-accent-brand: var(--color-brand-lime);

    --color-text: #334155;
    --color-text-light: #64748b;
    --color-heading: #0c1929;

    --color-bg: #ffffff;
    --color-bg-alt: #f4fbfd;
    --color-bg-dark: #071520;
    --color-bg-dark-mid: #0d2433;

    --color-red: #ef4444;
    --color-orange: #f97316;
    --color-gray: #94a3b8;

    /* Typography — arredondado e limpo, alinhado à marca */
    --font-heading: 'Quicksand', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 24px 48px -12px rgba(0, 173, 239, 0.22);

    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 span {
    position: relative;
    background: linear-gradient(120deg, var(--color-brand-cyan) 0%, var(--color-brand-lime) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.text-light h2,
.text-light p {
    color: #f8fafc;
}

.text-light .opacity-80 {
    opacity: 0.8;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* Layout Core */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.bg-dark {
    background: linear-gradient(165deg, var(--color-bg-dark) 0%, var(--color-bg-dark-mid) 45%, #061018 100%);
    position: relative;
}

.bg-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 173, 239, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 85% 80%, rgba(141, 198, 63, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.bg-dark .container {
    position: relative;
    z-index: 1;
}

.bg-primary {
    background-color: var(--color-primary);
}

.glass-bg {
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(0, 173, 239, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(141, 198, 63, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #f7fcfe 0%, #ffffff 100%);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 1.25rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-brand-cyan) 0%, var(--color-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 18px 0 rgba(0, 173, 239, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #006fa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 173, 239, 0.45);
}

.btn-whatsapp {
    background-color: var(--color-accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
}

.btn-whatsapp:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.btn-outline:hover {
    background: var(--color-primary-light);
    border-color: var(--color-brand-cyan);
    color: var(--color-primary-dark);
}

.btn-large {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse {
    animation: pulse 2.5s infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.step-1 {
    transition-delay: 0.1s;
}

.reveal.step-2 {
    transition-delay: 0.2s;
}

.reveal.step-3 {
    transition-delay: 0.3s;
}

/* Image Cover Styles */
.hero-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* =========================================
   Header & Nav
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.98);
}

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

.header.scrolled .header-container {
    height: 70px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.logo-link:hover {
    opacity: 0.92;
    transform: scale(1.02);
}

.logo-link:focus-visible {
    outline: 3px solid var(--color-brand-cyan);
    outline-offset: 4px;
}

.brand-logo {
    display: block;
    height: auto;
    object-fit: contain;
}

.brand-logo--header {
    height: 48px;
    width: auto;
    max-width: min(200px, 42vw);
}

.brand-logo--footer {
    height: 56px;
    width: auto;
    max-width: 220px;
    filter: brightness(1.05);
}

.footer-logo-link {
    margin-bottom: 1rem;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--color-text);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-heading);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background:
        radial-gradient(ellipse 90% 70% at 100% -10%, rgba(0, 173, 239, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 70% 60% at -5% 60%, rgba(141, 198, 63, 0.11) 0%, transparent 50%),
        linear-gradient(180deg, #f9fdff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background:
        radial-gradient(circle at 70% 30%, rgba(0, 173, 239, 0.09) 0%, transparent 45%),
        radial-gradient(circle at 40% 70%, rgba(141, 198, 63, 0.07) 0%, transparent 50%);
    z-index: 0;
}

/* Bolhas decorativas (eco da logo) */
.hero::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(141, 198, 63, 0.35));
    bottom: 12%;
    left: 4%;
    opacity: 0.45;
    filter: blur(0.5px);
    z-index: 0;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero::after {
        width: 72px;
        height: 72px;
        left: 8%;
        opacity: 0.35;
    }
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(141, 198, 63, 0.15) 100%);
    color: var(--color-primary-dark);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 173, 239, 0.2);
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.secure-badge i {
    color: var(--color-accent-brand);
    font-size: 1.125rem;
}

.image-wrapper {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 173, 239, 0.12);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-heading);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.25rem;
}

.card-1 {
    bottom: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-1 i {
    color: var(--color-accent-brand);
}

.card-2 {
    top: 20%;
    right: -10%;
    animation-delay: 2s;
}

.card-2 i {
    color: var(--color-primary);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================================
   Problem Awareness Section
   ========================================= */
.problems {
    padding: 5rem 0;
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.icon-box.red {
    background: #fee2e2;
    color: var(--color-red);
}

.icon-box.orange {
    background: #ffedd5;
    color: var(--color-orange);
}

.icon-box.gray {
    background: #f1f5f9;
    color: var(--color-text);
}

.alert-box {
    margin-top: 3rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #92400e;
    font-weight: 500;
}

.alert-box i {
    color: #f59e0b;
    font-size: 1.5rem;
}

/* =========================================
   Services Section
   ========================================= */
.services {
    background: var(--color-bg-alt);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

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

.service-img {
    height: 220px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.benefit-list {
    margin-top: auto;
    padding-top: 1.5rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.benefit-list li i {
    color: var(--color-accent-brand);
    font-weight: bold;
}

.highlight-card {
    position: relative;
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, var(--color-brand-cyan), var(--color-brand-lime)) border-box;
}

.badge-absolute {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--color-brand-lime) 0%, #7ab832 100%);
    color: #0c1929;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(141, 198, 63, 0.35);
}

/* =========================================
   Why Choose Us
   ========================================= */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.f-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 173, 239, 0.22);
    color: #5dd4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(141, 198, 63, 0.25);
}

.feature-list strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.feature-list p {
    color: #94a3b8;
    margin: 0;
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-box:last-child {
    grid-column: span 2;
}

.number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(120deg, #ffffff 0%, var(--color-brand-cyan) 45%, var(--color-brand-lime) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.label {
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

/* =========================================
   How It Works (Timeline)
   ========================================= */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: 2rem;
}

/* Desktop Connecting Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 52px;
    /* Center of step-number */
    left: 10%;
    right: 10%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgba(0, 173, 239, 0.35) 0%, rgba(141, 198, 63, 0.45) 100%);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: white;
    border: 4px solid var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.step:hover .step-number {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
    border-color: white;
}

.step h3 {
    font-size: 1.25rem;
}

.step p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* =========================================
   Testimonials
   ========================================= */
.testimonials .grid {
    align-items: start;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stars {
    color: #c5d92a;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
    filter: drop-shadow(0 1px 2px rgba(141, 198, 63, 0.25));
}

.quote {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--color-primary-light), rgba(141, 198, 63, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary-dark);
}

.author strong {
    display: block;
    color: var(--color-heading);
    font-family: var(--font-heading);
}

.author span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-brand-cyan) 0%, #0090c9 42%, #0a6d8f 100%) !important;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(141, 198, 63, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: linear-gradient(180deg, #061018 0%, var(--color-bg-dark) 100%);
    color: #94a3b8;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 173, 239, 0.15);
}

.footer-content {
    margin-bottom: 3rem;
}

.footer-brand .logo-link {
    margin-bottom: 0;
}

.footer h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a:hover {
    color: var(--color-brand-cyan);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    font-size: 1.25rem;
    color: var(--color-brand-lime);
}

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

/* =========================================
   Media Queries & Responsive
   ========================================= */
@media (max-width: 992px) {

    .hero-container,
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        padding: 140px 0 60px;
        text-align: center;
    }

    .hero-cta {
        align-items: center;
    }

    .card-1 {
        left: 0;
    }

    .card-2 {
        right: 0;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 4rem;
    }

    .timeline::before {
        display: none;
        /* Hide line on wrap */
    }
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.1);
        display: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        font-size: 1.125rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    .stat-box:last-child {
        grid-column: span 1;
    }

    .timeline {
        grid-template-columns: 1fr;
        row-gap: 3rem;
        text-align: left;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        margin: 0 0 1rem 0;
    }

    .hero-showcase {
        font-size: 6rem;
    }

    .image-wrapper {
        height: 400px;
    }
}