/* Bonacci Systems — Marketing Website */
:root {
  --navy: #0A1628;
  --navy-light: #162240;
  --gold: #D4A017;
  --gold-muted: rgba(212, 160, 23, 0.12);
  --gold-hover: #E0B030;
  --white: #FFFFFF;
  --bg: #F8F6F2;
  --bg-card: #FFFFFF;
  --text: #1A1A2E;
  --text-sec: #6B7280;
  --border: #E5E7EB;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 2px 16px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.12);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600; color: var(--white);
  letter-spacing: -0.02em;
}
.logo span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav a:hover { color: var(--white); }
.lang-switch {
  display: flex; gap: 4px; margin-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.15); padding-left: 16px;
}
.lang-switch a {
  font-size: 0.75rem; font-weight: 600; padding: 4px 8px; border-radius: 6px;
  color: rgba(255,255,255,0.5); transition: all 0.2s;
}
.lang-switch a:hover, .lang-switch a.active {
  color: var(--gold); background: rgba(212, 160, 23, 0.1);
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 10px; font-size: 0.875rem; font-weight: 600;
  background: var(--gold); color: var(--navy); border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.btn-cta:hover { background: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,160,23,0.3); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 10px; font-size: 0.875rem; font-weight: 600;
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-cta-outline:hover { border-color: var(--gold); color: var(--gold); }
.mobile-menu { display: none; background: none; border: none; cursor: pointer; color: var(--white); }

/* ── Hero ── */
.hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 60%, #1a2d50 100%);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  background: var(--gold-muted); color: var(--gold); margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display); font-size: 3.25rem; font-weight: 600;
  color: var(--white); line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: 1.125rem; color: rgba(255,255,255,0.65); line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.hero-visual {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%;
}
.hero-stat {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 20px; text-align: center;
}
.hero-stat .num { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── Features ── */
.features { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .badge {
  display: inline-flex; padding: 6px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; background: var(--gold-muted); color: var(--gold);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 600;
  color: var(--navy); letter-spacing: -0.02em; margin-bottom: 12px;
}
.section-header p { font-size: 1.0625rem; color: var(--text-sec); max-width: 560px; margin: 0 auto; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-muted); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: var(--text-sec); line-height: 1.6; }

/* ── Pricing ── */
.pricing { padding: 100px 0; background: var(--navy); }
.pricing .section-header h2 { color: var(--white); }
.pricing .section-header p { color: rgba(255,255,255,0.55); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px; position: relative;
}
.price-card.featured {
  border-color: var(--gold); background: rgba(212,160,23,0.06);
}
.price-card.featured::before {
  content: attr(data-badge); position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 20px; font-size: 0.7rem; font-weight: 700;
  background: var(--gold); color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em;
}
.price-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.price-card .price {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold);
  margin-bottom: 4px;
}
.price-card .price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.price-card .desc { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-bottom: 24px; }
.price-card ul { list-style: none; margin-bottom: 32px; }
.price-card li {
  font-size: 0.875rem; color: rgba(255,255,255,0.7); padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 10px;
}
.price-card li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: rgba(212,160,23,0.15); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.price-card .btn-cta { width: 100%; justify-content: center; }
.price-card .btn-cta-outline { width: 100%; justify-content: center; }

/* ── Footer ── */
.footer {
  background: var(--navy); border-top: 1px solid rgba(212,160,23,0.1);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); max-width: 280px; line-height: 1.6; }
.footer h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer li a { font-size: 0.8125rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── Responsive ── */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .mobile-menu { display: block; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: var(--navy);
    padding: 24px; gap: 16px; border-bottom: 1px solid rgba(212,160,23,0.15);
  }
  .nav.open .lang-switch { border-left: none; padding-left: 0; margin-left: 0; }
  .hero { padding: 60px 0 48px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
