/**
 * Yoshi Cleaning Landing Page v2 — front-page styles.
 *
 * @package KiwiShineCare
 */

/* ---------- Brand tokens ---------- */
:root {
    --kiwi-blue:        #1D4ED8;
    --kiwi-blue-dark:   #1E3A8A;
    --kiwi-blue-deep:   #172554;
    --kiwi-blue-light:  #DBEAFE;
    --kiwi-blue-tint:   #EFF6FF;
    --kiwi-blue-accent: #60A5FA;
    --kiwi-teal-deep:   #0F3A45;   /* logo bird body */
    --kiwi-green:       #00BF63;   /* primary brand green */
    --kiwi-green-dark:  #009450;
    --kiwi-green-tint:  #E0F8EC;
    --kiwi-ink:         #0F172A;
    --kiwi-mid:         #475569;
    --kiwi-muted:       #94A3B8;
    --kiwi-offwhite:    #F8FAFF;
}

/* ---------- Reset & base ---------- */
.yoshi-landing,
.yoshi-landing * { box-sizing: border-box; }

.yoshi-landing {
    margin: 0;
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--kiwi-ink);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.yoshi-landing img { max-width: 100%; display: block; }
.yoshi-landing button { font-family: inherit; }

.yoshi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- NAV ---------- */
.yoshi-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 40px;
    transition: all 0.35s ease;
    background: transparent;
}

.yoshi-nav.is-scrolled {
    background: linear-gradient(90deg, var(--kiwi-teal-deep) 0%, var(--kiwi-blue-deep) 100%);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.18);
    border-bottom: 1px solid rgba(0,191,99,0.18);
}

.yoshi-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 136px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.yoshi-nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.yoshi-nav__logo {
    height: 120px;
    width: auto;
    display: block;
    border-radius: 6px;
    background: #fff;
    padding: 4px 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.yoshi-nav__name { line-height: 1; }
.yoshi-nav__title {
    display: block;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.18em;
    color: #fff;
    text-transform: uppercase;
}
.yoshi-nav__sub {
    display: block;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.yoshi-nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.yoshi-nav__links a {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.yoshi-nav__links a:hover,
.yoshi-nav__links a.is-active {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.8);
}

.yoshi-nav__cta {
    background: var(--kiwi-green);
    color: #fff !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 10px 22px !important;
    border-bottom: none !important;
    box-shadow: 0 4px 14px rgba(0,191,99,0.35);
    transition: all 0.2s;
}
.yoshi-nav__cta:hover {
    background: var(--kiwi-green-dark);
    color: #fff !important;
    border-bottom-color: transparent !important;
    transform: translateY(-1px);
}

/* ---------- BUTTONS ---------- */
.yoshi-btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 16px 36px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.yoshi-btn--primary {
    background: var(--kiwi-green);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,191,99,0.45);
}
.yoshi-btn--primary:hover {
    background: var(--kiwi-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,191,99,0.5);
}

.yoshi-btn--ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
}
.yoshi-btn--ghost:hover {
    border-color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.15);
}

