/* ===========================
   揪喝果汁 Landing Page Styles
   =========================== */

/* ── Variables ── */
:root {
    --orange:       #FF6B35;
    --orange-dk:    #E8552A;
    --orange-lt:    #FF8C5A;
    --yellow:       #FFC107;
    --yellow-lt:    #FFD54F;
    --green:        #1B4332;
    --green-mid:    #2D6A4F;
    --green-lt:     #40916C;
    --warm-white:   #FFF8F0;
    --cream:        #FEF3E8;
    --cream-dk:     #F5E8D4;
    --dark:         #1A1A1A;
    --gray-dk:      #3D3D3D;
    --gray:         #6B6B6B;
    --gray-lt:      #C8BDB3;
    --border:       #EDE3D9;
    --white:        #FFFFFF;

    --font-sans:    'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
    --font-serif:   'Cormorant Garamond', Georgia, serif;

    --r-sm:  8px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;
    --r-pill: 999px;

    --sh-sm: 0 2px 8px rgba(26,26,26,.06);
    --sh:    0 8px 32px rgba(26,26,26,.08);
    --sh-md: 0 12px 44px rgba(26,26,26,.12);
    --sh-lg: 0 24px 64px rgba(26,26,26,.18);

    --ease:  cubic-bezier(.4,0,.2,1);
    --t:     .28s var(--ease);
    --t-md:  .5s var(--ease);
    --t-lg:  .75s var(--ease);

    --nav-h:      72px;
    --nav-h-sm:   56px;
    --container:  1200px;
    --px:         clamp(20px,4vw,48px);
    --section-py: clamp(72px,10vw,120px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    background: var(--warm-white);
    color: var(--dark);
    line-height: 1.75;
    overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

/* ── Container ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--px);
}

/* ── Section header ── */
.section-header {
    text-align: center;
    margin-bottom: clamp(40px,6vw,72px);
}

.eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255,107,53,.1);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 14px;
}
.eyebrow.light {
    color: var(--yellow);
    background: rgba(255,193,7,.18);
}

