/* ─── VARIABLES ─── */
:root {
  --navy:   #0d3349;
  --green:  #0d6e4e;
  --green2: #0a5c40;
  --gold:   #c5a059;
  --gold2:  #b08840;
  --light:  #f4f7f5;
  --white:  #ffffff;
  --gray:   #6b7280;
  --border: #e2e8f0;
  --text:   #1e293b;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(13,110,78,.45); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(13,110,78,.75); }

/* ─── RESET ─── */
* { box-sizing: border-box; margin: 0; padding: 0; scrollbar-width: thin; scrollbar-color: rgba(13,110,78,.45) transparent; }
html { scroll-behavior: auto; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ─── INTRO ─── */
#intro { position: fixed; inset: 0; z-index: 9999; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; animation: introFade 0.7s ease 4.3s forwards; }
@keyframes introFade { to { opacity: 0; pointer-events: none; } }
.intro-line-top, .intro-line-bot { width: 0; height: 1px; background: var(--gold); }
.intro-line-top { animation: introLine 0.7s ease 0.2s forwards; }
.intro-line-bot { animation: introLine 0.7s ease 2.4s forwards; }
@keyframes introLine { to { width: 240px; } }
.intro-logo { font-family: 'Cinzel', serif; font-size: clamp(1.3rem, 3.5vw, 2.2rem); font-weight: 700; color: var(--white); letter-spacing: 7px; text-shadow: 0 0 40px rgba(197,160,89,.35); opacity: 0; animation: introBlur 0.9s cubic-bezier(.16,1,.3,1) 0.8s forwards; }
.intro-sub { font-size: clamp(0.5rem, 1.2vw, 0.68rem); font-weight: 400; color: var(--gold); letter-spacing: 4px; text-transform: uppercase; opacity: 0; animation: introFadeIn 0.7s ease 1.6s forwards; }
.intro-progress { width: 240px; height: 1px; background: rgba(197,160,89,.15); margin: 2px auto; overflow: hidden; }
.intro-progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: introProgress 1.8s cubic-bezier(.4,0,.2,1) 2.2s forwards; }
@keyframes introBlur { from { opacity: 0; transform: translateY(14px); filter: blur(10px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes introFadeIn { to { opacity: 0.85; } }
@keyframes introProgress { to { width: 100%; } }

/* ─── NAVBAR ─── */
nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 0 5%; height: 68px; display: flex; align-items: center; justify-content: space-between; transition: box-shadow .3s; }
.nav-brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-name { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); letter-spacing: 3px; }
.nav-brand-name span { color: var(--green); }
.nav-brand-sub { font-size: 0.55rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray); font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray); font-size: 0.875rem; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--navy); }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 50%; right: 50%; height: 1.5px; background: var(--navy); transition: left .3s cubic-bezier(.25,1,.5,1), right .3s cubic-bezier(.25,1,.5,1); }
.nav-links a:hover::after { left: 0; right: 0; }
.lang-switcher { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; font-size: 0.75rem; font-weight: 700; }
.lang-btn { padding: 4px 11px; cursor: pointer; border: none; background: transparent; color: var(--gray); font-size: 0.75rem; font-weight: 700; transition: all .2s; letter-spacing: 0.5px; }
.lang-btn.active { background: var(--navy); color: var(--white); }
.lang-btn:hover:not(.active) { background: var(--light); color: var(--navy); }
.lang-sep { width: 1px; height: 18px; background: var(--border); }
.nav-cta { background: var(--green); color: var(--white); padding: 0.5rem 1.25rem; border-radius: 6px; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: background .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--green2); }

