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

:root {
  --logo: url("images/jss-logo.webp");
  --yellow: #FFF3B0;
  --gold: #E09F3E;
  --maroon: #9E2A2B;
  --teal: #355C67;
  --wa: #25D366;
  --wa-dark: #1DA851;
  --hairline: rgba(50,50,50,0.12);
  --grid: rgba(50,50,50,0.05);
  --paper: #FFFFFF;
  --soft: #F6F4EE;
  --ink: #2B2620;
  --body-text: #4A4438;
  --font: 'Montserrat', sans-serif;
  --maxw: 1280px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--paper); color: var(--teal); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
section[id], footer[id] { scroll-margin-top: 84px; }

/* -- NAV -- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 105;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 18px; padding: 12px 4vw;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
nav.scrolled { background: var(--teal); box-shadow: 0 4px 18px rgba(33,29,23,.14); }
nav.scrolled .nav-links a { color: var(--yellow); }
nav.scrolled .nav-links a.active { border-bottom-color: var(--gold); }
nav.scrolled .nav-toggle { color: var(--yellow); }
nav.scrolled .brand-chip { filter: brightness(0) invert(1); opacity: .96; }
.brand { display: inline-flex; align-items: center; text-decoration: none; justify-self: start; }
.brand-chip { display: block; width: 122px; height: 46px; background: var(--logo) left center / contain no-repeat; }


.nav-links { display: flex; gap: 1.5rem; list-style: none; justify-self: center; }
.nav-links a { font-weight: 500; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--maroon); text-decoration: none; padding-bottom: 3px; transition: opacity .2s, color .3s ease; }
.nav-links a:hover { opacity: .65; }
.nav-links a.active { border-bottom: 2px solid var(--gold); }

.nav-right { display: flex; align-items: center; gap: 10px; justify-self: end; }
.lang { display: inline-flex; align-items: center; gap: 7px; background: var(--maroon); color: var(--gold); font-family: var(--font); font-weight: 500; font-size: .8rem; border: none; border-radius: 5px; padding: 9px 15px; cursor: pointer; }
.wa-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--wa); color: #fef4b5; font-weight: 600; font-size: .8rem; padding: 9px 15px; border-radius: 5px; text-decoration: none; white-space: nowrap; transition: background .2s, transform .15s ease-out; }
.wa-btn:hover { background: var(--wa-dark); }
.wa-btn:active { transform: scale(0.97); }
.wa-btn svg { width: 15px; height: 15px; fill: #fef4b5; flex-shrink: 0; }

/* -- HERO -- */
.hero {
  position: relative;
  padding-top: 72px;
  background-color: var(--yellow);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
}
.hero-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 48px;
  padding: 60px 4vw 84px; min-height: 70vh;
}

.hero h1 {
  font-weight: 600; color: var(--maroon);
  font-size: clamp(2.1rem, 5vw, 4rem); line-height: 1.15; letter-spacing: -.015em;
  max-width: 880px; word-wrap: break-word; margin-bottom: 1.4rem;
  opacity: 0; animation: rise .6s .1s ease forwards;
}
.mark {
  color: var(--maroon);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% 100%;
  border-radius: 3px;
  padding: 0 .1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-sub { font-weight: 500; color: var(--teal); font-size: clamp(1.02rem, 1.5vw, 1.3rem); line-height: 1.55; max-width: 600px; margin-bottom: 2.1rem; opacity: 0; animation: rise .6s .24s ease forwards; }

.hero-actions { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; opacity: 0; animation: rise .6s .38s ease forwards; }
.btn-quote {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--teal); color: var(--yellow);
  font-family: var(--font); font-weight: 600; font-size: 1.02rem;
  padding: 16px 28px; border-radius: 8px; text-decoration: none;
  box-shadow: 0 8px 22px rgba(53,92,103,.28);
  transition: transform .15s ease-out, box-shadow .15s ease-out, background .2s;
}
.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(53,92,103,.34); background: #2c4d57; }
.btn-quote:active { transform: scale(0.97); box-shadow: 0 4px 12px rgba(53,92,103,.2); }
.btn-quote svg { width: 18px; height: 18px; }
.link-text { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .95rem; color: var(--maroon); text-decoration: none; border-bottom: 1px solid var(--hairline); padding-bottom: 2px; transition: border-color .2s; }
.link-text:hover { border-color: var(--maroon); }
.link-text svg { width: 15px; height: 15px; }

