/* ── Global heading font ── */
.section-title, h2.section-title, h3.hot-title, h3.offers-title {
    font-family: Syne, sans-serif !important;
}

/* ════════════════════════════════════════════════════════════
     HERO — Two-Column Redesign
════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-h, 90px) + 48px);
    padding-bottom: 72px;
    position: relative;
    overflow: hidden;
}

/* Atmospheric mesh gradient background */
.hero::before {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(74,222,128,0.09) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(34,197,94,0.07) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 10%, rgba(134,239,172,0.06) 0%, transparent 60%);
    pointer-events: none;
}
/* Grain texture overlay */
.hero::after {
    content: "";
    position: absolute; inset: 0; z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox=%220 0 256 256%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noise%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noise)%22 opacity=%220.03%22/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    opacity: .4;
}
.hero > .container, .hero-scroll { position: relative; z-index: 2; }

/* ════════════════════════════════════════════════════════════
     HOW TO ORDER SECTION
════════════════════════════════════════════════════════════ */
.hto-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.hto-section::before {
    content: "";
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(74,222,128,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hto-section .container { position: relative; z-index: 1; }
.hto-head {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
}
.hto-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .75rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--clr-primary);
    margin-bottom: 14px;
}
.hto-title {
    font-family: Syne, sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800; letter-spacing: -0.03em;
    margin: 0 0 12px;
    color: var(--clr-text);
}
.hto-sub {
    color: var(--clr-text-sub);
    font-size: .95rem;
    max-width: 460px; margin: 0 auto;
}
.hto-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.hto-step {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    position: relative; z-index: 1;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}
.hto-step:hover {
    border-color: rgba(74,222,128,.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74,222,128,.1);
}
.hto-step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(74,222,128,.1);
    border: 1.5px solid rgba(74,222,128,.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-family: Syne, sans-serif;
    font-size: 1.4rem;
}
.hto-step-title {
    font-family: Syne, sans-serif;
    font-size: .95rem; font-weight: 700;
    margin-bottom: 7px;
}
.hto-step-desc {
    font-size: .82rem;
    color: var(--clr-text-sub);
    line-height: 1.55;
}
@media (max-width: 768px) {
    .hto-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .hto-steps { grid-template-columns: 1fr; }
}

.hero > .container {
    display: flex;
    align-items: center;
    gap: 64px;
    width: 100%;
    min-width: 0;
}
.hero-content {
    flex: 1 1 0;
    min-width: 0;
    text-align: left;
    max-width: none;
    margin: 0;
}

/* ── Eyebrow ── */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 18px;
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.25);
    border-radius: 999px;
    margin-bottom: 28px;
    font-size: 0.8rem; font-weight: 700;
    color: var(--clr-primary); letter-spacing: 0.03em;
    text-transform: uppercase;
}
.eyebrow-dot {
    width: 7px; height: 7px;
    background: var(--clr-primary); border-radius: 50%;
    flex-shrink: 0;
    animation: eyebrow-pulse 2s infinite;
}
@keyframes eyebrow-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
    50%     { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
}

/* ── Headline ── */
.hero-title {
    font-size: clamp(3rem, 5.5vw, 5.4rem);
    font-weight: 800; line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 22px; color: var(--clr-text);
    font-family: Syne, sans-serif;
}
.hero-title .grad {
    background: linear-gradient(120deg, #4ade80 0%, #22c55e 35%, #86efac 65%, #4ade80 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: shimmer-text 4s linear infinite;
}
@keyframes shimmer-text {
    to { background-position: 200% center; }
}

/* ── Subtitle ── */
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--clr-text-sub);
    max-width: 480px; margin: 0 0 34px;
    line-height: 1.65; font-weight: 400;
}

/* ── CTAs ── */
.hero-ctas {
    display: flex; gap: 14px;
    justify-content: flex-start; flex-wrap: wrap;
    margin-bottom: 36px;
}

