@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300..900;1,300..900&display=swap");

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


/* ----------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------- */


:root {
    --green-deep: #16351f;
    --green-mid:  #246035;
    --green-rich: #2f7a44;
    --green-light:#4fa866;
    --green-pale: #eaf4ed;
    --cream:      #f8f4ee;
    --cream-dark: #efe9df;
    --gold:       #c9a535;
    --gold-light: #e8c96a;
    --gold-pale:  #fdf5d8;
    --white:      #ffffff;
    --text-dark:  #0d1f12;
    --text-muted: #4d6655;
    --r-sm: 6px;
    --r-md: 14px;
    --r-lg: 24px;
    --r-xl: 40px;
    --display:
    "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    /* Legacy aliases kept for any inline usage */
    --sans: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --serif: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shadow: 0 8px 48px rgba(22,53,31,.14);
    --shadow-sm: 0 2px 16px rgba(22,53,31,.09);
    --fd: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --fb: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: var(--text-base);
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--text-body);
  background-color: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.hero-copy h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 700;
}

/* ══ TOPBAR ══ */
.topbar {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: var(--green-deep);
    color: rgba(255,255,255,.7);
    font-size: 13px; font-weight: 500;
    padding: 9px 0; text-align: center;
    letter-spacing: .02em;
}
.topbar a { color: var(--gold-light); text-decoration: none; font-weight: 600; }

/* ══ HEADER ══ */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(248,244,238,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(22,53,31,.08);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
.header.scrolled { box-shadow: 0 2px 32px rgba(22,53,31,.12); }

.logo {
    font-family: var(--fd);
    font-size: 27px; font-weight: 900;
    color: var(--green-deep); text-decoration: none;
    letter-spacing: -.5px;
}
.logo em { font-style: normal; color: var(--green-rich); }

.header-nav { display: flex; align-items: center; gap: 34px;}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 64px);
}
.header-nav a {
    font-size: 14px; font-weight: 500;
    color: var(--text-dark); text-decoration: none;
    opacity: .72; transition: opacity .2s, color .2s;
}
.header-nav a:hover { opacity: 1; color: var(--green-mid); }

.nav-cta {
    background: var(--green-deep) !important;
    color: #fff !important; opacity: 1 !important;
    padding: 10px 22px; border-radius: 50px;
    font-weight: 700 !important; font-size: 13.5px !important;
    letter-spacing: .02em;
    transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--green-rich) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px; }

/* ══ HERO ══ */
.hero {
    /* min-height: 90vh; */
    position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('../../assets/img/bg/lawn\ sprinkle-2.webp');
    background-size: cover; background-position: center 60%;
    background-repeat: no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(16,40,22,.88) 0%, rgba(16,40,22,.70) 48%, rgba(16,40,22,.25) 100%);
}

.hero-inner {
    position: relative; z-index: 2;
    max-width: 1150px; margin: 0 auto;
    /* padding: 0px 56px 100px; */
    width: 100%;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.btn-call-text {
    display: flex; align-items: flex-start; gap: 2px; justify-content: center;
}

.hero-copy { max-width: 680px; }
.hero-form-wrap { display: flex; justify-content: flex-end; }

.hero-form-card {
    width: 100%; max-width: 680px;
    background: rgba(255,255,255,.96);
    border-radius: var(--r-xl);
    padding: 40px 36px;
    box-shadow: 0 20px 80px rgba(0,0,0,.28);
    backdrop-filter: blur(8px);
}
.hero-form-card .form-card-kicker { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-rich); margin-bottom: 8px; }
.hero-form-card .form-card-title { font-family: var(--fd); font-size: 28px; font-weight: 700; color: var(--green-deep); line-height: 1.22; margin-bottom: 24px; }

.promo-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #c9a535, #e8c96a);
    color: var(--green-deep);
    font-size: 12px; font-weight: 800;
    letter-spacing: .05em; text-transform: uppercase;
    padding: 9px 20px; border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(201,165,53,.45);
    animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 4px 20px rgba(201,165,53,.45); }
    50% { box-shadow: 0 6px 28px rgba(201,165,53,.7); }
}