.section-title {
    font-size: clamp(1.6rem,3.2vw,2.5rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.28;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}
.section-title.light { color: var(--white); }
.section-title strong { color: var(--orange); font-weight: 900; }

.whyus-platter {
    display: block;
    height: 280px;
    width: auto;
    margin: 12px auto;
    filter: drop-shadow(0 4px 16px rgba(26,26,26,.12));
    opacity: 0;
    transform: scale(.15);
    transition: opacity .6s ease, transform .9s cubic-bezier(.34,1.56,.64,1);
}
.whyus-platter.platter-visible {
    opacity: 1;
    transform: scale(1);
}

.section-lead {
    font-size: clamp(.9rem,1.6vw,1.05rem);
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity var(--t-lg), transform var(--t-lg);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

/* ── Animate up (hero) ── */
.animate-up {
    opacity: 0;
    transform: translateY(28px);
    animation: slideUp .72s var(--ease) both;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .32s; }
.delay-3 { animation-delay: .48s; }
.delay-4 { animation-delay: .64s; }
.delay-5 { animation-delay: .80s; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   FLOATING LINE BUTTON
══════════════════════════════ */
.line-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #06C755;
    color: var(--white);
    padding: 13px 22px;
    border-radius: var(--r-pill);
    font-size: .95rem;
    font-weight: 700;
    box-shadow: 0 6px 28px rgba(6,199,85,.45);
    transition: var(--t);
    animation: floatBob 3.2s ease-in-out infinite;
}
.line-float:hover {
    background: #05B14C;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6,199,85,.55);
    animation: none;
}
.line-icon { width: 22px; height: 22px; fill: white; flex-shrink: 0; }
@keyframes floatBob {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
}

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
    background: rgba(255,248,240,.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--sh-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    padding: 0 var(--px);
    transition: height var(--t);
}
.nav.scrolled .nav-inner { height: var(--nav-h-sm); }

/* Brand */
.nav-brand {
    display: flex;
    align-items: baseline;
    gap: 3px;
    font-weight: 900;
    line-height: 1;
    transition: var(--t);
}
.brand-mark {
    font-size: 1.25rem;
    color: var(--orange);
    letter-spacing: -.02em;
}
.brand-sub {
    font-size: 1rem;
    color: var(--dark);
}
.nav:not(.scrolled) .brand-mark { color: var(--orange-lt); }
.nav:not(.scrolled) .brand-sub  { color: rgba(255,255,255,.9); }

/* Links */
.nav-links {
    display: flex;
    gap: 36px;
}
.nav-links a {
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .02em;
    position: relative;
    transition: color var(--t);
}
.nav-links a::after {
    content: '';
    position: absolute;
    inset: auto 0 -3px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.88); }
.nav.scrolled       .nav-links a { color: var(--gray-dk); }
.nav-links a:hover { color: var(--orange) !important; }

/* CTA */
.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: var(--r-pill);
    font-size: .90rem;
    font-weight: 700;
    transition: var(--t);
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--orange-dk);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,107,53,.35);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 6px;
    border-radius: var(--r-sm);
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--t);
}
.nav:not(.scrolled) .nav-toggle span { background: white; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.nav-mobile {
    display: none;
    overflow: hidden;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: var(--sh);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { padding: 12px 16px 20px; display: flex; flex-direction: column; gap: 2px; }
.nav-mobile ul a {
    display: block;
    padding: 11px 16px;
    font-weight: 500;
    border-radius: var(--r-sm);
    transition: var(--t);
}
.nav-mobile ul a:hover { background: var(--cream); color: var(--orange); }
.mobile-line-btn {
    background: #06C755 !important;
    color: white !important;
    text-align: center;
    margin-top: 6px;
    border-radius: var(--r-pill) !important;
    font-weight: 700 !important;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
    position: relative;
    height: 100svh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(27,67,50,.78) 0%,
        rgba(26,26,26,.55) 55%,
        rgba(255,107,53,.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: var(--nav-h) var(--px) 0;
    max-width: 840px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--yellow);
    border: 1px solid rgba(255,193,7,.4);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(2.4rem,6vw,4.8rem);
    font-weight: 900;
    color: white;
    line-height: 1.18;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.hero-em {
    color: var(--yellow);
    font-weight: 900;
    font-style: normal;
    font-family: inherit;
}

.hero-tagline {
    font-size: clamp(.88rem,1.8vw,1.08rem);
    color: rgba(255,255,255,.82);
    letter-spacing: .06em;
    margin-bottom: 28px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.hero-pills span {
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.2);
    padding: 6px 14px;
    border-radius: var(--r-pill);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: white;
    font-size: .95rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: var(--r-pill);
    transition: var(--t);
    box-shadow: 0 4px 24px rgba(255,107,53,.4);
    animation: heroPulse 2.8s ease-in-out infinite;
}
.btn-hero:hover {
    background: var(--orange-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(255,107,53,.5);
    animation: none;
}
@keyframes heroPulse {
    0%,100% { box-shadow: 0 4px 24px rgba(255,107,53,.4); }
    50%      { box-shadow: 0 4px 48px rgba(255,107,53,.65); }
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.85);
    font-size: .88rem;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(6px);
    transition: var(--t);
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,.12);
    color: white;
    border-color: rgba(255,255,255,.5);
}

/* scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); opacity: .5; }
    50%      { transform: translateY(14px); opacity: 1; }
}

/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why-us {
    padding: var(--section-py) 0;
    background: var(--warm-white);
    position: relative;
}
.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--yellow), var(--orange));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 40px 32px;
    box-shadow: var(--sh);
    position: relative;
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--t-md);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.feature-card:hover::before { transform: scaleY(1); }

.feature-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--cream-dk);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--t);
}
.feature-card:hover .feature-icon-wrap { background: rgba(255,107,53,.1); }
.feature-icon { font-size: 1.8rem; }

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.78;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
    background: var(--green);
    padding: var(--section-py) 0;
    position: relative;
}

.services-bg-text {
    position: absolute;
    bottom: -20px;
    right: -40px;
    font-family: var(--font-serif);
    font-size: clamp(8rem,18vw,18rem);
    font-weight: 600;
    color: rgba(255,255,255,.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-md);
    transition: transform var(--t), box-shadow var(--t);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }

.service-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); }

.service-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange);
    background: white;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    box-shadow: var(--sh-sm);
}
.service-badge.accent { color: var(--yellow-lt); background: var(--dark); }
.service-badge.green  { color: white; background: var(--green-lt); }

.service-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-body p {
    font-size: .93rem;
    color: var(--gray);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--orange);
    transition: var(--t);
    align-self: flex-start;
    margin-top: auto;
}
.service-cta:hover { color: var(--orange-dk); letter-spacing: .02em; }
.service-cta span { display: inline-block; transition: transform var(--t); }
.service-cta:hover span { transform: translateX(4px); }

/* ══════════════════════════════
   SOCIAL PROOF
══════════════════════════════ */
.social-proof {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.proof-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
}

.g-badge {
    display: flex;
    gap: 18px;
    align-items: center;
    background: white;
    border-radius: var(--r-lg);
    padding: 28px 32px;
    box-shadow: var(--sh);
    margin-bottom: 20px;
}
.g-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg,#4285F4,#EA4335,#FBBC05,#34A853);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-serif);
    flex-shrink: 0;
}
.g-stars { color: #FBBC05; font-size: 1rem; letter-spacing: 2px; margin-bottom: 2px; }
.g-score {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 2px;
}
.g-score span { font-size: .9rem; font-weight: 400; color: var(--gray-lt); }
.g-label { font-size: .72rem; color: var(--gray); }

.proof-tagline {
    font-size: .88rem;
    color: var(--gray);
    text-align: center;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonial {
    background: white;
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--sh);
    border-left: 4px solid var(--green);
    position: relative;
}
.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 22px;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--green);
    opacity: .15;
    line-height: 1;
}
.testimonial p {
    font-size: .9rem;
    color: var(--gray-dk);
    line-height: 1.82;
    margin-bottom: 20px;
    padding-top: 12px;
}
.testimonial footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.avatar.green { background: var(--green-lt); }
.testimonial footer strong { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); }
.testimonial footer cite   { font-style: normal; font-size: .78rem; color: var(--gray); }

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */

