/* ===================================================================
   Table of Contents
======================================================================
  - 1. Globals & CSS Variables
  - 2. Base Typography & Layout
  - 3. Buttons & Utility Classes
  - 4. Header & Navigation
  - 5. Footer
  - 6. Hero Section & Canvas
  - 7. Services Section
  - 8. Process Section (Timeline)
  - 9. Tech Stack Section
  - 10. Funnel Simulator Section
  - 11. Testimonials Section
  - 12. CTA Section
  - 13. Contact Page Styles
  - 14. Legal Page Styles
  - 15. Animations & Keyframes
  - 16. Responsive Design
=================================================================== */

/* ============================================ */
/*        1. GLOBALS & CSS VARIABLES            */
/* ============================================ */
:root {
    --bg-dark: #0e0b0b; /* Deep charcoal with red undertone */
    --bg-medium: #1c1414; /* Slightly lighter dark background */
    --accent-primary: #ff6b35; /* Vibrant orange-red accent */
    --accent-primary-darker: #e85a2c; /* Darker burnt orange for hover states */
    --accent-secondary: #ffd166; /* Warm golden secondary accent */
    --text-light: #f5e9e0; /* Creamy off-white text */
    --text-medium: #c9b8a8; /* Muted warm gray for subtext */
    --text-dark: #332621; /* Subtle dark brown for contrast areas */
    --font-family: 'Manrope', sans-serif;
    --header-height: 80px;
    --border-radius: 6px;
    --transition-fast: 0.2s ease-in-out;
    --transition-med: 0.4s ease-in-out;
    --shadow-light: 0 4px 10px rgba(255, 107, 53, 0.1);
    --shadow-dark: 0 10px 30px rgba(255, 107, 53, 0.25);
}



*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-medium);
    font-family: var(--font-family);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--accent-primary);
    border-radius: 20px;
    border: 2px solid var(--bg-dark);
}

