/* =========================================================
   BM Capital - Premium Design System
   ========================================================= */

:root {
  /* Brand colors */
  --navy: #1f2d3d;
  --navy-2: #2c3e50;
  --navy-3: #34495e;
  --gold: #f39c12;
  --gold-2: #e67e22;
  --green: #27ae60;
  --blue: #2196f3;

  /* Neutrals */
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #f9fafb;
  --border: #e6e9ee;
  --text: #2b3440;
  --text-muted: #5b6572;
  --text-soft: #8a93a0;

  /* Effects */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(20, 30, 45, 0.06);
  --shadow: 0 10px 30px rgba(20, 30, 45, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 30, 45, 0.16);
  --gold-gradient: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  --navy-gradient: linear-gradient(135deg, #1f2d3d 0%, #2c3e50 55%, #34495e 100%);

  /* Layout */
  --maxw: 1200px;
  --nav-h: 72px;

  /* Type */
  --font: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.bg-surface { background: var(--surface); }
.bg-soft { background: var(--surface-2); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  color: var(--navy-2);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head p { color: var(--text-muted); margin-top: 14px; font-size: 17px; }

.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-gradient); color: #fff; box-shadow: 0 8px 22px rgba(230, 126, 34, 0.35); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(230, 126, 34, 0.45); }
.btn-dark { background: var(--navy-2); color: #fff; }
.btn-dark:hover { background: var(--navy); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: transparent; color: var(--navy-2); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ---------- Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(31, 45, 61, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.brand .brand-mark {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-gradient);
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(230,126,34,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
  overflow: hidden;
}
.brand .brand-mark::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.14));
}
.brand .brand-mark .bm {
  position: relative;
  color: #fff; font-weight: 800; font-size: 17px; letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.brand .brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.4px;
  color: #fff;
}
.brand .brand-word small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: #dfe4ea;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 9px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links .nav-cta { margin-left: 8px; }
.nav-links .nav-cta a {
  background: var(--gold-gradient);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
}
.nav-links .nav-cta a:hover { background: var(--gold-gradient); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 6px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-gradient);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 85% 10%, rgba(243,156,18,0.22), transparent 60%),
    radial-gradient(500px 300px at 10% 90%, rgba(33,150,243,0.14), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 90px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(39,174,96,0.25); }
.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); }
.hero p.lead { font-size: 18px; color: #d7dde5; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 42px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 30px; font-weight: 800; color: var(--gold); }
.hero-stats .stat span { font-size: 14px; color: #c7cdd6; }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.hero-card ul { list-style: none; }
.hero-card li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 15px; color: #eef1f5; }
.hero-card li:last-child { border-bottom: none; }
.hero-card li i { color: var(--green); margin-top: 4px; }

/* Simple page header (interior pages) */
.page-hero {
  background: var(--navy-gradient);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.5px; }
.page-hero p { color: #d7dde5; margin-top: 12px; font-size: 17px; max-width: 640px; margin-left: auto; margin-right: auto; }
.breadcrumb { margin-top: 16px; font-size: 14px; color: #aeb6c1; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ---------- Feature grid ---------- */
.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(243,156,18,0.12);
  color: var(--gold-2);
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 19px; color: var(--navy-2); margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 15px; }

/* ---------- Catalog cards ---------- */
.grid-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy-gradient);
  display: grid; place-items: center;
  overflow: hidden;
}
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-card:hover .cat-media img { transform: scale(1.05); }
.cat-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,33,46,0.15) 0%, transparent 35%, transparent 70%, rgba(22,33,46,0.25) 100%);
  pointer-events: none;
}
.cat-tag {
  position: absolute; top: 14px; left: 14px;
  z-index: 2;
  background: rgba(15,23,32,0.55);
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 12px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cat-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.cat-body h3 { font-size: 20px; color: var(--navy-2); margin-bottom: 10px; line-height: 1.3; }
.cat-body p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; flex: 1; }
.cat-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-soft); margin-bottom: 18px; }
.cat-meta span { display: inline-flex; align-items: center; gap: 6px; }
.cat-meta i { color: var(--gold-2); }
.cat-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cat-price { font-size: 20px; font-weight: 800; color: var(--navy-2); }
.cat-price small { font-size: 12px; font-weight: 500; color: var(--text-soft); }

/* ---------- Detail layout ---------- */
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.detail-main h2 { color: var(--navy-2); font-size: 24px; margin: 6px 0 16px; }
.detail-main h3 { color: var(--gold-2); font-size: 18px; margin: 26px 0 12px; }
.detail-main p { color: var(--text-muted); margin-bottom: 14px; }
.check-list { list-style: none; margin: 8px 0 20px; }
.check-list li { display: flex; gap: 12px; padding: 9px 0; color: var(--text); }
.check-list li i { color: var(--green); margin-top: 5px; }

