/* ═══════════════════════════════════════════════════════════════════════════
   BORINOT OT — Website Styles
   Palette: SoftMacros dark-green base + fantasy gold overrides
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── 1. Design Tokens ──────────────────────────────────────────────────────── */
:root {
  /* SoftMacros base (unchanged) */
  --sm-bg:           #0b2a1e;
  --sm-bg-alt:       #0d3324;
  --sm-bg-card:      #113d2a;
  --sm-accent:       #00e676;
  --sm-accent-hover: #69ff98;
  --sm-accent-dark:  #00c853;
  --sm-text:         #f0fff4;
  --sm-text-muted:   #a7c4b2;
  --sm-text-faint:   #5e8c75;
  --sm-border:       #1e4d36;
  --sm-danger:       #f87171;

  /* Fantasy gold layer */
  --ot-gold:         #c9a84c;
  --ot-gold-light:   #e8c96a;
  --ot-gold-dark:    #a07830;
  --ot-gold-glow:    rgba(201, 168, 76, 0.28);
  --ot-gold-bg:      rgba(201, 168, 76, 0.07);

  /* Depths */
  --ot-dark:         #060e08;
  --ot-section-alt:  #091e12;

  /* Typography */
  --font-fantasy:    'Cinzel', 'Palatino Linotype', 'Book Antiqua', serif;
  --font-sans:       'Inter', system-ui, -apple-system, sans-serif;

  /* Geometry */
  --radius-sm:  0.375rem;
  --radius-md:  0.5rem;
  --radius-lg:  0.75rem;
  --radius-xl:  1rem;

  /* Shadows */
  --shadow-card:  0 4px 28px rgba(0, 0, 0, 0.45);
  --shadow-gold:  0 6px 32px rgba(201, 168, 76, 0.18);
  --shadow-green: 0 6px 32px rgba(0, 230, 118, 0.15);
}

/* ─── 2. Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--ot-dark);
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--sm-bg);
  color: var(--sm-text-muted);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-fantasy);
  color: var(--sm-text);
  line-height: 1.2;
}

a { color: var(--sm-accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--sm-accent-hover); }

ul { list-style: none; }
img { max-width: 100%; }

::selection { background: rgba(201, 168, 76, 0.3); color: var(--sm-text); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track  { background: var(--sm-bg); }
::-webkit-scrollbar-thumb  { background: var(--sm-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sm-accent); }

/* ─── 3. Layout ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--ot-section-alt);
  border-top:    1px solid var(--sm-border);
  border-bottom: 1px solid var(--sm-border);
}

/* ─── 4. Buttons ────────────────────────────────────────────────────────────── */
.btn-ot-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: var(--ot-gold);
  color: #1a0a00;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  border: 1px solid var(--ot-gold);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-ot-primary:hover {
  background: var(--ot-gold-light);
  color: #1a0a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--ot-gold-glow);
}
.btn-ot-primary.btn-lg { padding: 0.9rem 2.25rem; font-size: 1rem; border-radius: var(--radius-lg); }

.btn-ot-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: transparent;
  color: var(--sm-accent);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  border: 1px solid rgba(0, 230, 118, 0.45);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
  white-space: nowrap;
}
.btn-ot-outline:hover {
  background: rgba(0, 230, 118, 0.08);
  border-color: var(--sm-accent);
  color: var(--sm-accent-hover);
  transform: translateY(-2px);
}
.btn-ot-outline.btn-lg { padding: 0.9rem 2.25rem; font-size: 1rem; border-radius: var(--radius-lg); }

/* ─── 5. Navbar ─────────────────────────────────────────────────────────────── */
.ot-navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(6, 14, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  transition: background 0.3s, border-color 0.3s;
}
.ot-navbar.scrolled {
  background: rgba(6, 14, 8, 0.97);
  border-bottom-color: var(--sm-border);
}

.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-brand-bee  { font-size: 1.4rem; line-height: 1; }
.nav-brand-name {
  font-family: var(--font-fantasy);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ot-gold);
  letter-spacing: 0.1em;
}
.nav-brand-ver {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--sm-text-faint);
  background: var(--sm-bg-alt);
  border: 1px solid var(--sm-border);
  border-radius: 0.25rem;
  padding: 1px 5px;
  align-self: flex-start;
  margin-top: 5px;
  letter-spacing: 0.04em;
}

/* Collapse wrapper */
.nav-collapse {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 0.125rem;
  flex: 1;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sm-text-muted);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-md);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--sm-text);
  background: rgba(0, 230, 118, 0.07);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(30, 77, 54, 0.3);
  border: 1px solid var(--sm-border);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sm-text-faint);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
  font-family: var(--font-sans);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.lang-btn:hover    { color: var(--sm-text); background: rgba(0, 230, 118, 0.1); }
