/* CSS Variables for requested colors */
:root {
    --color-dark-green: #0f2814;
    --color-forest-green: #1f6b37;
    --color-light-green: #298547;
    --color-white: #ffffff;
    --color-dark: #0f2814;
    --color-primary: #1f6b37;
    --color-secondary: #298547;
    --color-light: #ffffff;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Supreme', sans-serif;
    --font-display: "Supreme", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Derived/Tinted colors for premium look */
    --color-card-bg: #f3f6f4;
    /* Very light tint of the green palette for the card background */
    --color-text-muted: rgba(15, 40, 20, 0.7);
    /* Muted dark green for descriptions */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Supreme', sans-serif;
    background-color: var(--color-white);
    color: var(--color-dark-green);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--navbar-offset, 88px);
}

.book-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(31, 107, 55, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--color-dark);
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    font-style: normal;
}

.book-call-btn:hover {
    background: rgba(31, 107, 55, 0.22);
    border-color: rgba(31, 107, 55, 0.45);
    transform: translateY(-1px);
}

.book-call-btn__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 600px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-decoration: none;
}

.btn-primary {
    background: #a3f470;
    color: #123b02;
}

.btn-primary:hover {
    background: #b2fc82;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(163, 244, 112, 0.3);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 44px;
    width: 100%;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s ease, opacity 0.6s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.navbar.is-scrolled {
    background-color: rgba(230, 230, 230, 0.94);
    box-shadow: 0 10px 28px rgba(15, 40, 20, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar.is-idle-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo,
.logo:hover,
.logo:focus,
.logo:visited,
.logo-text,
.logo-text-top,
.logo-text-bottom {
    text-decoration: none;
}

.hero-logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-text-top {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

.logo-text-bottom {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.1em;
}

.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #a3f470;
    opacity: 0;
    transform: translateX(-110%);
    pointer-events: none;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    animation: navUnderlineIn 0.3s ease forwards;
}

@keyframes navUnderlineIn {
    0% {
        transform: translateX(-110%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Typography Selection */
::selection {
    background-color: var(--color-light-green);
    color: var(--color-white);
}

/* Section Styling */
.how-it-works-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-light-green);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-dark-green);
    letter-spacing: 1px;
    line-height: 1.1;
}

/* Steps Wrapper */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Space between cards */
}

/* Individual Card Styling */
.step-card {
    position: relative;
    background-color: var(--color-card-bg);
    padding: 60px 40px 50px;
    /* Top padding is larger to account for the overlapping circle */
    text-align: center;
    border-radius: 0;
    /* Strict adherence to flat/sharp design */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effect for Dynamic Premium Feel */
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 40, 20, 0.08);
}

/* The Number Circle */
.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-light-green), var(--color-forest-green));
    border-radius: 50%;
    /* Circle is an exception, it must be round as per image */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-family: 'Supreme', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(31, 107, 55, 0.2);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Circle pulse on hover */
.step-card:hover .step-number {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Card Content Styling */
.step-content {
    max-width: 600px;
    margin: 0 auto;
}

.step-title {
    font-family: 'Supreme', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-green);
    margin-bottom: 15px;
}

.step-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    body {
        padding-top: var(--navbar-offset, 72px);
    }

    .nav-links {
        display: none;
    }

    .title {
        font-size: 3rem;
    }

    .step-card {
        padding: 50px 25px 40px;
    }
}

/* Newsletter Section Styling */
.newsletter-section {
    background-color: #e6e6e6;
    /* Cream background matching the image */
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.newsletter-header {
    text-align: center;
    margin-bottom: 50px;
}

.newsletter-subtitle {
    display: block;
    font-family: 'Supreme', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.newsletter-title {
    font-family: 'Supreme', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-dark-green);
    margin-bottom: 15px;
    line-height: 1.1;
}

.newsletter-description {
    font-family: 'Supreme', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

/* Form Styling */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: 'Supreme', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark-green);
    margin-left: 5px;
    /* Slight indent as seen in image */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: transparent;
    border: 1px solid rgba(15, 40, 20, 0.3);
    border-radius: 8px;
    /* Rounded corners as per image */
    font-family: 'Supreme', sans-serif;
    font-size: 1rem;
    color: var(--color-dark-green);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-dark-green);
}

