/* CSS Variables from the original design */
:root {
    --background: 220 20% 97%;
    --foreground: 228 15% 18%;
    --card: 0 0% 100%;
    --card-foreground: 228 15% 18%;
    --popover: 0 0% 100%;
    --popover-foreground: 228 15% 18%;
    --primary: 79 46% 45%;
    --primary-foreground: 0 0% 100%;
    --secondary: 220 14% 92%;
    --secondary-foreground: 228 15% 25%;
    --muted: 220 14% 94%;
    --muted-foreground: 228 10% 46%;
    --accent: 228 33% 52%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 220 13% 88%;
    --input: 220 13% 88%;
    --ring: 79 46% 45%;
    --radius: 0.75rem;
    --bcb-charcoal: 228 15% 18%;
    --bcb-green: 79 46% 45%;
    --bcb-grey: 220 10% 46%;
    --bcb-blue: 228 33% 52%;
    --bcb-white: 0 0% 100%;
    --gradient-hero: linear-gradient(135deg, hsl(220, 20%, 97%) 0%, hsl(220, 14%, 92%) 100%);
    --gradient-glow: radial-gradient(ellipse at center, hsl(79, 46%, 45%, 0.12) 0%, transparent 70%);
    --gradient-card: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(220, 14%, 96%) 100%);
    --shadow-glow: 0 0 60px hsl(79, 46%, 45%, 0.15);
    --shadow-card: 0 4px 24px hsl(228, 15%, 18%, 0.08);
    --shadow-button: 0 4px 16px hsl(79, 46%, 45%, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Prevent horizontal overflow */
body > * {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Ensure all flex containers don't overflow */
.flex,
[class*="flex"],
[class*="grid"] {
    min-width: 0;
}


@font-face {
    font-family: 'HelveticaNeue';
    src: url('../assets/fonts/HelveticaNeue-Light.otf') format('opentype');
    font-weight: 100 400;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('../assets/fonts/HelveticaNeue-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('../assets/fonts/HelveticaNeue-Heavy.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'HelveticaNeue', Arial, sans-serif;
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.pointer-bg {
    pointer-events: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    transition-property: opacity;
    transition-duration: 300ms;
    background: radial-gradient(600px at 50% 50%, hsl(79, 46%, 45%, 0.15), transparent 50%);
    opacity: 0;
}

.pointer-bg.active {
    opacity: 1;
}

/* Reusable Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Reusable Card Base */
.card {
    background: hsl(var(--card));
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.card-hover {
    cursor: pointer;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

/* Reusable Icon Container */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--radius);
}

/* Reusable Grid Base - applied via class extension */

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: hsl(var(--card));
    border-bottom: 1px solid hsl(var(--border));
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand .logo-link {
    text-decoration: none;
    color: hsl(var(--foreground));
}

.nav-logo-img {
    width: 100px;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: hsl(var(--foreground));
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.nav-menu a:hover {
    color: hsl(var(--bcb-green));
}

.nav-menu-actions {
    display: none;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: hsl(var(--foreground));
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Buttons */
.btn {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: inherit;
}

.btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsl(79, 46%, 45%, 0.3);
}

.btn-text {
    background: transparent;
    color: hsl(var(--foreground));
    box-shadow: none;
}

.btn-text:hover {
    background: hsl(var(--muted));
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(218, 229, 197, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    padding: 100px 0;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    pointer-events: none;
} */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
}

/* Icon styles - text icons (for checkmarks) */
.feature-icon-text {
    color: hsl(var(--primary));
    font-weight: bold;
}

/* Icon container (for SVG icons) */
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: hsl(79, 46%, 45%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}


/* Section Styles */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: hsl(var(--primary));
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: hsl(var(--primary) / .1);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: hsl(var(--primary));
}

.section-badge-margin-top {
    margin-top: 2rem;
}

/* Features Section */
.features {
    background: hsl(210, 8%, 97%);
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Apply grid base to all grids */
.features-grid,
.metrics-grid,
.calculator-features,
.integrations-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.feature-card.card-hover {
    cursor: pointer;
}

.features .feature-card.aos-animate:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}


.feature-icon svg {
    width: 24px;
    height: 24px;
    color: hsl(79, 46%, 45%);
    stroke-width: 2;
    stroke: currentColor;
}

.feature-badge {
    padding: 0.25rem 0.625rem;
    background: hsl(79, 46%, 90%);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(79, 46%, 45%);
    white-space: nowrap;
}

.feature-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
    line-height: 1.3;
}

.feature-card p {
    color: hsl(var(--muted-foreground));
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 400;
}

/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    position: relative;
}


/* Analytics Section */
.analytics {
    background: radial-gradient(circle,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(218, 229, 197, 1) 100%);
}

.metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding-top: 2rem;
    margin-bottom: 3rem;
}

.metric-card {
    padding: 1.5rem;
    background: hsl(var(--card));
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
}

.metric-card:hover {
    border-color: hsl(var(--primary));
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.metric-icon {
    font-size: 1.5rem;
}

.metric-change {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: hsl(var(--muted));
}

.metric-change.positive {
    color: hsl(var(--primary));
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: hsl(var(--foreground));
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}


/* Calculators Section */
.calculators {
    background: #F7F7F7;
}

.calculator-features {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 2rem;
    margin-bottom: 3rem;
}

.calc-feature {
    text-align: left;
    background: hsl(var(--card));
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border));
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.calculators .calc-feature.aos-animate:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.calc-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: hsl(79, 46%, 45%, 0.1);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Apply icon-container base to calc-icon-container */
.calc-icon-container.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-icon-container svg {
    width: 24px;
    height: 24px;
}

.calc-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
    line-height: 1.3;
}

