/* ============================================================
   ENGLISH ON — Natasha Vahala  |  Global Stylesheet v2
   Design: Editorial · Navy & Warm White · Bodoni Moda + Outfit
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #0F2340;
  --navy-mid:    #1A3557;
  --navy-soft:   #2A4A72;
  --accent:      #1D4ED8;
  --accent-light:#EFF6FF;
  --accent-mid:  #DBEAFE;
  --gold:        #B8962E;
  --gold-light:  #FEF9EE;
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --surface:     #F1F0EC;
  --text:        #0F2340;
  --text-mid:    #3D5470;
  --text-light:  #7A92AC;
  --border:      #E2E8F0;
  --border-mid:  #CBD5E1;

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   28px;
  --radius-blob: 60% 40% 55% 45% / 45% 55% 45% 55%;
  --shadow-sm:   0 1px 4px rgba(15,35,64,.06);
  --shadow-md:   0 4px 20px rgba(15,35,64,.09);
  --shadow-lg:   0 16px 48px rgba(15,35,64,.13);
  --shadow-xl:   0 28px 72px rgba(15,35,64,.18);

  --t:           200ms cubic-bezier(.4,0,.2,1);
  --t-slow:      300ms cubic-bezier(.4,0,.2,1);
  --z-nav:       50;

  --nav-height:  68px;
  --lang-height: 32px;
  --top-offset:  calc(var(--nav-height) + var(--lang-height));
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
select, input, textarea { font-family: var(--font-body); }

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

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1160px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.section    { padding-block: clamp(4rem, 8vw, 7rem); }
.section--alt  { background: var(--off-white); }
.section--dark { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { color: var(--text-mid); font-size: 1rem; max-width: 54ch; margin-inline: auto; margin-top: 1rem; line-height: 1.75; font-weight: 300; }

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-label--gold  { color: var(--gold); }
.section-label--light { color: rgba(255,255,255,.5); }

/* ── Section Titles ─────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}
.section-title--light { color: var(--white); }
.section-title--xl    { font-size: clamp(2.4rem, 5vw, 3.8rem); }
/* Mixed title: italic colored keyword */
.section-title em,
.section-title i { font-style: italic; color: var(--accent); font-weight: 900; }
.section-title em.gold { color: var(--gold); }

/* ── Reveal ─────────────────────────────────────────────────── */
.reveal          { opacity: 0; transform: translateY(24px); transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1); }
.reveal--right   { transform: translateX(24px); }
.reveal--left    { transform: translateX(-24px); }
.reveal--scale   { transform: scale(.97); }
.reveal.visible  { opacity: 1; transform: none; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem; border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 500; letter-spacing: .02em;
  transition: background var(--t), color var(--t), box-shadow var(--t), transform var(--t), border-color var(--t);
  cursor: pointer; white-space: nowrap;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--navy-soft); box-shadow: 0 6px 24px rgba(15,35,64,.25); transform: translateY(-1px); }