/* ============================================ */
/*        2. BASE TYPOGRAPHY & LAYOUT           */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--accent-primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-secondary);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section--dark {
    background-color: var(--bg-medium);
    border-top: 1px solid #2a2a4a;
    border-bottom: 1px solid #2a2a4a;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tagline {
    display: block;
    color: var(--accent-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-description {
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================ */
/*        3. BUTTONS & UTILITY CLASSES          */
/* ============================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-primary-darker);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--primary {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
    border-color: var(--accent-primary);
}

.btn--primary:hover {
    color: var(--text-light);
}

.btn--secondary {
    background-color: transparent;
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

.btn--secondary::before {
    background-color: var(--accent-secondary);
}

.btn--secondary:hover {
    color: var(--bg-dark);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ============================================ */
/*            4. HEADER & NAVIGATION            */
/* ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: rgba(13, 13, 26, 0.8);
    backdrop-filter: blur(10px);
    transition: top var(--transition-med), background-color var(--transition-med), box-shadow var(--transition-med);
}

.header.is-scrolled {
    box-shadow: var(--shadow-dark);
}

.header.is-hidden {
    top: calc(-1 * var(--header-height));
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header__logo img {
    height: 45px;
    filter: invert(1);
    width: auto;
    transition: transform var(--transition-fast);
}


.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__link {
    color: var(--text-medium);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav__link.active,
.nav__link:hover {
    color: var(--text-light);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-secondary);
    transition: width var(--transition-fast);
}

.nav__link.active::after,
.nav__link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    position: absolute;
    left: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-toggle__bar:nth-child(1) {
    top: 0;
}

.nav-toggle__bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle__bar:nth-child(3) {
    bottom: 0;
}

.nav-open .nav-toggle__bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle__bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/* ============================================ */
/*                   5. FOOTER                  */
/* ============================================ */
.footer {
    background-color: #080810;
    padding: 80px 0 30px;
    border-top: 1px solid #2a2a4a;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer__col--about {
    padding-right: 40px;
}

.footer__logo img {
    height: 45px;
    filter: invert(1);
    margin-bottom: 20px;
}

.footer__text {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.footer__socials {
    display: flex;
    gap: 15px;
}

.footer__socials a {
    color: var(--text-medium);
}

.footer__socials a:hover {
    color: var(--text-light);
}

.footer__socials svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer__heading {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a,
.footer__contact li {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.footer__links a:hover {
    color: var(--accent-secondary);
    padding-left: 5px;
}

.footer__contact span {
    color: var(--text-light);
    font-weight: 500;
    margin-right: 8px;
}

.footer__bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #2a2a4a;
    font-size: 0.85rem;
}

/* ============================================ */
/*           6. HERO SECTION & CANVAS           */
/* ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__text {
    max-width: 800px;
}

.hero__title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--text-light), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero__cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================ */
/*              7. SERVICES SECTION             */
/* ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-medium);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 1px solid #2a2a4a;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(158, 102, 255, 0.1), transparent 40%);
    transition: opacity var(--transition-med);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    animation: rotateGradient 4s linear infinite;
}

.service-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background-color: var(--accent-primary);
    color: var(--bg-dark);
    border-radius: 50%;
    margin-bottom: 25px;
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.service-card__title {
    font-size: 1.4rem;
}

.service-card__description {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================ */
/*          8. PROCESS SECTION (TIMELINE)       */
/* ============================================ */
.process__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process__timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #2a2a4a;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.process__item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.process__item:nth-child(odd) {
    left: 0;
}

.process__item:nth-child(even) {
    left: 50%;
}

.process__item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-dark);
    border: 4px solid var(--accent-primary);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    transition: transform var(--transition-med);
}

.process__item:nth-child(even)::after {
    left: -10px;
}

.process__item.is-visible::after {
    transform: scale(1.2);
}

.process__content {
    padding: 20px 30px;
    background-color: var(--bg-dark);
    border: 1px solid #2a2a4a;
    position: relative;
    border-radius: var(--border-radius);
}

.process__item:nth-child(odd) .process__content {
    text-align: right;
}

.process__title {
    color: var(--accent-secondary);
}

.process__description {
    margin-bottom: 0;
}

.process__step-number {
    position: absolute;
    top: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(160, 160, 192, 0.1);
    z-index: -1;
}

.process__item:nth-child(odd) .process__step-number {
    right: 30px;
}

.process__item:nth-child(even) .process__step-number {
    left: 30px;
}

/* ============================================ */
/*            9. TECH STACK SECTION             */
/* ============================================ */
.tech-stack__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.tech-stack__item {
    position: relative;
    width: 120px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%) opacity(0.6);
    transition: filter var(--transition-fast), transform var(--transition-fast);
}

.tech-stack__item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.tech-stack__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.tech-stack__item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-primary);
    color: var(--bg-dark);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.tech-stack__item:hover::after {
    opacity: 1;
    visibility: visible;
}


/* ============================================ */
/*         10. FUNNEL SIMULATOR SECTION         */
/* ============================================ */
.funnel-sim__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-dark);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid #2a2a4a;
}

.funnel-sim__controls .control-group {
    margin-bottom: 30px;
}

.funnel-sim__controls label {
    display: block;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
}

.funnel-sim__controls input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: var(--bg-medium);
    border-radius: 5px;
    outline: none;
}

.funnel-sim__controls input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-secondary);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
}

.funnel-sim__controls .control-group span {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-top: 5px;
}

.funnel-sim__visual {
    position: relative;
}

.funnel-stage {
    position: relative;
    margin: 0 auto 10px;
    padding: 10px 0;
}

.funnel-stage__bar {
    height: 50px;
    background-color: var(--accent-primary);
    transition: width var(--transition-med);
    margin: 5px auto;
    border-radius: 0 5px 5px 0;
}

.funnel-stage--awareness .funnel-stage__bar {
    width: 100%;
}

.funnel-stage--engagement .funnel-stage__bar {
    width: 40%;
    background-color: #834fe6;
}