.lang-btn.active   { background: var(--sm-accent); color: #0b2a1e; }
.lang-flag {
  width: 14px;
  height: 10px;
  border-radius: 1px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: rgba(0, 230, 118, 0.07); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sm-text-muted);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── 6. Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(0, 230, 118, 0.045) 0%, transparent 65%),
    radial-gradient(ellipse 70% 45% at 50% 0%,   rgba(201, 168, 76, 0.05)  0%, transparent 60%),
    var(--ot-dark);
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sm-text-faint);
  background: rgba(30, 77, 54, 0.35);
  border: 1px solid var(--sm-border);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-fantasy);
  font-size: clamp(3.75rem, 11vw, 7.5rem);
  font-weight: 900;
  color: var(--ot-gold);
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow:
    0 0 40px rgba(201, 168, 76, 0.45),
    0 0 100px rgba(201, 168, 76, 0.12);
}

.hero-bee {
  display: inline-block;
  font-size: 0.75em;
  margin-right: 0.08em;
  vertical-align: middle;
  animation: bee-float 3.2s ease-in-out infinite;
}

@keyframes bee-float {
  0%, 100% { transform: translateY(0)    rotate(-3deg); }
  50%       { transform: translateY(-10px) rotate(3deg); }
}

.hero-tagline {
  font-family: var(--font-fantasy);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--sm-text-muted);
  letter-spacing: 0.07em;
  margin-bottom: 1.125rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--sm-text-faint);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 2.75rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sm-text-faint);
  font-size: 1rem;
  z-index: 1;
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1;   }
}

/* ─── 7. Status Bar ─────────────────────────────────────────────────────────── */
.status-bar {
  background: var(--sm-bg-alt);
  border-top:    1px solid var(--sm-border);
  border-bottom: 1px solid var(--sm-border);
  padding: 0.7rem 0;
  position: sticky;
  top: 64px;
  z-index: 900;
}

.status-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--sm-text-muted);
  white-space: nowrap;
}
.status-item i { color: var(--sm-text-faint); font-size: 0.85rem; }
.status-item strong { color: var(--sm-text); }

/* Status dot */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.dot-green { background: var(--sm-accent); }
.dot-red   { background: var(--sm-danger); }

.pulse { animation: pulse-ring 2s ease-in-out infinite; }
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0   rgba(0, 230, 118, 0.5); }
  60%       { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0);   }
}

/* ─── 8. Section titles & ornament ─────────────────────────────────────────── */
.section-title {
  font-family: var(--font-fantasy);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--ot-gold);
  text-align: center;
  letter-spacing: 0.09em;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.2);
}

.section-desc {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 2.75rem;
  color: var(--sm-text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.ornament {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 0 auto 3rem;
  max-width: 300px;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ot-gold-dark), transparent);
}
.ornament-gem {
  color: var(--ot-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Fade-in animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── 9. Rates Grid ─────────────────────────────────────────────────────────── */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.rate-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.rate-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ot-gold-bg) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.rate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: var(--shadow-gold);
}
.rate-card:hover::after { opacity: 1; }

.rate-card--premium:hover {
  border-color: rgba(0, 230, 118, 0.45);
  box-shadow: var(--shadow-green);
}

.rate-icon { font-size: 1.75rem; line-height: 1; }

.rate-value {
  font-family: var(--font-fantasy);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--ot-gold);
  line-height: 1;
}
.rate-value.free  { font-size: 1.6rem; color: var(--sm-accent); }
.rate-value.pvp   { font-size: 1.4rem; }
.rate-x  { font-size: 1.3rem; color: var(--ot-gold-dark); }

.rate-label {
  font-size: 0.78rem;
  color: var(--sm-text-faint);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── 10. Features Grid ─────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.625rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ot-gold), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--ot-gold-bg);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--ot-gold);
  margin-bottom: 1.125rem;
  transition: background 0.2s;
}
.feature-card:hover .feature-icon {
  background: rgba(201, 168, 76, 0.12);
}

.feature-card h3 {
  font-family: var(--font-fantasy);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--sm-text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--sm-text-muted);
  line-height: 1.65;
}