.side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  box-shadow: var(--shadow-sm);
}
.side-card h3 { color: var(--navy-2); font-size: 18px; margin-bottom: 14px; }
.side-list { list-style: none; margin-bottom: 18px; }
.side-list li { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 14px; }
.side-list li:last-child { border-bottom: none; }
.meta-box {
  border-left: 4px solid var(--gold);
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.meta-box .meta-item { margin: 10px 0; font-size: 14px; color: var(--text); }
.meta-box .meta-item strong { color: var(--navy-2); }
.price-box {
  background: var(--gold-gradient);
  color: #fff;
  padding: 22px;
  border-radius: var(--radius-sm);
  text-align: center;
  margin: 18px 0;
}
.price-box .p { font-size: 26px; font-weight: 800; }
.price-box small { opacity: 0.9; font-size: 13px; display: block; margin-top: 4px; }

.gift-box {
  background: #eef6ff;
  border: 1px solid #cfe4fb;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin: 18px 0;
  color: #14559c;
}
.gift-box h4 { color: #14559c; margin-bottom: 10px; font-size: 15px; }
.gift-box img { max-width: 120px; margin: 12px auto; border-radius: 6px; box-shadow: var(--shadow-sm); }
.gift-box p { font-size: 14px; margin: 6px 0; }

/* ---------- Accordion ---------- */
.accordion { margin: 16px 0; }
.acc-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: var(--surface); }
.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--surface);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-2);
  text-align: left;
  transition: background 0.2s;
}
.acc-header:hover { background: var(--surface-2); }
.acc-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  transition: transform 0.25s;
}
.acc-header[aria-expanded="true"] .acc-icon { transform: rotate(45deg); }
.acc-title { flex: 1; }
.acc-panel { display: none; padding: 6px 22px 20px 62px; color: var(--text-muted); }
.acc-panel.open { display: block; animation: fade 0.25s ease; }
.acc-panel .sub-title { font-weight: 700; color: var(--navy-2); margin: 14px 0 8px; font-size: 15px; }
.acc-panel ul { list-style: none; }
.acc-panel li { padding: 4px 0; position: relative; padding-left: 18px; }
.acc-panel li::before { content: "•"; color: var(--gold-2); position: absolute; left: 0; }

@keyframes fade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ---------- Testimonials ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.quote-card .stars { color: var(--gold); margin-bottom: 14px; font-size: 15px; }
.quote-card p { color: var(--text-muted); font-style: italic; margin-bottom: 18px; }
.quote-author { display: flex; align-items: center; gap: 12px; }
.quote-author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-gradient); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.quote-author b { color: var(--navy-2); display: block; font-size: 15px; }
.quote-author span { color: var(--text-soft); font-size: 13px; }

/* ---------- Press ---------- */
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.press-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.press-card .src { color: var(--gold-2); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.press-card h4 { color: var(--navy-2); font-size: 17px; margin: 8px 0 10px; }
.press-card p { color: var(--text-muted); font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-gradient);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 240px at 80% 20%, rgba(243,156,18,0.25), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 12px; }
.cta-band p { color: #d7dde5; max-width: 560px; margin: 0 auto 26px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; color: var(--navy-2); margin-bottom: 8px; font-size: 14px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--surface-2);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.form-note { font-size: 13px; color: var(--text-soft); margin-top: 8px; }
.form-msg { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; display: none; }
.form-msg.ok { display: block; background: #e8f6ee; color: #1e7a45; border: 1px solid #bfe6cf; }
.form-msg.err { display: block; background: #fdecea; color: #b3261e; border: 1px solid #f5c6c2; }

/* Ürün videosu (dikey/shorts) */
.video-wrap {
  max-width: 340px;
  margin: 0 0 26px;
}
.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) {
  .video-wrap { max-width: 100%; }
}

/* Eğitim katılım notu */
.katilim-note {
  display: flex; align-items: center; gap: 10px;
  background: rgba(243,156,18,0.10);
  border: 1px solid rgba(243,156,18,0.25);
  color: #a8630a;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin: 6px 0 20px;
}
.katilim-note i { color: var(--gold-2); }

/* ---------- Payment page ---------- */
.pay-details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 8px 26px;
  box-shadow: var(--shadow-sm);
}
.pay-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.pay-row:last-child { border-bottom: none; }
.pay-label { font-weight: 700; color: var(--navy-2); font-size: 14px; }
.pay-value { color: var(--text-muted); text-align: right; display: flex; align-items: center; gap: 10px; }
.copy-btn {
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--navy-2);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}
.copy-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.warn-box {
  background: #fff8e6;
  border: 1px solid #ffe0a3;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.warn-box h3 { color: var(--gold-2); margin-bottom: 8px; font-size: 17px; }
.warn-box p { color: var(--text); font-size: 15px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.step .num {
  width: 46px; height: 46px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #fff; font-weight: 800; font-size: 18px;
  display: grid; place-items: center;
}
.step h4 { color: var(--navy-2); margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14px; }

/* ---------- Legal / rich text ---------- */
.rich { max-width: 820px; margin: 0 auto; }
.rich h2 { color: var(--navy-2); font-size: 22px; margin: 28px 0 12px; }
.rich h3 { color: var(--navy-2); font-size: 18px; margin: 22px 0 10px; }
.rich p, .rich li { color: var(--text-muted); margin-bottom: 12px; }
.rich ul { padding-left: 22px; margin-bottom: 16px; }
.rich .muted-note { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #cbd2db; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.site-footer .brand { margin-bottom: 16px; }
.site-footer p { font-size: 14px; color: #a9b2bd; margin-bottom: 12px; max-width: 320px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #a9b2bd; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  color: #fff; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--gold); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: #8b95a1;
}

/* ---------- Floating WhatsApp + social sidebar ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(37,211,102,0.5);
  z-index: 250;
  animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5);} 70%{ box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

.social-rail {
  position: fixed;
  left: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
}
.social-rail a {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  color: #fff; font-size: 18px;
  text-decoration: none;
  transition: width 0.25s;
}
.social-rail a.tw { background: #1da1f2; }
.social-rail a.ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 64px 0; }
  .detail-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--navy-2);
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { transform: none; }
  .nav-links .nav-cta { margin: 6px 0 0; }
  .nav-links .nav-cta a { text-align: center; }
  .social-rail { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 60px 0; }
  .cta-band { padding: 36px 24px; }
}
