/* ============================================================
   DevEx Calculator — style.css
   Theme: Gaming-Dark with Roblox Red accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --accent:    #e8212a;
  --accent2:   #ff5a5a;
  --accent3:   #ff9f43;
  --bg:        #0d0f14;
  --bg2:       #13161e;
  --surface:   #1a1e28;
  --surface2:  #212636;
  --border:    rgba(255,255,255,0.08);
  --text:      #f0f2f7;
  --text2:     #9aa3b8;
  --muted:     #5a6278;
  --green:     #2ecc71;
  --yellow:    #f1c40f;
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:    14px;
  --shadow:    0 8px 32px rgba(0,0,0,0.45);
}

[data-theme="light"] {
  --bg:       #f4f6fb;
  --bg2:      #ebeef6;
  --surface:  #ffffff;
  --surface2: #f0f3fa;
  --border:   rgba(0,0,0,0.09);
  --text:     #0d1117;
  --text2:    #444c66;
  --muted:    #8892a4;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(16px,4vw,48px); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(13,15,20,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(16px,4vw,48px);
}
[data-theme="light"] .site-header { background: rgba(244,246,251,0.92); }

nav {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}

.brand-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  font-family: var(--font-head);
  box-shadow: 0 0 18px rgba(232,33,42,0.4);
}
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--text);
}
.brand-name span { color: var(--accent); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 0.9rem; color: var(--text2); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

/* Theme Toggle */
.nav-right { display: flex; align-items: center; gap: 14px; }
.theme-toggle { position: relative; width: 56px; height: 28px; cursor: pointer; flex-shrink: 0; }
.theme-toggle input { display: none; }
.toggle-track {
  width: 100%; height: 100%;
  background: var(--surface2);
  border-radius: 99px;
  display: flex; align-items: center; padding: 3px;
  transition: background 0.3s;
  border: 1px solid rgba(232,33,42,0.25);
}
.toggle-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  display: flex; align-items: center; justify-content: center; font-size: 11px;
  box-shadow: 0 2px 8px rgba(232,33,42,0.4);
}
[data-theme="light"] .toggle-thumb { transform: translateX(28px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text2); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 16px clamp(16px,4vw,48px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 0.95rem; color: var(--text2); padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── HERO SECTION ── */
.hero {
  padding: 72px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(232,33,42,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,33,42,0.12); border: 1px solid rgba(232,33,42,0.3);
  color: var(--accent2); font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 99px; margin-bottom: 20px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.05rem; color: var(--text2);
  max-width: 600px; margin: 0 auto 12px;
}
.hero-meta {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; margin-top: 14px;
}
.hero-meta span {
  font-size: 0.82rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.hero-meta .dot { color: var(--accent); font-size: 10px; }

/* ── MAIN TOOL CARD ── */
.tool-wrapper {
  max-width: 860px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,48px);
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(24px,5vw,48px);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
}

/* Tabs */
.tool-tabs {
  display: flex; gap: 6px; margin-bottom: 28px;
  background: var(--surface2); border-radius: 12px; padding: 5px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tool-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex: 1; padding: 10px 16px; border: none; border-radius: 9px;
  background: transparent; cursor: pointer;
  color: var(--text2); font-size: 0.88rem; font-weight: 600;
  font-family: var(--font-head); letter-spacing: 0.02em;
  transition: all 0.25s;
}
.tab-btn.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,33,42,0.35);
}
.tab-btn:hover:not(.active) { background: var(--border); color: var(--text); }

/* Tab panes */
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* Input Groups */
.input-group { margin-bottom: 20px; }
.input-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text2); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase;
}
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .input-row { grid-template-columns: 1fr; } }

.inp-wrap {
  position: relative;
}
.inp-prefix {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-size: 0.95rem; color: var(--muted); font-weight: 600; pointer-events: none;
}
.inp-wrap input, .inp-wrap select {
  width: 100%; padding: 13px 14px 13px 36px;
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--text); font-size: 1rem;
  font-family: var(--font-body); transition: border-color 0.25s, box-shadow 0.25s;
  -moz-appearance: textfield;
}
.inp-wrap input::-webkit-outer-spin-button,
.inp-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; }
.inp-wrap input:focus, .inp-wrap select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,33,42,0.15);
}
.inp-wrap.no-prefix input, .inp-wrap.no-prefix select { padding-left: 14px; }

