/* ============================================
   DIGILO — style.css
   Variables, reset, layout, composants
   ============================================ */

/* ---- Variables ---- */
:root {
  --violet:        #6B21FF;
  --violet-mid:    #7C3AED;
  --violet-light:  #A78BFA;
  --accent:        #C8FF00;
  --accent-dark:   #9CC900;
  --dark:          #09070F;
  --dark-2:        #110E1C;
  --dark-3:        #1A1630;
  --border:        rgba(255 255 255 / 0.07);
  --border-hover:  rgba(107 33 255 / 0.35);
  --text:          #F5F3FF;
  --text-mid:      #C4BBE8;
  --text-muted:    #7B6FA8;
  --radius-sm:     10px;
  --radius-md:     18px;
  --radius-lg:     28px;
  --radius-xl:     40px;
  --transition:    0.3s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-card:   0 8px 32px rgba(0 0 0 / 0.35);
  --shadow-violet: 0 0 40px rgba(107 33 255 / 0.25);
}

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

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* ---- Section gap ---- */
.section-gap { padding: 100px 0; }

/* ---- Section header ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--violet-light);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--violet-light);
  display: block;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.text-accent { color: var(--accent); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}
.section-header { margin-bottom: 60px; }

/* ============================================
   CURSOR
   ============================================ */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor.is-hover {
  width: 16px; height: 16px;
  background: var(--violet-light);
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(107 33 255 / 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.cursor-ring.is-hover {
  width: 52px; height: 52px;
  border-color: var(--accent);
  opacity: 0.6;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(9 7 15 / 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 5vw;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  width: 34px; height: 34px;
  border-radius: 8px;
  object-fit: cover;
}
.nav-logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.btn-nav {
  display: inline-flex; align-items: center;
  background: var(--violet);
  color: #fff;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--violet-mid); transform: translateY(-1px); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 5vw 24px;
  gap: 4px;
  background: rgba(9 7 15 / 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--text); }
.nav-mobile-cta {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
  border-bottom: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 140px 5vw 100px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: -1;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(107,33,255,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
  bottom: 0; left: -80px;
}
.hero-grain {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: -1;
}

/* Hero content */
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(107 33 255 / 0.35);
  background: rgba(107 33 255 / 0.1);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.3); }
}
.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}
.hero-title-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-desc strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: #0D0A1A;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  border: none;
  cursor: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(200 255 0 / 0.35);
}
.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 15px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255 255 255 / 0.15); }
.hero-proof {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.hero-proof strong { color: var(--text); }
.proof-avatars { display: flex; }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}
.proof-avatars .avatar:first-child { margin-left: 0; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-main {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-card);
}
.hcard-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hcard-logo { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.hcard-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; }
.hcard-sub { font-size: 0.78rem; color: var(--text-muted); }
.hcard-metrics {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; margin-bottom: 24px;
}
.hcard-metric {
  background: var(--dark-3);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.metric-val {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.metric-label { font-size: 0.68rem; color: var(--text-muted); margin-top: 4px; display: block; }
.hcard-bar-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.hcard-bar-label { font-size: 0.78rem; color: var(--text-muted); flex-shrink: 0; }
.hcard-bar {
  flex: 1; height: 6px;
  background: var(--dark-3);
  border-radius: 10px;
  overflow: hidden;
}
.hcard-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--violet), var(--accent));
  border-radius: 10px;
  transition: width 1.4s cubic-bezier(0.23,1,0.32,1) 0.8s;
}
.hcard-bar-fill.animated { width: var(--w); }
.hcard-bar-pct { font-size: 0.78rem; font-weight: 600; color: var(--accent); flex-shrink: 0; }
.hcard-tag {
  display: inline-flex;
  background: rgba(200 255 0 / 0.12);
  color: var(--accent);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
}
.hero-card-float {
  position: absolute;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 0.82rem;
  display: flex; flex-direction: column; gap: 3px;
  box-shadow: var(--shadow-card);
}
.hero-card-float strong { font-weight: 600; color: var(--text); }
.float-card-1 { left: -20px; bottom: 60px; animation: float 4s ease-in-out infinite; }
.float-card-2 { right: -10px; top: 40px; animation: float 4s ease-in-out infinite 1.5s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(107 33 255 / 0.05);
  padding: 14px 0;
}
.marquee-track { display: flex; width: max-content; animation: scroll 28s linear infinite; }
.marquee-inner { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.marquee-inner span {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-inner .sep { color: var(--violet); font-size: 0.9rem; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   ABOUT
   ============================================ */
.about { background: linear-gradient(180deg, transparent 0%, rgba(107 33 255 / 0.04) 100%); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-text strong { color: var(--text); font-weight: 500; }
.value-cards { display: flex; flex-direction: column; gap: 12px; }
.value-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255 255 255 / 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--border-hover);
  background: rgba(107 33 255 / 0.06);
  transform: translateX(5px);
}
.vc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(107 33 255 / 0.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.vc-body strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.vc-body span { font-size: 0.83rem; color: var(--text-muted); }

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 16px;
}
.service-card {
  background: rgba(255 255 255 / 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: visible;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: scale(1.04);
  box-shadow: var(--shadow-violet);
}
.service-card--featured {
  background: var(--violet);
  border-color: var(--violet);
}
.service-card--featured:hover { border-color: var(--violet-mid); }
.sc-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: #0D0A1A;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
}
.sc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.sc-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--violet-light); }
.service-card--featured .sc-num { color: rgba(255 255 255 / 0.6); }
.sc-icon { font-size: 2rem; }
.sc-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.4rem;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.sc-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.service-card--featured .sc-desc { color: rgba(255 255 255 / 0.75); }
.sc-list { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.sc-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.86rem; color: var(--text-muted);
}
.service-card--featured .sc-list li { color: rgba(255 255 255 / 0.85); }
.sc-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 5px; }
.sc-footer { border-top: 1px solid var(--border); padding-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.service-card--featured .sc-footer { border-color: rgba(255 255 255 / 0.15); }
.sc-price strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.6rem; letter-spacing: -0.03em;
}
.sc-price strong em { font-style: normal; font-size: 1rem; font-weight: 400; opacity: 0.7; }
.sc-price span { font-size: 0.78rem; color: var(--text-muted); }
.service-card--featured .sc-price span { color: rgba(255 255 255 / 0.55); }
.sc-cta {
  display: inline-flex; align-items: center;
  font-size: 0.9rem; font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s, opacity 0.2s;
  gap: 6px;
}
.sc-cta:hover { gap: 12px; }
.sc-cta--dark { color: var(--accent); }