/* ══════════════════════════════
   FRUIT CHARACTER PARADE
══════════════════════════════ */
.fruit-parade {
    position: relative;
    height: 200px;
    background: var(--cream);
    overflow: hidden;           /* clips off-screen entry */
}

.fp-char {
    position: absolute;
    bottom: 0;
    opacity: 0;
    will-change: transform, opacity;
    cursor: default;
    user-select: none;
}
.fp-char img {
    display: block;
    height: 160px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(26,26,26,.18));
}
.fp-pear img { height: 230px; }

/* Default positions (where they land) */
.fp-pineapple { left:  5%; }
.fp-combo     { left: 50%; transform: translateX(-50%); }
.fp-pear      { right: 18%; }
.fp-tomato    { right: 4%; }

/* ── Entry keyframes ── */
@keyframes fpFromLeft {
    0%   { opacity: 0; transform: translateX(-110%) rotate(-18deg) scale(.7); }
    55%  { opacity: 1; transform: translateX(6%) rotate(5deg) scale(1.06); }
    75%  { transform: translateX(-3%) rotate(-2deg) scale(.98); }
    100% { opacity: 1; transform: translateX(0) rotate(0deg) scale(1); }
}
@keyframes fpFromRight {
    0%   { opacity: 0; transform: translateX(110%) rotate(18deg) scale(.7); }
    55%  { opacity: 1; transform: translateX(-6%) rotate(-5deg) scale(1.06); }
    75%  { transform: translateX(3%) rotate(2deg) scale(.98); }
    100% { opacity: 1; transform: translateX(0) rotate(0deg) scale(1); }
}
@keyframes fpFromBelow {
    0%   { opacity: 0; transform: translateX(-50%) translateY(130px) scale(.5); }
    55%  { opacity: 1; transform: translateX(-50%) translateY(-22px) scale(1.1); }
    75%  { transform: translateX(-50%) translateY(8px) scale(.97); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* ── Float keyframes ── */
@keyframes fpFloat1 { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-16px) rotate(3deg); } }
@keyframes fpFloat2 { 0%,100% { transform: translateX(-50%) translateY(0) rotate(2deg); } 50% { transform: translateX(-50%) translateY(-12px) rotate(-2deg); } }
@keyframes fpFloat3 { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(2deg); } }