.submit-btn {
    margin-top: 15px;
    width: 100%;
    padding: 18px 20px;
    background-color: transparent;
    border: 1px solid var(--color-dark-green);
    border-radius: 50px;
    /* Pill shape as per image */
    font-family: 'Supreme', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--color-dark-green);
    color: var(--color-white);
}

.newsletter-status {
    margin: 6px 0 0;
    min-height: 1.25rem;
    font-family: 'Supreme', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-text-muted);
}

.newsletter-status.is-loading {
    color: #4a5f55;
}

.newsletter-status.is-success {
    color: #1f6b37;
}

.newsletter-status.is-error {
    color: #a43131;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.5rem;
    }

    .newsletter-section {
        padding: 60px 20px;
    }
}

/* Site footer */
.site-footer {
    padding: 0;
    margin-top: 0;
}

.site-footer-inner {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 2.75rem);
    border-radius: 0;
    color: var(--color-light);
    font-family: var(--font-body);
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(41, 133, 71, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(31, 107, 55, 0.25) 0%, transparent 50%),
        linear-gradient(168deg, var(--color-dark) 0%, #0a1f10 42%, var(--color-primary) 100%);
    overflow: hidden;
}

.site-footer-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 28%);
    pointer-events: none;
}

.footer-top {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(160px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--color-light);
}

.footer-brand-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.footer-brand-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-brand-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-brand-sub {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.88;
    margin-top: 4px;
}

.footer-brand-copy {
    margin: 1.25rem 0 1.5rem;
    max-width: 22rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #a3f470;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
    color: var(--color-light);
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-col-title {
    margin: 0 0 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a,
.footer-contact-col a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover,
.footer-contact-col a:hover {
    color: #a3f470;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-col p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.footer-newsletter-lead {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 20rem;
}

.footer-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 26rem;
}

.footer-newsletter-form input {
    flex: 1 1 180px;
    min-width: 0;
    height: 52px;
    padding: 0 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.74);
}