.btn--accent  { background: var(--accent); color: var(--white); }
.btn--accent:hover, .btn--accent:focus-visible  { background: #1740b0; box-shadow: 0 6px 24px rgba(29,78,216,.3); transform: translateY(-1px); }
.btn--ghost   { background: transparent; color: var(--navy); border: 1.5px solid var(--navy-soft); }
.btn--ghost:hover, .btn--ghost:focus-visible   { border-color: var(--navy); background: var(--accent-light); color: var(--accent); }
.btn--ghost-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.7); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--gold    { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #9a7a20; box-shadow: 0 6px 24px rgba(184,150,46,.35); transform: translateY(-1px); }
.btn--full    { width: 100%; justify-content: center; }
.btn--lg      { padding: 1.1rem 2.5rem; font-size: .95rem; }
.btn__arrow   { flex-shrink: 0; transition: transform var(--t); }
.btn:hover .btn__arrow { transform: translateX(3px); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Language bar ───────────────────────────────────────────── */
.lang-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: calc(var(--z-nav) + 1);
  background: var(--navy); height: var(--lang-height);
  display: flex; align-items: center; justify-content: flex-end;
}
.lang-bar__inner { padding-inline: clamp(1.25rem, 5vw, 3rem); display: flex; gap: .5rem; align-items: center; }
.lang-bar span { font-size: .68rem; font-weight: 600; letter-spacing: .14em; color: rgba(255,255,255,.4); cursor: pointer; transition: color var(--t); user-select: none; text-transform: uppercase; }
.lang-bar span:hover, .lang-bar span.lang-active { color: var(--white); }
.lang-sep { color: rgba(255,255,255,.2) !important; cursor: default !important; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: var(--lang-height); left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(248,247,244,.95);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.navbar.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.navbar__inner {
  max-width: 1160px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: var(--nav-height); display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo__wrap { display: flex; flex-direction: column; gap: 1px; }
.logo__main { display: flex; align-items: center; gap: 7px; }
.logo__english {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  color: #5A6B7D;
  letter-spacing: -.01em;
  line-height: 1;
}
.logo__toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--navy);
  border-radius: 99px;
  padding: 5px 6px 5px 13px;
  line-height: 1;
}
.logo__toggle-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  letter-spacing: -.01em;
}
.logo__toggle-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
}
.logo__tagline {
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 400;
  color: #8A9BAD;
  letter-spacing: .12em;
  text-transform: lowercase;
  padding-left: 2px;
}
/* Footer logo variants */
.logo__english--footer { color: rgba(255,255,255,.75); font-size: 1.6rem; }
.logo__tagline--footer { color: rgba(255,255,255,.28); }
.logo__wrap--footer .logo__toggle { background: rgba(255,255,255,.12); }
/* Legacy fallback */
.logo__word { color: var(--navy); font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; }
.logo__on   { color: var(--accent); font-style: italic; font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; }
.nav-links  { display: flex; align-items: center; gap: 1.75rem; }
.nav-link {
  font-family: var(--font-body);
  font-size: .83rem; font-weight: 400; color: var(--text-mid);
  position: relative; padding-bottom: 2px;
  transition: color var(--t);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width var(--t);
}
.nav-link:hover, .nav-link--active { color: var(--navy); }
.nav-link:hover::after, .nav-link--active::after { width: 100%; }
.cta-nav {
  padding: .5rem 1.25rem; border: 1.5px solid var(--navy);
  border-radius: var(--radius); color: var(--navy); font-weight: 500;
}
.cta-nav::after { display: none; }
.cta-nav:hover { background: var(--navy); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: transform var(--t), opacity var(--t); transform-origin: center; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; padding: 1rem clamp(1.25rem, 5vw, 3rem) 1.5rem; border-top: 1px solid var(--border); background: rgba(248,247,244,.98); }
.mobile-menu.open { display: flex; }
.mobile-link { padding: .75rem 0; font-size: 1rem; color: var(--text-mid); border-bottom: 1px solid var(--border); transition: color var(--t), padding-left var(--t); }
.mobile-link:last-child { border: none; }
.mobile-link:hover { color: var(--navy); padding-left: .5rem; }

.page-top { padding-top: var(--top-offset); }

/* ════════════════════════════════════════════════════════════
   MARQUEE (ticker bar)
   ════════════════════════════════════════════════════════════ */
.marquee-section {
  background: var(--navy);
  overflow: hidden;
  padding-block: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-inline: 1.75rem;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.marquee__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.marquee__item--accent { color: var(--gold); font-style: normal; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-body); font-size: .72rem; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════
   PHOTO CIRCLE + BLOB
   ════════════════════════════════════════════════════════════ */
.photo-circle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 100%);
  margin: 3rem auto 3rem;
}

/* Blob organic shape behind the circle */
.photo-circle-wrap::before {
  content: '';
  position: absolute;
  inset: -18%;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-blob);
  z-index: 0;
  animation: blobMorph 10s ease-in-out infinite alternate;
}

