/* ============================================================
   Corporación Financiera LC — styles.css
   v0 original website reconstruction
   ============================================================ */


/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d2b4e;
  --navy-light: #1a3a5c;
  --navy-dark:  #060f1a;
  --gold:       #c8a050;
  --gold-light: #d4b470;
  --white:      #ffffff;
  --light:      #f8f9fa;
  --gray:       #666666;
  --gray-light: #999999;
  --dark:       #222222;
  --border:     #e0e0e0;
  --font:       'Cabin', Arial, Helvetica, sans-serif;
  --font-body:  'Lato', Arial, Helvetica, sans-serif;
  --max-w:      1200px;
  --radius:     6px;
  --transition: 0.2s ease;

  /* Theme-sensitive semantic vars (light defaults) */
  --bg-page:      #ffffff;
  --bg-card:      #ffffff;
  --bg-section:   #f8f9fa;
  --text-body:    #222222;
  --text-muted:   #666666;
  --input-bg:     #ffffff;
  --input-border: #e0e0e0;
  --heading-on-light: #0d2b4e;
}

[data-theme="dark"] {
  --bg-page:      #0d1117;
  --bg-card:      #1c2128;
  --bg-section:   #161b22;
  --text-body:    #e6edf3;
  --text-muted:   #8b949e;
  --input-bg:     #1c2128;
  --input-border: #30363d;
  --heading-on-light: #e6edf3;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-body); line-height: 1.6; background: var(--bg-page); }
h1, h2, h3, h4, h5, h6, .nav-links a, .btn { font-family: var(--font); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* === UTILITIES === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--light { background: var(--bg-section); }
.section--navy { background: var(--navy); }
.section--dark { background: var(--navy-dark); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--heading-on-light);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title--white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}
.section-subtitle--white { color: rgba(255,255,255,0.65); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); }
.btn-lg    { padding: 16px 38px; font-size: 1rem; }

/* animate on scroll */
.animate { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate.visible { opacity: 1; transform: none; }

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(13,43,78,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  position: relative;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.18s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); font-weight: 700; }

#nav-indicator {
  position: absolute;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  pointer-events: none;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta { font-size: 0.88rem; padding: 10px 22px; flex-shrink: 0; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../assets/img/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(7,29,53,0.88) 0%, rgba(13,43,78,0.82) 55%, rgba(17,46,84,0.75) 100%);
  pointer-events: none;
}
/* decorative shape */
.hero::after {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  border: 60px solid rgba(200,160,80,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 700px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,160,80,0.15);
  border: 1px solid rgba(200,160,80,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
  opacity: 0.5;
}
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* === SERVICES / PRODUCTS GRID === */
.products-section { background: var(--bg-section); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.product-card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 36px 30px 30px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.product-icon {
  width: 54px; height: 54px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.product-icon svg { width: 26px; height: 26px; }
.product-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--heading-on-light);
  margin-bottom: 12px;
}
.product-card .desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 26px;
}
.product-specs { border-top: 1px solid var(--border); padding-top: 22px; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 0.88rem;
}
.spec-row .label { color: var(--gray-light); }
.spec-row .value { font-weight: 700; color: var(--heading-on-light); }
.spec-highlight { color: var(--gold) !important; font-size: 1rem !important; }

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-text .btn { margin-top: 16px; }
.about-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card span { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.4; display: block; }

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.why-card { text-align: center; }
.why-icon {
  width: 68px; height: 68px;
  background: rgba(200,160,80,0.12);
  border: 2px solid rgba(200,160,80,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 2; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-on-light);
  margin-bottom: 8px;
}
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; font-size: 0.95rem; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.c-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.c-text strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--heading-on-light); letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 3px; }
.c-text a, .c-text span { font-size: 0.95rem; color: var(--text-muted); text-decoration: none; line-height: 1.5; display: block; }
.c-text a:hover { color: var(--gold); }

.social-row { display: flex; gap: 12px; margin-top: 32px; }
.social-btn {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background var(--transition);
}
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 18px; height: 18px; fill: var(--white); }

/* contact form */
.contact-form-box {
  background: var(--bg-section);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--input-border);
}
.contact-form-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-on-light);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--text-body); margin-bottom: 7px; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--text-body);
  background: var(--input-bg);
  font-family: var(--font);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,160,80,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; display: block; text-align: center; margin-top: 4px; }
.form-note { font-size: 0.78rem; color: var(--gray-light); text-align: center; margin-top: 12px; line-height: 1.5; }