/* Triggered by JS .parade-go class */
.fruit-parade.parade-go .fp-pineapple {
    animation: fpFromLeft  .95s cubic-bezier(.34,1.56,.64,1) 0s    forwards;
}
.fruit-parade.parade-go .fp-pear {
    animation: fpFromRight .95s cubic-bezier(.34,1.56,.64,1) .14s  forwards;
}
.fruit-parade.parade-go .fp-tomato {
    animation: fpFromRight .95s cubic-bezier(.34,1.56,.64,1) .28s  forwards;
}
.fruit-parade.parade-go .fp-combo {
    animation: fpFromBelow .95s cubic-bezier(.34,1.56,.64,1) .44s  forwards;
}

/* Float mode after entry */
.fp-pineapple.fp-float { opacity:1; animation: fpFloat1 3.4s ease-in-out infinite; }
.fp-pear.fp-float      { opacity:1; animation: fpFloat3 3.8s ease-in-out infinite; }
.fp-tomato.fp-float    { opacity:1; animation: fpFloat1 3.0s ease-in-out infinite; }
.fp-combo.fp-float     { opacity:1; animation: fpFloat2 4.0s ease-in-out infinite; }

.fp-pear   img { height: 150px; }
.fp-tomato img { height: 130px; }
.fp-combo  img { height: 190px; }

/* Hover: happy wiggle */
.fp-char:hover img { animation: fpWiggle .5s ease-in-out; }
@keyframes fpWiggle {
    0%,100% { transform: rotate(0); }
    25%     { transform: rotate(-10deg) scale(1.08); }
    75%     { transform: rotate(10deg) scale(1.08); }
}

.process {
    padding: var(--section-py) 0;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}
.process-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 10rem;
    opacity: .03;
    display: flex;
    gap: 32px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0 16px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.step { text-align: center; }

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 auto 18px;
    box-shadow: 0 4px 20px rgba(255,107,53,.32);
    transition: transform var(--t), box-shadow var(--t);
}
.step:hover .step-num { transform: scale(1.08); box-shadow: 0 8px 32px rgba(255,107,53,.42); }

.step-body h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-body p  { font-size: .8rem; color: var(--gray); line-height: 1.65; }

.step-arrow {
    font-size: 1.5rem;
    color: var(--orange);
    opacity: .4;
    align-self: center;
    margin-bottom: 40px;
    transition: opacity var(--t-lg);
}
.step-arrow.visible { opacity: 1; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: box-shadow var(--t);
}
.faq-item:hover { box-shadow: var(--sh); }
.faq-item.open  { box-shadow: var(--sh-md); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    text-align: left;
    font-size: .93rem;
    font-weight: 600;
    color: var(--dark);
    transition: color var(--t);
}
.faq-q:hover { color: var(--orange); }
.faq-item.open .faq-q { color: var(--orange); }

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--orange);
    line-height: 1;
    flex-shrink: 0;
    transition: transform var(--t-md);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}
.faq-a.open { max-height: 240px; }

.faq-a p {
    padding: 0 22px 20px;
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.82;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 0;
}

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
    background: var(--green);
    padding: var(--section-py) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,107,53,.15), transparent);
    pointer-events: none;
}

