/* Premium agency hero + section system */

.hero--agency {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    margin-top: calc(-1 * var(--header-h));
    padding: calc(var(--header-h) + 2.5rem) 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
}

.hero--agency .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero--agency .hero__bg-photo {
    position: absolute;
    inset: -28px;
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
    transform: scale(1.12);
    filter: blur(14px) brightness(0.9) saturate(0.82) contrast(1.02);
    transition: transform 0.4s var(--ease-out);
}

.hero--agency .hero__gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 46, 33, 0.32) 0%,
            rgba(10, 46, 33, 0.46) 48%,
            rgba(10, 46, 33, 0.58) 100%),
        linear-gradient(180deg,
            rgba(10, 46, 33, 0.22) 0%,
            rgba(26, 92, 66, 0.14) 55%,
            rgba(10, 46, 33, 0.28) 100%);
    pointer-events: none;
}

.hero--agency .hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 92, 66, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 92, 66, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black, transparent);
    opacity: 0.35;
}

.hero--agency .hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: hero-glow-drift 14s ease-in-out infinite alternate;
}

.hero--agency .hero__glow--1 {
    width: min(55vw, 620px);
    height: min(55vw, 620px);
    top: -8%;
    left: -10%;
    background: rgba(255, 215, 80, 0.14);
}

.hero--agency .hero__glow--2 {
    width: min(45vw, 500px);
    height: min(45vw, 500px);
    bottom: 5%;
    right: -5%;
    background: rgba(45, 122, 90, 0.1);
    animation-delay: -5s;
}

/* Hero floating bubbles + icons (mouse-reactive via JS) */
.hero-fx {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-fx__bubble {
    position: absolute;
    will-change: transform;
}

.hero-fx__bubble-core {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.42);
    background: radial-gradient(
        circle at 32% 28%,
        rgba(255, 230, 120, 0.42) 0%,
        rgba(45, 122, 90, 0.2) 52%,
        rgba(255, 215, 80, 0.14) 100%
    );
    box-shadow:
        0 0 22px rgba(255, 215, 80, 0.22),
        inset 0 0 18px rgba(26, 92, 66, 0.1);
    backdrop-filter: blur(2px);
    animation: hero-fx-float 16s ease-in-out infinite;
}

.hero-fx__bubble--1 .hero-fx__bubble-core,
.hero-fx__bubble--3 .hero-fx__bubble-core,
.hero-fx__bubble--5 .hero-fx__bubble-core {
    border-color: rgba(255, 215, 80, 0.55);
    background: radial-gradient(
        circle at 28% 22%,
        rgba(255, 240, 160, 0.55) 0%,
        rgba(212, 175, 55, 0.28) 48%,
        rgba(255, 215, 80, 0.12) 100%
    );
    box-shadow:
        0 0 32px rgba(255, 215, 80, 0.32),
        inset 0 0 20px rgba(255, 230, 120, 0.18);
}

.hero-fx__bubble--2 .hero-fx__bubble-core,
.hero-fx__bubble--4 .hero-fx__bubble-core {
    border-color: rgba(45, 122, 90, 0.5);
    background: radial-gradient(
        circle at 35% 30%,
        rgba(130, 210, 170, 0.4) 0%,
        rgba(26, 92, 66, 0.28) 50%,
        rgba(45, 122, 90, 0.14) 100%
    );
    box-shadow:
        0 0 28px rgba(45, 122, 90, 0.28),
        inset 0 0 18px rgba(26, 92, 66, 0.14);
}

.hero--agency.is-hovering .hero-fx__bubble-core {
    animation-play-state: paused;
}

.hero--agency.is-hovering .hero-fx__bubble {
    opacity: 0.95;
}

.hero-fx__bubble--1 { width: 90px;  height: 90px;  top: 14%; left: 8%;  }
.hero-fx__bubble--2 { width: 130px; height: 130px; top: 62%; left: 5%;  }
.hero-fx__bubble--3 { width: 56px;  height: 56px;  top: 38%; right: 10%; }
.hero-fx__bubble--4 { width: 110px; height: 110px; top: 72%; right: 12%; }
.hero-fx__bubble--5 { width: 44px;  height: 44px;  top: 22%; right: 28%; }