.hero-trust { margin-top: 1.5rem; font-weight: 500; font-size: .85rem; color: var(--teal); opacity: 0; animation: rise .6s .5s ease forwards; }
.hero-trust b { color: var(--maroon); font-weight: 600; }

/* illustration */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; opacity: 0; animation: rise .7s .34s ease forwards; }
.hero-visual::before {
  content: ''; position: absolute; z-index: 0;
  width: min(440px, 92%); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,159,62,0.30) 0%, rgba(224,159,62,0.08) 45%, transparent 70%);
}
.hero-visual::after {
  content: ''; position: absolute; z-index: 0;
  width: min(380px, 80%); aspect-ratio: 1; border-radius: 50%;
  border: 1.5px dashed rgba(53,92,103,0.22);
}
.hero-visual svg { position: relative; z-index: 1; width: 100%; max-width: 420px; height: auto; }

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }


/* Hero SVG motion is controlled from jss-demo-fixed.js. */
/* -- STATS -- */
.stats { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.stats-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); padding: 34px 4vw; }
.stat { display: flex; gap: 16px; align-items: flex-start; padding: 0 6px; }
.stat::before { content: ''; width: 3px; align-self: stretch; min-height: 54px; background: var(--gold); border-radius: 2px; }
.stat-num { font-weight: 600; font-size: clamp(2rem, 4vw, 3rem); color: var(--maroon); line-height: 1; }
.stat-label { font-weight: 500; font-size: clamp(.74rem, 1.1vw, .92rem); letter-spacing: .04em; text-transform: uppercase; color: #6B6357; margin-top: 9px; }

/* --------- RESPONSIVE --------- */

/* small desktop / large tablet landscape */
@media (max-width: 1080px) {
  .hero-grid { gap: 36px; }
  .nav-links { gap: 1.1rem; }
}

/* tablet: stack hero, keep stats in one row */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 8px; padding: 48px 6vw 72px; text-align: center; }
  .hero h1, .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 18px; }
  .hero-visual svg { max-width: 340px; }
  .nav-links { display: none; }
}

/* small tablet / large phone */
@media (max-width: 680px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 30px 0; padding: 30px 6vw; }
  .hero-visual svg { max-width: 280px; }
  .btn-quote { padding: 14px 24px; }
}

/* phones */
@media (max-width: 480px) {
  nav { gap: 10px; padding: 10px 5vw; }
  .hero { padding-top: 60px; }
  .lang span { display: none; }
  .lang { padding: 9px 11px; }
  .brand-chip { width: 100px; height: 38px; }
  .hero-grid { padding: 36px 6vw 56px; }
  .hero-actions { gap: .8rem; }
  .btn-quote { width: 100%; justify-content: center; }
  .link-text { width: 100%; justify-content: center; }
}

/* -- PRODUCTS -- */
.products { background: var(--paper); padding: 96px 4vw 84px; }
.products-inner { max-width: var(--maxw); margin: 0 auto; }
.prod-label { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--maroon); margin-bottom: 1.2rem; }
.prod-label::before { content: ''; width: 30px; height: 2px; background: var(--maroon); }
.prod-title { font-weight: 700; color: var(--teal); font-size: clamp(1.8rem, 3.4vw, 2.9rem); line-height: 1.1; letter-spacing: -.02em; max-width: 720px; margin-bottom: .9rem; }
.prod-intro { font-weight: 500; color: var(--body-text); font-size: clamp(1rem, 1.4vw, 1.32rem); line-height: 1.5; max-width: 620px; margin-bottom: 3rem; }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 18px; align-items: stretch; }
.prod-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--hairline); border-radius: 14px;
  padding: 28px 24px; background: var(--paper);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.prod-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--maroon)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease-out; }