.yoshi-btn--solid {
    background: linear-gradient(135deg, var(--kiwi-blue) 0%, var(--kiwi-teal-deep) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    box-shadow: 0 6px 20px rgba(29,78,216,0.3);
}
.yoshi-btn--solid:hover {
    background: linear-gradient(135deg, var(--kiwi-green) 0%, var(--kiwi-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,191,99,0.4);
}

.yoshi-btn--white {
    width: 100%;
    background: var(--kiwi-green);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(0,191,99,0.4);
}
.yoshi-btn--white:hover {
    background: var(--kiwi-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,191,99,0.5);
}

/* ---------- HERO ---------- */
.yoshi-hero {
    position: relative;
    background: linear-gradient(135deg, var(--kiwi-teal-deep) 0%, var(--kiwi-blue-deep) 35%, var(--kiwi-blue) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.yoshi-hero__vignette {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 40%, rgba(15,23,42,0.45) 100%);
    pointer-events: none;
}

.yoshi-hero__shapes {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.float-shape, .float-bubble {
    position: absolute;
    display: block;
    border-radius: 30%;
    background: rgba(147,197,253,0.18);
    border: 1px solid rgba(147,197,253,0.28);
    animation: float 9s ease-in-out infinite;
}
.float-shape.s2 { background: rgba(0,191,99,0.18); border-color: rgba(0,191,99,0.28); }
.float-shape.s4 { background: rgba(0,191,99,0.14); border-color: rgba(0,191,99,0.22); }
.float-shape.s1 { top: 12%; left: 6%;  width: 80px; height: 80px; transform: rotate(20deg); animation-duration: 11s; }
.float-shape.s2 { top: 30%; right: 8%; width: 110px; height: 110px; border-radius: 50%; animation-duration: 13s; }
.float-shape.s3 { bottom: 18%; left: 12%; width: 60px; height: 60px; border-radius: 12px; transform: rotate(45deg); animation-duration: 10s; }
.float-shape.s4 { bottom: 28%; right: 15%; width: 70px; height: 70px; animation-duration: 12s; }
.float-shape.s5 { top: 55%; left: 38%; width: 50px; height: 50px; border-radius: 50%; animation-duration: 14s; }

.float-bubble {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), rgba(96,165,250,0.2));
    border: none;
}
.float-bubble.b1 { top: 20%; left: 25%; width: 22px; height: 22px; animation-duration: 8s; }
.float-bubble.b2 { top: 65%; left: 7%;  width: 14px; height: 14px; animation-duration: 9s; }
.float-bubble.b3 { top: 75%; right: 25%; width: 20px; height: 20px; animation-duration: 10s; }
.float-bubble.b4 { top: 40%; right: 30%; width: 12px; height: 12px; animation-duration: 7s; }
.float-bubble.b5 { top: 18%; right: 45%; width: 16px; height: 16px; animation-duration: 11s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-26px) rotate(20deg); }
}

.yoshi-hero__inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr minmax(360px, 440px);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.yoshi-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 6px 18px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

