/* ============================================================
   TYPOGRAPHY — Bricolage Grotesque (headings) + DM Sans (body)
   Matches the bold editorial style from the reference image.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
    --primary-dark: #0d3b3b;
    --primary-teal: #145a5a;
    --accent-lime: #c8ff00;
    --accent-teal: #00d9b5;
    --light-bg: #f8fafb;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;

    /* Typography scale */
    --font-display: 'Bricolage Grotesque', 'Georgia', serif;
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
    color: var(--text-dark);
    background: var(--white);
}

/* All headings use the display font */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.feature-title {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

/* ============================================================
   LOADER
   ============================================================ */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loader img {
    object-fit: contain;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background-color: var(--primary-dark);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-width: 150px;
    height: auto;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    font-family: var(--font-body);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-lime) !important;
}

.btn-quote {
    background-color: var(--accent-lime);
    color: var(--primary-dark);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 255, 0, 0.4);
}

.dropdown-menu {
    background: var(--white);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 0.5rem 0;
    margin-top: 0.5rem !important;
    animation: fadeDown 0.3s ease;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
}

.dropdown-item i {
    color: var(--accent-teal);
    font-size: 1.1rem;
}

.dropdown-item:hover {
    background-color: var(--accent-lime);
    color: var(--primary-dark);
    padding-left: 2rem;
}

.dropdown-item:hover i {
    color: var(--primary-dark);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    color: var(--white);
    min-height: 85vh;
    position: relative;
    display: flex;
    padding: 7rem 0 3rem;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("../img/header.jpg") no-repeat bottom center;
    background-size: cover;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title .underline {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.hero-title .underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 20'%3E%3Cpath d='M5,15 Q125,5 250,12 T495,15' stroke='%23c8ff00' stroke-width='8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    margin: 1.5rem auto 3rem;
    line-height: 1.7;
    max-width: 700px;
    font-weight: 400;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Fix 3rd button */
.service-grid .service-btn:nth-child(3) {
    grid-column: span 2;      /* full row */
    justify-self: center;     /* center it */
    width: 100%;              /* same width as others */
    max-width: 240px;         /* match approx width of other buttons */
}

.service-btn {
    background: var(--white);
    color: var(--text-dark);
    padding: 1.2rem 1rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-family: var(--font-body);
}

.service-btn i {
    font-size: 1.3rem;
    color: var(--accent-teal);
}

.service-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--accent-lime);
}

.decorative-squiggle {
    position: absolute;
    color: var(--accent-lime);
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-10px) rotate(10deg); }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-lime);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(200, 255, 0, 0.4);
    z-index: 999;
    border: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 255, 0, 0.6);
    background: var(--accent-teal);
    color: var(--white);
}

.scroll-to-top i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40%  { transform: translateY(-10px); }
    60%  { transform: translateY(-5px); }
}

/* ============================================================
   WHY / ABOUT SECTION
   ============================================================ */
.why-section {
    overflow-x: hidden;
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #082521;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-teal);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent-lime);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-family: var(--font-body);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 255, 0, 0.4);
}

/* ============================================================
   HOME SECTION
   ============================================================ */
.home-section {
    overflow-x: hidden;
    padding: 100px 0;
    background: #efede8;
}

.home-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.home-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ============================================================
   CARRIERS SLIDER
   ============================================================ */
.carriers-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.carriers-slider {
    display: flex;
    animation: slide 30s linear infinite;
    gap: 3rem;
}

.carrier-item {
    min-width: 180px;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.carrier-item img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}

@keyframes slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   HOW IT WORKS — REDESIGNED (no cards)
   ============================================================ */
.how-section {
    padding: 110px 0 100px;
    background: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

/* Section eyebrow label */
.how-label {
    color: var(--accent-lime);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    text-align: center;
    margin-bottom: 4rem;
    font-family: var(--font-body);
}

/* Two-column grid */
.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

/* ---- LEFT: Steps ---- */
.how-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.how-heading em {
    font-style: italic;
    color: var(--accent-lime);
}

.how-subtext {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    max-width: 440px;
    font-weight: 400;
}

/* Individual step row */
.how-step {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
}

.how-step-num {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(200, 255, 0, 0.18);
    letter-spacing: -0.04em;
    min-width: 72px;
    transition: color 0.3s;
    user-select: none;
}

.how-step:hover .how-step-num {
    color: var(--accent-lime);
}

.how-step-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.45rem;
    padding-top: 0.35rem;
}

.how-step-body p {
    color: rgba(255,255,255,0.6);
    font-size: 0.97rem;
    line-height: 1.65;
    font-weight: 400;
    margin: 0;
}

/* Thin vertical connector between steps */
.how-step-line {
    width: 1px;
    height: 2.4rem;
    background: linear-gradient(to bottom, rgba(200,255,0,0.25), rgba(200,255,0,0.05));
    margin-left: 35px; /* aligns with number center */
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ---- RIGHT: Quote comparison panel ---- */
.how-panel {
    position: relative;
}

.how-panel-inner {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 2.2rem 2rem;
    backdrop-filter: blur(4px);
}

.how-panel-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.4rem;
    font-family: var(--font-body);
}