@keyframes blobMorph {
  0%   { border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; }
  33%  { border-radius: 50% 50% 40% 60% / 55% 45% 60% 40%; }
  66%  { border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%; }
  100% { border-radius: 60% 40% 45% 55% / 50% 50% 50% 50%; }
}

.photo-circle {
  position: relative;
  z-index: 1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-xl);
  flex-shrink: 0;
}
.photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* Placeholder when no image */
.photo-circle--empty {
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,.12);
}

/* ════════════════════════════════════════════════════════════
   FLOAT TAGS (floating pills around photo)
   ════════════════════════════════════════════════════════════ */
.float-tag {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .45rem 1rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .4rem;
  animation: floatY 4s ease-in-out infinite alternate;
}
.float-tag svg { color: var(--accent); flex-shrink: 0; }
.float-tag--gold { border-color: #FCEDC6; background: var(--gold-light); color: var(--gold); }
.float-tag--gold svg { color: var(--gold); }
.float-tag--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.float-tag--navy svg { color: var(--gold); }

/* Positioning presets */
.float-tag--tl { top: 8%; left: -8%; animation-delay: 0s; }
.float-tag--tr { top: 12%; right: -10%; animation-delay: .8s; }
.float-tag--bl { bottom: 14%; left: -12%; animation-delay: 1.6s; }
.float-tag--br { bottom: 8%; right: -8%; animation-delay: 2.4s; }
.float-tag--tm { top: -4%; left: 50%; transform: translateX(-50%); animation-delay: 1.2s; }

@keyframes floatY {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}
.float-tag--tm {
  animation-name: floatTM;
}
@keyframes floatTM {
  from { transform: translateX(-50%) translateY(0); }
  to   { transform: translateX(-50%) translateY(-8px); }
}

/* ════════════════════════════════════════════════════════════
   SERVICE CARDS (light, clean, "Scopri →")
   ════════════════════════════════════════════════════════════ */
.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-slow), transform var(--t-slow), border-color var(--t-slow);
}
.srv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(29,78,216,.2); }
.srv-card--featured { border-color: var(--accent); background: linear-gradient(145deg, #EFF6FF 0%, var(--white) 70%); }

.srv-card__icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.srv-card--featured .srv-card__icon { background: var(--accent); color: var(--white); }

.srv-card__tag {
  display: inline-block;
  font-size: .68rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .6rem;
}
.srv-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--navy); margin-bottom: .65rem;
}
.srv-card p  { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: auto; padding-bottom: 1.5rem; font-weight: 300; }
.srv-card__cta {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .85rem; font-weight: 500; color: var(--accent);
  margin-top: 1.25rem;
  transition: gap var(--t), color var(--t);
  cursor: pointer;
}
.srv-card__cta:hover { gap: .6rem; color: var(--navy); }
.srv-card--featured .srv-card__cta { color: var(--accent); }

/* ════════════════════════════════════════════════════════════
   MIXED TITLES: bold + italic colored word
   ════════════════════════════════════════════════════════════ */
.title-mix {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
}
.title-mix em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.title-mix em.gold { color: var(--gold); }
.title-mix--light { color: var(--white); }
.title-mix--light em { color: var(--gold); }

/* ── Stats ──────────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--white); padding: 1.75rem 1rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .25rem; }
.stat--dark { background: rgba(255,255,255,.05); }
.stat__num  { font-family: var(--font-body); font-size: 2.5rem; font-weight: 700; color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.stat__num--light { color: var(--white); }
.stat__unit { font-family: var(--font-body); font-size: 1.6rem; color: var(--accent); line-height: 1; font-weight: 500; }
.stat__unit--gold { color: var(--gold); }
.stat__label { font-size: .72rem; color: var(--text-light); letter-spacing: .04em; text-align: center; margin-top: .2rem; font-weight: 400; }
.stat__label--light { color: rgba(255,255,255,.4); }

/* ── Quote block ────────────────────────────────────────────── */
.quote-block {
  background: var(--accent-light); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.75rem 2rem 1.75rem 1.75rem; position: relative;
}
.quote-block--dark { background: rgba(255,255,255,.05); border-color: var(--gold); }
.quote-block blockquote { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; font-weight: 400; color: var(--navy); line-height: 1.55; margin-bottom: .65rem; }
.quote-block--dark blockquote { color: var(--white); }
.quote-block cite { font-size: .76rem; color: var(--text-light); font-weight: 400; }
.quote-block--dark cite { color: rgba(255,255,255,.4); }