.hero-fx__bubble--1 .hero-fx__bubble-core { animation-delay: 0s; }
.hero-fx__bubble--2 .hero-fx__bubble-core { animation-delay: -4s; }
.hero-fx__bubble--3 .hero-fx__bubble-core { animation-delay: -7s; }
.hero-fx__bubble--4 .hero-fx__bubble-core { animation-delay: -2s; }
.hero-fx__bubble--5 .hero-fx__bubble-core { animation-delay: -9s; }

.hero-fx__icon {
    position: absolute;
    display: block;
    will-change: transform;
}

.hero-fx__icon-core {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(201, 162, 39, 0.72);
    transition: color 0.35s;
    animation: hero-fx-icon-drift 12s ease-in-out infinite;
}

.hero--agency.is-hovering .hero-fx__icon-core {
    animation-play-state: paused;
    color: rgba(26, 92, 66, 0.78);
}

.hero-fx__icon svg {
    width: 100%;
    height: 100%;
    filter:
        drop-shadow(0 0 8px rgba(255, 215, 80, 0.45))
        drop-shadow(0 0 4px rgba(45, 122, 90, 0.25));
}

.hero-fx__icon--target .hero-fx__icon-core,
.hero-fx__icon--chart .hero-fx__icon-core {
    color: rgba(26, 92, 66, 0.62);
}

.hero-fx__icon--arrow .hero-fx__icon-core,
.hero-fx__icon--star .hero-fx__icon-core {
    color: rgba(212, 175, 55, 0.78);
}

.hero--agency.is-hovering .hero-fx__icon--target .hero-fx__icon-core,
.hero--agency.is-hovering .hero-fx__icon--chart .hero-fx__icon-core {
    color: rgba(45, 122, 90, 0.9);
}

.hero--agency.is-hovering .hero-fx__icon--arrow .hero-fx__icon-core,
.hero--agency.is-hovering .hero-fx__icon--star .hero-fx__icon-core {
    color: rgba(201, 162, 39, 0.95);
}

.hero-fx__icon--chart  { top: 18%; right: 14%; width: 2.2rem; height: 2.2rem; animation-delay: -1s; }
.hero-fx__icon--target { top: 48%; left: 12%;  width: 2.8rem; height: 2.8rem; animation-delay: -3s; }
.hero-fx__icon--arrow  { top: 28%; left: 22%;  width: 2rem;   height: 2rem;   animation-delay: -5s; }
.hero-fx__icon--star   { top: 68%; right: 22%; width: 1.75rem; height: 1.75rem; animation-delay: -2s; }

.hero-fx__icon--chart .hero-fx__icon-core  { animation-delay: -1s; }
.hero-fx__icon--target .hero-fx__icon-core { animation-delay: -3s; }
.hero-fx__icon--arrow .hero-fx__icon-core  { animation-delay: -5s; }
.hero-fx__icon--star .hero-fx__icon-core    { animation-delay: -2s; }

.hero-fx__line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 80, 0.55), rgba(45, 122, 90, 0.35), transparent);
    opacity: 0.45;
    will-change: top, opacity, transform;
    animation: hero-fx-line-fall 11s linear infinite;
}

.hero-fx__line--2 {
    background: linear-gradient(180deg, transparent, rgba(45, 122, 90, 0.5), rgba(255, 215, 80, 0.4), transparent);
}

.hero--agency.is-hovering .hero-fx__line {
    opacity: 0.65;
}

.hero-fx__line--1 { top: -15%; right: 18%; height: 120px; animation-delay: 0s; }
.hero-fx__line--2 { top: -20%; left: 16%;  height: 90px;  animation-delay: -4s; }
.hero-fx__line--3 { top: -10%; right: 42%; height: 70px;  animation-delay: -7s; }

@keyframes hero-fx-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10px, -18px) scale(1.04); }
    66% { transform: translate(-6px, -28px) scale(0.97); }
}