/* Currency select */
.currency-sel { padding: 13px 14px; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 10px; color: var(--text); font-family: var(--font-body); width: 100%; font-size: 0.95rem; cursor: pointer; }
.currency-sel:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,33,42,0.15); }
option { background: var(--surface); }

/* Result Box */
.result-box {
  background: linear-gradient(135deg, rgba(232,33,42,0.1), rgba(255,90,90,0.05));
  border: 1px solid rgba(232,33,42,0.3);
  border-radius: 14px; padding: 24px 28px;
  margin: 24px 0 0; text-align: center;
}
.result-label { font-size: 0.78rem; color: var(--text2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.result-amount {
  font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700; color: var(--accent);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 64px;
  transition: all 0.4s;
}
.result-sub { font-size: 0.84rem; color: var(--muted); margin-top: 6px; }
.copy-btn {
  margin-top: 14px; padding: 8px 22px;
  background: rgba(232,33,42,0.12); border: 1px solid rgba(232,33,42,0.3);
  border-radius: 8px; color: var(--accent); font-size: 0.83rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; font-family: var(--font-body);
}
.copy-btn:hover { background: rgba(232,33,42,0.22); }

/* Eligibility Bar */
.eligibility-section { margin-top: 22px; }
.eligibility-label-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: var(--text2); margin-bottom: 8px;
}
.eligibility-status {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: 99px;
}
.status-ok   { background: rgba(46,204,113,0.15); color: var(--green); }
.status-warn { background: rgba(241,196,15,0.15); color: var(--yellow); }
.status-no   { background: rgba(232,33,42,0.15); color: var(--accent2); }

.prog-bar-track {
  height: 10px; background: var(--surface2); border-radius: 99px; overflow: hidden;
}
.prog-bar-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  transition: width 0.6s cubic-bezier(.4,0,.2,1);
  min-width: 0;
}
.eligibility-note { font-size: 0.78rem; color: var(--muted); margin-top: 8px; text-align: center; }

/* Fee estimate row */
.fee-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem;
}
.fee-row:last-child { border-bottom: none; }
.fee-row .label { color: var(--text2); }
.fee-row .value { font-weight: 600; color: var(--text); }
.fee-row .value.green { color: var(--green); }
.fee-row .value.red   { color: var(--accent2); }
.fee-toggle { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.fee-toggle label { font-size: 0.82rem; color: var(--text2); cursor: pointer; }
.fee-toggle input[type="checkbox"] { accent-color: var(--accent); width: 15px; height: 15px; }

/* Goal Tracker */
.goal-ring-wrap {
  display: flex; justify-content: center; margin: 20px 0;
}
.goal-ring-label { text-align: center; font-size: 0.82rem; color: var(--text2); margin-top: 12px; }

/* Checklist */
.checklist { list-style: none; margin: 16px 0; }
.checklist li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.checklist li:last-child { border-bottom: none; }
.chk-icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.chk-yes  { background: rgba(46,204,113,0.15); color: var(--green); }
.chk-no   { background: rgba(232,33,42,0.15); color: var(--accent2); }

/* Calc Btn */
.calc-btn {
  width: 100%; margin-top: 22px;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent), #c0121a);
  border: none; border-radius: 12px;
  color: #fff; font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(232,33,42,0.4);
  position: relative; overflow: hidden;
}
.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232,33,42,0.5);
}
.calc-btn:active { transform: translateY(0); }

/* ── RATE BADGE ── */
.rate-info {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; margin-top: 20px; padding: 14px 20px;
  background: var(--surface2); border-radius: 10px;
  border: 1px solid var(--border); font-size: 0.82rem; color: var(--muted);
}
.rate-pill {
  display: flex; align-items: center; gap: 6px; color: var(--text2); font-weight: 500;
}
.rate-pill span { color: var(--accent); font-weight: 700; }