/* ── Social Proof ── */
.hero-proof {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 44px;
}
.proof-avatars { display: flex; }
.proof-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    border: 2.5px solid var(--clr-bg);
    margin-left: -10px; font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-avatar:nth-child(1) { background: linear-gradient(135deg,#4ade80,#16a34a); }
.proof-avatar:nth-child(2) { background: linear-gradient(135deg,#60a5fa,#3b82f6); }
.proof-avatar:nth-child(3) { background: linear-gradient(135deg,#f97316,#ea580c); }
.proof-avatar:nth-child(4) { background: linear-gradient(135deg,#c084fc,#9333ea); }
.proof-text { font-size: 0.84rem; color: var(--clr-text-sub); font-weight: 500; line-height: 1.4; }
.proof-text strong { color: var(--clr-text); font-weight: 700; }
.proof-stars { color: #fbbf24; font-size: 0.78rem; }
.hero-proof-emoji {
    font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;
    line-height: 1;
}

/* ── Stats strip ── */
.hero-stats {
    display: flex; gap: 0; margin-top: 0; flex-wrap: wrap;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    width: fit-content;
}
.stat-item {
    padding: 18px 28px; text-align: center;
    background: transparent; border: none;
    border-radius: 0; backdrop-filter: none;
    box-shadow: none; min-width: auto;
    position: relative;
}
.stat-item + .stat-item::before {
    content: ""; position: absolute;
    left: 0; top: 20%; height: 60%;
    width: 1px; background: var(--clr-border);
}
.stat-num {
    font-size: 1.8rem; font-weight: 900;
    color: var(--clr-text); line-height: 1; margin-bottom: 3px;
}
.stat-num span { color: var(--clr-primary); }
.stat-label {
    font-size: 0.7rem; color: var(--clr-text-sub);
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}

/* ════════════════════════════════════════════════════════════
     HERO SHOWCASE (right column)
════════════════════════════════════════════════════════════ */
.hero-showcase {
    flex: 0 0 460px; width: 460px; height: 520px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: visible;
    min-width: 0;
}

/* Rings */
.showcase-ring {
    position: absolute; border-radius: 50%; pointer-events: none;
    left: 50%; top: 50%;
    width: 330px; height: 330px;
    border: 1px solid rgba(74,222,128,0.18);
    animation: ring-spin 90s linear infinite;
    will-change: transform;
}
.showcase-ring::after {
    content: ""; position: absolute;
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    top: -4px; left: 50%; margin-left: -4px;
    box-shadow: 0 0 10px 3px rgba(74,222,128,0.5);
}
.showcase-ring-2 {
    width: 420px; height: 420px;
    border: 1px dashed rgba(74,222,128,0.08);
    animation-duration: 120s; animation-direction: reverse;
}
.showcase-ring-2::after { display: none; }
@keyframes ring-spin {
    from { transform: translate(-50%, -50%) rotate(0deg) translateZ(0); }
    to   { transform: translate(-50%, -50%) rotate(360deg) translateZ(0); }
}

/* Center kiwi */
.showcase-center {
    position: relative; z-index: 2;
    width: 116px; height: 116px; border-radius: 30px;
    background: rgba(74,222,128,0.16);
    border: 1px solid rgba(74,222,128,0.35);
    box-shadow: 0 0 60px rgba(74,222,128,0.18), 0 0 120px rgba(74,222,128,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.4rem;
    animation: center-float 4s ease-in-out infinite;
}
@keyframes center-float {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-10px); }
}

/* Service mini-cards */
.sc-card {
    position: absolute;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: 16px; padding: 10px 14px;
    display: flex; align-items: center; gap: 9px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    white-space: nowrap; z-index: 3;
    font-weight: 600; color: var(--clr-text);
    cursor: default;
    transition: box-shadow 0.3s ease;
    animation: sc-float 5s ease-in-out infinite;
}
.sc-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.28); }
.sc-emoji { font-size: 1.45rem; flex-shrink: 0; line-height: 1; }
.sc-info { display: flex; flex-direction: column; gap: 1px; }
.sc-name { font-size: 0.8rem; font-weight: 700; }
.sc-sub  { font-size: 0.67rem; color: var(--clr-text-sub); font-weight: 500; }

/* Positions + individual float delays */
.sc-1 { top: 18px;  left:  12px; animation-delay:  0s;    }
.sc-2 { top: 18px;  right: 12px; animation-delay: -1.6s;  }
.sc-3 { bottom: 80px; left:  4px; animation-delay: -0.8s;  }
.sc-4 { bottom: 80px; right: 4px; animation-delay: -2.4s;  }
.sc-5 { bottom: 8px; left: 50%;
    animation: sc-float-c 5s ease-in-out infinite;
    animation-delay: -3.2s; }

@keyframes sc-float   { 0%,100%{transform:translateY(0);}  50%{transform:translateY(-8px);} }
@keyframes sc-float-c { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(-8px);} }

/* Badge pills */
.sc-badge {
    position: absolute; z-index: 4;
    padding: 6px 13px; border-radius: 999px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em;
    border: 1px solid;
    animation: badge-float 6s ease-in-out infinite;
    display: inline-flex; align-items: center; gap: 5px;
}
.sc-badge .sc-badge-emoji {
    font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;
    font-size: 0.95em; line-height: 1;
}
.sc-badge-green {
    background: rgba(74,222,128,0.12); border-color: rgba(74,222,128,0.4);
    color: #4ade80; top: 44%; left: 14px;
    animation-delay: -2s;
    white-space: nowrap;
    box-sizing: border-box;
}
.sc-badge-blue {
    background: rgba(96,165,250,0.12); border-color: rgba(96,165,250,0.4);
    color: #60a5fa; top: 44%; right: 14px;
    animation-delay: -4s;
    white-space: nowrap;
    box-sizing: border-box;
}
@keyframes badge-float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }

/* ── Scroll indicator ── */
.hero-scroll {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 7px;
    color: var(--clr-text-sub); font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; z-index: 5;
    animation: scroll-fade 2.5s ease-in-out infinite;
}
.hero-scroll-mouse {
    width: 22px; height: 34px; border: 2px solid currentColor;
    border-radius: 11px; display: flex; justify-content: center; padding-top: 5px;
}
.hero-scroll-wheel {
    width: 3px; height: 6px; background: currentColor;
    border-radius: 2px; animation: scroll-wheel 2.5s ease-in-out infinite;
}
@keyframes scroll-wheel { 0%{opacity:1;transform:translateY(0);} 100%{opacity:0;transform:translateY(10px);} }
@keyframes scroll-fade  { 0%,100%{opacity:.5;} 50%{opacity:1;} }

/* ════════════════════════════════════════════════════════════
     RESPONSIVE
════════════════════════════════════════════════════════════ */
@media(max-width:1100px) {
    .hero-showcase { flex: 0 0 400px; width: 400px; height: 460px; }
    .showcase-ring   { width: 290px; height: 290px; }
    .showcase-ring-2 { width: 370px; height: 370px; }
}
@media(max-width:900px) {
    .hero > .container { flex-direction: column; gap: 44px; align-items: center; }
    .hero-content { text-align: center; }
    .hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }
    .hero-sub    { margin: 0 auto 30px; }
    .hero-ctas   { justify-content: center; }
    .hero-proof  { justify-content: center; }
    .hero-stats  { justify-content: center; margin: 0 auto; }
    .hero-showcase { flex: none; width: 100%; height: 340px; max-width: 420px; }
    .showcase-ring   { width: 230px; height: 230px; }
    .showcase-ring-2 { width: 300px; height: 300px; }
    .showcase-center { width: 90px; height: 90px; font-size: 2.8rem; border-radius: 24px; }
    .sc-1 { top: 8px;  left: 8px; }
    .sc-2 { top: 8px;  right: 8px; }
    .sc-3 { bottom: 50px; left: 2px; }
    .sc-4 { bottom: 50px; right: 2px; }
    .sc-badge-green { left: 8px; }
    .sc-badge-blue  { right: 8px; }
}
@media(max-width:540px) {
    .hero > .container { gap: 30px; }
    .hero-showcase { height: 260px; max-width: 340px; }
    .sc-3, .sc-4 { bottom: 30px; }
    .sc-5 { bottom: -8px; }
    .sc-badge { display: none; }
    .stat-item { padding: 14px 18px; }
    .stat-num  { font-size: 1.5rem; }
    /* proof strip wraps cleanly */
    .hero-proof { flex-wrap: wrap; gap: 10px; }
    .hero-sub { margin-bottom: 24px; }
    .hero-ctas { gap: 10px; }
    .hero-ctas .btn { padding: 14px 20px; font-size: .9rem; }
}
@media(max-width:380px) {
    .hero { padding-top: calc(var(--nav-h, 90px) + 20px); }
    .hero-title { font-size: 2.4rem; }
    .hero-showcase { height: 220px; max-width: 300px; }
    .showcase-ring   { width: 190px; height: 190px; }
    .showcase-ring-2 { width: 250px; height: 250px; }
    .showcase-center { width: 76px; height: 76px; font-size: 2.4rem; }
    .sc-card { padding: 7px 10px; gap: 6px; }
    .sc-name { font-size: .72rem; }
    .sc-sub  { display: none; }
    .hero-stats { width: 100%; }
    .stat-item { padding: 12px 14px; }
    .stat-num  { font-size: 1.35rem; }
}

/* ════════════════════════════════════════════════════════════
     ABOUT — Redesign
════════════════════════════════════════════════════════════ */
.about.section { position: relative; overflow: hidden; }

/* Ambient background accent */
.about-bg-glow {
    position: absolute; pointer-events: none; border-radius: 50%;
    filter: blur(120px); opacity: 0.5; z-index: 0;
}
.about-bg-glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(74,222,128,0.12), transparent 70%);
    top: -100px; right: -100px;
}
.about-bg-glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(96,165,250,0.08), transparent 70%);
    bottom: -80px; left: -80px;
}