/* Single quote row */
.how-quote {
    display: grid;
    grid-template-columns: 40px 1fr auto auto;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    border-radius: 14px;
    margin-bottom: 0.85rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.how-quote:hover {
    transform: translateX(6px);
    border-color: rgba(200,255,0,0.25);
}

/* Best / highlighted quote */
.how-quote--best {
    background: rgba(200,255,0,0.07);
    border-color: rgba(200,255,0,0.4);
}

/* Rank pill */
.how-quote-rank {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-lime);
    background: rgba(200,255,0,0.1);
    border-radius: 6px;
    padding: 3px 7px;
    white-space: nowrap;
    text-align: center;
}

.how-quote-rank--muted {
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.05);
}

/* Carrier logo */
.how-quote-logo {
    display: flex;
    align-items: center;
}

.how-quote-logo img {
    max-height: 30px;
    max-width: 110px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

/* Price */
.how-quote-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    white-space: nowrap;
    text-align: right;
}

.how-quote-price span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    margin-left: 2px;
}

.how-quote-price--muted {
    color: rgba(255,255,255,0.5);
}

/* Savings badge */
.how-quote-badge {
    background: var(--accent-teal);
    color: #04342C;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
    font-family: var(--font-body);
}

.how-quote-badge--muted {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
}

/* Trust signals row */
.how-panel-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.how-panel-trust span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
}

.how-panel-trust i {
    color: var(--accent-lime);
    font-size: 0.75rem;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-header-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.faq-icon-lines {
    color: var(--accent-teal);
    font-size: 2rem;
    margin-top: -1rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-teal);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    user-select: none;
    font-family: var(--font-body);
}

.faq-question i {
    color: var(--accent-teal);
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer h5 {
    color: var(--accent-lime);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.footer a:hover {
    color: var(--accent-lime);
    padding-left: 10px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    margin: 0 8px;
    transition: all 0.3s;
}

.footer-bottom .footer-links a:hover {
    color: var(--accent-lime);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-content {
    border-radius: 25px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 2rem;
    border: none;
}

.modal-title {
    font-weight: 800;
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.modal-body {
    padding: 3rem;
}

.progress {
    height: 10px;
    margin-bottom: 3rem;
    border-radius: 10px;
    background: #e9ecef;
}

.progress-bar {
    background: linear-gradient(90deg, var(--accent-lime) 0%, var(--accent-teal) 100%);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
}

.form-control {
    padding: 0.9rem 1.2rem;
    font-size: 1.05rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.form-control:focus {
    border-color: var(--accent-lime);
    box-shadow: 0 0 0 4px rgba(200, 255, 0, 0.1);
    outline: none;
}

.insurance-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.insurance-type-card {
    padding: 2rem 1.5rem;
    background: var(--light-bg);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.insurance-type-card:hover {
    border-color: var(--accent-lime);
    transform: translateY(-5px);
}

.insurance-type-card.selected {
    border-color: var(--accent-lime);
    background: #fffef0;
}

.insurance-type-card i {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

.insurance-type-card h5 {
    font-weight: 700;
    margin: 0;
    font-family: var(--font-display);
}

.disclaimer-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.disclaimer-box h6 {
    color: #856404;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: var(--font-display);
}

.disclaimer-box p {
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.modal-footer {
    padding: 2rem 3rem;
    border: none;
}

.btn-modal {
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.btn-secondary {
    background: #6c757d;
    color: var(--white);
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-success {
    background: var(--accent-lime);
    color: var(--primary-dark);
}

.btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .how-heading {
        font-size: 2.4rem;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        margin: 0.3rem 0;
    }

    .btn-quote {
        margin-top: 1rem;
        width: 100%;
    }

    .dropdown-menu {
        width: 100%;
        margin-top: 0.5rem !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 75vh;
    }

    .hero-section::before {
        background: url(../img/header-bg.jpg);
        background-size: auto;
    }

    .hero-title br {
        display: none;
    }

    .hero-title .underline::after {
        height: 10px;
        bottom: -3px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 1rem auto 2rem;
    }

    .service-grid {
        gap: 0.8rem;
        max-width: 100%;
    }

    .service-btn {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }

    .service-btn i {
        font-size: 1.1rem;
    }

    .decorative-squiggle {
        display: none;
    }

    .navbar-brand img {
        max-width: 120px;
    }

    .section-title {
        font-size: 2rem;
    }

    .carriers-slider {
        gap: 1.5rem;
    }

    .carrier-item {
        min-width: 150px;
    }

    .insurance-type-grid {
        grid-template-columns: 1fr;
    }

    .modal-body {
        padding: 2rem 1.5rem;
    }

    .how-quote {
        display: grid;
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem 1rem;
    }

    .how-quote-price,
    .how-quote-badge {
        grid-column: 2;
    }

    .how-panel-trust {
        flex-direction: column;
        gap: 0.6rem;
    }

    .how-step-num {
        font-size: 2.8rem;
        min-width: 56px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 376px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}