.calc-feature p {
    color: hsl(var(--muted-foreground));
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}


/* Integrations Section */
.integrations {
    background: hsl(var(--card));
}


.integrations-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.integration-card {
    padding: 2rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: hsl(var(--primary));
}

.integration-logo {
    /* width: 80px; */
    height: 80px;
    margin: 0 auto 1.5rem;
    /* background: hsl(var(--muted)); */
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.integration-logo img {
    height: 80px;
}

.integration-logo .simpro {
    height: 40px;
}

.integration-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.integration-type {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1rem;
    font-weight: 500;
}

.integration-desc {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}



/* Footer */
.footer {
    background: var(--gradient-hero);
    color: hsl(var(--card));
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    color: hsl(var(--foreground));
    line-height: 1.6;
    font-size: 0.9375rem;
    white-space: nowrap;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo img {
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: hsl(var(--bcb-charcoal));
}

.footer-links a:hover {
    color: hsl(var(--primary));
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: hsl(var(--foreground));
    font-size: 0.875rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .navbar .container {
        padding: 1rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .nav-brand img {
        max-width: 90px;
        height: auto;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        top: 70px;
        flex-direction: column;
        background: hsl(var(--card));
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-card);
        box-sizing: border-box;
        gap: 1.5rem;
    }

    .nav-menu.active li {
        width: 100%;
    }

    .nav-menu.active a {
        display: block;
        padding: 0.75rem 0;
        width: 100%;
        text-align: left;
    }

    .nav-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 1rem;
        border-top: 1px solid hsl(var(--border));
    }

    .nav-menu-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }


    .calculator-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand {
        white-space: normal;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .navbar .container {
        padding: 1rem 1rem;
    }

    .nav-brand img {
        max-width: 80px;
        height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }


    .btn {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }


    .footer-links {
        grid-template-columns: 1fr;
    }

    .calculator-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}

.text-gradient {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* How It Works Section - New Styles */
.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.how-it-works-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.how-it-works-label {
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.how-it-works-title {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
}

.how-it-works-description {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    line-height: 1.75;
}

.how-it-works-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}


.how-it-works-badge-text {
    color: hsl(var(--primary));
    font-weight: 500;
}

.how-it-works-steps {
    max-width: 56rem;
    margin: 0 auto;
}

.how-it-works-step-wrapper {
    position: relative;
}

.how-it-works-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.how-it-works-step:hover .how-it-works-step-icon {
    border-color: hsl(var(--primary));
}

.how-it-works-step-icon {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: hsl(var(--background));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid hsl(var(--border));
    transition: border-color 0.15s ease;
    position: relative;
}

.how-it-works-svg {
    width: 2rem;
    height: 2rem;
    color: hsl(var(--primary));
}

.how-it-works-step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    white-space: nowrap;
}

.how-it-works-step-content {
    flex: 1;
    padding-bottom: 4rem;
}

.how-it-works-step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.how-it-works-step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
}

.how-it-works-step-time {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background: hsl(var(--muted));
    color: hsl(var(--muted-foreground));
}

.how-it-works-step-text {
    color: hsl(var(--muted-foreground));
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 0;
}

.how-it-works-connector {
    position: absolute;
    left: 2.5rem;
    top: 5rem;
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, hsla(var(--primary), 0.5), transparent);
    max-width: 100%;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 2rem;
}

.how-it-works-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
    border: none;
    cursor: pointer;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 3rem;
    border-radius: 0.75rem;
    padding: 0 2rem;
    font-size: 1rem;
    gap: 0.5rem;
    font-family: inherit;
}

.how-it-works-button:hover {
    background: hsla(var(--primary), 0.9);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.how-it-works-button:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

.how-it-works-button:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.how-it-works-button-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    pointer-events: none;
}

/* Responsive Styles for How It Works Section */
@media (max-width: 768px) {

    .how-it-works-title {
        font-size: 1.875rem;
    }

    .how-it-works-step {
        gap: 1.5rem;
    }

    .how-it-works-step-icon {
        width: 4rem;
        height: 4rem;
    }

    .how-it-works-svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .how-it-works-step-title {
        font-size: 1.25rem;
    }

    .how-it-works-step-text {
        font-size: 1rem;
    }

    .how-it-works-connector {
        left: 2rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-new {
        padding: 3rem 0;
    }

    .how-it-works-container {
        padding: 0 1.5rem;
    }

    .how-it-works-title {
        font-size: 1.5rem;
    }

    .how-it-works-step {
        flex-direction: column;
        gap: 1rem;
    }

    .how-it-works-step-content {
        padding-bottom: 2rem;
    }

    .how-it-works-connector {
        display: none;
    }


    .how-it-works-step-number {
        right: 0;
        font-size: 0.625rem;
        padding: 0.2rem 0.4rem;
    }
}