/* ─── HERO ─── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 80px 5%; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #f0f7f4 0%, #e8f4ef 40%, #eef6f3 100%); z-index: 0; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); animation: orbFloat 8s ease-in-out infinite; z-index: 0; }
.orb-1 { width: 400px; height: 400px; background: rgba(13,110,78,.12); top: -100px; right: -100px; }
.orb-2 { width: 300px; height: 300px; background: rgba(197,160,89,.08); bottom: -50px; left: 10%; animation-delay: -3s; }
.orb-3 { width: 200px; height: 200px; background: rgba(13,51,73,.06); top: 30%; right: 20%; animation-delay: -5s; }
@keyframes orbFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 5%; width: 100%; max-width: 1200px; margin: 0 auto; }
.hero-content { flex: 1; max-width: 640px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(13,110,78,.1); color: var(--green); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 1.5rem; border: 1px solid rgba(13,110,78,.2); opacity: 0; transform: translateY(10px); animation: fadeUp 0.6s ease 5.0s forwards; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }
@keyframes heroBlur { from { opacity: 0; transform: translateY(36px); filter: blur(10px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.hero-title { font-family: 'Cinzel', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; color: var(--navy); letter-spacing: 1px; line-height: 1.15; margin-bottom: 1.25rem; opacity: 0; animation: heroBlur 1.1s cubic-bezier(.16,1,.3,1) 5.1s both; }
.hero-title .highlight { color: var(--green); }
.hero-title .cursor { display: inline-block; width: 3px; height: .85em; background: var(--green); margin-left: 4px; vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
.hero-tagline { font-size: .82rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; opacity: 0; animation: fadeUp 0.6s ease 5.4s forwards; }
.hero-sub { font-size: 1.05rem; color: var(--gray); margin-bottom: 2.2rem; max-width: 520px; line-height: 1.75; opacity: 0; animation: heroBlur 0.9s cubic-bezier(.16,1,.3,1) 5.6s both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.6s ease 5.8s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-visual { flex: 0 0 360px; display: flex; flex-direction: column; gap: 12px; opacity: 0; animation: fadeUp 0.8s ease 6.0s forwards; }
.stat-card { background: rgba(255,255,255,.85); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.9); border-radius: 14px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; box-shadow: 0 4px 20px rgba(13,51,73,.08); transition: box-shadow .3s; }
.stat-icon { width: 44px; height: 44px; background: rgba(13,110,78,.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.stat-icon svg { width: 22px; height: 22px; }
.stat-value { font-size: 1.5rem; font-weight: 700; color: var(--navy); font-family: 'Cinzel', serif; }
.stat-label { font-size: .76rem; color: var(--gray); margin-top: 1px; }

/* ─── BUTTONS ─── */
.btn-primary { background: var(--green); color: var(--white); padding: .8rem 1.8rem; border-radius: 8px; font-size: .95rem; font-weight: 600; text-decoration: none; transition: background .2s, box-shadow .2s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 14px rgba(13,110,78,.25); }
.btn-primary:hover { background: var(--green2); box-shadow: 0 8px 20px rgba(13,110,78,.3); }
.btn-secondary { background: transparent; color: var(--navy); padding: .8rem 1.8rem; border-radius: 8px; font-size: .95rem; font-weight: 600; text-decoration: none; border: 1.5px solid rgba(13,51,73,.3); transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--white); padding: .9rem 2.2rem; border-radius: 8px; font-size: .95rem; font-weight: 700; text-decoration: none; transition: background .2s, box-shadow .2s; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 4px 18px rgba(197,160,89,.35); }
.btn-gold:hover { background: var(--gold2); }
.btn-outline-white { background: transparent; color: var(--white); padding: .9rem 2.2rem; border-radius: 8px; font-size: .95rem; font-weight: 600; text-decoration: none; border: 1.5px solid rgba(255,255,255,.35); transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-magnetic:hover { transform: none; }

/* ─── CARD GLOW + TILT (Phase 1) ─── */
.card-glow-el { position: absolute; border-radius: 50%; width: 320px; height: 320px; pointer-events: none; background: radial-gradient(circle, rgba(13,110,78,.13) 0%, transparent 65%); transform: translate(-50%,-50%); transition: opacity .3s; opacity: 0; left: -400px; top: -400px; z-index: 0; }
.tilt-card:hover .card-glow-el { opacity: 1; }
.tilt-card:hover { transform: none !important; }
.stat-card.tilt-card:hover { box-shadow: 0 16px 40px rgba(13,51,73,.18) !important; }
.prodotto-card.tilt-card:hover { box-shadow: 0 20px 48px rgba(13,51,73,.14) !important; }
.perche-card.tilt-card:hover { box-shadow: 0 20px 48px rgba(13,51,73,.12) !important; }
.test-card.tilt-card:hover { box-shadow: 0 16px 36px rgba(13,51,73,.12) !important; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(44px); transition: opacity .85s cubic-bezier(0.25,1,0.5,1), transform .85s cubic-bezier(0.25,1,0.5,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── SECTIONS ─── */
section { padding: 90px 5%; }
.section-tag { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--green); background: rgba(13,110,78,.08); padding: 4px 14px; border-radius: 20px; margin-bottom: 1rem; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); font-weight: 700; margin-bottom: 1rem; letter-spacing: 1px; }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 580px; line-height: 1.75; }
.section-header { margin-bottom: 3.5rem; }

