/* WAGAWAGA Europe V2 Premium */

:root {
  --black: #05070a;
  --navy: #071827;
  --white: #ffffff;
  --soft: #f6f7f9;
  --text: #111827;
  --muted: #6b7280;
  --gold: #c99a3b;
  --gold-light: #ead08a;
  --line: #e5e7eb;
  --shadow: 0 30px 90px rgba(7, 24, 39, 0.16);
  --radius: 34px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 78px;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.logo span {
  font-size: 24px;
  letter-spacing: -0.5px;
}

.logo small {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-select {
  min-width: 38px; /* dimensione della casella */
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.16)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 24%, rgba(201, 154, 59, 0.26), transparent 27%),
    linear-gradient(to bottom, transparent, rgba(5, 7, 10, 0.86));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 92%);
  margin: 0 auto;
  padding-top: 78px;
}

.kicker {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2.1px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(58px, 11vw, 132px);
  line-height: 0.88;
  letter-spacing: -6px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-lead {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-sub {
  color: #d7dce2;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 34px;
}

.hero-buttons,
.buyer-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-light {
  color: var(--black);
  background: var(--white);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  color: var(--white);
}

.trust-bar div {
  padding: 28px 4vw;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar strong {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.trust-bar span {
  color: #c8d0d8;
}

.section {
  padding: 110px 0;
}

.section-grid {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.section-copy h2,
.center h2,
.buyers-panel h2 {
  color: var(--navy);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -2.6px;
  margin-bottom: 22px;
}

.section-copy p,
.center p,
.buyers-panel p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 18px;
}

.identity-card {
  margin-top: 30px;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.identity-card strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
}

.identity-card span {
  color: var(--gold);
  font-weight: 900;
}

.office-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.office-image {
  min-height: 440px;
  background:
    linear-gradient(145deg, rgba(7, 24, 39, 0.1), rgba(7, 24, 39, 0.48)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.office-caption {
  padding: 28px;
  display: grid;
  gap: 6px;
}

.office-caption span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.office-caption strong {
  color: var(--navy);
  font-size: 20px;
}


/* =========================
   BRAND PHILOSOPHY - Premium section
   ========================= */
.brand-premium {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(201, 154, 59, 0.22), transparent 28%),
    radial-gradient(circle at 15% 78%, rgba(234, 208, 138, 0.10), transparent 26%),
    linear-gradient(135deg, #05070a 0%, #071827 52%, #02070d 100%);
}

.brand-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  pointer-events: none;
}

.brand-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, 92%);
  margin: 0 auto;
}

.brand-hero-copy {
  max-width: 860px;
}

.brand-hero-copy h2 {
  max-width: 880px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -4px;
  margin-bottom: 28px;
}

.brand-hero-copy p {
  max-width: 760px;
  color: #c8d0d8;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}

.brand-signature {
  position: absolute;
  top: -26px;
  right: -18px;
  display: grid;
  place-items: center;
  width: clamp(190px, 24vw, 330px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(234, 208, 138, 0.32);
  background:
    radial-gradient(circle at 35% 32%, rgba(234, 208, 138, 0.24), transparent 35%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 60px rgba(234, 208, 138, 0.08), 0 36px 90px rgba(0,0,0,0.22);
}

.brand-signature span {
  position: absolute;
  color: rgba(255,255,255,0.05);
  font-size: clamp(58px, 8vw, 118px);
  font-weight: 900;
  letter-spacing: -7px;
}

.brand-signature strong {
  color: var(--gold-light);
  font-size: clamp(22px, 3vw, 42px);
  letter-spacing: 7px;
}

.brand-cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-card {
  min-height: 300px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.brand-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 208, 138, 0.42);
  background: rgba(255, 255, 255, 0.09);
}

.brand-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 18px;
  color: var(--gold-light);
  background: rgba(234, 208, 138, 0.11);
  border: 1px solid rgba(234, 208, 138, 0.22);
}

.brand-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-card h3 {
  color: var(--white);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.brand-card p {
  color: #b8c2cc;
  font-size: 15px;
  line-height: 1.65;
}

.brand-statement {
  margin-top: 74px;
  padding: clamp(36px, 5vw, 62px);
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  box-shadow: 0 34px 88px rgba(0,0,0,0.22);
}

.brand-statement span,
.brand-statement strong {
  display: block;
  font-size: clamp(38px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -3.5px;
}

.brand-statement span {
  color: var(--white);
  font-weight: 900;
}

.brand-statement strong {
  color: var(--gold-light);
  font-weight: 900;
}

.brand-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.brand-stats span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
}


@media (max-width: 1080px) {
  .brand-cards,
  .brand-stats {
    grid-template-columns: 1fr 1fr;
  }

  .brand-signature {
    opacity: 0.38;
  }
}

@media (max-width: 720px) {
  .brand-premium {
    padding: 88px 0;
  }

  .brand-hero-copy h2 {
    letter-spacing: -2.3px;
  }

  .brand-signature {
    position: relative;
    top: auto;
    right: auto;
    margin: 38px auto 0;
    opacity: 1;
  }

  .brand-cards,
  .brand-stats {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: auto;
  }

  .brand-statement span,
  .brand-statement strong {
    letter-spacing: -2px;
  }
}


.product-scene {
  min-height: 96vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.product-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.scene-champion::before {
  background:
    radial-gradient(circle at 60% 50%, rgba(232, 200, 120, 0.42), transparent 18%),
    linear-gradient(135deg, #3d0c1e, #071827 58%, #c99a3b);
}

.scene-brava::before {
  background:
    radial-gradient(circle at 62% 42%, rgba(255, 255, 255, 0.55), transparent 17%),
    linear-gradient(135deg, #1c314a, #d9e7ef 50%, #92716a);
}

.scene-aura::before {
  background:
    radial-gradient(circle at 62% 50%, rgba(201, 154, 59, 0.36), transparent 16%),
    linear-gradient(135deg, #05070a, #243244 60%, #d1b071);
}

.product-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 92%);
  margin: 0 auto;
  max-width: 580px;
  margin-left: max(4%, calc((100vw - 1180px) / 2));
}

.product-content small {
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}

.product-content h2 {
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.92;
  letter-spacing: -4px;
  margin: 18px 0 22px;
}

.product-content p{

  color:#fff;

  text-shadow:0 2px 10px rgba(0,0,0,.45);

}

.product-content a {
  color: var(--gold-light);
  font-weight: 900;
}

.buyers {
  background: var(--black);
}

.buyers-panel {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px);
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at right top, rgba(201, 154, 59, 0.22), transparent 25%),
    rgba(255, 255, 255, 0.06);
}

.buyers-panel h2 {
  max-width: 920px;
  color: var(--white);
}

.buyers-panel p {
  max-width: 760px;
  color: #c8d0d8;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 36px 0;
}

.buyer-grid div {
  min-height: 96px;
  padding: 20px;
  border-radius: 18px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.contact {
  background: var(--soft);
}

.contact-direct {
  margin-top: 26px;
  display: grid;
  gap: 4px;
}

.contact-direct strong {
  color: var(--navy);
  font-size: 22px;
}

.contact-direct a {
  color: var(--gold);
  font-weight: 900;
}

.contact-form {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 154, 59, 0.14);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 42px 4%;
  background: #030d16;
  color: #9aa7b4;
}

.footer strong {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section-grid,
  .pillars,
  .buyer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-content {
    margin-left: 4%;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: auto;
    min-height: 78px;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .logo small {
    display: none;
  }

  .header-actions {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .trust-bar,
  .section-grid,
  .pillars,
  .buyer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .contact-form {
    padding: 28px;
  }

  .scene-brava {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }
  
  .brava-visual {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
  }
  
  .brava-visual img {
    width: 100%;
    display: block;
    object-fit: contain;
  }
  
  .brava-feature {
    position: absolute;
    min-width: 110px;
    padding: 14px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
  }
  
  .brava-feature strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -1px;
    color: #111;
  }
  
  .brava-feature span {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.25;
    color: #555;
  }
  
  .feature-8h {
    top: 12%;
    left: 4%;
  }
  
  .feature-24h {
    top: 42%;
    right: 0;
  }
  
  .feature-1h {
    bottom: 12%;
    left: 16%;
  }
  
  @media (max-width: 900px) {
    .scene-brava {
      grid-template-columns: 1fr;
    }
  
    .brava-visual {
      margin: 30px auto 0;
    }
  
    .brava-feature strong {
      font-size: 28px;
    }
  
    .brava-feature span {
      font-size: 12px;
    }
  }filter:drop-shadow(0 25px 50px rgba(0,0,0,.15));
}

/* responsibo per cellulare  */

.brava-visual{
  position:relative;
  width:100%;
  max-width:620px;
  margin:auto;
  padding:60px 90px;      /* spazio per le etichette */
  box-sizing:border-box;
}

.brava-visual img{
  width:100%;
  display:block;
}

.brava-feature{
  position:absolute;
  width:170px;
  padding:16px 18px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  border-radius:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  text-align:center;
  z-index:5;
}

.brava-feature strong{
  display:block;
  font-size:48px;
  line-height:1;
  font-weight:700;
  color:#111;
}

.brava-feature span{
  display:block;
  margin-top:8px;
  font-size:14px;
  line-height:1.3;
  color:#666;
}

/* 8H */
.feature-8h{
  top:40px;
  left: 30px;
}

/* 24H */
.feature-24h{
  top:50%;
  right:-40px;
  transform:translateY(-50%);
}

/* 1H */
.feature-1h{
  bottom:35px;
  left:43%;
  transform:translateX(-50%);
}

.brava-feature::after{
  content:"";
  position:absolute;
  background:#d0d0d0;
}

/* linea 8H */
.feature-8h::after{
  width:55px;
  height:2px;
  right:-55px;
  top:50%;
}

/* linea 24H */
.feature-24h::after{
  width:55px;
  height:2px;
  left:-55px;
  top:50%;
}

/* linea 1H */
.feature-1h::after{
  width:2px;
  height:45px;
  top:-45px;
  left:50%;
}
/*
.feature-8h {
  top: 12%;
  left: 4%;
}

.feature-1h {
  top: 5%;
  right: -00px;
}

.feature-24h {
  bottom:40px;
  left: 2730%;
}
*/
@media (max-width: 900px) {
  .scene-brava {
    grid-template-columns: 1fr;
  }

  .brava-visual {
    margin: 30px auto 0;
  }

  .brava-feature strong {
    font-size: 28px;
  }

  .brava-feature span {
    font-size: 12px;
  }

/* FINE PAGINE PRODOTTI */

}

/* =========================================================
   WAGAWAGA Brava - Premium Apple-style product section
   Added to improve text readability and keep labels off product
   ========================================================= */

.scene-brava {
  color: var(--text);
}

.scene-brava::before {
  background:
    radial-gradient(circle at 68% 38%, rgba(255, 255, 255, 0.72), transparent 22%),
    linear-gradient(135deg, #f7f8fa 0%, #eef3f7 48%, #d6c3b7 100%);
}

.scene-brava .product-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 16px 36px rgba(7, 24, 39, 0.18);
  
}

.scene-brava .product-content small {
  color: var(--gold);
}

.scene-brava .product-content h2 {
  color: var(--navy);
}

.scene-brava .product-content p {
  color: #3f3f46;
  text-shadow: none;
  font-size: 18px;
  line-height: 1.8;
  max-width: 520px;
}

.scene-brava .product-content a {
  display: inline-flex;
  margin-top: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(7, 24, 39, 0.18);
}

.scene-brava .brava-visual {
  position: relative;
  width: min(620px, 92vw);
  margin: 0 auto;
  padding: 72px 110px 82px;
  box-sizing: border-box;
  transform: translateX(-10px); /* sposta immagine ed etichette  a dx o sx */
}

.scene-brava .brava-visual img{
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    margin: 0 auto;
}
/*
.scene-brava .brava-visual img {
  width: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 26px 52px rgba(7, 24, 39, 0.18));
}*/

.scene-brava .brava-feature {
  position: absolute;
  width: 170px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(7, 24, 39, 0.12);
  text-align: center;
  z-index: 5;
}

.scene-brava .brava-feature strong {
  display: block;
  color: #111827;
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.6px;
}

.scene-brava .brava-feature span {
  display: block;
  margin-top: 8px;
  color: #52525b;
  font-size: 14px;
  line-height: 1.3;
}

.scene-brava .feature-8h {
  top: 138px;
  left: 8px;
}

.scene-brava .feature-24h {
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
}

.scene-brava .feature-1h {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.scene-brava .brava-feature::after {
  content: "";
  position: absolute;
  background: rgba(7, 24, 39, 0.2);
}

.scene-brava .feature-8h::after {
  width: 48px;
  height: 2px;
  right: -48px;
  top: 50%;
}

.scene-brava .feature-24h::after {
  width: 48px;
  height: 2px;
  left: -48px;
  top: 50%;
}

.scene-brava .feature-1h::after {
  width: 2px;
  height: 42px;
  top: -42px;
  left: 50%;
}

@media (max-width: 900px) {
  .scene-brava {
    min-height: auto;
    padding: 100px 0 80px;
  }

  .scene-brava .product-content {
    width: min(92%, 580px);
    margin: 0 auto 28px;
    padding: 30px;
  }

  .scene-brava .product-content p {
    font-size: 16px;
  }

  .scene-brava .brava-visual {
    width: min(520px, 94vw);
    padding: 70px 56px 82px;
  }

  .scene-brava .brava-feature {
    width: 138px;
    padding: 13px 14px;
    border-radius: 20px;
  }

  .scene-brava .brava-feature strong {
    font-size: 32px;
  }

  .scene-brava .brava-feature span {
    font-size: 12px;
  }

  .scene-brava .feature-8h {
    top: 22px;
    left: 8px;
  }

  .scene-brava .feature-24h {
    right: 8px;
  }

  .scene-brava .feature-1h {
    bottom: 24px;
  }

  .scene-brava .brava-feature::after {
    display: none;
  }
}

/* =========================
   WAGA AURA - Premium section
   ========================= */
.aura-premium {
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 120px max(4%, calc((100vw - 1180px) / 2));
  color: var(--text);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #eef2f5 100%);
  overflow: hidden;
}

.aura-premium::before {
  background:
    radial-gradient(circle at 72% 48%, rgba(201, 154, 59, 0.16), transparent 22%),
    radial-gradient(circle at 18% 15%, rgba(7, 24, 39, 0.08), transparent 28%);
}

.aura-premium .product-content {
  width: auto;
  max-width: 560px;
  margin: 0;
  position: relative;
  z-index: 3;
}

.aura-premium .product-content small {
  color: var(--gold);
}

.aura-premium .product-content h2 {
  color: var(--navy);
  font-size: clamp(54px, 7vw, 96px);
  letter-spacing: -4px;
}

.aura-premium .product-content p {
  color: #3f4652;
  text-shadow: none;
  font-size: 18px;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 26px;
}

.aura-premium .product-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(7, 24, 39, 0.18);
}

.aura-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  padding: 72px 94px;
  box-sizing: border-box;
}

.aura-visual::before {
  content: "";
  position: absolute;
  inset: 7% 11%;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a2d30, #555b5d);
  box-shadow: 0 34px 90px rgba(7, 24, 39, 0.18);
  z-index: -1;
}

.aura-visual img {
  width: 100%;
  display: block;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 28px 52px rgba(7, 24, 39, 0.18));
}

.aura-feature {
  position: absolute;
  width: 168px;
  padding: 17px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.13);
  text-align: center;
  z-index: 6;
}

.aura-feature strong {
  display: block;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -1.4px;
  font-weight: 900;
}

.aura-feature span {
  display: block;
  margin-top: 8px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.35;
}

.aura-feature::after {
  content: "";
  position: absolute;
  background: var(--gold);
  opacity: 0.72;
}

.aura-feature-10h {
  top: 28px;
  left: 2px;
}

.aura-feature-10h::after {
  width: 84px;
  height: 2px;
  right: -84px;
  top: 50%;
}

.aura-feature-30h {
  top: 46%;
  right: -24px;
  transform: translateY(-50%);
}

.aura-feature-30h::after {
  width: 84px;
  height: 2px;
  left: -84px;
  top: 50%;
}

.aura-feature-15h {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.aura-feature-15h::after {
  width: 2px;
  height: 58px;
  top: -58px;
  left: 50%;
}

@media (max-width: 1080px) {
  .aura-premium {
    grid-template-columns: 1fr;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .aura-visual {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .aura-premium {
    padding: 78px 4%;
  }

  .aura-premium .product-content h2 {
    letter-spacing: -2px;
  }

  .aura-visual {
    max-width: 520px;
    padding: 60px 34px 92px;
  }

  .aura-feature {
    width: 124px;
    padding: 12px 12px;
    border-radius: 18px;
  }

  .aura-feature strong {
    font-size: 30px;
  }

  .aura-feature span {
    font-size: 12px;
  }

  .aura-feature-10h {
    top: 10px;
    left: 0;
  }

  .aura-feature-30h {
    right: 0;
  }

  .aura-feature-15h {
    bottom: 12px;
  }

  .aura-feature::after {
    display: none;
  }
}


/* =========================
   WAGA CHAMPION - Premium section
   ========================= */
.champion-premium {
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 120px max(4%, calc((100vw - 1180px) / 2));
  color: var(--text);
  background: linear-gradient(135deg, #fbfafc 0%, #ffffff 46%, #f1edf8 100%);
  overflow: hidden;
}

.champion-premium::before {
  background:
    radial-gradient(circle at 72% 48%, rgba(126, 87, 194, 0.18), transparent 24%),
    radial-gradient(circle at 18% 15%, rgba(201, 154, 59, 0.10), transparent 26%);
}

.champion-premium .product-content {
  width: auto;
  max-width: 560px;
  margin: 0;
  position: relative;
  z-index: 3;
}

.champion-premium .product-content small {
  color: #7e57c2;
}

.champion-premium .product-content h2 {
  color: var(--navy);
  font-size: clamp(54px, 7vw, 96px);
  letter-spacing: -4px;
}

.champion-premium .product-content p {
  color: #3f4652;
  text-shadow: none;
  font-size: 18px;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 26px;
}

.champion-premium .product-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(7, 24, 39, 0.18);
}

.champion-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  padding: 72px 94px;
  box-sizing: border-box;
}

.champion-visual::before {
  content: "";
  position: absolute;
  inset: 7% 11%;
  border-radius: 50%;
  background: linear-gradient(145deg, #efeafe, #dcd5f4);
  box-shadow: 0 34px 90px rgba(7, 24, 39, 0.16);
  z-index: -1;
}

.champion-visual img {
  width: 100%;
  display: block;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 28px 52px rgba(7, 24, 39, 0.18));
}

.champion-feature {
  position: absolute;
  width: 168px;
  padding: 17px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(7, 24, 39, 0.13);
  text-align: center;
  z-index: 6;
}

.champion-feature strong {
  display: block;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -1.4px;
  font-weight: 900;
}

.champion-feature span {
  display: block;
  margin-top: 8px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.35;
}

.champion-feature::after {
  content: "";
  position: absolute;
  background: #7e57c2;
  opacity: 0.72;
}

.champion-feature-8h {
  top: 28px;
  left: 2px;
}

.champion-feature-8h::after {
  width: 84px;
  height: 2px;
  right: -84px;
  top: 50%;
}

.champion-feature-1h {
  bottom: 20px;
  right: 18px;
}

.champion-feature-1h::after {
  width: 2px;
  height: 58px;
  top: -58px;
  left: 50%;
}

@media (max-width: 1080px) {
  .champion-premium {
    grid-template-columns: 1fr;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .champion-visual {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .champion-premium {
    padding: 78px 4%;
  }

  .champion-premium .product-content h2 {
    letter-spacing: -2px;
  }

  .champion-visual {
    max-width: 520px;
    padding: 60px 34px 92px;
  }

  .champion-feature {
    width: 124px;
    padding: 12px 12px;
    border-radius: 18px;
  }

  .champion-feature strong {
    font-size: 30px;
  }

  .champion-feature span {
    font-size: 12px;
  }

  .champion-feature-8h {
    top: 10px;
    left: 0;
  }

  .champion-feature-1h {
    right: 0;
    bottom: 12px;
  }

  .champion-feature::after {
    display: none;
  }
}

/* =========================================================
   PREMIUM UPGRADES - Brand scene, micro-interactions, footer
   ========================================================= */

.brand-premium {
  isolation: isolate;
}

.brand-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(120deg, transparent 0%, rgba(234, 208, 138, 0.06) 48%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.brand-orbit {
  position: absolute;
  top: 48px;
  right: 0;
  width: min(520px, 42vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  opacity: 0.72;
  pointer-events: none;
  z-index: -1;
}

.brand-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(234, 208, 138, 0.16);
  animation: brandOrbit 14s linear infinite;
}

.brand-orbit span:nth-child(2) {
  inset: 12%;
  animation-duration: 18s;
  animation-direction: reverse;
}

.brand-orbit span:nth-child(3) {
  inset: 24%;
  border-color: rgba(255, 255, 255, 0.12);
  animation-duration: 22s;
}

.brand-orbit span::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(234, 208, 138, 0.75);
}

.brand-statement p {
  max-width: 760px;
  margin-top: 26px;
  color: #c8d0d8;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.55;
}

.brand-card,
.buyer-grid div,
.identity-card,
.office-card,
.contact-form {
  will-change: transform;
}

.brand-card:hover,
.buyer-grid div:hover,
.identity-card:hover,
.office-card:hover,
.contact-form:hover {
  transform: translateY(-8px);
}

.buyer-grid div,
.identity-card,
.office-card,
.contact-form {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.product-content a,
.header-cta,
.btn,
.footer-links a,
.footer-contact a {
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.product-content a:hover,
.header-cta:hover,
.footer-contact a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(7, 24, 39, 0.22);
}

.champion-visual img,
.brava-visual img,
.aura-visual img {
  transition: transform 0.55s ease, filter 0.55s ease;
  will-change: transform;
}

.champion-visual:hover img,
.brava-visual:hover img,
.aura-visual:hover img {
  transform: scale(1.035);
}

.champion-feature,
.brava-feature,
.aura-feature {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.champion-feature:hover,
.brava-feature:hover,
.aura-feature:hover {
  box-shadow: 0 22px 56px rgba(7, 24, 39, 0.18);
}

@keyframes brandOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.footer-premium {
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(201, 154, 59, 0.20), transparent 24%),
    linear-gradient(135deg, #02070d 0%, #071827 70%, #030d16 100%);
  color: #9aa7b4;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.45fr 0.95fr 0.8fr;
  gap: 42px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -1.6px;
}

.footer-brand strong span {
  color: var(--gold-light);
  letter-spacing: 3px;
  font-size: 0.62em;
}

.footer-brand p {
  max-width: 620px;
  margin: 18px 0 12px;
  color: var(--white);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
  font-weight: 800;
}

.footer-brand small {
  color: #9aa7b4;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #c8d0d8;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(6px);
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.footer-contact span {
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.footer-contact a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 900;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .brand-orbit {
    right: -120px;
    width: 420px;
    opacity: 0.38;
  }
}

@media (max-width: 720px) {
  .brand-orbit {
    display: none;
  }

  .footer-inner {
    padding: 42px 0;
    gap: 28px;
  }
}
