@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,800&family=Manrope:wght@400;600&display=swap');

:root {
  --bg-dark: #0a1410;
  --bg-card: #0e1d18;
  --gold: #d4a24c;
  --gold-bright: #f0c674;
  --emerald: #2d8659;
  --text-light: #f4ecd8;
  --text-muted: #c9c0aa;
  --whatsapp: #25d366;
  --danger: #ff4d4f;
  
  --font-heading: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;
  
  --radius-card: 14px;
  --radius-pill: 99px;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-top: 0;
  color: var(--gold-bright);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: var(--gold-bright);
  box-shadow: 0 4px 15px rgba(212, 162, 76, 0.3);
}

.btn-ghost {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-ghost:hover {
  background-color: rgba(212, 162, 76, 0.1);
  color: var(--gold-bright);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 20, 16, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 162, 76, 0.1);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-menu a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at top right, rgba(212, 162, 76, 0.05), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(45, 134, 89, 0.15);
  border: 1px solid var(--emerald);
  border-radius: var(--radius-pill);
  color: var(--emerald);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-light);
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 162, 76, 0.18);
}

.hero-stat {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-stat strong {
  color: var(--text-light);
}

.hero-form-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background-color: rgba(10, 20, 16, 0.6);
  border: 1px solid rgba(212, 162, 76, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 1.1rem;
}

/* TRUST STRIP SECTION */
.trust-strip-section {
  background-color: #0c1814;
  padding: 40px 0;
  border-top: 1px solid rgba(212, 162, 76, 0.1);
  border-bottom: 1px solid rgba(212, 162, 76, 0.1);
}

.trust-strip-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
}

.trust-strip-icon {
  color: var(--emerald);
  font-size: 1.5rem;
}

.trust-strip-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(212, 162, 76, 0.2);
}

/* SECTION PADDING */
.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--bg-card);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* WHY CARDS */
.why-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(212, 162, 76, 0.5);
  transform: translateY(-5px);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 162, 76, 0.3);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ACCOUNT TIERS */
.tier-card {
  background-color: var(--bg-dark);
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier-elevated {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background-color: var(--bg-card);
  z-index: 2;
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--bg-dark);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tier-eyebrow {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tier-title {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.tier-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212, 162, 76, 0.18);
}

.tier-features {
  flex-grow: 1;
  margin-bottom: 32px;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.tier-features li i {
  color: var(--emerald);
  margin-top: 4px;
}

/* HOW IT WORKS */
.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  border-top: 2px dashed rgba(212, 162, 76, 0.3);
  z-index: 1;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.step-circle {
  width: 60px;
  height: 60px;
  background-color: var(--bg-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 24px;
}

.step-item h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* DEPOSIT METHODS */
.deposit-card {
  background-color: var(--bg-dark);
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.deposit-card:hover {
  border-color: var(--gold);
}

.deposit-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.deposit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.deposit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.deposit-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(45, 134, 89, 0.15);
  color: var(--emerald);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.deposit-callout {
  background-color: rgba(212, 162, 76, 0.05);
  border-left: 4px solid var(--gold);
  padding: 24px;
  margin-top: 40px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}

/* COMPARISON TABLE */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(212, 162, 76, 0.18);
}

.custom-table th, .custom-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 162, 76, 0.1);
}

.custom-table th {
  background-color: rgba(212, 162, 76, 0.1);
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.custom-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.02);
}

.custom-table td.dealer-col {
  color: var(--emerald);
  font-weight: 600;
  background-color: rgba(45, 134, 89, 0.05);
}

/* LIVE BETTING SPLIT */
.live-split {
  align-items: center;
}

.live-widget {
  background-color: var(--bg-dark);
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.live-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--danger);
  font-weight: 800;
  font-size: 0.9rem;
}

.blink-dot {
  width: 8px;
  height: 8px;
  background-color: var(--danger);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.match-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px;
  background-color: rgba(255,255,255,0.02);
  border-radius: 8px;
}

.match-teams {
  font-weight: 600;
  font-size: 0.95rem;
}

.match-odds {
  display: flex;
  gap: 8px;
}

.odd-box {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
}

.odd-back {
  background-color: #72bbef;
  color: #000;
}

.odd-lay {
  background-color: #faa9ba;
  color: #000;
}

.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.pill {
  padding: 6px 16px;
  background-color: rgba(212, 162, 76, 0.1);
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--gold);
}

/* CITIES GRID */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.city-card {
  background-color: var(--bg-dark);
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: var(--radius-card);
  padding: 24px;
  transition: all 0.3s ease;
}

.city-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.city-card h3 {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.city-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.city-link {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.city-link:hover {
  color: var(--gold);
}

/* GLOSSARY */
.glossary-card {
  padding: 24px;
  border-left: 2px solid var(--gold);
  background-color: rgba(255, 255, 255, 0.02);
}

.glossary-card h3 {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.glossary-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* COMPLETE GUIDE */
.guide-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.guide-eyebrow {
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.toc-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 162, 76, 0.2);
  border-radius: var(--radius-card);
  padding: 32px;
  margin: 40px 0;
}

.toc-box h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.toc-grid a {
  color: var(--gold);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-grid a::before {
  content: "→";
  color: var(--text-muted);
}

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

.guide-content h3 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text-light);
}

.guide-content p {
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background-color: rgba(212, 162, 76, 0.05);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 32px 0;
}

/* TESTIMONIALS */
.testimonial-card {
  background-color: var(--bg-dark);
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: var(--radius-card);
  padding: 32px;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
}

.testimonial-author {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

/* FAQ ACCORDION */
.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

details {
  background-color: var(--bg-dark);
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CONTACT SPLIT */
.contact-split {
  align-items: flex-start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(212, 162, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--text-light);
}

.contact-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form-card {
  background-color: var(--bg-dark);
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: var(--radius-card);
  padding: 40px;
}

/* FOOTER */
.site-footer {
  background-color: var(--bg-card);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 162, 76, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 162, 76, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: var(--text-light);
  font-size: 1.2rem;
}

.social-icons a:hover {
  color: var(--gold);
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  color: white;
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* MOBILE CTA BAR */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 20, 16, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  z-index: 999;
  border-top: 1px solid rgba(212, 162, 76, 0.2);
  box-sizing: border-box;
}

.mobile-cta-bar .btn {
  width: 100%;
  box-sizing: border-box;
}

/* BLANK PAGE HERO */
.page-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(10, 20, 16, 0), var(--bg-card));
  border-bottom: 1px solid rgba(212, 162, 76, 0.1);
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid, .live-split, .contact-split {
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .tier-elevated {
    transform: none;
  }
}

@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-container::before {
    display: none;
  }
  .steps-container {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header-actions .btn-ghost, 
  .nav-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-grid, .live-split, .contact-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  .hero-form-card {
    order: 2;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  
  .trust-strip-flex {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .trust-strip-divider {
    display: none;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .whatsapp-float {
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .mobile-cta-bar {
    display: block;
  }
  
  body {
    padding-bottom: 80px;
  }
  
  .toc-grid {
    grid-template-columns: 1fr;
  }
  
  .pills-container {
    justify-content: center;
  }
}