.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,165,53,.18); border: 1px solid rgba(201,165,53,.45);
    color: var(--gold-light); font-size: 11.5px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 7px 18px; border-radius: 50px; margin-bottom: 30px;
}
.hero-tag span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero h1 {
    font-family: var(--fd);
    font-size: clamp(36px, 4.8vw, 64px);
    font-weight: 900; color: var(--white);
    line-height: 1.06; letter-spacing: -.5px;
    max-width: 680px; margin-bottom: 16px;
}
.hero h1 i { font-style: italic; color: var(--gold-light); }

.hero-location {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.75); font-size: 13px; font-weight: 600;
    padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}

.hero-sub { font-size: 17px; color: rgba(255,255,255,.68); line-height: 1.75; max-width: 500px; margin-bottom: 36px; }

.hero-checks { display: flex; flex-direction: column; gap: 13px; margin-bottom: 44px; }
.hc { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.84); font-size: 15px; }
.hc-dot {
    width: 24px; height: 24px; flex-shrink: 0;
    background: rgba(79,168,102,.3); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: #7ddd9e;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-call {
    display: inline-flex; align-items: center; gap: 12px;
    background: #25d366; color: #fff;
    font-weight: 700; font-size: 15px;
    padding: 17px 32px; border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(37,211,102,.4);
    transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-call:hover { background: #1fb558; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(37,211,102,.5); }

.btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gold); color: var(--green-deep);
    font-weight: 700; font-size: 15px;
    padding: 17px 32px; border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(201,165,53,.4);
    transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,165,53,.5); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.28);
    color: rgba(255,255,255,.88); font-weight: 500; font-size: 15px;
    padding: 17px 28px; border-radius: 50px; text-decoration: none;
    transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); color: #fff; }

.hero-stats {
    display: flex; gap: 40px;
    margin-top: 56px; padding-top: 44px;
    border-top: 1px solid rgba(255,255,255,.14);
}
.hs-num { font-family: var(--fd); font-size: 40px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 5px; }
.hs-num sup { color: var(--gold); font-size: 22px; }
.hs-lbl { font-size: 13px; color: rgba(255,255,255,.46); }

/* ══ BRANDS ══ */
.brands {
    background: var(--green-deep);
    padding: 18px 56px;
    display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.brands-lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-right: 8px; }
.brand-chip {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.72); font-size: 12.5px; font-weight: 600;
    padding: 7px 22px; border-radius: 50px; letter-spacing: .05em;
}

/* ══ PROBLEM SECTION ══ */
.problem-section { background: var(--cream-dark); padding: 80px 0; }
.problem-inner { text-align: center; margin-bottom: 56px; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.prob-card {
    background: var(--white); border-radius: var(--r-lg);
    padding: 32px 24px; text-align: center;
    border: 1.5px solid rgba(22,53,31,.07);
    transition: transform .3s, box-shadow .3s;
}
.prob-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prob-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.prob-card h4 { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--green-deep); margin-bottom: 10px; line-height: 1.3; }
.prob-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.problem-transition {
    text-align: center; margin-top: 40px; padding: 24px 40px;
    background: var(--green-deep); border-radius: var(--r-lg);
    display: inline-flex; align-items: center; gap: 16px;
    font-size: 17px; font-weight: 700; color: #fff;
}
.problem-transition-wrap { text-align: center; }

/* ══ SECTION COMMON ══ */
section { padding: 104px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--green-rich); margin-bottom: 16px;
}
.kicker::before { content: ''; width: 22px; height: 2px; background: var(--green-light); border-radius: 2px; }

.sec-title {
    font-family: var(--fd);
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 700; color: var(--green-deep);
    line-height: 1.13; letter-spacing: -.3px; margin-bottom: 18px;
}
.sec-title i { font-style: italic; color: var(--green-rich); }
.sec-sub { font-size: 16.5px; color: var(--text-muted); line-height: 1.7; max-width: 560px; }

/* ══ SERVICES ══ */
.services-section { background: var(--cream); }

.srv-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 32px;
    margin-bottom: 60px;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
}

