/* =========================================================
   PKRwin — Main Stylesheet
   Theme: Golden & Yellow (premium casino / money feel)
   ========================================================= */

:root {
  /* Brand palette — Golden & Yellow */
  --green-900: #5c3a05;   /* deep amber-brown (replaces darkest shade) */
  --green-800: #7a4d08;   /* dark gold-brown */
  --green-700: #92600a;   /* rich amber */
  --green-600: #b3790d;   /* warm gold-bronze */
  --green-500: #c9890f;   /* amber-gold */
  --gold-600: #b8860b;
  --gold-500: #f0a500;
  --gold-400: #ffc73c;
  --gold-300: #ffdc73;

  --bg-light: #fff9ed;
  --bg-card: #ffffff;
  --text-dark: #2b1d05;
  --text-body: #4a3a18;
  --text-muted: #7a6a47;
  --border-light: #f0e2bd;

  --success: #1f8a4c;
  --danger: #c0392b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(92, 58, 5, 0.08);
  --shadow-md: 0 8px 24px rgba(92, 58, 5, 0.14);
  --shadow-lg: 0 16px 40px rgba(92, 58, 5, 0.2);
  --shadow-gold: 0 8px 24px rgba(240, 165, 0, 0.4);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-width: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, table { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--green-900);
  padding: 10px 16px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212,160,23,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green-600);
  color: var(--green-700);
}
.btn-outline:hover { background: var(--green-700); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 17px; }

.btn-pulse {
  animation: pulseGlow 2.4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.45); }
  50% { box-shadow: 0 0 0 8px rgba(212,160,23,0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { color: #fff; font-family: var(--font-heading); font-size: 20px; letter-spacing: 0.3px; }
.brand-text small { color: var(--gold-300); font-size: 11.5px; font-weight: 500; }

.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,0.12);
  color: var(--gold-300);
}

.header-cta { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 22px;
  justify-content: center;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.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); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at top right, var(--green-700), var(--green-900) 70%);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(212,160,23,0.18) 0, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(212,160,23,0.12) 0, transparent 45%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.16);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold-300);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 48px);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--gold-400); }
.hero p.lead {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-heading); font-size: 26px; color: var(--gold-400); }
.hero-stats div span { font-size: 13px; color: rgba(255,255,255,0.7); }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.08);
}
.hero-media-frame img { width: 100%; }
.floating-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #fff;
  color: var(--green-900);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.floating-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); }

/* ---------- App Info Table ---------- */
.app-info-section { padding: 56px 0; }
.app-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.app-info-table { width: 100%; }
.app-info-table tr { border-bottom: 1px solid var(--border-light); }
.app-info-table tr:last-child { border-bottom: none; }
.app-info-table td { padding: 12px 8px; font-size: 15px; }
.app-info-table td:first-child { color: var(--text-muted); font-weight: 500; width: 40%; }
.app-info-table td:last-child { color: var(--text-dark); font-weight: 600; }
.app-info-table .badge-version {
  background: rgba(31,138,76,0.12);
  color: var(--success);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 13px;
}

/* ---------- Section Headings ---------- */
.section { padding: 64px 0; }
.section-alt { background: #fff; }
.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow { background: rgba(27,94,74,0.08); border-color: rgba(27,94,74,0.18); color: var(--green-600); }
.section-head h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 14px; }
.section-head h2 span { color: var(--gold-600); }
.section-head p { color: var(--text-muted); font-size: 16px; }
.section-head.align-left { margin: 0 0 36px; text-align: left; }

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green-900);
}
.feature-card h3 { font-size: 17.5px; margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; color: var(--text-muted); }

/* ---------- Steps ---------- */
.steps-list { display: flex; flex-direction: column; gap: 18px; counter-reset: step; }
.step-item {
  display: flex;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.step-content h4 { font-size: 16.5px; margin-bottom: 6px; }
.step-content p { font-size: 14.5px; color: var(--text-muted); }

/* ---------- Two Column Content + Image ---------- */
.content-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-media-grid.reverse .media-col { order: 2; }
.media-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.text-col h2 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 16px; }
.text-col p { margin-bottom: 14px; color: var(--text-body); }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.check-list svg { flex-shrink: 0; margin-top: 3px; color: var(--success); }