@keyframes hero-fx-icon-drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(6px, -10px) rotate(6deg); }
}

@keyframes hero-fx-line-fall {
    0% { top: -20%; opacity: 0; }
    12% { opacity: 0.45; }
    88% { opacity: 0.45; }
    100% { top: 110%; opacity: 0; }
}

@media (max-width: 960px) {
    .hero-fx__bubble--4,
    .hero-fx__bubble--5,
    .hero-fx__icon--star,
    .hero-fx__line--3 {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-fx__bubble-core,
    .hero-fx__icon-core,
    .hero-fx__line {
        animation: none !important;
    }

    .hero--agency .hero__headline-brand,
    .hero--agency .hero__headline-main,
    .hero--agency .hero__tagline {
        animation: none !important;
    }
}

.hero--agency .hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 12px rgba(255, 215, 80, 0.7);
    animation: hero-badge-pulse 2s ease-in-out infinite;
}

@keyframes hero-badge-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 215, 80, 0.5); transform: scale(1); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 80, 0.85); transform: scale(1.12); }
}

@keyframes hero-glow-drift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.75; }
    100% { transform: translate(3%, 4%) scale(1.08); opacity: 1; }
}

.hero--agency .hero__wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: clamp(1.75rem, 3.5vw, 3.25rem);
    align-items: center;
    flex: 1;
    padding-bottom: 5rem;
}

.hero--agency .hero__visual {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
}

.hero--agency .hero__content {
    position: relative;
    max-width: 640px;
}

.hero--agency .hero__content-inner {
    position: relative;
    z-index: 1;
}

.hero--agency .hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero--agency .hero__headline {
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hero--agency .hero__headline-brand {
    display: block;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    background: linear-gradient(
        115deg,
        #7a5c10 0%,
        #b8860b 12%,
        #d4af37 28%,
        #f5e6b8 42%,
        #c9a227 52%,
        #fff8e7 58%,
        #a67c00 72%,
        #d4af37 88%,
        #8b6914 100%
    );
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: hero-gold-shimmer 7s ease-in-out infinite;
    filter:
        drop-shadow(0 3px 14px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 28px rgba(201, 162, 39, 0.38));
}

.hero--agency .hero__headline-main {
    display: block;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    background: linear-gradient(
        100deg,
        #e8dcc0 0%,
        #d4af37 35%,
        #fff5dc 50%,
        #c9a227 65%,
        #f0e4c8 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: hero-gold-shimmer 9s ease-in-out infinite reverse;
    filter:
        drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 20px rgba(201, 162, 39, 0.3));
}

@keyframes hero-gold-shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.hero--agency .hero__desc {
    margin: 0 0 0.75rem;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.7;
    color: rgba(255, 252, 245, 0.96);
    max-width: 52ch;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero--agency .hero__tagline {
    margin: 0 0 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(232, 210, 160, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.35);
    animation: hero-tagline-glow 5s ease-in-out infinite;
}

@keyframes hero-tagline-glow {
    0%, 100% { color: rgba(220, 195, 140, 0.88); }
    50% { color: rgba(245, 230, 184, 0.98); }
}

.hero--agency .hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}

.btn--hero-primary {
    background: linear-gradient(135deg, #ffe566 0%, #ffd700 50%, #d4af37 100%);
    color: var(--green-dark);
    border: none;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 8px 32px rgba(255, 215, 80, 0.45), 0 2px 0 rgba(255, 255, 255, 0.3) inset;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.btn--hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 215, 80, 0.55);
    text-decoration: none;
}

.btn--hero-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn--hero-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
    text-decoration: none;
}

.hero--agency .hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.hero--agency .hero-metric {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.35rem 0;
    background: none;
    border: none;
    backdrop-filter: none;
}