/* ── HOW IT WORKS ── */
.how-section { max-width: 1160px; margin: 72px auto 0; padding: 0 clamp(16px,4vw,48px); }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 700; margin-bottom: 8px; }
.section-sub { color: var(--text2); font-size: 0.95rem; max-width: 540px; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; margin-top: 40px; }
.step-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.step-num {
  font-family: var(--font-head); font-size: 3rem; font-weight: 700;
  color: rgba(232,33,42,0.15); position: absolute; top: 12px; right: 16px;
  line-height: 1;
}
.step-icon { font-size: 1.8rem; margin-bottom: 14px; }
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p  { font-size: 0.85rem; color: var(--text2); }

/* ── INFO GRID (tool guide) ── */
.info-section { max-width: 1160px; margin: 72px auto 0; padding: 0 clamp(16px,4vw,48px); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; margin-top: 36px; }
.info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  transition: border-color 0.25s;
}
.info-card:hover { border-color: rgba(232,33,42,0.35); }
.info-card-icon { font-size: 1.6rem; margin-bottom: 12px; }
.info-card h3 { font-size: 1rem; margin-bottom: 8px; }
.info-card p  { font-size: 0.84rem; color: var(--text2); line-height: 1.6; }

/* Requirements Table */
.req-table-wrap { margin-top: 36px; overflow-x: auto; }
.req-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.req-table th {
  background: var(--surface2); color: var(--text2);
  padding: 13px 18px; text-align: left; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 2px solid var(--accent);
}
.req-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--text); }
.req-table tr:hover td { background: var(--surface2); }
.req-table .badge-yes { color: var(--green); font-weight: 600; }
.req-table .badge-no  { color: var(--accent2); font-weight: 600; }

/* Conversion Reference Table */
.conv-table-wrap { margin-top: 20px; overflow-x: auto; }
.conv-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.conv-table th { background: var(--accent); color: #fff; padding: 12px 18px; text-align: center; }
.conv-table td { padding: 11px 18px; text-align: center; border-bottom: 1px solid var(--border); }
.conv-table tr:nth-child(even) td { background: var(--surface2); }
.conv-table .highlight td { background: rgba(232,33,42,0.12); font-weight: 700; color: var(--accent); }

/* Formula Box */
.formula-box {
  background: var(--surface2); border-left: 4px solid var(--accent);
  border-radius: 10px; padding: 18px 22px; margin: 24px 0;
  font-size: 1rem; color: var(--text);
}
.formula-box code { color: var(--accent); font-size: 1.05rem; font-family: monospace; }

/* ── ARTICLE ── */
.article-section { max-width: 860px; margin: 72px auto 0; padding: 0 clamp(16px,4vw,48px); }
.article-section h2 { font-size: clamp(1.3rem,3vw,1.9rem); margin: 36px 0 14px; }
.article-section h3 { font-size: 1.1rem; margin: 26px 0 10px; color: var(--text2); }
.article-section p  { font-size: 0.92rem; color: var(--text2); margin-bottom: 14px; line-height: 1.75; }
.article-section ul, .article-section ol { padding-left: 22px; margin-bottom: 14px; }
.article-section li { font-size: 0.9rem; color: var(--text2); margin-bottom: 8px; line-height: 1.6; }
.article-section hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.article-section strong { color: var(--text); }

/* ── ADSENSE SLOTS ── */
.ad-slot {
  max-width: 1160px; margin: 40px auto; padding: 0 clamp(16px,4vw,48px);
}
.ad-inner {
  background: var(--surface); border: 1px dashed var(--border);
  border-radius: 10px; padding: 20px; text-align: center;
  min-height: 90px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.8rem;
}

/* ── FAQ ── */
.faq-section { max-width: 860px; margin: 72px auto 0; padding: 0 clamp(16px,4vw,48px); }
.faq-list { margin-top: 36px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px;
  margin-bottom: 10px; overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(232,33,42,0.35); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  background: var(--surface);
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  user-select: none;
}
.faq-q:hover { background: var(--surface2); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface2); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--accent); flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(232,33,42,0.15); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0,1,0,1);
  background: var(--surface);
}
.faq-item.open .faq-a { max-height: 600px; transition: max-height 0.5s ease-in; }
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem; color: var(--text2); line-height: 1.7;
}

