/* ===========================
   GALA CASINO UK — style.css
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C8A84B;
  --gold-light: #e8d5a0;
  --gold-dark: #a07d30;
  --navy: #1a1a2e;
  --navy-mid: #16213e;
  --navy-light: #0f3460;
  --dark-bg: #0d0d1a;
  --surface: #1e1e35;
  --surface-2: #252540;
  --text-primary: #f0ece0;
  --text-secondary: #b0a880;
  --text-muted: #6b6670;
  --green-good: #4ade80;
  --red-bad: #f87171;
  --border: rgba(200, 168, 75, 0.2);
  --border-strong: rgba(200, 168, 75, 0.5);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 20px rgba(200,168,75,0.15);
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1160px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,168,75,0.4);
  filter: brightness(1.1);
}

.btn-primary.btn-large { padding: 15px 36px; font-size: 1.05rem; }
.btn-primary.btn-xlarge { padding: 18px 48px; font-size: 1.15rem; }
.btn-primary.btn-full { width: 100%; text-align: center; }

.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border: 1.5px solid var(--border-strong);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,168,75,0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 15px 30px;
  border: 2px solid var(--border-strong);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(200,168,75,0.1);
  color: var(--gold);
}

.btn-banner {
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 22px;
  border: 2px solid var(--gold);
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.btn-banner:hover {
  background: var(--gold);
  color: var(--navy);
}

/* --- Top Banner --- */
.top-banner {
  background: linear-gradient(90deg, var(--navy-light) 0%, var(--navy) 50%, var(--navy-light) 100%);
  border-bottom: 2px solid var(--gold);
  cursor: pointer;
  padding: 8px 20px;
}

.top-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-banner-text {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner-star {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 26, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-svg {
  height: 40px;
  width: auto;
}

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.main-nav ul li a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: color 0.2s, background 0.2s;
  display: block;
}

.main-nav ul li a:hover {
  color: var(--gold);
  background: rgba(200,168,75,0.08);
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--dark-bg) 60%);
  padding: 72px 20px 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,168,75,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 260px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* --- TOC --- */
.toc-wrapper {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.toc {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.toc-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 130px;
}

.toc-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  column-count: 2;
}

.toc-list li {
  display: list-item;
}

.toc-list a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.toc-list a:hover {
  color: var(--gold);
}

/* --- Payment Strip --- */
.payment-strip {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: var(--dark-bg);
}

.strip-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-align: center;
}

.payment-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pay-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.pay-icon:hover { opacity: 0.75; }

.pay-icon svg {
  width: 64px;
  height: 38px;
  border-radius: 4px;
}

.pay-icon span {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* --- Trust Strip --- */
.trust-strip {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-around;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-item span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* --- Why Section --- */
.why-section {
  padding: 72px 0;
  background: var(--dark-bg);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 230px;
}

/* --- Review / Article Section --- */
.review-section {
  padding: 60px 0 72px;
  background: var(--dark-bg);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: flex-start;
}

.article-main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.article-main h2:first-child {
  border-top: none;
  padding-top: 0;
}

.article-main p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.section-anchor {
  scroll-margin-top: 88px;
}

.resource-list {
  list-style: none;
  padding: 16px 20px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 18px;
}

.resource-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.resource-list li:last-child { border-bottom: none; }

.resource-list strong {
  color: var(--gold);
  margin-right: 6px;
}

/* --- Mid Banner --- */
.mid-banner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.mid-banner:hover {
  box-shadow: var(--shadow-gold);
}

.mid-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.mid-banner-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mid-banner-text strong {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.mid-banner-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- Table Wrapper --- */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--surface);
}

.data-table caption {
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}

.data-table thead th {
  background: var(--surface-2);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-strong);
}

.data-table tbody td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: rgba(200,168,75,0.04);
  color: var(--text-primary);
}

/* --- Sidebar --- */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.sidebar-card-title {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* Score rows */
.score-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.score-row > span:first-child {
  flex: 1;
  color: var(--text-secondary);
  white-space: nowrap;
  min-width: 90px;
}

.score-bar {
  flex: 1;
  height: 5px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 3px;
}

.score-num {
  font-weight: 700;
  color: var(--gold);
  min-width: 28px;
  text-align: right;
  font-size: 0.82rem;
}

.overall-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.overall-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
}

/* Info list */
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  gap: 8px;
}

.info-list li:last-child { border-bottom: none; }

.info-list li span {
  color: var(--text-muted);
  flex-shrink: 0;
}

.info-list li strong {
  color: var(--text-primary);
  text-align: right;
  font-size: 0.8rem;
}

/* Pros/Cons */
.pros-list, .cons-list {
  list-style: none;
}

.pros-list { margin-bottom: 12px; }

.pros-list li, .cons-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pros-list li:last-child, .cons-list li:last-child {
  border-bottom: none;
}

.check-icon, .cross-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 72px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.faq-open {
  border-color: var(--border-strong);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* --- Final CTA --- */
.final-cta {
  padding: 80px 20px;
  background: var(--dark-bg);
  border-top: 1px solid var(--border);
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-disclaimer {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  border-top: 2px solid var(--border);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 160px 200px;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-heading {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.footer-nav-col ul li {
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.footer-nav-col ul li:last-child {
  border-bottom: none;
}

.footer-nav-col ul li a,
.footer-nav-col ul li span {
  color: var(--text-muted);
  font-size: 0.83rem;
  transition: color 0.2s;
}

.footer-nav-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-legal {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-align: center;
  opacity: 0.6;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border-bottom: 2px solid var(--border);
    padding: 12px 0;
    z-index: 99;
  }

  .main-nav.nav-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
  }

  .main-nav ul li a {
    padding: 12px 24px;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .header-cta {
    gap: 8px;
  }

  .header-cta .btn-secondary {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stats {
    min-width: unset;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .feature-card p {
    max-width: none;
  }

  .toc {
    flex-direction: column;
    gap: 14px;
  }

  .toc-list {
    column-count: 1;
    gap: 6px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-grid {
    gap: 20px;
    justify-content: flex-start;
  }

  .mid-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 540px) {
  .top-banner-inner {
    gap: 10px;
  }

  .top-banner-text {
    font-size: 0.78rem;
    gap: 6px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-icons {
    gap: 10px;
  }

  .pay-icon svg {
    width: 52px;
    height: 32px;
  }

  .footer-grid {
    gap: 20px;
  }

  .sidebar-card {
    padding: 18px 16px;
  }

  .header-cta .btn-primary {
    padding: 9px 16px;
    font-size: 0.85rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