.hero--agency .hero-metric__icon {
    color: var(--gold-bright);
    font-size: 0.85rem;
    line-height: 1.4;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.hero--agency .hero-metric strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.15rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero--agency .hero-metric span {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-bento {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    max-width: 100%;
    margin-inline-end: auto;
}

.hero-bento__main {
    position: relative;
    aspect-ratio: 16 / 11;
    min-height: clamp(280px, 34vw, 420px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 215, 80, 0.15);
}

.hero-bento__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-bento__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 46, 33, 0.55) 100%);
    pointer-events: none;
}

.hero-bento__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4.75rem;
    height: 4.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--green-dark);
    font-size: 1rem;
    cursor: default;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s var(--ease-out);
    padding-right: 0.2rem;
}

.hero-bento__main:hover .hero-bento__play {
    transform: translate(-50%, -50%) scale(1.08);
}

.hero-bento__label {
    position: absolute;
    bottom: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.hero-bento__card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-bento__card--partner {
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 220px;
    margin-inline: auto;
}

.hero-bento__card--partner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero--agency .hero__marquee {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 0.85rem 0;
    background: rgba(10, 46, 33, 0.45);
    border-top: 1px solid rgba(255, 215, 80, 0.15);
    overflow: hidden;
    backdrop-filter: blur(8px);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.hero--agency .hero__marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: hero-marquee 32s linear infinite;
}

.hero--agency .hero__marquee-track span {
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 248, 220, 0.85);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hero--agency .hero__marquee-track span::before {
    content: "✦";
    margin-left: 2.5rem;
    color: var(--gold-bright);
    opacity: 0.6;
}

@keyframes hero-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.hero--agency .hero__scroll {
    position: absolute;
    bottom: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
    text-decoration: none;
    transition: border-color 0.3s;
}

.hero--agency .hero__scroll:hover { border-color: rgba(255, 215, 80, 0.6); }

.hero--agency .hero__scroll span {
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: var(--gold-bright);
    animation: hero-scroll-dot 2s ease-in-out infinite;
}

@keyframes hero-scroll-dot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* Section pro headers */
.section-pro {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem 1.75rem;
    align-items: start;
    margin-bottom: 3rem;
    max-width: 900px;
}

.section-pro--center {
    margin-inline: auto;
    text-align: center;
    justify-items: center;
}

.section-pro--center .section-pro__body { text-align: center; }

.section-pro__num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, rgba(26, 92, 66, 0.15), rgba(26, 92, 66, 0.05));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -0.04em;
    padding-top: 0.15rem;
}

.section-pro__body h2 {
    font-size: clamp(1.75rem, 3.8vw, 2.5rem);
    margin: 0 0 0.85rem;
    line-height: 1.2;
}

.section-pro__lead {
    font-size: 1.08rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 68ch;
}

.section-pro__text {
    margin: 0.85rem 0 0;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 68ch;
}

.section-pro--center .section-pro__lead,
.section-pro--center .section-pro__text {
    margin-inline: auto;
}

/* Service tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.service-tag {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(26, 92, 66, 0.15);
    box-shadow: 0 2px 12px rgba(26, 92, 66, 0.06);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.service-tag:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 92, 66, 0.3);
    box-shadow: var(--shadow);
}

/* ── Section 02: Services showcase (cream split — no full-bleed image) ── */
.section--services-showcase {
    background: linear-gradient(180deg, #fff9ee 0%, #f8f0dc 45%, #fff5d6 100%);
    position: relative;
    overflow: hidden;
}

.section--services-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255, 215, 80, 0.12), transparent 55%);
}

.services-showcase {
    display: grid;
    grid-template-columns: minmax(240px, 0.75fr) 1.25fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.services-showcase__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1rem;
}

.services-showcase__item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green-dark);
    border-bottom: 1px solid rgba(26, 92, 66, 0.1);
    transition: transform 0.3s var(--ease-out), color 0.3s;
}

.services-showcase__item:hover {
    transform: translateX(-4px);
    color: var(--green);
}

.services-showcase__mark {
    flex-shrink: 0;
    color: var(--gold-dark);
    font-size: 0.75rem;
}

.services-showcase__panel {
    text-align: center;
}