.srv-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 20px 18px;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;

    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.srv-card:hover {
    border-color: rgba(79,168,102,.25);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.srv-card:hover::before { transform: scaleX(1); }

.srv-card.featured {
    background: var(--green-deep);
    border-color: var(--green-rich);
}

.srv-card.featured::after {
    content: 'Le plus demandé';
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 5px 12px;
    border-radius: 50px;
}

.srv-card.featured .srv-icon { background: rgba(255,255,255,.1); }
.srv-card.featured .srv-n { color: rgba(255,255,255,.08); }
.srv-card.featured h3 { color: #fff; }
.srv-card.featured p { color: rgba(255,255,255,.6); }
.srv-card.featured li { color: rgba(255,255,255,.72); }
.srv-card.featured .srv-link {
    color: var(--gold-light);
    border-color: rgba(201,165,53,.3);
}
.srv-card.featured .srv-link:hover { background: rgba(201,165,53,.15); }

.srv-n {
    font-family: var(--display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(22,53,31,.06);
    line-height: 1;
    letter-spacing: -2px;
    margin: 4px 0 -12px;
}

.srv-icon {
    width: 54px;
    height: 54px;
    background: var(--green-pale);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.srv-card h3 {
    font-family: var(--fd);
    font-size: 19px;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.22;
    margin-bottom: 13px;
    min-height: 50px;
}

.srv-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
    min-height: 100px;
}

.srv-list {
    list-style: none;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-height: 80px;
}

.srv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-muted);
}

.srv-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.srv-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-mid);
    text-decoration: none;
    border: 1.5px solid rgba(47,122,68,.22);
    padding: 10px 18px;
    border-radius: 50px;
    transition: background .2s, border-color .2s;

    margin-top: auto;
    align-self: flex-start;
}

.srv-link:hover {
    background: var(--green-pale);
    border-color: var(--green-mid);
}
/* ══ FOR WHO ══ */
.forwho-section { background: var(--green-pale); padding: 80px 0; }
.forwho-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.forwho-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.fw-item {
    background: var(--white); border-radius: var(--r-md);
    padding: 24px 20px; border-left: 3px solid var(--green-light);
    transition: transform .3s, box-shadow .3s;
}
.fw-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.fw-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.fw-item h4 { font-family: var(--fd); font-size: 16px; font-weight: 700; color: var(--green-deep); margin-bottom: 6px; }
.fw-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* ══ WHY US ══ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-img-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); }
.why-img-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }
.why-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(16,40,22,.82) 0%, transparent 50%); }
.why-img-stat { position: absolute; bottom: 28px; left: 28px; display: flex; gap: 16px; }
.wis { background: rgba(255,255,255,.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-md); padding: 14px 20px; text-align: center; }
.wis strong { display: block; font-family: var(--fd); font-size: 28px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 3px; }
.wis span { font-size: 11px; color: rgba(255,255,255,.6); }
.why-badge { position: absolute; top: -18px; right: -18px; background: var(--gold); border-radius: var(--r-md); padding: 16px 22px; box-shadow: 0 8px 32px rgba(201,165,53,.4); }
.why-badge strong { display: block; font-size: 24px; font-weight: 700; color: var(--green-deep); }
.why-badge span { font-size: 12px; color: rgba(22,53,31,.65); }

.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.wp { display: flex; gap: 20px; align-items: flex-start; }
.wp-icon { width: 50px; height: 50px; flex-shrink: 0; background: var(--green-pale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: var(--shadow-sm); }
.wp-body h4 { font-family: var(--fd); font-size: 17px; font-weight: 700; color: var(--green-deep); margin-bottom: 5px; }
.wp-body p { font-size: 14px; color: var(--text-muted); line-height: 1.62; }

.guarantees-strip { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(22,53,31,.08); }
.guarantee-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale); border: 1px solid rgba(47,122,68,.2); color: var(--green-mid); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 50px; }

/* ══════════════════════════════════════
    GALLERY — BEFORE / AFTER
══════════════════════════════════════ */
.gallery-section { background: var(--cream-dark); }
.gallery-head { text-align: center; margin-bottom: 64px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.ba-card,
.ba-single {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s, transform .3s;
    background: var(--white);
}

.ba-card {
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba-card:hover,
.ba-single:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.ba-card.large,
.ba-single {
    grid-column: span 1;
}

.ba-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #d9d9d9;
}

.ba-card.large .ba-media {
    aspect-ratio: 16 / 9;
}

.ba-before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-after-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 50%;
    transition: width 0s;
}