.funnel-stage--conversion .funnel-stage__bar {
    width: 10%;
    background-color: #6d34d1;
}

.funnel-stage__label {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
    text-align: center;
}

.funnel-stage__value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-secondary);
    text-align: center;
}

.funnel-sim__disclaimer {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 20px;
}

/* ============================================ */
/*           11. TESTIMONIALS SECTION           */
/* ============================================ */
.testimonial-carousel {
    position: relative;
}

.testimonial-carousel__wrapper {
    display: flex;
    transition: transform var(--transition-med);
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 40px;
    background-color: var(--bg-medium);
    border: 1px solid #2a2a4a;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.testimonial-card__text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    position: relative;
}

.testimonial-card__text::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--accent-primary);
    opacity: 0.3;
}

.testimonial-card__author {
    margin-top: 20px;
}

.author__name {
    display: block;
    font-weight: 700;
    color: var(--text-light);
}

.author__title {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.testimonial-carousel__nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-btn {
    background-color: var(--bg-medium);
    border: 1px solid #2a2a4a;
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.carousel-btn:hover {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}


/* ============================================ */
/*               12. CTA SECTION                */
/* ============================================ */
.cta__container {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-darker));
    padding: 80px 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.cta__content {
    color: var(--text-light);
}

.cta__title {
    font-size: 2.5rem;
}

.cta__text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.cta__content .btn {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
}

.cta__content .btn:hover {
    color: var(--text-light);
    background-color: transparent;
}

.cta__content .btn::before {
    background-color: var(--accent-primary-darker);
}


/* ============================================ */
/*           13. CONTACT PAGE STYLES            */
/* ============================================ */
.contact-page.section {
    padding-top: calc(var(--header-height) + 80px);
}

.contact-page__layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    background-color: var(--bg-medium);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid #2a2a4a;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

.contact-form label {
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    background-color: var(--bg-dark);
    border: 1px solid #2a2a4a;
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(158, 102, 255, 0.3);
}

.contact-page__info-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a2a4a;
}

.contact-page__info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-page__info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-page__info-list svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-secondary);
    flex-shrink: 0;
}

.contact-page__hours {
    line-height: 1.5;
}

/* ============================================ */
/*           14. LEGAL PAGE STYLES              */
/* ============================================ */
.legal-page.section {
    padding-top: calc(var(--header-height) + 80px);
}

.legal-page__container {
    max-width: 800px;
}

.legal-page__content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a2a4a;
}

.legal-page__content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 1.5rem;
}

.legal-page__content li {
    margin-bottom: 0.8rem;
}

/* ============================================ */
/*          15. ANIMATIONS & KEYFRAMES          */
/* ============================================ */
.animate-on-load {
    animation: fadeInOnLoad 1s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes fadeInOnLoad {
    to {
        opacity: 1;
    }
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

.fade-in-up {
    transform: translateY(50px);
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}


/* ============================================ */
/*            16. RESPONSIVE DESIGN             */
/* ============================================ */
@media (max-width: 992px) {
    .funnel-sim__wrapper {
        grid-template-columns: 1fr;
    }

    .contact-page__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section {
        padding: 80px 0;
    }

    .header__btn {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-medium);
        padding-top: 100px;
        transform: translateX(100%);
        transition: transform var(--transition-med);
        box-shadow: var(--shadow-dark);
    }

    .nav-open .nav {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .nav__link {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: block;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__cta .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .process__timeline::after {
        left: 30px;
    }

    .process__item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }

    .process__item:nth-child(even) {
        left: 0;
    }

    .process__item::after {
        left: 20px;
    }

    .process__item:nth-child(odd) .process__content {
        text-align: left;
    }

    .process__item:nth-child(odd) .process__step-number {
        left: 70px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__col--about {
        padding-right: 0;
        align-items: center;
    }

    .footer__socials {
        justify-content: center;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .contact-page__layout {
        padding: 30px 20px;
    }

    .funnel-sim__wrapper {
        padding: 30px 20px;
    }
}