/* ── CHART SECTION ── */
.chart-section { max-width: 1160px; margin: 72px auto 0; padding: 0 clamp(16px,4vw,48px); }
.chart-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
}
.chart-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.chart-title { font-family: var(--font-head); font-size: 1.2rem; }

/* ── SHARE CARD ── */
.share-section { max-width: 560px; margin: 60px auto 0; padding: 0 clamp(16px,4vw,48px); text-align: center; }
.share-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 28px;
}
.share-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.share-card p  { font-size: 0.85rem; color: var(--text2); margin-bottom: 20px; }
.share-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.share-btn {
  padding: 10px 18px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface2); color: var(--text); font-size: 0.84rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 7px; text-decoration: none;
  transition: all 0.25s; font-family: var(--font-body);
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,33,42,0.07); }
.download-btn {
  width: 100%; margin-top: 12px; padding: 12px;
  background: linear-gradient(135deg, var(--accent), #c0121a);
  border: none; border-radius: 12px; color: #fff;
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(232,33,42,0.35);
}
.download-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,33,42,0.5); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px clamp(16px,4vw,48px) 0;
  margin-top: 80px;
  font-family: var(--font-body);
}
.footer-top {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand .brand-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-brand .brand-icon { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 900; color: #fff; font-family: var(--font-head); }
.footer-brand .brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--text); }
.footer-brand .brand-name span { color: var(--accent); }
.footer-brand p { color: var(--text2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { width: 44px; height: 44px; border-radius: 10px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; text-decoration: none; transition: all 0.25s; cursor: pointer; }
.social-btn:hover { background: rgba(232,33,42,0.1); border-color: rgba(232,33,42,0.35); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--text2); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom-bar { max-width: 1160px; margin: 0 auto; border-top: 1px solid var(--border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-bar p { color: var(--muted); font-size: 0.82rem; }
.footer-bottom-bar a { color: var(--accent); text-decoration: none; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-privacy-note { max-width: 1160px; margin: 0 auto; padding: 16px 0 24px; border-top: 1px solid var(--border); }
.footer-privacy-note p { color: var(--muted); font-size: 0.78rem; line-height: 1.65; text-align: center; }
.footer-privacy-note strong { color: var(--text2); }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } .footer-bottom-bar { flex-direction: column; text-align: center; } }

/* ── UTILITY ── */
.text-accent { color: var(--accent); }
.text-green  { color: var(--green); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mb-0  { margin-bottom: 0; }

/* ── Inner pages ── */
.inner-hero { padding: 60px 0 40px; text-align: center; }
.inner-hero h1 { font-size: clamp(1.8rem,4vw,2.8rem); }
.inner-content { max-width: 800px; margin: 0 auto; padding: 0 clamp(16px,4vw,48px) 80px; }
.inner-content h2 { font-size: 1.35rem; margin: 36px 0 12px; color: var(--text); }
.inner-content p, .inner-content li { font-size: 0.9rem; color: var(--text2); line-height: 1.75; margin-bottom: 12px; }
.inner-content ul, .inner-content ol { padding-left: 22px; margin-bottom: 16px; }
.inner-content a { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-form input, .contact-form textarea, .contact-form select {
  padding: 14px; background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--text); font-family: var(--font-body); font-size: 0.93rem;
  transition: border-color 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-msg { padding: 14px; border-radius: 10px; font-size: 0.88rem; text-align: center; margin-top: 8px; }
.form-success { background: rgba(46,204,113,0.12); color: var(--green); border: 1px solid rgba(46,204,113,0.3); }
.form-error   { background: rgba(232,33,42,0.12); color: var(--accent2); border: 1px solid rgba(232,33,42,0.3); }
.honeypot { display: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