/* ─── 11. News Grid ─────────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--sm-bg-card);
  border: 1px solid var(--sm-border);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.news-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ot-gold);
  background: var(--ot-gold-bg);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.04em;
}
.news-date {
  font-size: 0.72rem;
  color: var(--sm-text-faint);
}

.news-title-text {
  font-family: var(--font-fantasy);
  font-size: 1.1rem;
  color: var(--sm-text);
  letter-spacing: 0.03em;
}
.news-body {
  font-size: 0.875rem;
  color: var(--sm-text-muted);
  line-height: 1.65;
  flex: 1;
}
.news-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sm-accent);
  transition: gap 0.15s;
  align-self: flex-start;
  margin-top: 0.25rem;
}
.news-more::after { content: '→'; }
.news-more:hover { gap: 0.625rem; color: var(--sm-accent-hover); }

/* ─── 12. Download Section ──────────────────────────────────────────────────── */

/* Connection info box */
.connect-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 14px;
  padding: 1rem 2rem;
  margin: 1.75rem auto 2.25rem;
  max-width: 520px;
  box-shadow: 0 0 0 1px rgba(201,168,76,.08), 0 8px 28px rgba(0,0,0,.2);
}
.connect-row {
  display: flex;
  align-items: center;
  gap: .625rem;
}
.connect-row > i {
  color: rgba(201,168,76,.55);
  font-size: 1rem;
}
.connect-lbl {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  color: var(--sm-text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 3px;
}
.connect-code {
  font-family: 'Courier New', monospace;
  font-size: .95rem;
  font-weight: 700;
  color: var(--ot-gold);
  background: rgba(201,168,76,.09);
  padding: 2px 9px;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,.2);
  letter-spacing: .5px;
}
.connect-sep {
  color: rgba(201,168,76,.3);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 680px;
  margin: 0 auto 1.75rem;
}
.dl-grid--3 { max-width: 900px; }

.dl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2.25rem 1.5rem;
  background: var(--ot-gold-bg);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-lg);
  color: var(--ot-gold);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s, color 0.18s;
}
.dl-card i { font-size: 2.25rem; }
.dl-card small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--sm-text-faint);
}
.dl-card:hover {
  background: rgba(201, 168, 76, 0.14);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
  color: var(--ot-gold-light);
}

.dl-card--secondary {
  background: rgba(0, 230, 118, 0.05);
  border-color: rgba(0, 230, 118, 0.3);
  color: var(--sm-accent);
}
.dl-card--secondary:hover {
  background: rgba(0, 230, 118, 0.1);
  box-shadow: var(--shadow-green);
  color: var(--sm-accent-hover);
}

.dl-card--tertiary {
  background: rgba(100, 160, 255, 0.05);
  border-color: rgba(100, 160, 255, 0.28);
  color: #82b4ff;
}
.dl-card--tertiary:hover {
  background: rgba(100, 160, 255, 0.1);
  box-shadow: 0 0 20px rgba(100, 160, 255, 0.18);
  color: #aad0ff;
}

.promo-label {
  font-family: var(--ff-title);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ot-gold);
  text-align: center;
  margin: 2.5rem 0 0.5rem;
}

.dl-tutorial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--sm-text-faint);
  width: 100%;
  transition: color 0.15s;
}
.dl-tutorial:hover { color: var(--sm-text-muted); }

/* ─── 13. Footer ────────────────────────────────────────────────────────────── */
.ot-footer {
  background: var(--ot-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--sm-border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-logo-bee  { font-size: 1.75rem; }
.footer-logo-name {
  font-family: var(--font-fantasy);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ot-gold);
  letter-spacing: 0.1em;
}

.footer-desc {
  font-size: 0.8125rem;
  color: var(--sm-text-faint);
  line-height: 1.65;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-fantasy);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ot-gold);
  letter-spacing: 0.07em;
  margin-bottom: 1.125rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.8125rem;
  color: var(--sm-text-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--sm-text-muted); }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.72rem;
  color: var(--sm-text-faint);
  letter-spacing: 0.03em;
}

/* ─── 14. Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-collapse {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(6, 14, 8, 0.98);
    border-bottom: 1px solid var(--sm-border);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1.25rem;
  }
  .nav-collapse.open { display: flex; }
  .nav-links { flex-direction: column; gap: 0.25rem; }
  .nav-links a { font-size: 1rem; padding: 0.65rem 0.875rem; }
  .nav-actions { flex-direction: column; gap: 0.75rem; }
  .nav-actions .btn-ot-primary,
  .nav-actions .btn-ot-outline { justify-content: center; }
  .lang-switcher { justify-content: center; }
  .nav-hamburger { display: flex; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }

  .hero-btns { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 300px; }

  .status-inner { gap: 1rem; font-size: 0.75rem; }

  .rates-grid { grid-template-columns: repeat(3, 1fr); }

  .features-grid  { grid-template-columns: 1fr; }

  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .rates-grid { grid-template-columns: repeat(2, 1fr); }
}