.services-showcase__frame {
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #fff 0%, #eef6f0 100%);
    border: 1px solid rgba(26, 92, 66, 0.12);
    box-shadow: 0 16px 48px rgba(26, 92, 66, 0.1);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.services-showcase__frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(26, 92, 66, 0.16);
}

.services-showcase__frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: calc(var(--radius-lg) - 8px);
}

.services-showcase__caption {
    margin: 1rem 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ── Green contact block (after services) ── */
.contact-block--green {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(4rem, 7vw, 5.5rem) 0;
    background: linear-gradient(165deg, #2d7a5a 0%, #1a5c42 35%, #134a35 70%, #0f3d2c 100%);
}

.contact-block--green .contact-block__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 50% 55% at 15% 25%, rgba(255, 215, 80, 0.12), transparent 55%),
        radial-gradient(ellipse 45% 50% at 85% 75%, rgba(45, 122, 90, 0.35), transparent 50%);
}

.contact-block--green > .site-container {
    position: relative;
    z-index: 1;
}

.contact-block--green .contact-block__subtitle--light {
    color: rgba(255, 255, 255, 0.82);
}

.contact-block--green .contact-form-wrap {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(255, 215, 80, 0.25);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.contact-block--green .contact-block__layout--media {
    grid-template-columns: 1fr;
}

/* ── Full-width green bands (section 06 testimonials) ── */
.section--full-green {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0;
    margin: 0;
}

.section-full__content {
    position: relative;
    z-index: 1;
    padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.section-full__mesh,
.section-full__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Section 06 — deep green testimonials band */
.section--testimonials-band {
    background: linear-gradient(165deg, #1f6b4a 0%, #1a5c42 30%, #134a35 65%, #0a2e21 100%);
    color: rgba(255, 255, 255, 0.92);
}

.section--testimonials-band .section-full__content {
    padding-bottom: clamp(4rem, 7vw, 5.5rem);
}

.section-full__glow {
    background:
        radial-gradient(ellipse 55% 60% at 85% 15%, rgba(255, 215, 80, 0.14), transparent 55%),
        radial-gradient(ellipse 45% 50% at 10% 90%, rgba(45, 122, 90, 0.4), transparent 50%);
}

.section-pro__num--light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    -webkit-background-clip: text;
    background-clip: text;
}

.section-eyebrow--light {
    color: var(--gold-bright);
    background: rgba(255, 215, 80, 0.12);
    border-color: rgba(255, 215, 80, 0.35);
}

.title-gold--light {
    background: linear-gradient(135deg, #fff8dc 0%, #ffe566 40%, #ffd700 70%, #fff0a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.25));
}

.section-pro__lead--light,
.testimonials-note--light {
    color: rgba(255, 255, 255, 0.78) !important;
}

.testimonials-open {
    display: grid;
    grid-template-columns: 1.1fr minmax(260px, 0.85fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: stretch;
}

.testimonials-open__quotes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.testimonial-open {
    margin: 0;
    padding: 0 1.5rem 0 0;
    border: none;
    border-right: 3px solid var(--gold-bright);
    background: none;
    box-shadow: none;
    transition: transform 0.35s var(--ease-out), border-color 0.35s;
}

.testimonial-open:hover {
    transform: translateX(-4px);
    border-right-color: #fff;
}

.testimonial-open__stars {
    color: var(--gold-bright);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 0.65rem;
}

.testimonial-open p {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.testimonial-open footer {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-bright);
}

.testimonials-open__cta {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 80, 0.25);
    text-align: center;
}

.testimonials-open__cta h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: var(--gold-bright);
}

.testimonials-open__cta p {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.testimonials-open__visual {
    display: flex;
    min-height: 100%;
}

.testimonials-open__visual-wrap {
    flex: 1;
    width: 100%;
    min-height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.testimonials-open__visual-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Why section showcase */
.why-showcase {
    display: grid;
    grid-template-columns: 0.88fr minmax(380px, 1.12fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
    margin-bottom: 3rem;
}

.why-showcase__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.why-showcase__head {
    position: relative;
    margin-bottom: 1.75rem;
}

.why-showcase__num {
    position: absolute;
    top: -0.5rem;
    right: 0;
    left: auto;
    font-size: clamp(4rem, 10vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(26, 92, 66, 0.07);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}

.why-showcase__head .section-eyebrow {
    position: relative;
    z-index: 1;
}

.why-showcase__head h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    margin: 0 0 1rem;
    line-height: 1.2;
    max-width: 16ch;
}

.why-showcase__lead {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 48ch;
    color: var(--text-muted);
}

.why-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-pillar {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(26, 92, 66, 0.12);
    border-right: 3px solid var(--green);
    box-shadow: 0 4px 20px rgba(26, 92, 66, 0.06);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.why-pillar:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(26, 92, 66, 0.22);
}

.why-pillar__icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--gold-dark);
    background: rgba(255, 215, 80, 0.2);
    border: 1px solid rgba(255, 215, 80, 0.35);
}

.why-pillar__text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 0.2rem;
    line-height: 1.35;
}

.why-pillar__text span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.why-showcase__visual {
    position: relative;
    align-self: stretch;
    min-height: clamp(360px, 38vw, 500px);
}

.why-showcase__frame {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 80, 0.45);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26, 92, 66, 0.08);
    background: #eef6f0;
}