.ba-after-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 150px;
    object-fit: cover;
    display: block;
}

.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: rgba(255,255,255,.9);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 12px rgba(0,0,0,.35);
    z-index: 2;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 16px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform .15s;
}

.ba-handle svg { width: 20px; height: 20px; }
.ba-card:active .ba-handle { transform: translate(-50%, -50%) scale(1.12); }

.ba-label {
    position: absolute;
    bottom: 14px;
    z-index: 3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    pointer-events: none;
}

.ba-label-before {
    right: 14px;
    background: rgba(0,0,0,.55);
    color: rgba(255,255,255,.8);
}

.ba-label-after {
    left: 14px;
    background: var(--gold);
    color: var(--green-deep);
    opacity: 1;
    transition: opacity .2s;
}

.ba-caption {
    background: var(--green-deep);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 84px;
}

.ba-caption-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ba-caption strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
}

.ba-caption small {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    line-height: 1.4;
}

.ba-caption a {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-light);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(201,165,53,.35);
    padding: 8px 14px;
    border-radius: 50px;
    transition: background .2s;
}

.ba-caption a:hover { background: rgba(201,165,53,.15); }

.ba-single-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #d9d9d9;
}

.ba-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}

.ba-single:hover img { transform: scale(1.03); }

.ba-single-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,40,22,.85) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 20px;
}

.ba-single-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 8px;
    background: var(--gold);
    color: var(--green-deep);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.ba-single-overlay strong {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1.3;
    margin-bottom: 3px;
}

.ba-single-overlay small {
    font-size: 12px;
    color: rgba(255,255,255,.55);
}

.gallery-cta-card {
    background: var(--green-deep);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    min-height: 100%;
    max-width: 480px;
}

.gallery-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.gallery-hint span { display: flex; align-items: center; gap: 6px; }
.hint-dot { width: 8px; height: 8px; background: var(--green-light); border-radius: 50%; }

/* ══ PROCESS ══ */
.process-section { background: var(--green-deep); }
.process-head { text-align: center; margin-bottom: 72px; }
.process-head .kicker { color: rgba(255,255,255,.45); }
.process-head .kicker::before { background: rgba(255,255,255,.25); }
.process-head .sec-title { color: var(--white); }
.process-head .sec-sub { color: rgba(255,255,255,.5); margin: 0 auto; }