.yoshi-eyebrow--dark {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3em;
    background: linear-gradient(90deg, var(--kiwi-blue) 0%, var(--kiwi-green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--kiwi-blue);
}
.yoshi-eyebrow--light {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 16px;
    font-weight: 700;
    color: #A7F0CC;
    letter-spacing: 0.3em;
}

.yoshi-hero__title {
    font-weight: 700;
    font-size: 64px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 24px;
    text-wrap: pretty;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.yoshi-hero__title span {
    background: linear-gradient(90deg, var(--kiwi-green) 0%, #4ADE9F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--kiwi-green);
}

.yoshi-hero__lede {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin: 0 0 44px;
    max-width: 480px;
}

.yoshi-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.yoshi-hero__stats {
    display: flex;
    gap: 32px;
    margin-top: 56px;
}
.yoshi-hero__stats strong {
    display: block;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.yoshi-hero__stats span {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.yoshi-hero__art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}
.yoshi-hero__mark {
    opacity: 0.95;
    filter: drop-shadow(0 0 40px rgba(96,165,250,0.35));
    animation: heroMarkFloat 6s ease-in-out infinite;
}
@keyframes heroMarkFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* ---------- Hero quote form (left side) ---------- */
.yoshi-hero__form {
    background: rgba(255,255,255,0.97);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 4px 20px rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(18px);
    position: relative;
    z-index: 3;
}
.yoshi-quote-form__head { text-align: center; margin-bottom: 20px; }
.yoshi-quote-form__eyebrow {
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--kiwi-green-dark);
    margin-bottom: 8px;
}
.yoshi-quote-form__title {
    font-weight: 700;
    font-size: 26px;
    color: var(--kiwi-ink);
    margin: 0 0 8px;
    line-height: 1.2;
}
.yoshi-quote-form__lede {
    font-size: 13px;
    color: var(--kiwi-mid);
    margin: 0;
    line-height: 1.5;
}
.yoshi-quote-form label {
    display: block;
    margin-bottom: 12px;
}
.yoshi-quote-form label > span {
    display: block;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--kiwi-mid);
    margin-bottom: 5px;
}
.yoshi-quote-form input,
.yoshi-quote-form select,
.yoshi-quote-form textarea {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    padding: 11px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    background: #fff;
    color: var(--kiwi-ink);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.yoshi-quote-form input::placeholder,
.yoshi-quote-form textarea::placeholder { color: #94A3B8; }
.yoshi-quote-form input:focus,
.yoshi-quote-form select:focus,
.yoshi-quote-form textarea:focus {
    border-color: var(--kiwi-green);
    box-shadow: 0 0 0 3px rgba(0,191,99,0.15);
}
.yoshi-quote-form textarea { resize: vertical; min-height: 70px; }
.yoshi-quote-form input.is-error,
.yoshi-quote-form textarea.is-error { border-color: #F87171; }
.yoshi-quote-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.yoshi-quote-form__submit {
    width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
}
.yoshi-quote-form__sent {
    text-align: center;
    padding: 24px 0;
}
.yoshi-quote-form__sent h3 {
    font-weight: 700;
    font-size: 22px;
    color: var(--kiwi-ink);
    margin: 12px 0 8px;
}
.yoshi-quote-form__sent p {
    font-size: 14px;
    color: var(--kiwi-mid);
    margin: 0;
}

/* Hero copy column */
.yoshi-hero__badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.yoshi-floating-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    display: flex;
    align-items: center;
    gap: 12px;
}
.yoshi-floating-card--eco,
.yoshi-floating-card--rating { animation: cardFloat 5s ease-in-out infinite; }
.yoshi-floating-card--eco { animation-delay: 0.3s; }
.yoshi-floating-card--rating { animation-delay: 0.8s; }
.yoshi-floating-card__icon {
    width: 40px; height: 40px;
    background: var(--kiwi-green-tint);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: var(--kiwi-green-dark);
    font-weight: 700;
}
.yoshi-floating-card__star { font-size: 22px; }
.yoshi-floating-card__title { font-weight: 700; font-size: 14px; color: #0F172A; }
.yoshi-floating-card--rating .yoshi-floating-card__title { font-size: 18px; }
.yoshi-floating-card__sub { font-size: 11px; color: #475569; margin-top: 1px; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.yoshi-wave-bottom {
    position: absolute; bottom: -2px; left: 0; right: 0;
    width: 100%; z-index: 2; height: 80px;
}

/* ---------- 3D ROTATING CUBE (decorative, per-section) ---------- */
.kiwi-3d {
    position: absolute;
    width: 90px;
    height: 90px;
    perspective: 700px;
    pointer-events: none;
    z-index: 4;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
}
.kiwi-3d__cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: kiwi3dSpin 16s linear infinite, kiwi3dFloat 6s ease-in-out infinite;
}
.kiwi-3d__face {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    box-shadow: inset 0 0 32px rgba(0,0,0,0.18);
}
.kiwi-3d__face svg { width: 56%; height: 56%; }
.kiwi-3d__face--front  { transform: rotateY(  0deg) translateZ(45px); }
.kiwi-3d__face--back   { transform: rotateY(180deg) translateZ(45px); }
.kiwi-3d__face--right  { transform: rotateY( 90deg) translateZ(45px); }
.kiwi-3d__face--left   { transform: rotateY(-90deg) translateZ(45px); }
.kiwi-3d__face--top    { transform: rotateX( 90deg) translateZ(45px); }
.kiwi-3d__face--bottom { transform: rotateX(-90deg) translateZ(45px); }

/* Variant: blue */
.kiwi-3d--blue .kiwi-3d__face {
    background: linear-gradient(135deg, var(--kiwi-blue) 0%, var(--kiwi-blue-deep) 100%);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
}
/* Variant: green */
.kiwi-3d--green .kiwi-3d__face {
    background: linear-gradient(135deg, var(--kiwi-green) 0%, var(--kiwi-green-dark) 100%);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
}
/* Variant: mix (blue ↔ green per face) */
.kiwi-3d--mix .kiwi-3d__face--front,
.kiwi-3d--mix .kiwi-3d__face--right,
.kiwi-3d--mix .kiwi-3d__face--top {
    background: linear-gradient(135deg, var(--kiwi-blue) 0%, var(--kiwi-teal-deep) 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}
.kiwi-3d--mix .kiwi-3d__face--back,
.kiwi-3d--mix .kiwi-3d__face--left,
.kiwi-3d--mix .kiwi-3d__face--bottom {
    background: linear-gradient(135deg, var(--kiwi-green) 0%, var(--kiwi-green-dark) 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
/* Variant: white (for dark contact section) */
.kiwi-3d--white .kiwi-3d__face {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,191,99,0.4);
    color: var(--kiwi-blue);
}
.kiwi-3d--white .kiwi-3d__face--top,
.kiwi-3d--white .kiwi-3d__face--bottom { color: var(--kiwi-green); }

/* Per-section placement */
.yoshi-about   .kiwi-3d { top: 60px;  right: 40px; }
.yoshi-services .kiwi-3d { top: 80px;  left: 40px;  width: 80px; height: 80px; }
.yoshi-services .kiwi-3d__face { box-shadow: inset 0 0 28px rgba(0,0,0,0.14); }
.yoshi-services .kiwi-3d__face--front,
.yoshi-services .kiwi-3d__face--back,
.yoshi-services .kiwi-3d__face--right,
.yoshi-services .kiwi-3d__face--left,
.yoshi-services .kiwi-3d__face--top,
.yoshi-services .kiwi-3d__face--bottom { transform-origin: center; }
.yoshi-reviews .kiwi-3d  { top: 70px;  right: 50px; width: 76px; height: 76px; }
.yoshi-contact .kiwi-3d  { top: 100px; right: 60px; }

@keyframes kiwi3dSpin {
    0%   { transform: rotateX(0deg)   rotateY(0deg); }
    50%  { transform: rotateX(180deg) rotateY(180deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}
@keyframes kiwi3dFloat {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -14px; }
}

/* Sections that host a cube need to clip it */
.yoshi-about,
.yoshi-services,
.yoshi-reviews,
.yoshi-contact { position: relative; }
.yoshi-about,
.yoshi-services,
.yoshi-reviews { overflow: hidden; }

/* Reveal animation — kept for any future use */
.reveal {
    opacity: 0;
    transform: translateY(36px) scale(0.96);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .kiwi-3d__cube { animation: none; opacity: 1; transform: none; transition: none; }
}

/* Hide cubes on small screens to keep layout clean */
@media (max-width: 720px) {
    .kiwi-3d { display: none; }
}

/* ---------- TYPOGRAPHY ---------- */
.yoshi-h2 {
    font-weight: 700;
    font-size: 46px;
    line-height: 1.15;
    color: #0F172A;
    margin: 0 0 24px;
    text-wrap: pretty;
}
.yoshi-h2--light { color: #fff; }

.yoshi-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 20px;
}

.yoshi-section-head {
    text-align: center;
    margin-bottom: 64px;
}
.yoshi-section-lede {
    font-size: 16px;
    color: #475569;
    margin-top: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.yoshi-section-lede--light { color: rgba(255,255,255,0.65); }

/* ---------- ABOUT ---------- */
.yoshi-about {
    padding: 100px 40px;
    background: #fff;
}
.yoshi-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.yoshi-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.yoshi-value {
    background: var(--kiwi-blue-tint);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid var(--kiwi-blue);
}
.yoshi-value:nth-child(1),
.yoshi-value:nth-child(4) {
    background: var(--kiwi-green-tint);
    border-top-color: var(--kiwi-green);
}
.yoshi-value__icon { font-size: 24px; margin-bottom: 10px; }
.yoshi-value__title { font-weight: 700; font-size: 14px; color: var(--kiwi-ink); margin-bottom: 6px; }
.yoshi-value p { font-weight: 400; font-size: 12px; line-height: 1.65; color: var(--kiwi-mid); margin: 0; }

/* ---------- SERVICES ---------- */
.yoshi-services {
    padding: 100px 40px;
    background: #EFF6FF;
}
.yoshi-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.yoshi-svc {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: background 0.28s, color 0.28s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
    border-top: 4px solid transparent;
}
.yoshi-svc:nth-child(odd)  { border-top-color: var(--kiwi-blue); }
.yoshi-svc:nth-child(even) { border-top-color: var(--kiwi-green); }
.yoshi-svc:hover {
    background: linear-gradient(135deg, var(--kiwi-blue) 0%, var(--kiwi-teal-deep) 100%);
    box-shadow: 0 16px 48px rgba(29,78,216,0.3);
    border-top-color: var(--kiwi-green);
}
.yoshi-svc:hover .yoshi-svc__title,
.yoshi-svc:hover .yoshi-svc__desc { color: #fff; }
.yoshi-svc:hover .yoshi-svc__desc { color: rgba(255,255,255,0.78); }
.yoshi-svc:hover .yoshi-svc__tags span {
    background: rgba(0,191,99,0.25);
    color: #fff;
    border: 1px solid rgba(0,191,99,0.5);
}

.yoshi-svc__icon { font-size: 36px; margin-bottom: 20px; }

/* SVG icon variant */
.yoshi-svc__icon--svg {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--kiwi-blue-tint) 0%, var(--kiwi-green-tint) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kiwi-blue);
    margin-bottom: 22px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    box-shadow: 0 6px 16px rgba(29,78,216,0.12);
}
.yoshi-svc__icon--svg svg {
    width: 44px;
    height: 44px;
}
.yoshi-svc:nth-child(even) .yoshi-svc__icon--svg {
    color: var(--kiwi-green-dark);
    background: linear-gradient(135deg, var(--kiwi-green-tint) 0%, var(--kiwi-blue-tint) 100%);
    box-shadow: 0 6px 16px rgba(0,191,99,0.18);
}
.yoshi-svc:hover .yoshi-svc__icon--svg {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.yoshi-svc:hover .yoshi-svc__icon--svg .ki-accent { fill: #B8F5C8; }
.yoshi-svc__title {
    font-weight: 700; font-size: 18px; color: #0F172A;
    margin: 0 0 12px; line-height: 1.3;
    transition: color 0.28s;
}
.yoshi-svc__desc {
    font-size: 14px; line-height: 1.75; color: #475569;
    margin: 0 0 24px;
    transition: color 0.28s;
}
.yoshi-svc__tags {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.yoshi-svc__tags span {
    font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
    padding: 4px 10px; border-radius: 100px;
    background: var(--kiwi-blue-tint); color: var(--kiwi-blue);
    border: 1px solid transparent;
    transition: all 0.28s;
}
.yoshi-svc:nth-child(even) .yoshi-svc__tags span {
    background: var(--kiwi-green-tint); color: var(--kiwi-green-dark);
}

/* ---------- REVIEWS ---------- */
.yoshi-reviews {
    padding: 100px 40px;
    background: #fff;
}
.yoshi-rating {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 16px;
}
.yoshi-rating__stars { font-size: 22px; color: #F59E0B; letter-spacing: 2px; }
.yoshi-rating strong { font-weight: 700; font-size: 20px; color: #0F172A; }
.yoshi-rating__from { font-size: 14px; color: #475569; }

.yoshi-rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.yoshi-rev {
    background: #F8FAFF;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.yoshi-rev--featured {
    background: linear-gradient(135deg, var(--kiwi-blue) 0%, var(--kiwi-teal-deep) 100%);
    box-shadow: 0 8px 32px rgba(29,78,216,0.25);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.yoshi-rev--featured::after {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(0,191,99,0.4) 0%, transparent 70%);
    pointer-events: none;
}
.yoshi-rev__stars {
    color: #F59E0B;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.yoshi-rev--featured .yoshi-rev__stars { color: #FCD34D; }

.yoshi-rev__text {
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 28px;
    font-style: italic;
}
.yoshi-rev--featured .yoshi-rev__text { color: rgba(255,255,255,0.88); }

.yoshi-rev__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.yoshi-rev__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--kiwi-blue-light);
    color: var(--kiwi-blue);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px;
}
.yoshi-rev:nth-child(3) .yoshi-rev__avatar,
.yoshi-rev:nth-child(5) .yoshi-rev__avatar {
    background: var(--kiwi-green-tint);
    color: var(--kiwi-green-dark);
}
.yoshi-rev--featured .yoshi-rev__avatar {
    background: rgba(255,255,255,0.18);
    color: #fff;
}
.yoshi-rev__name { font-weight: 700; font-size: 14px; color: #0F172A; }
.yoshi-rev__role { font-size: 12px; color: #94A3B8; margin-top: 1px; }
.yoshi-rev--featured .yoshi-rev__name { color: #fff; }
.yoshi-rev--featured .yoshi-rev__role { color: rgba(255,255,255,0.55); }

/* ---------- CONTACT ---------- */
.yoshi-contact {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--kiwi-teal-deep) 0%, var(--kiwi-blue-deep) 50%, var(--kiwi-blue) 100%);
    overflow: hidden;
}
.yoshi-contact::before {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(0,191,99,0.3) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}
.yoshi-wave-top {
    position: absolute; top: -2px; left: 0; right: 0;
    width: 100%; height: 80px; pointer-events: none; z-index: 1;
}
.yoshi-contact__inner { position: relative; z-index: 2; }
.yoshi-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}
.yoshi-contact__info ul {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
}
.yoshi-contact__info li {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}
.yoshi-contact__icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(0,191,99,0.35);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    color: #fff;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
}
.yoshi-contact__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}
.yoshi-contact__info li:hover .yoshi-contact__icon {
    background: rgba(0,191,99,0.22);
    border-color: var(--kiwi-green);
    transform: translateY(-2px) rotate(-2deg);
}
.yoshi-contact__info li:hover .yoshi-contact__icon .ki-accent {
    fill: #fff;
}
.yoshi-contact__info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.yoshi-contact__info a:hover {
    color: var(--kiwi-green);
}
.yoshi-contact__info span {
    display: block;
    font-weight: 600; font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
}
.yoshi-contact__info strong {
    display: block;
    font-weight: 400; font-size: 15px; color: #fff;
}
.yoshi-contact__watermark { opacity: 0.18; }

/* ---------- FORM ---------- */
.yoshi-form {
    background: rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 44px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    position: relative;
}
.yoshi-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.yoshi-form__full { display: block; margin-bottom: 28px; }
.yoshi-form label > span {
    display: block;
    font-weight: 500; font-size: 12px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}
.yoshi-form input,
.yoshi-form select,
.yoshi-form textarea {
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 14px; font-weight: 400;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.yoshi-form input::placeholder,
.yoshi-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.yoshi-form input:focus,
.yoshi-form select:focus,
.yoshi-form textarea:focus {
    border-color: var(--kiwi-green);
    box-shadow: 0 0 0 3px rgba(0,191,99,0.2);
}
.yoshi-form textarea { resize: vertical; min-height: 110px; }
.yoshi-form select option { background: #172554; color: #fff; }
.yoshi-form .yoshi-form__error { color: #FCA5A5; }
.yoshi-form input.is-error,
.yoshi-form textarea.is-error { border-color: #F87171; }

.yoshi-form__sent {
    text-align: center;
    padding: 40px 0;
}
.yoshi-form__check { font-size: 56px; margin-bottom: 20px; }
.yoshi-form__sent h3 { font-weight: 700; font-size: 26px; color: #fff; margin: 0 0 12px; }
.yoshi-form__sent p { font-size: 15px; color: rgba(255,255,255,0.65); margin: 0; }

/* ---------- FOOTER ---------- */
.yoshi-footer {
    background: linear-gradient(90deg, var(--kiwi-teal-deep) 0%, var(--kiwi-blue-deep) 100%);
    padding: 40px;
    border-top: 2px solid var(--kiwi-green);
}
.yoshi-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.yoshi-footer__brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 14px;
    letter-spacing: 0.18em; color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}
.yoshi-footer__copy {
    font-size: 12px; color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
}
.yoshi-footer__links {
    display: flex; gap: 24px;
}
.yoshi-footer__links a {
    font-size: 12px; color: rgba(255,255,255,0.4);
    text-decoration: none; letter-spacing: 0.06em;
    transition: color 0.2s;
}
.yoshi-footer__links a:hover { color: rgba(255,255,255,0.9); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .yoshi-hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .yoshi-hero__form { max-width: 520px; margin: 0 auto; width: 100%; }
    .yoshi-hero__copy { text-align: center; }
    .yoshi-hero__lede { margin-left: auto; margin-right: auto; }
    .yoshi-hero__stats { justify-content: center; }
    .yoshi-hero__badges { justify-content: center; }
    .yoshi-svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .yoshi-about__grid,
    .yoshi-contact__grid { grid-template-columns: 1fr; gap: 40px; }
    .yoshi-hero__title { font-size: 44px; }
    .yoshi-h2 { font-size: 36px; }
    .yoshi-rev-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .yoshi-nav { padding: 0 20px; }
    .yoshi-nav__inner { height: 90px; }
    .yoshi-nav__logo { height: 70px; }
    .yoshi-nav__links { gap: 16px; }
    .yoshi-nav__links a:not(.yoshi-nav__cta) { display: none; }
    .yoshi-hero { padding: 100px 20px 60px; }
    .yoshi-hero__title { font-size: 32px; }
    .yoshi-hero__stats { gap: 18px; flex-wrap: wrap; }
    .yoshi-hero__stats strong { font-size: 22px; }
    .yoshi-hero__form { padding: 24px 20px; }
    .yoshi-quote-form__row { grid-template-columns: 1fr; }
    .yoshi-about,
    .yoshi-services,
    .yoshi-reviews,
    .yoshi-contact { padding: 70px 20px; }
    .yoshi-values,
    .yoshi-svc-grid,
    .yoshi-rev-grid,
    .yoshi-form__row { grid-template-columns: 1fr; }
    .yoshi-form { padding: 28px; }
    .yoshi-h2 { font-size: 30px; }
    .yoshi-footer__inner { flex-direction: column; text-align: center; }
}

/* ---------- TILT (mouse) ---------- */
.tilt-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}