@media (hover: hover) and (pointer: fine) {
  .prod-card:hover { transform: translateY(-6px); border-color: rgba(53,92,103,0.35); box-shadow: 0 18px 40px rgba(43,38,32,0.12); }
  .prod-card:hover::before { transform: scaleX(1); }
}
.prod-icon { display: inline-flex; width: 50px; height: 50px; align-items: center; justify-content: center; border-radius: 12px; margin-bottom: 16px; }
.prod-card:nth-child(3n+1) .prod-icon { background: rgba(53,92,103,0.08); color: var(--teal); }
.prod-card:nth-child(3n+2) .prod-icon { background: rgba(158,42,43,0.08); color: var(--maroon); }
.prod-card:nth-child(3n) .prod-icon { background: rgba(224,159,62,0.16); color: #A86B14; }
.card-link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.card-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-weight: 600; font-size: .83rem; color: var(--maroon); opacity: 0; transform: translateY(4px); transition: opacity .25s ease-out, transform .25s ease-out; }
.card-go svg { width: 14px; height: 14px; }
@media (hover: hover) and (pointer: fine) {
  .prod-card:hover .card-go { opacity: 1; transform: none; }
}
.prod-icon svg { width: 24px; height: 24px; }
.prod-card h3 { font-family: var(--font); font-weight: 600; font-size: 1.06rem; color: var(--teal); line-height: 1.3; margin-bottom: 10px; }
.prod-card p { font-weight: 400; font-size: .9rem; line-height: 1.55; color: var(--body-text); margin-bottom: 16px; flex: 1; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.prod-tags span {
  font-weight: 600; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal); background: transparent;
  border: 1px solid rgba(53,92,103,0.28);
  padding: 4px 10px; border-radius: 5px;
}


.prod-cta { margin-top: 38px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-products { display: inline-flex; align-items: center; gap: 10px; background: var(--teal); color: var(--yellow); font-family: var(--font); font-weight: 600; font-size: .96rem; padding: 15px 26px; border-radius: 10px; text-decoration: none; transition: background .2s, transform .15s ease-out; }
.btn-products:hover { background: var(--maroon); transform: translateY(-2px); }
.btn-products:active { transform: scale(0.97); }
.btn-products svg { width: 17px; height: 17px; }
.prod-cta-note { font-weight: 500; font-size: .85rem; color: #6B6357; }

@media (max-width: 1080px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } .products { padding: 64px 6vw; } }
@media (max-width: 460px) { .prod-grid { grid-template-columns: 1fr; } }


/* -- WHY JSS -- */
.why { background: #FAF1E0; padding: 84px 4vw; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.why-inner { max-width: var(--maxw); margin: 0 auto; }
.why-label { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--maroon); margin-bottom: 1rem; }
.why-label::before { content: ''; width: 30px; height: 2px; background: var(--maroon); }
.why-title { font-weight: 600; color: var(--teal); font-size: clamp(1.9rem, 3.7vw, 3.1rem); line-height: 1.12; letter-spacing: -.015em; max-width: 720px; margin-bottom: 1rem; }
.why-intro { font-weight: 500; color: var(--body-text); font-size: clamp(1rem, 1.4vw, 1.32rem); line-height: 1.5; max-width: 760px; margin-bottom: 3rem; }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-card {
  background: var(--paper); border: 1px solid var(--hairline); border-radius: 16px; padding: 34px 34px 38px;
  transition: transform .2s, box-shadow .2s;
}
@media (hover: hover) and (pointer: fine) {
  .why-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(43,38,32,0.1); }
}
.why-card .num { font-weight: 600; font-size: clamp(2.4rem, 4vw, 3.1rem); color: var(--gold); line-height: 1; margin-bottom: 18px; }
.why-card h3 { font-family: var(--font); font-weight: 700; font-size: 1.26rem; color: var(--maroon); margin-bottom: 10px; letter-spacing: -.01em; }
.why-card p { font-weight: 400; font-size: 1rem; line-height: 1.55; color: var(--body-text); }

@media (max-width: 820px) { .why { padding: 64px 6vw; } .why-grid { grid-template-columns: 1fr; gap: 18px; } .why-card { padding: 28px 26px 32px; border-radius: 20px; } }


/* -- MARKETS -- */
.markets { background: var(--paper); padding: 84px 4vw; }
.markets-inner { max-width: var(--maxw); margin: 0 auto; }
.mk-label { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--maroon); margin-bottom: 1rem; }
.mk-label::before { content: ''; width: 30px; height: 2px; background: var(--maroon); }
.mk-title { font-weight: 600; color: var(--teal); font-size: clamp(1.9rem, 3.7vw, 3.1rem); line-height: 1.12; letter-spacing: -.015em; max-width: 700px; margin-bottom: 2.6rem; }