/* ── Icon list ──────────────────────────────────────────────── */
.icon-list { display: flex; flex-direction: column; gap: .8rem; }
.icon-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; color: var(--text-mid); line-height: 1.5; font-weight: 300; }
.icon-list li svg { color: var(--accent); flex-shrink: 0; margin-top: .15rem; }
.icon-list--light li { color: rgba(255,255,255,.7); }
.icon-list--light li svg { color: var(--gold); }

/* ── CTA banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.12; }
.cta-banner h2 em { font-style: italic; color: var(--gold); font-weight: 900; }
.cta-banner p { color: rgba(255,255,255,.6); max-width: 46ch; line-height: 1.75; font-size: .95rem; font-weight: 300; }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── Form ───────────────────────────────────────────────────── */
.form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem); box-shadow: var(--shadow-lg); }
.contact__form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .78rem; font-weight: 500; letter-spacing: .04em; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; color: var(--text); background: var(--white); width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
  font-family: var(--font-body);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(29,78,216,.1); }
.form-group input.error, .form-group select.error { border-color: #E11D48; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.form-error { font-size: .72rem; color: #E11D48; display: none; }
.form-group.has-error .form-error { display: block; }
.form-success { display: none; align-items: center; gap: .6rem; padding: .85rem 1rem; background: #F0FDF4; border: 1px solid #86EFAC; border-radius: var(--radius); font-size: .88rem; color: #15803D; }
.form-success.show { display: flex; }

/* ── Trust bar ──────────────────────────────────────────────── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); padding-block: 1.5rem; }
.trust-bar__inner { max-width: 1160px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 3rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--text-mid); font-weight: 400; }
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-sep { width: 1px; height: 24px; background: var(--border); }

/* ── Chips / Tags ───────────────────────────────────────────── */
.tag { display: inline-block; font-size: .72rem; font-weight: 500; letter-spacing: .04em; padding: .28rem .8rem; border-radius: 99px; background: var(--accent-light); color: var(--accent); border: 1px solid var(--accent-mid); }
.tag--gold { background: var(--gold-light); color: var(--gold); border-color: #FCEDC6; }
.tag--dark { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.12); }

/* ── Divider ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.07); padding-block: 4rem 2rem; }
.footer__inner { max-width: 1160px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__logo { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; margin-bottom: .75rem; letter-spacing: -.01em; }
.footer__logo .logo__word { color: rgba(255,255,255,.8); }
.footer__logo .logo__on   { color: var(--accent); font-style: italic; }
.footer__desc { font-size: .84rem; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 34ch; font-weight: 300; }
.footer__col h4 { font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.1rem; }
.footer__col a, .footer__col span { display: block; font-size: .84rem; color: rgba(255,255,255,.48); margin-bottom: .55rem; transition: color var(--t); font-weight: 300; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .5rem; }
.footer__tagline { font-family: var(--font-display); font-style: italic; font-size: .9rem; color: rgba(255,255,255,.28); }
.footer__copy { font-size: .76rem; color: rgba(255,255,255,.22); }

/* ════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: var(--top-offset);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.page-hero__bg::before {
  content: attr(data-text);
  position: absolute; bottom: -1rem; right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 900; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.04);
  line-height: 1; user-select: none; white-space: nowrap;
}
.page-hero__inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-top: 3.5rem;
}
.page-hero .section-label { margin-bottom: .75rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800; color: var(--white); line-height: 1.08;
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 900; }
.page-hero p {
  font-size: 1rem; color: rgba(255,255,255,.65);
  max-width: 52ch; line-height: 1.75; margin-bottom: 2rem; font-weight: 300;
}
.page-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .76rem; color: rgba(255,255,255,.38);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }

/* ════════════════════════════════════════════════════════════
   HOME — HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding-top: var(--top-offset);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden; background: var(--off-white);
}
/* Decorative geometric accent */
.hero::after {
  content: '';
  position: absolute;
  top: 10%; right: -5%;
  width: clamp(280px, 40vw, 560px);
  height: clamp(280px, 40vw, 560px);
  background: radial-gradient(ellipse, rgba(184,150,46,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 1160px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem); padding-block: 4rem 2rem;
  position: relative; z-index: 1;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem;
}
/* Hero decorative navy accents */
.hero-accent {
  position: absolute;
  border-radius: 50%;
  background: var(--navy);
  opacity: .06;
  pointer-events: none;
}
.hero-accent--1 { width: 320px; height: 320px; top: -80px; right: 5%; }
.hero-accent--2 { width: 160px; height: 160px; bottom: 10%; left: 2%; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700; line-height: 1.04;
  color: var(--navy); margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero__sub {
  font-size: 1rem; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 2.5rem; max-width: 44ch; font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__photo { display: flex; justify-content: flex-end; align-items: center; }
.hero__scroll-hint { display: flex; justify-content: center; padding-bottom: 1.5rem; position: relative; z-index: 1; }
.hero__scroll-hint span { display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--navy-soft)); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top;opacity:0} 40%{transform:scaleY(1);transform-origin:top;opacity:1} 60%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom;opacity:0} }

/* ── HOME – Business teaser ─────────────────────────────────── */
.biz-teaser { background: var(--navy); }
.biz-teaser__inner {
  max-width: 1160px; margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem); padding-block: clamp(4rem, 7vw, 6rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.biz-teaser p { color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; font-weight: 300; }
.biz-teaser__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
.biz-pill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.biz-pill {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg); padding: 1.25rem 1.5rem;
  display: flex; align-items: flex-start; gap: .85rem;
  transition: background var(--t), border-color var(--t);
}
.biz-pill:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }
.biz-pill svg { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.biz-pill strong { display: block; font-size: .88rem; font-weight: 500; color: var(--white); margin-bottom: .25rem; }
.biz-pill span   { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.5; font-weight: 300; }

/* ── HOME – Services overview ───────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── HOME – About teaser ────────────────────────────────────── */
.about-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-teaser__photo-col { display: flex; justify-content: center; }
.about-teaser__text .section-label { margin-bottom: .5rem; }
.about-teaser__text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; font-size: .95rem; }
.about-teaser__text strong { color: var(--navy); font-weight: 500; }
.about-teaser__text .btn { margin-top: .75rem; }