.why-showcase__frame img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
}

.why-showcase__frame-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%, rgba(255, 215, 80, 0.08) 100%);
    pointer-events: none;
}

/* Why bento grid */
.why-grid--bento {
    grid-template-columns: repeat(4, 1fr);
}

.why-grid--bento .why-card:nth-child(1),
.why-grid--bento .why-card:nth-child(2) {
    grid-column: span 2;
}

.why-grid--bento .why-card:nth-child(1) {
    background: linear-gradient(135deg, #1a5c42 0%, #2d7a5a 100%);
    border-top-color: var(--gold-bright);
    border-color: rgba(255, 215, 80, 0.3);
}

.why-grid--bento .why-card:nth-child(1) h3,
.why-grid--bento .why-card:nth-child(1) p { color: rgba(255, 255, 255, 0.9); }

.why-grid--bento .why-card:nth-child(1) h3 { color: #fff; }

.why-grid--bento .why-card:nth-child(1) .why-card__num {
    color: var(--gold-bright);
    background: rgba(255, 215, 80, 0.15);
    border-color: rgba(255, 215, 80, 0.35);
}

.feature-list--hero {
    margin-top: 0;
}

/* ── Section 03: Google Ads spotlight ── */
.google-spotlight__head {
    position: relative;
    margin-bottom: 2.5rem;
    max-width: 820px;
}

.google-spotlight__num {
    position: absolute;
    top: -0.75rem;
    right: 0;
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(26, 92, 66, 0.08);
    pointer-events: none;
    letter-spacing: -0.04em;
}

.google-spotlight__head-body {
    position: relative;
    z-index: 1;
}

.google-spotlight__head-body h2 {
    font-size: clamp(1.75rem, 3.8vw, 2.45rem);
    margin: 0 0 0.85rem;
    line-height: 1.2;
    max-width: 22ch;
}

.google-spotlight__intro {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 58ch;
}

.google-spotlight__stage {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.google-spotlight__visual {
    position: relative;
}

.google-spotlight__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 80, 0.45);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26, 92, 66, 0.08);
}

.google-spotlight__frame img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
}

.google-spotlight__ring {
    position: absolute;
    inset: -6px;
    border-radius: calc(var(--radius-lg) + 6px);
    border: 2px solid rgba(255, 215, 80, 0.35);
    animation: google-ring-pulse 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes google-ring-pulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.015); }
}

.google-spotlight__partner {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 3;
    width: min(130px, 38%);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 215, 80, 0.45);
    animation: google-partner-float 5s ease-in-out infinite;
}

@keyframes google-partner-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.google-spotlight__partner img {
    display: block;
    width: 100%;
    height: auto;
}