/* ─── PRODOTTI ─── */
#prodotti { background: var(--white); }
.prodotti-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.prodotto-card { border: 1.5px solid var(--border); border-radius: 16px; padding: 28px 22px; transition: box-shadow .3s; position: relative; background: var(--white); overflow: hidden; }
.prodotto-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.prodotto-card:hover::before { transform: scaleX(1); }
.prodotto-card.live { border-color: rgba(13,110,78,.35); background: linear-gradient(160deg, #f5fdf8, var(--white)); }
.prodotto-badge { position: absolute; top: 16px; right: 16px; background: var(--green); color: var(--white); font-size: .62rem; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; }
.prodotto-badge.soon { background: #e8edf2; color: #8a9ab0; }
.prodotto-icon { width: 50px; height: 50px; background: rgba(13,51,73,.05); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--navy); transition: background .3s, color .3s; }
.prodotto-card.live .prodotto-icon { background: rgba(13,110,78,.09); color: var(--green); }
.prodotto-card:hover .prodotto-icon { background: rgba(13,110,78,.12); color: var(--green); }
.prodotto-icon svg { width: 24px; height: 24px; }
.prodotto-name { font-family: 'Cinzel', serif; font-size: .82rem; font-weight: 700; color: var(--navy); letter-spacing: 2px; margin-bottom: 5px; }
.prodotto-sector { font-size: .74rem; color: var(--gray); font-weight: 500; margin-bottom: 12px; }
.prodotto-desc { font-size: .81rem; color: var(--gray); line-height: 1.65; }
.prodotto-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 18px; font-size: .82rem; font-weight: 600; color: var(--green); text-decoration: none; transition: gap .2s; }
.prodotto-link:hover { gap: 9px; }
.prodotto-link svg { width: 14px; height: 14px; }

@media (min-width: 1201px) {
  .prodotti-grid { grid-template-columns: repeat(5, 1fr); max-width: 1400px; margin: 0 auto; }
}
@media (min-width: 901px) and (max-width: 1200px) {
  .prodotti-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── HERO CIRCUIT TRACES (SVGArtista stroke-dashoffset technique) ─── */
.hero-ckt { position: absolute; z-index: 0; pointer-events: none; overflow: visible; }
.hero-ckt-tr { top: 0; right: 0; width: 280px; height: 200px; }
.hero-ckt-bl { bottom: 0; left: 0; width: 280px; height: 200px; }
.hero-ckt path { fill: none; stroke: rgba(13,110,78,.24); stroke-width: 1.5; stroke-linecap: square; }
.hero-ckt .ckt-dot { fill: rgba(13,110,78,.38); opacity: 0; }
@keyframes cktDraw { to { stroke-dashoffset: 0; } }
@keyframes cktDot  { to { opacity: 1; } }

/* ─── HERO SCAN LINE ─── */
.hero-scan { position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(13,110,78,.55) 20%, rgba(197,160,89,.45) 50%, rgba(13,110,78,.55) 80%, transparent 100%); opacity: 0; z-index: 1; pointer-events: none; animation: heroScan 2.4s cubic-bezier(.4,0,.2,1) 5.2s forwards; }
@keyframes heroScan { 0% { opacity: 0; top: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { opacity: 0; top: 100%; } }

/* ─── PERCHÉ ─── */
#perche { background: var(--light); position: relative; overflow: hidden; }
#perche::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(13,110,78,.04); }

/* ─── PERCHÉ NEURAL NETWORK ─── */
.perche-network { position: absolute; right: 0; bottom: 0; width: 38%; max-width: 340px; opacity: .065; pointer-events: none; z-index: 0; animation: nnFloat 9s ease-in-out infinite; }
.perche-network circle { fill: none; stroke: var(--green); stroke-width: 1.5; }
.perche-network line { stroke: rgba(13,110,78,.7); stroke-width: .8; }
@keyframes nnFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(.5deg); } }

/* ─── PERCHÉ ICON HOVER ─── */
.perche-icon svg { transition: transform .5s cubic-bezier(.25,1,.5,1); }
.perche-card:hover .perche-icon { background: rgba(13,110,78,.14); }
.perche-card:hover .perche-icon svg { transform: scale(1.18) rotate(10deg); }
.perche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.perche-card { background: var(--white); border-radius: 16px; padding: 36px 28px; border: 1px solid var(--border); transition: box-shadow .3s; position: relative; overflow: hidden; }
.perche-icon { color: var(--green); margin-bottom: 20px; }
.perche-icon svg { width: 36px; height: 36px; }
.perche-title { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: .5px; }
.perche-desc { font-size: .875rem; color: var(--gray); line-height: 1.75; }

/* ─── TESTIMONIAL ─── */
#testimonial { background: var(--light); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card { background: var(--white); border-radius: 16px; padding: 28px 24px; border: 1px solid var(--border); position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 14px; }
.test-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.test-quote { font-size: .875rem; color: var(--gray); line-height: 1.75; font-style: italic; flex: 1; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 700; color: var(--white); }
.test-name { font-size: .82rem; font-weight: 700; color: var(--navy); }
.test-role { font-size: .73rem; color: var(--gray); margin-top: 2px; }