/* ════════════════════════════════════════════════════════════
   BUSINESS ENGLISH PAGE
   ════════════════════════════════════════════════════════════ */
.be-problem { background: var(--off-white); }
.be-problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.problem-list { display: flex; flex-direction: column; gap: .85rem; }
.problem-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.1rem 1.5rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: box-shadow var(--t), border-color var(--t);
}
.problem-item:hover { box-shadow: var(--shadow-md); border-color: rgba(29,78,216,.18); }
.problem-item__num {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; font-style: normal;
  color: var(--accent); opacity: .4;
  line-height: 1.2; flex-shrink: 0; min-width: 2rem;
  padding-top: .1rem; letter-spacing: .04em;
}
.problem-item strong { display: block; font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.problem-item span   { font-size: .82rem; color: var(--text-mid); font-weight: 300; line-height: 1.55; }

.be-what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.be-what-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: box-shadow var(--t-slow), transform var(--t-slow);
}
.be-what-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.be-what-card__icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1rem; }
.be-what-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.be-what-card p  { font-size: .84rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

.be-process { background: var(--navy); }
.be-process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.be-process__steps::before { content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 1px; background: rgba(255,255,255,.08); z-index: 0; }
.be-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.be-step__num { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 1.1rem; font-weight: 500; font-style: normal; color: var(--gold); margin-bottom: 1.25rem; letter-spacing: .04em; }
.be-step h4 { font-size: .92rem; font-weight: 500; color: var(--white); margin-bottom: .5rem; }
.be-step p  { font-size: .8rem; color: rgba(255,255,255,.48); line-height: 1.65; font-weight: 300; }

.be-sectors__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sector-pill {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem;
  display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  cursor: default;
}
.sector-pill:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(29,78,216,.2); }
.sector-pill svg { color: var(--accent); }
.sector-pill span { font-size: .8rem; font-weight: 500; color: var(--navy); }