.mk-wrap { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: start; }

.mk-list { display: flex; flex-direction: column; }
.mk-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--hairline); }
.mk-item:first-child { padding-top: 0; }
.mk-dot { width: 12px; height: 12px; margin-top: 7px; border-radius: 50%; background: var(--gold); }
.mk-item h3 { font-family: var(--font); font-weight: 600; font-size: 1.22rem; color: var(--teal); margin-bottom: 7px; }
.mk-item p { font-weight: 400; font-size: .95rem; line-height: 1.5; color: var(--body-text); }

.mk-note { background: var(--teal); border-radius: 24px; padding: 36px 34px; position: sticky; top: 24px; }
.mk-note h3 { font-family: var(--font); font-weight: 600; font-size: 1.28rem; color: var(--gold); margin-bottom: 18px; }
.mk-note p { font-weight: 400; font-size: .96rem; line-height: 1.55; color: var(--yellow); margin-bottom: 14px; }
.mk-note .btn-wa { margin-top: 8px; }

@media (max-width: 900px) { .mk-wrap { grid-template-columns: 1fr; gap: 32px; } .mk-note { position: static; } }
@media (max-width: 820px) { .markets { padding: 64px 6vw; } }


/* -- NAV EXTRAS: hamburger + floating language + docs btn -- */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--maroon); transition: transform .15s ease-out; }
.nav-toggle:active { transform: scale(0.9); }
.nav-toggle svg { width: 26px; height: 26px; }
.menu-backdrop { position: fixed; inset: 0; background: rgba(33,29,23,.42); z-index: 110; opacity: 0; visibility: hidden; transition: opacity .32s ease, visibility 0s linear .32s; }
.menu-backdrop.open { opacity: 1; visibility: visible; transition: opacity .32s ease, visibility 0s; }
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: min(80vw, 320px); background: var(--yellow); box-shadow: -10px 0 34px rgba(50,50,50,.2); z-index: 120; padding: 80px 26px 28px; display: flex; flex-direction: column; gap: 2px; transform: translateX(105%); transition: transform .32s cubic-bezier(0.32, 0.72, 0, 1); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a:not(.wa-btn) { font-weight: 600; font-size: 1rem; letter-spacing: .03em; color: var(--maroon); text-decoration: none; text-align: center; padding: 15px 4px; border-bottom: 1px solid rgba(50,50,50,.12); }
.mobile-menu .wa-btn { margin-top: 18px; justify-content: center; font-size: .9rem; }
.menu-close { position: absolute; top: 22px; right: 22px; background: none; border: none; cursor: pointer; color: var(--maroon); padding: 4px; transition: transform .15s ease-out; }
.menu-close:active { transform: scale(0.9); }
.menu-close svg { width: 24px; height: 24px; }