.footer-newsletter-form input:focus {
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter-form button {
    height: 48px;
    padding: 0 1.5rem;
    border: none;
    border-radius: 999px;
    background: var(--color-secondary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-newsletter-form button:hover {
    background: #34a35a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 133, 71, 0.35);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    flex-wrap: wrap;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #a3f470;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1100px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 0 0.75rem;
        margin-top: 3rem;
    }

    .site-footer-inner {
        border-radius: 32px 32px 0 0;
        padding: 2.5rem 1.35rem 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
        max-width: none;
    }

    .footer-newsletter-form input,
    .footer-newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================================================================
   MOBILE OVERRIDES (≤ 991px) — how-it-works.html
   Premium editorial mobile rebuild: hamburger nav, tight section rhythm,
   refined card system, polished form. Eliminates horizontal scroll
   caused by inline nav-buttons + missing overflow safety.
   ===================================================================== */

/* Base: hide hamburger + drawer on desktop */
.hamburger { display: none; }
.mobile-menu { display: none; }

@media (max-width: 991px) {

    /* ---------- Global overflow safety ---------- */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    body.menu-open {
        overflow: hidden;
    }

    /* ---------- Navbar ---------- */
    .navbar {
        padding: 1rem 1.25rem !important;
    }
    .nav-right {
        display: none !important;
    }
    .nav-links,
    .nav-buttons {
        display: none !important;
    }
    body {
        padding-top: var(--navbar-offset, 72px);
    }

    /* ---------- Hamburger ---------- */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
        position: relative;
        z-index: 1200;
    }
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-dark-green);
        border-radius: 2px;
        transform-origin: center;
        transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    }
    .hamburger.open span {
        background: #ffffff;
    }
    .hamburger.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* ---------- Mobile drawer ---------- */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-dark-green);
        z-index: 1100;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex !important;
        flex-direction: column;
        padding: 5.5rem 1.75rem 2rem;
        gap: 1.25rem;
        overflow-y: auto;
    }
    .mobile-menu.open {
        transform: translateX(0);
    }
    .mobile-close-btn {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 301;
        padding: 0.25rem;
        line-height: 0;
    }
    .mobile-menu a {
        color: #ffffff;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 600;
        font-family: var(--font-body);
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        transition: color 0.2s ease, padding-left 0.2s ease;
    }
    .mobile-menu a:hover {
        color: #a3f470;
        padding-left: 0.25rem;
    }
    .mobile-menu a.active-menu-link {
        text-decoration: line-through;
        text-decoration-style: solid;
        text-decoration-color: #a3f470;
        text-decoration-thickness: 4px;
        text-underline-offset: 4px;
    }
    .mobile-menu .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        margin-top: auto;
        padding-top: 1.5rem;
    }
    .mobile-menu .mobile-buttons a {
        border-bottom: none;
        text-align: center;
        padding: 0.9rem 1.25rem;
        border-radius: 60px;
        font-size: 0.95rem;
        font-weight: 600;
    }
    .mobile-menu .mobile-buttons a:hover {
        padding-left: 1.25rem;
    }
    .mobile-menu .book-call-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 10px 20px !important;
        border-radius: 999px !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        background: rgba(255, 255, 255, 0.10) !important;
        backdrop-filter: blur(6px) !important;
        color: #ffffff !important;
        text-decoration: none !important;
        transition: background-color 0.2s ease, border-color 0.2s ease !important;
        font-family: "Supreme", Poppins, system-ui, -apple-system, "Segoe UI", sans-serif !important;
        font-weight: 600 !important;
        font-size: 14px !important;
        line-height: normal !important;
        font-style: normal !important;
    }
    .mobile-menu .book-call-btn:hover {
        background: rgba(255, 255, 255, 0.20) !important;
        border-color: rgba(255, 255, 255, 0.45) !important;
    }
    .mobile-menu .book-call-btn__icon {
        width: 16px !important;
        height: 16px !important;
    }
    .mobile-menu .btn-primary {
        background: #a3f470;
        color: #123b02;
    }

    /* ---------- HOW IT WORKS section ---------- */
    .how-it-works-section {
        padding: 4rem 1.25rem 3rem !important;
        min-height: auto !important;
    }
    .container {
        max-width: 100%;
    }
    .section-header {
        margin-bottom: 2.75rem !important;
    }
    .subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 2.5px !important;
        margin-bottom: 0.5rem !important;
    }
    .title {
        font-size: clamp(2.5rem, 11vw, 3.5rem) !important;
        line-height: 1.05 !important;
        letter-spacing: 0.01em !important;
    }
    .steps-wrapper {
        gap: 2.5rem !important;
    }
    .step-card {
        padding: 3rem 1.5rem 2rem !important;
        border-radius: 18px !important;
        border: 1px solid rgba(15, 40, 20, 0.06);
    }
    .step-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(15, 40, 20, 0.08);
    }
    .step-number {
        width: 46px !important;
        height: 46px !important;
        font-size: 1.15rem !important;
    }
    .step-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.75rem !important;
    }
    .step-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    /* ---------- NEWSLETTER / MESSAGE section ---------- */
    .newsletter-section {
        padding: 3.5rem 1.25rem !important;
    }
    .newsletter-container {
        max-width: 100%;
    }
    .newsletter-header {
        margin-bottom: 2rem !important;
    }
    .newsletter-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 1.75px !important;
        margin-bottom: 0.75rem !important;
    }
    .newsletter-title {
        font-size: clamp(2.25rem, 9vw, 2.85rem) !important;
        line-height: 1.05 !important;
        margin-bottom: 0.5rem !important;
    }
    .newsletter-description {
        font-size: 1rem !important;
    }
    .newsletter-form {
        gap: 1.15rem !important;
    }
    .form-group label {
        font-size: 0.9rem !important;
    }
    .form-group input,
    .form-group textarea {
        padding: 0.85rem 1rem !important;
        font-size: 0.95rem !important;
        background: rgba(255, 255, 255, 0.6);
    }
    .form-group input:focus,
    .form-group textarea:focus {
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(15, 40, 20, 0.06);
    }
    .form-group textarea {
        min-height: 110px;
    }
    .submit-btn {
        padding: 1rem 1.25rem !important;
        font-size: 1rem !important;
        margin-top: 0.5rem !important;
    }

    /* ---------- FOOTER ---------- */
    .site-footer {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
    }
    .site-footer-inner {
        border-radius: 0 !important;
        padding: 3rem 1.5rem 2.5rem !important;
    }
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .footer-brand-icon {
        width: 42px !important;
        height: 42px !important;
    }
    .footer-brand-name {
        font-size: 1.2rem !important;
    }
    .footer-brand-sub {
        font-size: 0.64rem !important;
        margin-top: 2px !important;
    }
    .footer-newsletter-form input {
        width: 100% !important;
        flex: none !important;
        height: 54px !important;
        padding: 0 1.05rem !important;
        border-radius: 60px !important;
    }
}