.google-spotlight__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.google-tile {
    position: relative;
    padding: 1.15rem 1.2rem 1.15rem 1.35rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(26, 92, 66, 0.12);
    border-right: 3px solid var(--green);
    box-shadow: 0 4px 20px rgba(26, 92, 66, 0.07);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
    overflow: hidden;
}

.google-tile::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
}

.google-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 92, 66, 0.22);
}

.google-tile:hover::before {
    transform: translateX(-100%);
}

.google-tile:nth-child(odd) {
    background: linear-gradient(135deg, #1a5c42 0%, #2d7a5a 100%);
    border-color: rgba(255, 215, 80, 0.25);
    border-right-color: var(--gold-bright);
}

.google-tile__num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
}

.google-tile:nth-child(odd) .google-tile__num {
    color: var(--gold-bright);
}

.google-tile h3 {
    margin: 0 0 0.35rem;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--green-dark);
}

.google-tile:nth-child(odd) h3 {
    color: #fff;
}

.google-tile p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.google-tile:nth-child(odd) p {
    color: rgba(255, 255, 255, 0.88);
}

.google-spotlight__cta {
    margin: 2rem 0 0;
    padding: 1rem 1.35rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    color: var(--green-dark);
    background: linear-gradient(135deg, rgba(255, 230, 120, 0.35), rgba(255, 215, 80, 0.15));
    border: 1px solid rgba(201, 162, 39, 0.35);
    animation: google-cta-glow 4s ease-in-out infinite;
}

@keyframes google-cta-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(201, 162, 39, 0); }
    50% { box-shadow: 0 0 24px rgba(201, 162, 39, 0.25); }
}

/* ── Section 04: Websites browser showcase ── */
.web-showcase__layout {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 1.05fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: 2.5rem;
}

.web-showcase__head {
    position: relative;
}

.web-showcase__num {
    position: absolute;
    top: -0.5rem;
    right: 0;
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(26, 92, 66, 0.07);
    pointer-events: none;
}

.web-showcase__head h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    margin: 0 0 0.65rem;
    line-height: 1.25;
}

.web-showcase__subtitle {
    position: relative;
    z-index: 1;
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.web-showcase__intro {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.web-browser {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #1a1510;
    box-shadow: var(--shadow-lg), 0 20px 60px rgba(15, 61, 44, 0.2);
    border: 2px solid rgba(26, 92, 66, 0.2);
    transform: perspective(900px) rotateY(-3deg);
    transition: transform 0.5s var(--ease-out);
}

.web-browser:hover {
    transform: perspective(900px) rotateY(0deg) translateY(-6px);
}

.web-browser__bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
    background: linear-gradient(180deg, #2a2520, #1a1510);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.web-browser__bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.web-browser__bar span:nth-child(1) { background: #ff5f57; }
.web-browser__bar span:nth-child(2) { background: #febc2e; }
.web-browser__bar span:nth-child(3) { background: #28c840; }

.web-browser__screen {
    position: relative;
    overflow: hidden;
}

.web-browser__screen img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 240px;
    object-fit: cover;
}

.web-browser__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.18) 50%, transparent 58%);
    transform: translateX(-100%);
    animation: web-browser-shine 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes web-browser-shine {
    0%, 70%, 100% { transform: translateX(-100%); }
    85% { transform: translateX(100%); }
}

.web-showcase__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.web-feature {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(26, 92, 66, 0.14);
    box-shadow: var(--shadow);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
    overflow: hidden;
}

.web-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.web-feature__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--gold-dark);
    background: rgba(255, 215, 80, 0.2);
    border: 1px solid rgba(255, 215, 80, 0.35);
    animation: web-icon-pulse 3s ease-in-out infinite;
}

.web-feature:nth-child(2) .web-feature__icon {
    animation-delay: -1.5s;
}

@keyframes web-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.web-feature__body h3 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1.35;
}

.web-feature__body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.web-feature__line {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.45s var(--ease-out);
}

.web-feature:hover .web-feature__line {
    transform: scaleX(1);
}

/* ── Section 05: Commitment promise block ── */
.promise-block {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 3px;
    overflow: hidden;
}

