/* =============================================
   LOTUS365 - base.css
   Theme: Light (#ECEAEA) + Teal (#1E8067) + Yellow (#FFE001)
   ============================================= */

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

/* CSS Variables */
:root {
  --primary: #1E8067;
  --primary-dark: #176b56;
  --bg-light: #ECEAEA;
  --bg-teal: #1E8067;
  --accent: #FFE001;
  --white: #FFFFFF;
  --black: #1a1a1a;
  --gray: #555555;
  --gray-light: #999999;
  --gray-border: rgba(0,0,0,0.08);
  --footer-bg: #1a1a1a;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
  --section-pad: 48px;
  --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.7; color: var(--black);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 20px; }
li { margin-bottom: 8px; }
table { width: 100%; border-collapse: collapse; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: 16px; background: var(--accent);
  color: var(--black); padding: 8px 16px; z-index: 10000; border-radius: var(--radius-sm);
}
.skip-link:focus { top: 8px; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* =============================================
   HEADER / NAV (#1E8067 bg)
   ============================================= */
.nav {
  background: var(--primary); padding: 0 0; position: sticky; top: 0; z-index: 1000;
  border-bottom: 3px solid rgba(255,224,1,0.4);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 60px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1001;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.nav-menu {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh;
  background: var(--primary); padding: 80px 24px 24px; overflow-y: auto;
  transition: right 0.3s ease; z-index: 1000;
}
.nav-menu.open { right: 0; }
.nav-overlay {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 999;
}
.nav-overlay.open { display: block; }
.nav-menu a {
  display: block; padding: 12px 0; color: var(--white); font-size: 15px;
  font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-menu a:hover { color: var(--accent); }
.nav-cta {
  display: inline-block; background: var(--accent); color: var(--black) !important;
  padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 14px; white-space: nowrap; text-align: center;
}
.nav-cta:hover { background: #e6cb00; }

/* Dropdowns */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; color: var(--white);
  font-size: 15px; font-weight: 500; padding: 12px 0; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.1); font-family: inherit;
}
.nav-dropdown-toggle::after { content: '+'; font-size: 18px; color: var(--accent); }
.nav-dropdown-toggle[aria-expanded="true"]::after { content: '-'; }
.nav-dropdown { display: none; padding-left: 16px; }
.nav-dropdown.open { display: block; }
.nav-dropdown a { font-size: 14px !important; padding: 8px 0 !important; color: rgba(255,255,255,0.8) !important; }

/* Sub-submenu */
.nav-sub-wrap { position: relative; }
.nav-subdropdown { display: none; padding-left: 14px; }
.nav-subdropdown.open { display: block; }
.nav-subdropdown a { font-size: 13px !important; padding: 6px 0 !important; color: rgba(255,255,255,0.7) !important; }

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-toggle, .nav-overlay { display: none !important; }
  .nav-menu {
    position: static; width: auto; max-width: none; height: auto;
    background: transparent; padding: 0; display: flex; align-items: center; gap: 0;
    overflow: visible;
  }
  .nav-menu a { display: inline-block; padding: 18px 12px; border: none; font-size: 14px; white-space: nowrap; }
  .nav-dropdown-toggle { padding: 18px 12px; border: none; font-size: 14px; }
  .nav-dropdown-toggle::after { content: '\25BE'; font-size: 12px; margin-left: 4px; }
  .nav-dropdown {
    position: absolute; top: 100%; left: 0; background: var(--primary);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
    padding: 8px 0; min-width: 200px; box-shadow: var(--shadow-hover);
    display: none; z-index: 100;
  }
  .nav-dropdown a { padding: 8px 16px !important; white-space: nowrap; display: block !important; }
  .nav-dropdown-wrap:hover .nav-dropdown { display: block; }
  .nav-sub-wrap > .nav-dropdown-toggle { padding: 8px 16px; white-space: nowrap; display: block; width: 100%; text-align: left; }
  .nav-sub-wrap > .nav-dropdown-toggle::after { content: '\203A'; position: absolute; right: 12px; }
  .nav-subdropdown {
    position: absolute; left: 100%; top: 0; background: var(--primary);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
    padding: 8px 0; min-width: 180px; box-shadow: var(--shadow-hover);
    display: none !important;
  }
  .nav-sub-wrap:hover > .nav-subdropdown { display: block !important; }
  .nav-subdropdown a { padding: 8px 16px !important; font-size: 13px !important; white-space: nowrap; }
}

/* =============================================
   SECTIONS (alternating light/teal)
   ============================================= */
.section-light {
  background: var(--bg-light); color: var(--black); padding: var(--section-pad) 0;
}
.section-light h2, .section-light h3 { color: var(--black); }
.section-light a { color: var(--primary); }

.section-teal {
  background: var(--primary); color: var(--white); padding: var(--section-pad) 0;
}
.section-teal h2, .section-teal h3 { color: var(--white); }
.section-teal a { color: var(--accent); }
.section-teal .content-link { color: var(--accent); }

.section-yellow {
  background: var(--accent); color: var(--black); padding: 32px 0; text-align: center;
}
.section-yellow h2 { color: var(--black); margin-bottom: 12px; }
.section-yellow .btn-primary {
  background: var(--primary); color: var(--white); border: none;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--bg-light); padding: 48px 0 0; text-align: center;
}
.hero h1 { font-size: 32px; font-weight: 700; color: var(--black); margin-bottom: 14px; line-height: 1.2; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 16px; color: var(--gray); max-width: 600px; margin: 0 auto 20px; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.hero-trust { font-size: 13px; color: var(--gray-light); margin-bottom: 24px; }
.hero-trust strong { color: var(--primary); }
.hero-img { width: 100%; height: auto; }

@media (min-width: 768px) {
  .hero h1 { font-size: 42px; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-yellow {
  display: inline-block; background: var(--accent); color: var(--black);
  padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; border: none; cursor: pointer; transition: var(--transition);
  text-align: center; min-height: 48px;
}
.btn-yellow:hover { background: #e6cb00; transform: translateY(-1px); }

.btn-outline-white {
  display: inline-block; background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; border: 2px solid var(--white); cursor: pointer;
  transition: var(--transition); text-align: center; min-height: 48px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-outline-teal {
  display: inline-block; background: transparent; color: var(--primary);
  padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; border: 2px solid var(--primary); cursor: pointer;
  transition: var(--transition); text-align: center; min-height: 48px;
}
.btn-outline-teal:hover { background: var(--primary); color: var(--white); }

.btn-primary {
  display: inline-block; background: var(--primary); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 15px; border: none; cursor: pointer; transition: var(--transition);
  text-align: center; min-height: 48px;
}
.btn-primary:hover { background: var(--primary-dark); }

/* =============================================
   CARDS
   ============================================= */
/* Card on light bg */
.card-light {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
  display: block; text-decoration: none; color: var(--black);
}
.card-light:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-light img { width: 100%; height: auto; display: block; }
.card-light-body { padding: 16px 20px; }
.card-light-body h3 { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.card-light-body p { font-size: 13px; color: var(--gray); margin: 0; }

/* Card on teal bg */
.card-teal {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
  display: block; text-decoration: none; color: var(--white);
}
.card-teal:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.card-teal img { width: 100%; height: auto; display: block; }
.card-teal-body { padding: 16px 20px; }
.card-teal-body h3 { font-size: 16px; font-weight: 600; color: var(--accent); margin-bottom: 6px; }
.card-teal-body p { font-size: 13px; color: rgba(255,255,255,0.8); margin: 0; }

/* Card grid */
.card-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 480px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.card-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 480px) { .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .card-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* =============================================
   TABLES
   ============================================= */
.table-wrap { overflow-x: auto; margin: 16px 0; border-radius: var(--radius-sm); }

/* Table on light bg */
.table-light { width: 100%; border-collapse: collapse; }
.table-light th {
  background: var(--primary); color: var(--white); padding: 12px 14px;
  font-size: 13px; font-weight: 600; text-align: left; white-space: nowrap;
}
.table-light td {
  padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--gray-border);
  color: var(--black);
}
.table-light tr:nth-child(even) { background: rgba(30,128,103,0.04); }

/* Table on teal bg */
.table-teal { width: 100%; border-collapse: collapse; }
.table-teal th {
  background: rgba(0,0,0,0.2); color: var(--white); padding: 12px 14px;
  font-size: 13px; font-weight: 600; text-align: left;
}
.table-teal td {
  padding: 10px 14px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}
.table-teal tr:nth-child(even) { background: rgba(255,255,255,0.04); }

/* =============================================
   LOGIN FORM
   ============================================= */
.site-form {
  max-width: 400px; margin: 0 auto; background: var(--white);
  border: 2px solid var(--primary); border-radius: var(--radius);
  padding: 24px; text-align: center;
}
.site-form h3 { color: var(--primary); font-size: 18px; margin-bottom: 14px; }
.site-form input {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: var(--radius-sm);
  font-size: 15px; margin-bottom: 10px; font-family: inherit; background: #f9f9f9;
}
.site-form input:focus { border-color: var(--primary); outline: none; background: var(--white); }
.site-form .btn-yellow { width: 100%; margin-bottom: 10px; }
.site-form .form-links { font-size: 13px; color: var(--gray); }
.site-form .form-links a { color: var(--primary); font-weight: 500; }
.site-form .form-copy { font-size: 11px; color: var(--gray-light); margin-top: 10px; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.section-teal .faq-item { border-bottom: 1px solid rgba(255,255,255,0.15); }
.faq-q {
  width: 100%; padding: 16px 0; background: none; border: none;
  font-size: 15px; font-weight: 600; text-align: left; cursor: pointer;
  font-family: inherit; display: flex; justify-content: space-between; align-items: center;
  color: inherit;
}
.faq-q::after { content: '+'; font-size: 20px; color: var(--primary); flex-shrink: 0; margin-left: 12px; }
.section-teal .faq-q::after { color: var(--accent); }
.faq-q[aria-expanded="true"]::after { content: '-'; }
.faq-a { display: none; padding: 0 0 16px; font-size: 14px; line-height: 1.7; }
.faq-a.open { display: block; }

/* =============================================
   CTA BOX
   ============================================= */
.cta-box {
  background: var(--white); border: 2px solid var(--primary);
  border-radius: var(--radius); padding: 24px; text-align: center;
  margin: 24px 0; border-top: 4px solid var(--accent);
}
.section-teal .cta-box { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.cta-box h3 { color: var(--primary); margin-bottom: 8px; }
.section-teal .cta-box h3 { color: var(--accent); }
.cta-box p { font-size: 14px; margin-bottom: 14px; }

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
  font-size: 13px; color: var(--gray-light); padding: 12px 0;
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; color: var(--gray-light); }

/* =============================================
   AUTHOR BOX (E-E-A-T)
   ============================================= */
.author-box {
  display: flex; gap: 14px; align-items: center;
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); padding: 16px; margin: 20px 0;
}
.author-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px; color: var(--white); font-weight: 700;
}
.author-box p { margin: 0; font-size: 13px; color: var(--gray); }
.author-box strong { color: var(--black); }

/* =============================================
   STEPS
   ============================================= */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 20px 0; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  text-align: center; position: relative;
}
.section-teal .step { background: rgba(255,255,255,0.1); color: var(--white); }
.step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent);
  color: var(--black); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.step h4 { color: var(--primary); margin-bottom: 6px; }
.section-teal .step h4 { color: var(--accent); }
.step p { font-size: 14px; margin: 0; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.wa-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); transition: var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--footer-bg); color: #ccc; padding: 48px 0 24px;
  border-top: 4px solid var(--primary);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 12px; font-weight: 600; }
.footer-col a { display: block; font-size: 13px; color: #aaa; padding: 3px 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  font-size: 12px; color: #888; text-align: center;
}
.footer-bottom a { color: var(--accent); }
.footer-rg { margin-bottom: 10px; }

/* =============================================
   CONTENT LINKS
   ============================================= */
.content-link { color: var(--primary); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.section-teal .content-link { color: var(--accent); }
.ext-link { color: var(--primary); }
.section-teal .ext-link { color: var(--accent); }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-2 { margin-top: 16px; }
.last-updated { font-size: 12px; color: var(--gray-light); margin-bottom: 16px; }

/* Highlight box on light */
.highlight-box {
  background: var(--white); border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 16px 0;
}
.highlight-box-title { font-weight: 600; color: var(--primary); margin-bottom: 4px; }

/* Related links */
.related-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.related-link {
  display: inline-block; padding: 8px 16px; font-size: 13px;
  border: 1px solid var(--primary); border-radius: var(--radius-sm);
  color: var(--primary); background: var(--white);
}
.section-teal .related-link { border-color: rgba(255,255,255,0.3); color: var(--white); background: rgba(255,255,255,0.08); }
.related-link:hover { background: var(--primary); color: var(--white); }

/* Search bar */
.search-bar { position: relative; margin-bottom: 0; }
.search-bar input {
  width: 100%; padding: 10px 40px 10px 14px; border: 1px solid #ddd;
  border-radius: var(--radius-sm); font-size: 14px; background: var(--white);
  font-family: inherit;
}
.search-bar button {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--primary);
}

/* Responsible gambling */
.rg-notice { font-size: 12px; color: #888; }
.rg-notice a { color: var(--accent); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  :root { --section-pad: 32px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .card-grid { grid-template-columns: 1fr; }
}

/* =============================================
   NAV JS (mobile toggle)
   ============================================= */


/* ===== UI FIXES (v2) ===== */



/* Forms and FAQ full width */
.site-form {
  max-width: 100% !important;
  width: 100% !important;
}
.faq-section {
  max-width: 100% !important;
  width: 100% !important;
}

/* Card text: bigger description, add button space */
.card-light-body p, .card-teal-body p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: inherit;
}
.card-light-body, .card-teal-body {
  padding: 16px 20px 20px !important;
}

/* Card button */
.card-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  transition: 0.2s ease;
}
.card-light .card-btn {
  background: var(--primary);
  color: var(--white);
}
.card-light .card-btn:hover { background: var(--primary-dark); }
.card-teal .card-btn {
  background: var(--accent);
  color: var(--black);
}
.card-teal .card-btn:hover { background: #e6cb00; }

/* Nav buttons fix */
.nav-cta {
  display: inline-block !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  white-space: nowrap !important;
  min-height: auto !important;
  height: auto !important;
  line-height: 1.4 !important;
  margin-left: 4px;
}

/* Paragraph spacing */
p { margin-bottom: 14px; }
li { margin-bottom: 6px; }


/* ===== SPACING FIX v3 ===== */

/* H2 spacing: 60px before next h2 section */
h2 { margin-top: 0; margin-bottom: 16px; }
h3 { margin-top: 0; margin-bottom: 12px; }
* + h2 { margin-top: 60px; }
h1 + p + h2, h1 + .last-updated + h2 { margin-top: 24px; }

/* Equal section padding */
.section-light, .section-teal {
  padding: 48px 0 48px !important;
}
.section-yellow {
  padding: 32px 0 32px !important;
}

/* Form equal padding */
.site-form {
  margin: 0 auto !important;
  padding: 24px !important;
}

/* Logo 40% smaller */
.nav-logo img {
  height: 22px !important;
  width: auto !important;
}

/* Login button white text */
.nav-cta[style*="transparent"] {
  color: #fff !important;
}

/* TOC box */
.toc-box {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 20px 0 32px;
}
.section-teal .toc-box {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.toc-box h3 {
  color: var(--primary);
  font-size: 16px;
  margin: 0 0 12px !important;
}
.section-teal .toc-box h3 { color: var(--accent); }
.toc-box ol {
  margin: 0;
  padding-left: 20px;
}
.toc-box li {
  margin-bottom: 6px;
  font-size: 14px;
}
.toc-box a {
  color: var(--primary);
  font-weight: 500;
}
.section-teal .toc-box a { color: var(--accent); }

/* Responsible gambling footer section */
.rg-section {
  background: var(--footer-bg);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #999;
  border-top: 2px solid var(--primary);
}
.rg-section a { color: var(--accent); }


/* Casino card text white */
.card-teal-body p {
  color: rgba(255,255,255,0.9) !important;
}

/* Footer legal section */
.footer-legal {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 20px 0;
}
.footer-legal img { width: 120px; height: auto; flex-shrink: 0; border-radius: 8px; }
.footer-legal p { font-size: 12px; color: #999; margin: 0; line-height: 1.6; }
@media (max-width: 600px) {
  .footer-legal { flex-direction: column; text-align: center; }
  .footer-legal img { width: 160px; }
}

/* Footer payment logos */
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
}
.footer-payments img { height: 30px; width: auto; opacity: 0.7; }
.footer-payments-label { font-size: 12px; color: #888; width: 100%; text-align: center; margin-bottom: 4px; }


/* Mobile menu: space between links and buttons */
@media (max-width: 1023px) {
  .nav-menu .nav-cta {
    margin-top: 16px;
    display: block;
    text-align: center;
  }
  .nav-menu .nav-cta + .nav-cta {
    margin-top: 8px;
  }
}


/* Left-align all text on mobile */
@media (max-width: 768px) {
  .text-center, h1, h2, h3, .hero p, .hero-trust,
  .section-light .container, .section-teal .container {
    text-align: left !important;
  }
  .hero-buttons { justify-content: flex-start !important; }
  .steps { text-align: left; }
  .step { text-align: left; }
}