/* ---------- Payment Methods Strip ---------- */
.payment-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.payment-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: var(--shadow-sm);
}
.payment-chip .dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-jazz { background: #e2136e; }
.dot-easy { background: #1d8b3f; }
.dot-bank { background: #2563eb; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--green-800), var(--green-700));
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,160,23,0.25), transparent 50%);
}
.cta-banner h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 26px; position: relative; }
.cta-banner .btn { position: relative; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: var(--gold-400); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text-dark);
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(27,94,74,0.08);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s, color 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-500);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-answer-inner { padding: 0 24px 22px; color: var(--text-muted); font-size: 14.5px; }

/* ---------- Tables (Deposit/Withdraw method tables) ---------- */
.method-table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.method-table { background: var(--bg-card); min-width: 480px; }
.method-table th, .method-table td { padding: 16px 20px; text-align: left; font-size: 14.5px; }
.method-table thead th {
  background: var(--green-800);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}
.method-table tbody tr { border-bottom: 1px solid var(--border-light); }
.method-table tbody tr:last-child { border-bottom: none; }
.method-table tbody tr:nth-child(even) { background: #fafcfb; }

/* ---------- Alert / Warning Box ---------- */
.alert-box {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  font-size: 14.5px;
  align-items: flex-start;
}
.alert-warning { background: #fff8e8; border: 1px solid #f3dca0; color: #7a5b06; }
.alert-info { background: #eef7f1; border: 1px solid #c6e6d3; color: var(--green-800); }
.alert-box svg { flex-shrink: 0; margin-top: 2px; }

/* ---------- Forms (Contact Page) ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--text-dark); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 10px; }
.form-success {
  display: none;
  background: #eef7f1;
  border: 1px solid #c6e6d3;
  color: var(--green-800);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 18px;
}
.form-error {
  display: none;
  background: #fdeeec;
  border: 1px solid #f3c6bf;
  color: var(--danger);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 18px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14.5px; color: var(--text-muted); }
.contact-info-item a:hover { color: var(--green-700); text-decoration: underline; }

/* ---------- Legal Pages (Privacy / Disclaimer) ---------- */
.legal-page { background: #fff; padding: 56px 0 80px; }
.legal-header { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.legal-header h1 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 12px; }
.legal-header p { color: var(--text-muted); font-size: 14.5px; }
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 {
  font-size: 21px;
  margin-top: 38px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 14px; color: var(--text-body); }
.legal-body ul { margin: 14px 0; padding-left: 4px; }
.legal-body ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}
.legal-toc {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 36px;
}
.legal-toc h3 { font-size: 15px; margin-bottom: 12px; }
.legal-toc ol { padding-left: 20px; list-style: decimal; display: flex; flex-direction: column; gap: 6px; }
.legal-toc a { color: var(--green-700); font-size: 14px; font-weight: 500; }
.legal-toc a:hover { text-decoration: underline; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 18px 0; font-size: 13.5px; color: var(--text-muted); background: #fff; border-bottom: 1px solid var(--border-light); }
.breadcrumb a { color: var(--green-700); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: 0.6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.75);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand strong { color: #fff; font-family: var(--font-heading); font-size: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--gold-500); color: var(--green-900); }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-300); }

.footer-disclaimer { padding: 22px 0; font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,0.55); border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-disclaimer a { color: var(--gold-300); }
.footer-bottom { padding: 18px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; top: 78px; left: 0; right: 0; background: var(--green-900); flex-direction: column; padding: 10px 20px 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; box-shadow: var(--shadow-md); }
  .main-nav.open { max-height: 400px; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 13px 16px; }
  .hamburger { display: flex; }
  .header-cta .btn-primary span { display: none; }
  .content-media-grid { grid-template-columns: 1fr; gap: 30px; }
  .content-media-grid.reverse .media-col { order: 0; }
  .app-info-card { grid-template-columns: 1fr; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 40px 0 60px; }
  .hero-stats { gap: 22px; }
  .section { padding: 48px 0; }
  .cta-banner { padding: 32px 22px; }
  .header-inner { padding-top: 12px; padding-bottom: 12px; }
  .brand-text small { display: none; }
  .floating-badge { left: 10px; bottom: -14px; padding: 9px 14px; font-size: 12.5px; }
}