.promise-block__border {
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, var(--gold), var(--green-light), var(--gold-bright), var(--green), var(--gold));
    animation: promise-border-spin 8s linear infinite;
    opacity: 0.55;
}

@keyframes promise-border-spin {
    to { transform: rotate(360deg); }
}

.promise-block__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) 1.15fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: calc(var(--radius-lg) - 3px);
    background: linear-gradient(135deg, #fffdf8 0%, #f5f0e4 100%);
    box-shadow: var(--shadow-lg);
}

.promise-block__arch {
    position: relative;
    border-radius: 50% 50% 20% 20% / 55% 55% 15% 15%;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 80, 0.5);
    box-shadow: 0 16px 48px rgba(26, 92, 66, 0.15);
}

.promise-block__arch img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.promise-block__arch:hover img {
    transform: scale(1.04);
}

.promise-block__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--green-dark);
    background: rgba(26, 92, 66, 0.08);
    border: 1px solid rgba(26, 92, 66, 0.15);
}

.promise-block__num {
    color: var(--gold-dark);
}

.promise-block__quote {
    margin: 0 0 1.5rem;
    padding: 0;
    border: none;
}

.promise-block__quote h2 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.promise-block__quote p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.promise-block__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.promise-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #1a5c42, #2d7a5a);
    border: 1px solid rgba(255, 215, 80, 0.3);
    transition: transform 0.3s var(--ease-out);
}

.promise-trust span {
    color: var(--gold-bright);
}

.promise-trust:hover {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .google-spotlight__ring,
    .google-spotlight__partner,
    .google-spotlight__cta,
    .web-browser__shine,
    .web-feature__icon,
    .promise-block__border {
        animation: none !important;
    }

    .web-browser {
        transform: none !important;
    }
}

@media (max-width: 1100px) {
    .google-spotlight__stage {
        grid-template-columns: 1fr;
    }

    .google-spotlight__visual {
        order: -1;
        max-width: 520px;
        margin-inline: auto;
    }

    .web-showcase__layout {
        grid-template-columns: 1fr;
    }

    .web-showcase__browser {
        order: -1;
        max-width: 520px;
        margin-inline: auto;
    }

    .web-browser {
        transform: none;
    }

    .promise-block__inner {
        grid-template-columns: 1fr;
    }

    .promise-block__media {
        max-width: 360px;
        margin-inline: auto;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .services-showcase__panel {
        order: -1;
    }

    .services-showcase__list {
        grid-template-columns: 1fr;
    }

    .why-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .why-grid--bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid--bento .why-card:nth-child(1),
    .why-grid--bento .why-card:nth-child(2) {
        grid-column: span 2;
    }
}

@media (max-width: 960px) {
    .hero--agency {
        min-height: auto;
        padding-top: calc(var(--header-h) + 1.5rem);
    }

    .hero--agency .hero__wrap {
        grid-template-columns: 1fr;
        padding-bottom: 4rem;
    }

    .hero-bento {
        max-width: 100%;
        width: 100%;
    }

    .hero-bento__main {
        min-height: clamp(240px, 56vw, 380px);
    }

    .hero--agency .hero__metrics {
        grid-template-columns: 1fr;
    }

    .hero--agency .hero__scroll {
        display: none;
    }

    .why-showcase {
        grid-template-columns: 1fr;
    }

    .why-showcase__visual {
        order: -1;
        min-height: clamp(320px, 52vw, 460px);
    }

    .google-spotlight__grid {
        grid-template-columns: 1fr;
    }

    .web-showcase__features {
        grid-template-columns: 1fr;
    }

    .testimonials-open {
        grid-template-columns: 1fr;
    }

    .testimonials-open__visual {
        order: -1;
        max-height: 380px;
    }

    .section-pro {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .section-pro__num {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .why-grid--bento,
    .why-grid--bento .why-card:nth-child(1),
    .why-grid--bento .why-card:nth-child(2) {
        grid-template-columns: 1fr;
        grid-column: span 1;
    }
}