/* Guarantee banner */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(200 255 0 / 0.08), rgba(107 33 255 / 0.1));
  border: 1px solid rgba(200 255 0 / 0.25);
  border-radius: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-icon { font-size: 2.2rem; flex-shrink: 0; }
.guarantee-text { display: flex; flex-direction: column; gap: 4px; }
.guarantee-text strong { font-size: 1.05rem; color: var(--accent); }
.guarantee-text span { font-size: 0.9rem; color: var(--text-mid); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how { background: rgba(107 33 255 / 0.04); }
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.how-right { padding-top: 8px; }
.steps-list { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; }
.step:hover { transform: translateX(4px); }
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 2rem;
  color: rgba(107 33 255 / 0.3);
  line-height: 1; flex-shrink: 0;
  transition: color 0.2s;
}
.step:hover .step-num { color: var(--violet-light); }
.step-body h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.step-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.testi-card {
  background: rgba(255 255 255 / 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testi-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.testi-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--text-mid); font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-top: 20px; margin-bottom: 36px; }
.contact-infos { display: flex; flex-direction: column; gap: 12px; }
.contact-info-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255 255 255 / 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
a.contact-info-item:hover { border-color: var(--border-hover); transform: translateX(4px); }

.ci-insta { color: var(--text-muted); transition: color .3s, filter .3s; }
.contact-info-item--insta:hover { border-color: transparent; background: rgba(255 255 255 / 0.04); }
.contact-info-item--insta:hover .ci-insta {
  color: #E1306C;
  filter: drop-shadow(0 0 8px #E1306C) drop-shadow(0 0 18px #F77737);
}
.ci-icon { font-size: 1.2rem; flex-shrink: 0; width: 36px; text-align: center; }
.contact-info-item span { font-size: 0.75rem; color: var(--text-muted); display: block; }
.contact-info-item strong { font-size: 0.9rem; display: block; }

/* ---- Pay online ---- */
.pay-online-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pay-online-label { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.btn-pay {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--accent);
  color: #0D0A1A;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  width: fit-content;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(200 255 0 / 0.25);
}
.btn-pay:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200 255 0 / 0.35); }
.pay-online-note { font-size: 0.78rem; color: var(--text-muted); }

/* ---- Form ---- */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255 255 255 / 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B6FA8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  background: rgba(107 33 255 / 0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(123 111 168 / 0.6); }
.form-group select option { background: #1A1630; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--violet);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
  margin-top: 4px;
  width: 100%;
}
.btn-submit:hover { background: var(--violet-mid); transform: translateY(-2px); box-shadow: var(--shadow-violet); }
.btn-submit:disabled { opacity: 0.6; pointer-events: none; }
.spinner { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-notice {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--text-muted);
}

/* Form result messages */
.form-success, .form-error {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-success { border-color: rgba(200 255 0 / 0.3); background: rgba(200 255 0 / 0.04); }
.form-error { border-color: rgba(255 100 100 / 0.3); background: rgba(255 100 100 / 0.04); }
.fs-icon { font-size: 2.5rem; margin-bottom: 16px; }
.form-success h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.4rem; margin-bottom: 10px; }
.form-error h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.4rem; margin-bottom: 10px; }
.form-success p, .form-error p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.form-error a { color: var(--violet-light); text-decoration: underline; cursor: pointer; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 1.1rem;
}
.footer-logo { width: 28px; height: 28px; border-radius: 6px; object-fit: cover; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   UTILITIES
   ============================================ */
.hidden { display: none !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 120px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
/* ============================================
   LORENZO
   ============================================ */
.lorenzo-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.lorenzo-content .section-label { justify-content: center; }
.lorenzo-content .section-title { text-align: center; }
.lorenzo-texts {
  margin-top: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lorenzo-text {
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}
.lorenzo-text strong { color: var(--text); }
.lorenzo-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.lstat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lstat strong { font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.lstat span { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 600px) {
  .lorenzo-stats { gap: 24px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer;
  color: var(--text); font-size: 1rem; font-weight: 500; text-align: left;
}
.faq-icon { font-size: 1.4rem; color: var(--violet-light); flex-shrink: 0; transition: transform .3s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-mid); line-height: 1.7; margin: 0; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--violet); border: none; cursor: pointer;
  color: #fff; font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 20px rgba(107 33 255 / 0.4);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================
   WHATSAPP FLOTTANT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 84px; right: 28px;
  z-index: 998;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37 211 102 / 0.4);
  transition: transform .3s cubic-bezier(0.23,1,0.32,1), box-shadow .3s;
  cursor: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 30px rgba(37 211 102 / 0.55);
}

@media (max-width: 768px) {
  .section-gap { padding: 70px 0; }
  .nav-links, .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 90px; }
}