.cta-fruit-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    gap: 20px;
    font-size: 7rem;
    opacity: .04;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-size: clamp(1.8rem,4vw,3rem);
    font-weight: 900;
    color: white;
    line-height: 1.28;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}
.cta-content p {
    font-size: clamp(.9rem,1.6vw,1.05rem);
    color: rgba(255,255,255,.65);
    margin-bottom: 16px;
}
.cta-scarcity {
    display: inline-block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--yellow);
    background: rgba(255,193,7,.12);
    border: 1px solid rgba(255,193,7,.3);
    padding: 6px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 40px !important;
}
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-line {
    display: inline-flex;
    align-items: center;
    background: #06C755;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--r-pill);
    transition: var(--t);
    box-shadow: 0 4px 24px rgba(6,199,85,.35);
}
.btn-cta-line:hover {
    background: #05B14C;
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(6,199,85,.5);
}

.btn-cta-tel {
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 2px;
    transition: var(--t);
}
.btn-cta-tel:hover { color: white; border-color: white; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer { background: var(--dark); }

.footer-map { line-height: 0; }
.footer-map iframe { display: block; filter: grayscale(15%) contrast(1.05); }

.footer-body { padding: 60px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.6fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 14px;
}
.footer-logo-mark { font-size: 1.4rem; font-weight: 900; color: var(--orange); }
.footer-logo-sub  { font-size: 1.15rem; font-weight: 900; color: var(--white); }

.footer-slogan {
    font-size: .92rem;
    color: rgba(255,255,255,.45);
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-line-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #06C755;
    color: white;
    font-size: .92rem;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: var(--r-pill);
    transition: var(--t);
    align-self: flex-start;
    width: fit-content;
}
.footer-line-btn:hover { background: #05B14C; transform: translateY(-1px); }

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
}

.footer-social-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,.12);
}

.footer-ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: .90rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,.1);
    transition: var(--t);
    align-self: flex-start;
}
.footer-ig-btn:hover {
    color: white;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    transform: translateY(-1px);
}

.footer-grid h4 {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.fc-icon          { font-size: .95rem; flex-shrink: 0; margin-top: 3px; }
.footer-contact address,
.footer-contact span,
.footer-contact a {
    font-size: .92rem;
    color: rgba(255,255,255,.58);
    line-height: 1.65;
    transition: color var(--t);
}
.footer-contact a:hover { color: var(--orange); }

.footer-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-services li {
    font-size: .92rem;
    color: rgba(255,255,255,.48);
    padding-left: 14px;
    position: relative;
}
.footer-services li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    opacity: .6;
    font-size: .78rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); line-height: 1.6; }
.footer-seo-note { color: rgba(255,255,255,.15) !important; margin-top: 6px; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
    .features-grid  { grid-template-columns: repeat(2,1fr); }
    .services-grid  { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
    .proof-inner    { grid-template-columns: 1fr; }
    .rating-block   { max-width: 380px; margin-inline: auto; }
    .steps {
        grid-template-columns: 1fr;
        max-width: 440px;
        gap: 0;
    }
    .step-arrow {
        display: block;
        transform: rotate(90deg);
        margin: 8px auto;
        text-align: center;
        margin-bottom: 8px;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    .features-grid { grid-template-columns: 1fr; }
    .testimonials  { gap: 16px; }
    .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand-col { grid-column: auto; }

    .line-float { bottom: 20px; right: 20px; padding: 13px; border-radius: 50%; }
    .line-text  { display: none; }
    .line-float .line-icon { width: 26px; height: 26px; }
}

@media (max-width: 540px) {
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-hero, .btn-hero-ghost { width: 100%; max-width: 320px; justify-content: center; }
    .cta-actions { flex-direction: column; }
    .btn-cta-line { width: 100%; max-width: 320px; justify-content: center; }
    .process-deco { display: none; }
}

/* ── Accessibility: reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