.be-formats { background: var(--off-white); }
.be-formats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.format-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2.25rem; transition: box-shadow var(--t-slow); }
.format-card:hover { box-shadow: var(--shadow-lg); }
.format-card__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.format-card__head svg { color: var(--accent); flex-shrink: 0; }
.format-card__head h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); }

/* ── SERVIZI PAGE ───────────────────────────────────────────── */
.services-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-full-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.25rem;
  position: relative; transition: box-shadow var(--t-slow), transform var(--t-slow);
}
.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-full-card--accent { border-color: var(--accent); }
.service-full-card__top { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 1.5rem; }
.service-full-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.service-full-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.service-full-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; font-weight: 300; }

.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 860px; margin-inline: auto; }
.mode-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.25rem 2rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  transition: box-shadow var(--t), transform var(--t);
}
.mode-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mode-card svg { color: var(--accent); }
.mode-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.mode-card p { font-size: .86rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* ── CHI SONO PAGE ──────────────────────────────────────────── */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; padding-block: clamp(3rem, 6vw, 5rem); }
.about-text-col { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text-col .section-label { margin-bottom: .25rem; }
.about-text-col h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; color: var(--white); line-height: 1.08; margin-bottom: .5rem; }
.about-text-col h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.about-text-col p { color: rgba(255,255,255,.65); line-height: 1.8; font-size: .95rem; font-weight: 300; }
.about-text-col strong { color: var(--white); font-weight: 500; }