/* Section header */
.about-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative; z-index: 1;
}
.about-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px;
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 999px;
    font-size: 0.78rem; font-weight: 700;
    color: var(--clr-primary); letter-spacing: 0.06em;
    text-transform: uppercase; margin-bottom: 20px;
}
.about-h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
    font-weight: 800 !important; line-height: 1.1 !important;
    letter-spacing: -0.03em;
    margin-bottom: 16px !important;
    font-family: Syne, sans-serif !important;
}
.about-h2 .grad {
    background: linear-gradient(120deg, #4ade80 0%, #22c55e 40%, #86efac 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-lead {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--clr-text-sub);
    max-width: 580px; margin: 0 auto;
    line-height: 1.65;
}

/* Body two-col */
.about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative; z-index: 1;
}
@media(max-width:900px) {
    .about-body { grid-template-columns: 1fr; gap: 40px; }
}

/* Left — brand story */
.about-story { display: flex; flex-direction: column; gap: 24px; }

.about-quote {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-left: 3px solid var(--clr-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 20px 24px;
    font-size: 1rem; font-style: italic;
    color: var(--clr-text-sub); line-height: 1.6;
}
.about-quote strong { color: var(--clr-text); font-style: normal; }

/* Payment block */
.about-payment-block { margin-top: 8px; }
.about-payment-label {
    font-size: 0.72rem; font-weight: 800;
    color: var(--clr-text-sub); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 12px;
}
.about-payment-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.about-payment-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; border-radius: 999px;
    background: var(--clr-surface); border: 1px solid var(--clr-border);
    font-size: 0.85rem; font-weight: 700; color: var(--clr-text);
    transition: border-color 0.2s, background 0.2s;
}
.about-payment-chip:hover {
    border-color: var(--clr-primary);
    background: rgba(74,222,128,0.06);
}