/* ─── COME ─── */
#come { background: var(--white); }
.steps-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps-wrapper::before { display: none; }
.step-item { text-align: center; padding: 0 16px; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--green); color: var(--white); font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; box-shadow: 0 6px 20px rgba(13,110,78,.3); transition: transform .4s cubic-bezier(.25,1,.5,1), box-shadow .4s; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: .84rem; color: var(--gray); line-height: 1.7; }

/* ─── CTA ─── */
#cta { background: #071520; text-align: center; padding: 110px 5%; position: relative; overflow: hidden; isolation: isolate; }
#cta::before { content: ''; position: absolute; inset: -55% -30%; background: radial-gradient(ellipse 62% 48% at 18% 58%, rgba(13,110,78,.42) 0%, transparent 58%), radial-gradient(ellipse 50% 62% at 78% 24%, rgba(197,160,89,.30) 0%, transparent 58%), radial-gradient(ellipse 44% 42% at 55% 85%, rgba(8,16,36,.68) 0%, transparent 55%), radial-gradient(ellipse 38% 36% at 42% 18%, rgba(13,51,73,.50) 0%, transparent 58%); animation: auroraShift 16s ease-in-out infinite alternate; z-index: -1; pointer-events: none; }
@keyframes auroraShift { 0% { transform: translate(0%,0%) scale(1) rotate(0deg); } 25% { transform: translate(5%,-6%) scale(1.08) rotate(2deg); } 55% { transform: translate(-5%,7%) scale(.94) rotate(-2deg); } 80% { transform: translate(3%,-3%) scale(1.05) rotate(1deg); } 100% { transform: translate(-2%,4%) scale(.97) rotate(-1deg); } }
#cta .section-title { color: var(--white); position: relative; }
#cta .section-sub { color: rgba(255,255,255,.65); margin: 0 auto 2.8rem; position: relative; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─── CTA ROTATING BORDER (Slide 12 pill style) ─── */
@property --cta-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.cta-actions { justify-content: center; }
.cta-actions .btn-gold {
  --cta-angle: 0deg;
  padding: 1.15rem 3.4rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .6px;
  border-radius: 60px;
  border: 3px solid transparent;
  background:
    linear-gradient(135deg, #b07830 0%, var(--gold) 50%, #e8c870 100%) padding-box,
    conic-gradient(from var(--cta-angle), var(--gold2), #fff4b0, #e8c870, var(--green), #e8c870, #fff4b0, var(--gold2)) border-box;
  box-shadow:
    0 0 40px rgba(197,160,89,.55),
    0 0 80px rgba(197,160,89,.18),
    0 8px 28px rgba(197,160,89,.35),
    inset 0 1px 0 rgba(255,255,255,.15);
  animation: ctaRotate 2.8s linear infinite;
  transition: transform .25s cubic-bezier(.25,1,.5,1), box-shadow .3s;
}
.cta-actions .btn-gold:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 60px rgba(197,160,89,.70),
    0 0 110px rgba(197,160,89,.22),
    0 12px 36px rgba(197,160,89,.45),
    inset 0 1px 0 rgba(255,255,255,.2);
  background:
    linear-gradient(135deg, var(--gold) 0%, #e8c870 60%, #ffe89c 100%) padding-box,
    conic-gradient(from var(--cta-angle), var(--gold2), #fff4b0, #e8c870, var(--green), #e8c870, #fff4b0, var(--gold2)) border-box;
}
@keyframes ctaRotate { to { --cta-angle: 360deg; } }

/* ─── FOOTER ─── */
footer { background: #091e2b; color: rgba(255,255,255,.5); padding: 40px 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-brand { text-decoration: none; }
.footer-brand-name { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: 3px; }
.footer-brand-sub { font-size: .55rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-top: 2px; }
.footer-info { font-size: .76rem; line-height: 1.9; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .8rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .perche-grid, .steps-wrapper, .test-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 768px) {
  .intro-logo { font-size: 1rem; letter-spacing: 3px; }
  .intro-sub { font-size: 0.58rem; letter-spacing: 2px; }
  @keyframes introLine { to { width: 180px; } }
  .intro-progress { width: 180px; }
  nav { height: auto; padding: 0.75rem 4%; }
  .nav-brand-name { font-size: 0.82rem; letter-spacing: 1.5px; white-space: nowrap; }
  .nav-brand-sub { display: none; }
  .nav-right { gap: 0.6rem; }
  #hero { padding: 4.5rem 5% 3rem; align-items: flex-start; min-height: 100svh; }
  .hero-inner { align-items: flex-start; }
  .hero-title { font-size: clamp(1.75rem, 7vw, 2.2rem); }
  .hero-tagline { font-size: 0.68rem; letter-spacing: 1.5px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.6rem; }
  .hero-ckt-tr, .hero-ckt-bl { width: 160px; height: 120px; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-magnetic, .tilt-card { transition: none !important; transform: none !important; }
}