.about-values { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.value-card__num { font-family: var(--font-body); font-size: 1.6rem; font-weight: 300; font-style: normal; color: rgba(29,78,216,.3); margin-bottom: .6rem; letter-spacing: .02em; }
.value-card h4 { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: .45rem; }
.value-card p  { font-size: .84rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* Feature list (numbered) */
.feature-list { display: flex; flex-direction: column; gap: 1.75rem; }
.biz-feature { display: flex; gap: 1.5rem; align-items: flex-start; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.biz-feature:last-child { border: none; padding-bottom: 0; }
.biz-feature__num { font-family: var(--font-body); font-size: 1.5rem; font-weight: 300; font-style: normal; color: rgba(29,78,216,.25); line-height: 1; min-width: 2.6rem; padding-top: .15rem; }
.biz-feature h4 { font-size: .93rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.biz-feature p  { font-size: .84rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner, .about-teaser__grid, .biz-teaser__inner, .be-problem__grid, .about-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__photo { justify-content: center; }
  .biz-pill-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .be-what-grid { grid-template-columns: 1fr 1fr; }
  .be-process__steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .be-process__steps::before { display: none; }
  .be-sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .about-hero-grid { padding-top: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .photo-circle-wrap { margin-inline: auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .trust-sep { display: none; }
  .services-grid, .services-full-grid, .be-what-grid, .be-formats__grid, .modes-grid { grid-template-columns: 1fr; }
  .biz-pill-grid { grid-template-columns: 1fr; }
  .be-sectors__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .hero__actions, .page-hero__actions, .cta-banner__actions { flex-direction: column; }
  .hero__actions .btn, .page-hero__actions .btn { width: 100%; justify-content: center; }
  .be-process__steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .photo-circle { width: 260px; height: 260px; }
  .float-tag--tl { left: -2%; top: 5%; }
  .float-tag--tr { right: -2%; top: 10%; }
  .float-tag--bl { left: -2%; bottom: 10%; }
  .float-tag--br { right: -2%; bottom: 5%; }
  .about-approach-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .contact-hero-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

@media (max-width: 480px) {
  .be-sectors__grid { grid-template-columns: 1fr 1fr; }
  .photo-circle { width: 220px; height: 220px; }
}

/* ════════════════════════════════════════════════════════════
   HOME v2 — Hero, Marquee, Blobs, Float Tags, Srv Cards
   ════════════════════════════════════════════════════════════ */

/* ── Hero v2 ─────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: var(--top-offset);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-block: 4rem 3rem;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero__sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 40ch;
  font-weight: 300;
}
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero__scroll {
  display: flex;
  justify-content: center;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--navy-soft));
  animation: scrollLine 1.7s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  pointer-events: none;
  z-index: 0;
}
.blob--1 {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: var(--accent-mid);
  opacity: .45;
  top: -10%;
  right: -8%;
}
.blob--2 {
  width: clamp(150px, 20vw, 280px);
  height: clamp(150px, 20vw, 280px);
  background: var(--gold-light);
  opacity: .7;
  bottom: 10%;
  left: 2%;
}

/* ── Photo circle + float tags ───────────────────────────── */
.hero__photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.hero__photo-blob {
  position: absolute;
  width: 85%;
  height: 85%;
  background: var(--accent-mid);
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  z-index: 0;
}
.hero__photo-circle {
  width: clamp(260px, 35vw, 420px);
  height: clamp(260px, 35vw, 420px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-xl);
}
.hero__photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__photo-circle.no-photo {
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255,255,255,.15);
}

/* Float tags */
.float-tag {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .5rem 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: floatY 3s ease-in-out infinite;
}
.float-tag--tl { top: 12%; left: 0; animation-delay: 0s; }
.float-tag--tr { top: 18%; right: 0; animation-delay: .8s; }
.float-tag--br { bottom: 14%; right: 2%; animation-delay: 1.6s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Float badge */
.float-badge {
  position: absolute;
  bottom: 18%;
  left: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: .85rem 1.2rem;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatY 3s ease-in-out infinite;
  animation-delay: 2.4s;
}
.float-badge__num {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -.01em;
}
.float-badge__label { font-size: .7rem; color: rgba(255,255,255,.6); margin-top: .15rem; }

/* ── Marquee ──────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--navy);
  overflow: hidden;
  padding-block: 1rem;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.marquee-dot {
  color: var(--gold) !important;
  font-style: normal !important;
  font-size: .8rem !important;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ── Business teaser v2 ───────────────────────────────────── */
.biz-teaser .container { padding-block: 0; }
.biz-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.biz-teaser__sub {
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-block: 1rem 2rem;
  font-weight: 300;
  max-width: 44ch;
}
.biz-teaser__actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.biz-pills { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.biz-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  transition: background var(--t), border-color var(--t);
  cursor: default;
}
.biz-pill:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.biz-pill svg { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.biz-pill strong { display: block; font-size: .88rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
.biz-pill span { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.45; }

/* ── Service cards v2 ────────────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.srv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  cursor: default;
}
.srv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.srv-card--accent { border-color: var(--accent); }
.srv-card--accent .srv-card__icon { background: var(--accent); color: var(--white); }
.srv-card--accent .srv-card__link { color: var(--accent); }
.srv-card__num {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: normal;
  color: var(--border-mid);
  line-height: 1;
  margin-bottom: -.25rem;
  letter-spacing: .04em;
}
.srv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.srv-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}
.srv-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; font-weight: 300; flex: 1; }
.srv-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: .5rem;
  transition: gap var(--t), color var(--t);
  cursor: pointer;
}
.srv-card__link:hover { gap: .7rem; color: var(--accent); }

/* ── About teaser v2 ─────────────────────────────────────── */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}
.about-blob {
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--gold-light);
  border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
  z-index: 0;
}
.about-circle {
  width: clamp(240px, 32vw, 380px);
  height: clamp(240px, 32vw, 380px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-xl);
}
.about-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-circle.no-photo {
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,.1);
}
.about-stat-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.35rem;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about-stat-card .stat__num { color: var(--white); font-size: 2rem; }
.about-stat-card .stat__unit { color: var(--gold); }
.about-stat-card .stat__label { color: rgba(255,255,255,.5); font-size: .7rem; margin-top: .2rem; }

.about-teaser__text { display: flex; flex-direction: column; gap: .75rem; }
.about-teaser__text .section-label { margin-bottom: 0; }
.about-teaser__text .section-title { margin-bottom: .25rem; }
.about-teaser__text p { color: var(--text-mid); line-height: 1.75; font-weight: 300; }
.about-teaser__text strong { color: var(--navy); font-weight: 600; }

.about-mini-stats {
  display: flex;
  gap: 2rem;
  margin-block: .75rem;
}
.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mini-stat .stat__num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.mini-stat .stat__unit { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); }
.mini-stat .stat__label { font-size: .72rem; color: var(--text-light); margin-top: .2rem; }

/* ── CTA banner v2 ───────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
}
.cta-banner h2 i { font-style: italic; color: var(--gold); font-weight: 900; }
.cta-banner p { color: rgba(255,255,255,.6); font-weight: 300; }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.review-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.review-card__stars { font-size: 1.1rem; color: var(--gold); letter-spacing: .1em; }
.review-card__text {
  font-family: var(--font-body);
  font-size: .97rem;
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: .85rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
}
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: white; flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: .88rem; font-weight: 600; color: var(--white); }
.review-card__author span { font-size: .76rem; color: rgba(255,255,255,.4); font-weight: 300; }

/* ── Responsive v2 fixes ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub, .hero__actions { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__photo-wrap { order: -1; }
  .biz-teaser__grid { grid-template-columns: 1fr; gap: 3rem; }
  .biz-pills { grid-template-columns: 1fr 1fr; }
  .about-teaser__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { order: -1; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .float-tag--tl { left: -4%; top: 8%; font-size: .7rem; padding: .4rem .85rem; }
  .float-tag--tr { right: -4%; top: 14%; font-size: .7rem; padding: .4rem .85rem; }
  .float-tag--br { right: -2%; bottom: 10%; font-size: .7rem; padding: .4rem .85rem; }
  .float-badge { bottom: 14%; left: -2%; }
  .biz-pills { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }

  /* Reviews mobile: scroll orizzontale snap */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: .5rem;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid .review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* Dots recensioni */
  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.25rem;
  }
  .reviews-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border-mid);
    transition: background var(--t), transform var(--t);
  }
  .reviews-dot--active {
    background: var(--accent);
    transform: scale(1.3);
  }

  /* Business English card: collassa inner grid su mobile */
  .service-full-card [style*="grid-template-columns:1fr 1fr"],
  .service-full-card [style*="grid-template-columns: 1fr 1fr"] {
    display: block !important;
  }
  .service-full-card [style*="grid-template-columns:1fr 1fr"] > ul,
  .service-full-card [style*="grid-template-columns: 1fr 1fr"] > ul {
    margin-top: 1.5rem;
  }

  /* Stats row chi-sono: 3 colonne su mobile */
  .stats-row {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .stats-row .stat__num { font-size: 1.6rem; }
  .stats-row .stat__label { font-size: .65rem; }
}

/* Dots recensioni nascosti su desktop */
.reviews-dots { display: none; }