.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; position: relative; }
.proc-grid::before {
    content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%;
    height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), rgba(255,255,255,.18), transparent);
    z-index: 0;
}
.proc-step { padding: 0 18px; text-align: center; position: relative; z-index: 1; }
.proc-circle {
    width: 80px; height: 80px; margin: 0 auto 28px;
    background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--fd); font-size: 28px; font-weight: 900; color: var(--gold-light);
    transition: background .3s, border-color .3s;
}
.proc-step:hover .proc-circle { background: rgba(201,165,53,.18); border-color: var(--gold); }
.proc-step h3 { font-family: var(--fd); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.proc-step p { font-size: 14px; color: rgba(255,255,255,.48); line-height: 1.65; }
.proc-cta { text-align: center; margin-top: 60px; }

/* ══ TESTIMONIALS ══ */
.testi-section { background: var(--cream-dark); }
.testi-head { text-align: center; margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.t-card { background: var(--white); border-radius: var(--r-lg); padding: 36px 30px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.t-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.t-star { width: 17px; height: 17px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }


.testi-gcard-stars {
  display: inline-flex;
  gap: 5px;
}

.testi-gstar {
  width: 22px;
  height: 22px;
  background-color: #fbbc04;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.t-text { font-size: 15px; color: var(--text-dark); line-height: 1.7; font-style: italic; margin: 24px 0; }
.t-author { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid rgba(22,53,31,.08); }
.t-av { width: 42px; height: 42px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--green-rich); flex-shrink: 0; }
.t-name { font-weight: 700; font-size: 14px; color: var(--green-deep); }
.t-role { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.t-city { font-size: 11.5px; color: var(--green-light); font-weight: 600; margin-top: 2px; }

/* ══ ZONE ══ */
.zone-section { position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(101,184,123,.326) 0%, rgba(27,54,33,.415) 100%); }
.zone-section::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center 40%; background-image: url('assets/img/bg/original-3.webp'); opacity: .18; }
.zone-section::after { content: ''; position: absolute; inset: 0; }
.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.zone-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.zone-chip { display: flex; align-items: center; gap: 10px; background: var(--green-pale); border: 1px solid rgba(47,122,68,.2); border-radius: var(--r-md); padding: 14px 18px; font-size: 14px; font-weight: 600; color: var(--green-deep); transition: background .2s, transform .2s; }
.zone-chip:hover { background: #d6edda; transform: translateX(4px); }
.zone-num { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.zone-map-visual { background: var(--green-pale); border-radius: var(--r-xl); padding: 48px; text-align: center; border: 2px dashed rgba(47,122,68,.2); position: relative; overflow: hidden; }
.zone-map-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(79,168,102,.08) 0%, transparent 70%); }
.zone-map-title { font-family: var(--fd); font-size: 22px; font-weight: 700; color: var(--green-deep); margin-bottom: 8px; }
.zone-map-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.zone-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.zone-dot-item { background: var(--white); border: 1.5px solid rgba(47,122,68,.25); border-radius: 50px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: var(--green-mid); display: flex; align-items: center; gap: 6px; }
.zone-dot-item::before { content: ''; width: 8px; height: 8px; background: var(--green-light); border-radius: 50%; flex-shrink: 0; }
.zone-note { margin-top: 24px; font-size: 13px; color: var(--text-muted); background: rgba(201,165,53,.12); border: 1px solid rgba(201,165,53,.25); border-radius: var(--r-md); padding: 12px 18px; display: inline-block; }

/* ══ CONTACT ══ */
.contact-section { background: var(--green-deep); position: relative; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; inset: 0; background-image: url('assets/img/bg/lawn\ sprinkle.webp'); background-size: cover; background-position: center 40%; opacity: .18; }
.contact-section::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(16,40,22,.98) 0%, rgba(16,40,22,.80) 100%); }
.contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 64px; }
.contact-copy .kicker { color: rgba(255,255,255,.45); }
.contact-copy .kicker::before { background: rgba(255,255,255,.25); }
.contact-copy .sec-title { color: var(--white); }
.contact-copy .sec-sub { color: rgba(255,255,255,.55); }
.contact-reasons { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.cr { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.78); font-size: 15px; }
.cr-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(255,255,255,.08); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-phone { display: inline-flex; align-items: center; gap: 12px; margin-top: 36px; padding: 16px 24px; background: rgba(201,165,53,.15); border: 1px solid rgba(201,165,53,.35); border-radius: var(--r-md); }
.contact-phone a { color: var(--gold-light); font-size: 20px; font-weight: 700; text-decoration: none; letter-spacing: -.3px; }
.contact-phone span { font-size: 13px; color: rgba(255,255,255,.45); display: block; margin-top: 1px; }