/* === FOOTER === */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); }
.footer-top {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  margin: 18px 0 28px;
  max-width: 300px;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 13px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-copy { font-size: 0.83rem; color: rgba(255,255,255,0.35); }
.footer-legal-notice {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  max-width: 520px;
  line-height: 1.6;
  text-align: right;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 130px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 300px; height: 300px;
  border: 50px solid rgba(200,160,80,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  position: relative;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: 0.4; }

/* === NOSOTROS PAGE === */
.nosotros-lead {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 0;
}
.nosotros-lead p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 22px;
}
.auth-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 36px 44px;
  margin: 48px 0;
  border-left: 4px solid var(--gold);
}
.auth-box h3 {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.auth-box p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.8; }

.values-section { padding: 80px 0; background: var(--bg-section); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.value-card {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon {
  width: 54px;
  height: 54px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.value-icon svg { width: 26px; height: 26px; }
.value-icon--flag { font-size: 1.55rem; line-height: 1; }
.value-card h4 { font-size: 1.08rem; font-weight: 700; color: var(--heading-on-light); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* team row (if needed) */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px; top: 44px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-dot {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}
.tl-content h4 { font-weight: 700; color: var(--heading-on-light); margin-bottom: 6px; }
.tl-content p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }

/* === PRODUCTOS PAGE === */
.producto-block { padding: 88px 0; }
.producto-block:nth-child(even) { background: var(--bg-section); }
.producto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.producto-layout.flipped { direction: rtl; }
.producto-layout.flipped > * { direction: ltr; }

.producto-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.producto-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--heading-on-light);
  margin-bottom: 18px;
  line-height: 1.2;
}
.producto-text p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.producto-features { list-style: none; margin: 24px 0; }
.producto-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  color: var(--text-body);
}
.producto-features li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d2b4e' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.specs-card { background: var(--navy); border-radius: 10px; overflow: hidden; }
.specs-header { background: var(--gold); padding: 16px 28px; }
.specs-header h4 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
}
.spec-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.spec-line:last-child { border-bottom: none; }
.spec-line .sl { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.spec-line .sv { font-size: 1rem; font-weight: 800; color: var(--gold); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.cta-banner .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(13,43,78,0.98);
    padding: 24px 24px 32px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links.open a { display: block; padding: 14px 0; }
  #nav-indicator { display: none; }

  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 28px; }

  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats-panel { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .producto-layout,
  .producto-layout.flipped { grid-template-columns: 1fr; direction: ltr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .footer-legal-notice { text-align: left; }
  .section-title { font-size: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-title { font-size: 1.9rem; }
  .about-stats-panel { grid-template-columns: 1fr; }
  .cta-banner .btn-row { flex-direction: column; align-items: center; }
}

/* === CONTENT ENTRANCE (delayed behind overlay) === */
@keyframes contentUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
main {
  animation: contentUp 0.28s ease 0.1s both;
}

/* === HERO BUTTON ANIMATION === */
.hero-actions .btn {
  transition:
    transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.24s ease,
    opacity    0.15s ease;
}
.hero-actions .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.hero-actions .btn:active {
  transform: translateY(-2px);
  opacity: 0.82;
  transition-duration: 0.08s;
}

/* === REGULATORY NOTICE === */
.regulatory-notice {
  background: linear-gradient(90deg, #07192e 0%, #0b2442 60%, #081e35 100%);
  border-top: 1px solid rgba(200,160,80,0.25);
  border-bottom: 1px solid rgba(200,160,80,0.12);
  padding: 28px 0;
}
.reg-notice-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.reg-icon {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 2px;
}
.reg-text { flex: 1; }
.reg-primary {
  font-family: var(--font);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.reg-primary strong { color: var(--gold); }
.reg-secondary {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .reg-notice-inner { flex-direction: column; gap: 12px; }
  .reg-icon { display: none; }
}

/* === NAV CONTROLS (lang + theme toggles) === */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 4px;
  transition: color 0.18s ease;
  letter-spacing: 0.5px;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active { color: var(--gold); }
.lang-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.72rem;
  user-select: none;
}
.theme-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: color 0.18s ease;
}
.theme-btn:hover { color: var(--gold); }
.icon-sun,
.icon-moon { width: 17px; height: 17px; }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* === FORM VALIDATION === */
.field-error {
  display: block;
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 1.1em;
  line-height: 1.4;
}
input.is-invalid,
textarea.is-invalid { border-color: #c0392b !important; }
.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .name-row { grid-template-columns: 1fr; }
}
.form-note-link { color: var(--navy); text-decoration: underline; }
[data-theme="dark"] .form-note-link { color: var(--gold); }