/* Right — feature pillars */
.about-pillars {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media(max-width:480px) {
    .about-pillars { grid-template-columns: 1fr; }
}

.about-pillar {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    display: flex; flex-direction: column; gap: 12px;
    position: relative; overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: default;
}
.about-pillar:hover {
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(74,222,128,0.1);
}
.about-pillar::after {
    content: "";
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-primary);
    opacity: 0; transition: opacity 0.25s;
}
.about-pillar:hover::after { opacity: 1; }

.ap-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif;
}
.ap-title {
    font-size: 0.95rem; font-weight: 800; color: var(--clr-text);
    line-height: 1.2;
}
.ap-desc {
    font-size: 0.82rem; color: var(--clr-text-sub);
    line-height: 1.5; margin: 0;
}

/* About overline — keep old rule working but hidden */
.about-overline { display: none; }

/* ════════════════════════════════════════════════════════════
     SERVICES SECTION HEADER
════════════════════════════════════════════════════════════ */
.svc-section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.svc-section-left { display: flex; flex-direction: column; gap: 8px; }
.svc-eyebrow {
    font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--clr-primary);
}
.svc-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -0.03em;
    color: var(--clr-text); line-height: 1.05; margin: 0;
    font-family: Syne, sans-serif;
}
.svc-section-title .grad {
    background: linear-gradient(120deg,#4ade80 0%,#22c55e 40%,#86efac 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.svc-section-sub {
    font-size: 0.95rem; color: var(--clr-text-sub); margin: 0;
    max-width: 420px; line-height: 1.5;
}
.svc-view-all-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 999px;
    border: 1px solid var(--clr-border);
    background: var(--clr-surface);
    font-size: 0.9rem; font-weight: 700; color: var(--clr-text);
    white-space: nowrap; flex-shrink: 0;
    transition: border-color .2s, background .2s, transform .2s;
}
.svc-view-all-btn:hover {
    border-color: var(--clr-primary); background: rgba(74,222,128,.07);
    transform: translateX(3px);
}
@media(max-width:600px) {
    .svc-section-header { align-items: flex-start; }
    .svc-view-all-btn { width: 100%; justify-content: center; }
}

/* Social media engagement block (homepage) */
.sm-section {
    padding-top: clamp(48px, 8vw, 88px);
    padding-bottom: clamp(32px, 6vw, 64px);
}
.page-social-media .sp-hero-bg::before {
    background:
      radial-gradient(ellipse 60% 70% at 20% 30%, rgba(74, 222, 128, 0.1) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 80% 60%, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
}