.form-card { width: 100%; max-width: 820px; justify-self: end; background: var(--white); border-radius: var(--r-xl); padding: 48px 44px; box-shadow: 0 20px 80px rgba(0,0,0,.35); }
.form-card-kicker { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-rich); margin-bottom: 8px; }
.form-card-title { font-family: var(--fd); font-size: 26px; font-weight: 700; color: var(--green-deep); line-height: 1.22; margin-bottom: 28px; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: .05em; margin-bottom: 6px; text-transform: uppercase; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 14px 16px; border: 1.5px solid rgba(22,53,31,.12); border-radius: var(--r-sm); font-family: var(--fb); font-size: 14.5px; color: var(--text-dark); background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(47,122,68,.10); background: #fff; }
.fg input::placeholder, .fg textarea::placeholder { color: #b0bdb6; }
.fg select { cursor: pointer; color: #b0bdb6; }
.fg select.filled { color: var(--text-dark); }
.fg textarea { resize: none; height: 90px; line-height: 1.55; }

.btn-submit { width: 100%; padding: 17px; background: var(--green-deep); color: #fff; font-family: var(--fb); font-size: 16px; font-weight: 700; border: none; border-radius: var(--r-sm); cursor: pointer; transition: background .2s, transform .15s; margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-submit:hover { background: var(--green-rich); transform: translateY(-1px); }

.form-trust { display: flex; justify-content: space-around; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(22,53,31,.07); }
.ft-item { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--text-muted); font-weight: 500; }
.ft-dot { width: 6px; height: 6px; background: var(--green-light); border-radius: 50%; }

/* ══ FAQ ══ */
.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-sticky { position: sticky; top: 100px; }
.faq-img { width: 100%; height: 320px; border-radius: var(--r-xl); overflow: hidden; margin-top: 32px; box-shadow: var(--shadow); }
.faq-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-video { width: 100%; max-width: 420px; max-height: 420px; aspect-ratio: 9/16; border-radius: var(--r-xl); overflow: hidden; margin-top: 32px; box-shadow: var(--shadow); position: relative; background: var(--green-deep); }
.faq-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-video::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, rgba(16,40,22,.5), transparent); pointer-events: none; border-radius: 0 0 var(--r-xl) var(--r-xl); }

.acc-item { border-bottom: 1px solid rgba(22,53,31,.09); }
.acc-btn { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-family: var(--fb); font-size: 15.5px; font-weight: 600; color: var(--green-deep); text-align: left; transition: color .2s; }
.acc-btn:hover { color: var(--green-mid); }
.acc-btn.active { color: var(--green-mid); }
.acc-icon { width: 28px; height: 28px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .3s; }
.acc-btn.active .acc-icon { background: var(--green-mid); transform: rotate(45deg); }
.acc-icon svg { color: var(--green-mid); }
.acc-btn.active .acc-icon svg { color: white; }
.acc-body { font-size: 15px; color: var(--text-muted); line-height: 1.72; overflow: hidden; max-height: 0; transition: max-height .4s ease, padding .3s; padding: 0; }
.acc-body.open { max-height: 220px; padding-bottom: 24px; }

/* ══ CTA BAND ══ */
.cta-band { background: linear-gradient(135deg, var(--green-deep), #0a1f10); padding: 80px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -100px; right: -80px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(201,165,53,.12), transparent 70%); pointer-events: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-copy .kicker { color: rgba(255,255,255,.4); }
.cta-copy .kicker::before { background: rgba(255,255,255,.2); }
.cta-copy h2 { font-family: var(--fd); font-size: clamp(26px,3vw,40px); color: #fff; font-weight: 700; line-height: 1.18; margin-bottom: 12px; }
.cta-copy p { color: rgba(255,255,255,.5); font-size: 16px; max-width: 380px; }
.cta-tel-form { display: flex; gap: 12px; flex-shrink: 0; }
.cta-tel-form input { padding: 16px 22px; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-family: var(--fb); font-size: 15px; border-radius: 50px; width: 250px; outline: none; transition: border-color .2s; }
.cta-tel-form input::placeholder { color: rgba(255,255,255,.32); }
.cta-tel-form input:focus { border-color: rgba(255,255,255,.48); }

/* ══ CTA FINAL ══ */
.cta-final { background: linear-gradient(135deg, #0a1f10, var(--green-deep)); padding: 96px 0; position: relative; overflow: hidden; text-align: center; }
.cta-final::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,165,53,.1), transparent 70%); pointer-events: none; }
.cta-final h2 { font-family: var(--fd); font-size: clamp(28px,3.5vw,48px); color: #fff; font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.cta-final h2 i { color: var(--gold-light); font-style: italic; }
.cta-final p { color: rgba(255,255,255,.5); font-size: 17px; max-width: 440px; margin: 0 auto 44px; }
.cta-final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-call-big { display: inline-flex; align-items: center; gap: 12px; background: #25d366; color: #fff; font-weight: 700; font-size: 16px; padding: 18px 36px; border-radius: 50px; text-decoration: none; box-shadow: 0 8px 32px rgba(37,211,102,.45); transition: background .2s, transform .15s; }
.btn-call-big:hover { background: #1fb558; transform: translateY(-2px); }

/* ══ FOOTER ══ */
.footer { background: var(--green-deep); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo em { color: var(--gold-light); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.65; margin-top: 16px; max-width: 260px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ══ WA FLOAT ══ */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(37,211,102,.45); z-index: 999; transition: transform .2s, box-shadow .2s; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ══ STICKY MOBILE CTA ══ */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--green-deep); padding: 14px 20px; z-index: 998; box-shadow: 0 -4px 24px rgba(22,53,31,.3); }
.sticky-mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25d366; color: #fff; font-weight: 700; font-size: 16px; padding: 16px; border-radius: 50px; text-decoration: none; width: 100%; }

/* ══ MOBILE NAV ══ */
.mobile-nav { position: fixed; inset: 0; background: var(--green-deep); z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-family: var(--fd); font-size: 28px; font-weight: 700; color: rgba(255,255,255,.72); text-decoration: none; transition: color .2s; }
.mobile-nav a:hover { color: var(--gold-light); }
.mn-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: rgba(255,255,255,.45); font-size: 32px; cursor: pointer; }

/* Animations */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.fu { animation: fadeUp .7s ease forwards; }
.fu1 { animation-delay:.08s; opacity:0; animation-fill-mode:forwards; }
.fu2 { animation-delay:.18s; opacity:0; animation-fill-mode:forwards; }
.fu3 { animation-delay:.30s; opacity:0; animation-fill-mode:forwards; }

/* ══ RESPONSIVE ══ */


.notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2000;
  background: #ffffff;
  color: #173220;
  border-left: 5px solid #4fa866;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  padding: 16px 20px;
  min-width: 280px;
  max-width: 420px;
  display: none;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.notification.show {
  display: flex;
}

.notification.error {
  border-left-color: #d64545;
}

.notification p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.notification-close {
  background: transparent;
  border: none;
  color: #173220;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-copy { max-width: 100%; }
    .hero-form-wrap { justify-content: stretch; }
    .hero-form-card, .form-card { max-width: 100%; width: 100%; justify-self: stretch; }
    .srv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .problem-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .zone-grid { grid-template-columns: 1fr; }
    .forwho-grid { grid-template-columns: 1fr; }
    .proc-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .proc-grid::before { display: none; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sticky { position: static; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-copy p { margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .ba-card.large, .ba-single { grid-column: span 2; }
}
@media (max-width: 768px) {
    section { padding: 72px 0; }
    .header { padding: 0 24px; }
    .header-nav { display: none; }
    .hamburger { display: flex; }
    .container {
        padding: 0 20px;
    }

    .srv-head {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 36px;
    }

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

    .srv-card h3,
    .srv-card p,
    .srv-list {
        min-height: unset;
    }
    .problem-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .proc-grid { grid-template-columns: 1fr; }
    .srv-head { grid-template-columns: 1fr; }
    .brands { padding: 16px 24px; gap: 8px; }
    .cta-tel-form { flex-direction: column; width: 100%; }
    .cta-tel-form input { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { flex-wrap: wrap; gap: 18px;}
    .frow { grid-template-columns: 1fr; }
    .hero-inner { padding: 0px 24px 80px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .ba-card.large, .ba-single { grid-column: span 1; }
    .ba-card.large .ba-media, .ba-single .ba-single-media { aspect-ratio: 4 / 3; }
    .ba-caption { flex-direction: column; align-items: flex-start; }
    .forwho-list { grid-template-columns: 1fr; }
    .zone-list { grid-template-columns: 1fr; }
    .sticky-mobile-cta { display: block; }
    .wa-float { bottom: 90px; }
    body { padding-bottom: 80px; }
}
@media (max-width: 480px) {
    .topbar { flex-direction: column; gap: 12px; padding: 12px 24px; }
    .btn-call { padding: 14px 28px; font-size: 15px; gap: 20px; }
    .btn-call-text { flex-direction: column; gap: 4px; width: 100%; justify-content: center; align-items: center;}
    .problem-grid { grid-template-columns: 1fr; }
    .cta-final-btns { flex-direction: column; align-items: center; }
    .hero { padding: 60px 0 40px; }
    .hero-btns { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; gap: 8px;}
    /* center the text */
    .btn-ghost {        padding: 14px 28px;
        font-size: 15px;
        gap: 20px;
        justify-content: center;
    }
    .problem-transition { display: flex; flex-direction: column;}

}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px) translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

@media (max-width: 640px) {
  .notification {
    top: 16px;
    left: 16px;
    right: 16px;
    min-width: unset;
    max-width: unset;
  }
}