.lang-float { position: fixed; right: 22px; bottom: 90px; z-index: 100; display: inline-flex; align-items: center; gap: 8px; background: var(--teal); color: var(--yellow); border-radius: 999px; padding: 11px 16px; box-shadow: 0 8px 24px rgba(53,92,103,.34); transition: transform .15s ease-out, background .2s; }
@media (hover: hover) and (pointer: fine) {
  .lang-float:hover { transform: translateY(-2px); background: #2c4d57; }
}
.lang-float:active { transform: scale(0.96); }
.lang-float svg.globe { width: 18px; height: 18px; }
.lang-float svg.caret { width: 12px; height: 12px; pointer-events: none; }
.lang-float select { appearance: none; -webkit-appearance: none; background: transparent; border: none; color: var(--yellow); font-family: var(--font); font-weight: 600; font-size: .9rem; cursor: pointer; outline: none; }
.lang-float select option { color: #211D17; }

.btn-docs { display: inline-flex; align-items: center; gap: 9px; background: var(--gold); color: #23303a; font-family: var(--font); font-weight: 600; font-size: .96rem; padding: 13px 22px; border-radius: 8px; text-decoration: none; transition: transform .15s ease-out, background .2s; }
.btn-docs:hover { transform: translateY(-2px); background: #cf9233; }
.btn-docs:active { transform: scale(0.97); }
.btn-docs svg { width: 18px; height: 18px; }

@media (max-width: 920px) { nav { display: flex; justify-content: space-between; } .nav-toggle { display: inline-flex; } .nav-right .wa-btn { display: none; } }
@media (max-width: 480px) { .lang-float { right: 16px; bottom: 78px; padding: 10px 14px; } }


.prod-icon { transition: transform .25s ease-out, background .2s; }
@media (hover: hover) and (pointer: fine) {
  .prod-card:hover .prod-icon { transform: translateY(-3px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-delay: 0ms !important; scroll-behavior: auto !important; }
}


/* -- EXPORT ACTIVITY (within Why JSS) -- */
.export-head { margin-top: 58px; margin-bottom: 26px; }
.export-title { font-family: var(--font); font-weight: 600; color: var(--maroon); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.15; margin-bottom: 8px; }
.export-sub { font-weight: 500; color: var(--body-text); font-size: clamp(.98rem, 1.3vw, 1.15rem); line-height: 1.5; max-width: 660px; }
.export-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.export-card { background: var(--paper); border: 1px solid var(--hairline); border-radius: 16px; padding: 14px 14px 22px; transition: transform .2s, box-shadow .2s; }
.export-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 16px; background: rgba(0,0,0,.15); }
.export-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .28s ease-out; }
@media (hover: hover) and (pointer: fine) {
  .export-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(43,38,32,0.1); }
  .export-card:hover .export-img img { transform: scale(1.04); }
}
.export-card h4 { font-family: var(--font); font-weight: 600; font-size: 1.08rem; color: var(--maroon); margin: 0 8px 6px; }
.export-card p { font-weight: 400; font-size: .9rem; line-height: 1.5; color: var(--body-text); margin: 0 8px; }
@media (max-width: 900px) { .export-grid { grid-template-columns: 1fr; } .export-head { margin-top: 42px; } }


/* -- ABOUT -- */
.about { background: #EFF4F3; padding: 84px 4vw; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.about-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.about-label { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--maroon); margin-bottom: 1rem; }
.about-label::before { content: ''; width: 30px; height: 2px; background: var(--maroon); }
.about-title { font-weight: 600; color: var(--teal); font-size: clamp(1.9rem, 3.7vw, 3.1rem); line-height: 1.12; letter-spacing: -.015em; margin-bottom: 1.3rem; }
.about-text p { font-weight: 400; color: var(--body-text); font-size: 1.03rem; line-height: 1.65; margin-bottom: 1.1rem; max-width: 560px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 9px; margin: 1.7rem 0 1.9rem; }
.about-badges span { font-weight: 600; font-size: .76rem; letter-spacing: .04em; color: var(--teal); background: var(--paper); border: 1px solid var(--hairline); padding: 7px 13px; border-radius: 999px; }

.about-visual { position: relative; }
.about-offset { position: absolute; left: -22px; bottom: -22px; width: 62%; height: 72%; background: var(--teal); border-radius: 16px; z-index: 0; }
.about-photo { position: relative; z-index: 1; border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 2; box-shadow: 0 20px 46px rgba(53,40,30,0.18); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-caption { position: absolute; z-index: 2; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; background: var(--maroon); color: var(--yellow); font-weight: 600; font-size: .76rem; letter-spacing: .02em; padding: 8px 14px; border-radius: 999px; box-shadow: 0 6px 16px rgba(33,29,23,.28); }
.about-caption::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

@media (max-width: 900px) {
  .about { padding: 64px 6vw; }
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-offset { left: -12px; bottom: -12px; }
}


/* -- HOW IT WORKS -- */
.howit { background: var(--teal); padding: 84px 4vw; }
.howit-inner { max-width: var(--maxw); margin: 0 auto; }
.howit-label { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.howit-label::before { content: ''; width: 30px; height: 2px; background: var(--gold); }
.howit-title { font-weight: 600; color: var(--yellow); font-size: clamp(1.9rem, 3.7vw, 3.1rem); line-height: 1.12; letter-spacing: -.015em; max-width: 620px; margin-bottom: 3.4rem; }
.howit-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.howit-steps::before { content: ''; position: absolute; top: 31px; left: 32px; right: calc(25% - 40px); height: 1.5px; background: rgba(224,159,62,0.45); z-index: 0; }
.howit-step { position: relative; z-index: 1; }
.howit-num { width: 64px; height: 64px; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--font); font-weight: 600; font-size: 1.7rem; display: flex; align-items: center; justify-content: center; margin-bottom: 26px; background: var(--teal); }
.howit-step h3 { font-family: var(--font); font-weight: 600; font-size: 1.18rem; color: var(--gold); line-height: 1.25; margin-bottom: 12px; }
.howit-step p { font-weight: 400; font-size: .95rem; line-height: 1.55; color: rgba(255,243,176,0.85); }
@media (max-width: 1080px) { .howit-steps { grid-template-columns: repeat(2, 1fr); gap: 34px 28px; } .howit-steps::before { display: none; } }
@media (max-width: 560px) { .howit-steps { grid-template-columns: 1fr; } .howit { padding: 64px 6vw; } }

/* -- CTA BAND -- */
.cta { background: var(--gold); padding: 76px 4vw; }
.cta-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-text { flex: 1 1 460px; }
.cta-text h2 { font-weight: 600; color: var(--maroon); font-size: clamp(1.9rem, 4.4vw, 3.4rem); line-height: 1.12; letter-spacing: -.02em; margin-bottom: .9rem; }
.cta-text p { font-weight: 500; color: var(--maroon); font-size: clamp(1rem, 1.4vw, 1.18rem); opacity: .85; max-width: 540px; }
.cta-wa { display: inline-flex; align-items: center; gap: 11px; background: var(--wa); color: #fff; font-family: var(--font); font-weight: 700; font-size: 1.1rem; padding: 18px 32px; border-radius: 10px; text-decoration: none; box-shadow: 0 10px 26px rgba(37,211,102,.34); transition: transform .15s ease-out, background .2s; white-space: nowrap; }
.cta-wa:hover { transform: translateY(-2px); background: var(--wa-dark); }
.cta-wa:active { transform: scale(0.97); box-shadow: 0 4px 12px rgba(37,211,102,.22); }
.cta-wa svg { width: 22px; height: 22px; fill: #fff; }
@media (max-width: 820px) { .cta { padding: 60px 6vw; } }

/* -- FOOTER -- */
.footer { background: var(--teal); padding: 70px 4vw 30px; }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.foot-logo { display: block; width: 150px; height: 52px; background-image: var(--logo); background-size: contain; background-position: left center; background-repeat: no-repeat; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 18px; }
.foot-about p { font-weight: 400; font-size: .95rem; line-height: 1.6; color: rgba(255,243,176,0.82); max-width: 340px; }
.foot-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.foot-badges span { font-weight: 600; font-size: .72rem; letter-spacing: .03em; color: var(--teal); background: #ECE7D6; padding: 6px 11px; border-radius: 5px; }
.foot-col h4 { font-family: var(--font); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col a { font-weight: 400; font-size: .95rem; color: rgba(255,243,176,0.82); text-decoration: none; transition: color .2s; }
.foot-col a:hover { color: var(--yellow); }
.foot-contact a.link { color: var(--gold); }
.footer-bottom { max-width: var(--maxw); margin: 44px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,243,176,0.18); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-weight: 400; font-size: .82rem; color: rgba(255,243,176,0.6); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } .footer { padding: 56px 6vw 28px; } }


/* -- FLOATING WHATSAPP -- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 100; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.42); transition: transform .15s ease-out, background .2s; }
@media (hover: hover) and (pointer: fine) {
  .wa-float:hover { transform: scale(1.08); background: var(--wa-dark); }
}
.wa-float:active { transform: scale(0.94); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 480px) { .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } .wa-float svg { width: 28px; height: 28px; } }

/* === TRIAL: award-motion additions === */
nav { will-change: background-color; }


.hero { overflow: hidden; }
#heroFx { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; }
.hero h1 .w { display: inline-block; will-change: transform; }

/* GSAP owns hero SVG motion - CSS fallback disabled */


/* trial: GSAP owns hero entrance */
.hero h1, .hero-sub, .hero-actions, .hero-trust { animation: none !important; opacity: 1; }

/* trial: mobile alignment fixes */
@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .btn-quote { width: 100%; justify-content: center; }
  .link-text { width: auto; align-self: center; justify-content: center; }
}

