/* ==========================================================================
   MR Accounting & Tax — Stylesheet
   ========================================================================== */

:root {
  /* Charcoal & bronze palette — variable names kept from the original
     navy theme so the rest of the stylesheet doesn't need renaming. */
  --navy: #16181d;
  --navy-dark: #0d0e11;
  --navy-light: #1f2228;
  --navy-lighter: #2b2f37;
  --accent: #a87b42;
  --accent-light: #f4ede1;
  --bg: #ffffff;
  --bg-soft: #f7f5f1;
  --bg-soft-2: #efece6;
  --text: #1d1f24;
  --text-muted: #5d5f66;
  --border: #e6e2da;
  --check: #1f9d55;
  --cross: #a5a7ad;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 16px rgba(13, 14, 17, 0.06);
  --shadow-lg: 0 12px 32px rgba(13, 14, 17, 0.12);
  --max-width: 1140px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

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

section {
  padding: 72px 0;
}

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

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

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
}

h1 {
  font-size: 2.9rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h2 {
  font-size: 2.1rem;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  margin: 0 0 40px;
  text-align: left;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy-dark);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  background: var(--bg-soft);
}

.btn-block {
  width: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav-logo:hover {
  text-decoration: none;
}

.nav-logo .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.nav-links .btn {
  margin-left: 8px;
  padding: 10px 22px;
  font-size: 0.95rem;
}

.nav-links .btn-light,
.nav-links .btn-light:hover {
  color: var(--navy);
}

.nav-links .lang-switch {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links .lang-switch:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.nav-logo .logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.footer-brand .logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-links .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1020px) and (min-width: 861px) {
  /* keep header on one line on narrow desktops */
  .nav-links .nav-phone {
    display: none;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  transition: all 0.2s ease;
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 20px;
    gap: 4px;
    display: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
  }

  .nav-links .btn {
    margin: 8px 0 0;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background:
    linear-gradient(160deg, rgba(13, 14, 17, 0.82) 0%, rgba(13, 14, 17, 0.6) 55%, rgba(22, 24, 29, 0.85) 100%),
    url("../images/hero-desk.jpg") center / cover no-repeat;
  background-color: var(--navy-dark);
  color: #fff;
  padding: 130px 0;
}

.hero .container {
  max-width: 760px;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: 3.6rem;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 0;
  }

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

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 36px;
}

.hero .cta-row {
  justify-content: center;
}

.page-hero {
  background:
    linear-gradient(160deg, rgba(13, 14, 17, 0.88) 0%, rgba(22, 24, 29, 0.78) 100%),
    url("../images/binders.jpg") center 35% / cover no-repeat;
  background-color: var(--navy-dark);
  color: #fff;
  padding: 84px 0;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   Feature blocks (Why us)
   ========================================================================== */

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

@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature .icon svg {
  width: 24px;
  height: 24px;
}

.feature h3 {
  margin-bottom: 6px;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.97rem;
}

.bg-soft {
  background: var(--bg-soft);
}

/* ==========================================================================
   "Who is this for" cards
   ========================================================================== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 700px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.audience-card.ltd {
  background:
    linear-gradient(180deg, rgba(13, 14, 17, 0.88) 0%, rgba(22, 24, 29, 0.94) 100%),
    url("../images/calculator.jpg") center / cover no-repeat;
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.audience-card.ltd h3,
.audience-card.ltd a {
  color: #fff;
}

.audience-card.ltd p {
  color: rgba(255, 255, 255, 0.78);
}

.audience-card h3 {
  margin-bottom: 8px;
}

.audience-card p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.audience-card .link {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ==========================================================================
   How it works (steps)
   ========================================================================== */

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

@media (max-width: 800px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step {
  text-align: center;
  padding: 0 12px;
}

.step .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 18px;
}

.step h3 {
  margin-bottom: 8px;
}

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

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background:
    linear-gradient(160deg, rgba(13, 14, 17, 0.88) 0%, rgba(22, 24, 29, 0.82) 100%),
    url("../images/chairs.jpg") center 60% / cover no-repeat;
  background-color: var(--navy);
  color: #fff;
  text-align: center;
  padding: 96px 0;
}

.cta-band h2 {
  color: #fff;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-band .cta-row {
  justify-content: center;
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-photo {
  position: sticky;
  top: 100px;
}

.about-photo .frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-photo .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo .caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}

@media (max-width: 800px) {
  .about-photo {
    position: static;
    max-width: 280px;
    margin: 0 auto;
  }
}

.about-body p {
  margin-bottom: 1.2em;
  color: var(--text);
}

.about-extras {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.about-extra-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.about-extra-card h4 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1rem;
}

.about-extra-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.quote-block {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--navy);
  margin: 28px 0;
}

/* ==========================================================================
   Services / Pricing
   ========================================================================== */

.referral-banner {
  background: var(--accent-light);
  border: 1px solid #cfe0fb;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 8px;
}

.referral-banner .icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.referral-banner strong {
  color: var(--navy);
}

.referral-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.pricing-section h2 {
  margin-bottom: 4px;
}

.pricing-section .section-head {
  margin-bottom: 36px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

@media (max-width: 860px) {
  .pricing-grid,
  .pricing-grid.ltd {
    grid-template-columns: 1fr;
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-card.ltd-card {
  border-color: var(--navy-light);
  background: var(--bg-soft);
}

.price-card .price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 6px;
}

.price-card .price-tag .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.price-card .price-tag .period {
  color: var(--text-muted);
  font-weight: 500;
}

.price-card .tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.price-card .desc {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 18px;
}

.price-card .features {
  margin-bottom: 20px;
  flex-grow: 1;
}

.price-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.93rem;
  border-bottom: 1px dashed var(--border);
}

.price-card .features li:last-child {
  border-bottom: none;
}

.price-card .features li.no {
  color: var(--text-muted);
}

.price-card .features .mark {
  flex-shrink: 0;
  font-weight: 700;
  width: 20px;
  text-align: center;
}

.price-card .features li.yes .mark {
  color: var(--check);
}

.price-card .features li.no .mark {
  color: var(--cross);
}

.price-card .note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.price-card .referral-tag {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.closing-notes {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

@media (max-width: 860px) {
  .closing-notes {
    grid-template-columns: 1fr;
  }
}

.closing-notes .note-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.closing-notes h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.closing-notes p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-tabs input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.faq-tab-labels {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.faq-tab-labels label {
  cursor: pointer;
  padding: 12px 22px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: all 0.15s ease;
  margin-bottom: -1px;
}

.faq-tab-labels label:hover {
  color: var(--navy);
}

.faq-tab-content {
  display: none;
}

#tab-sa:checked ~ .faq-tab-labels label[for="tab-sa"],
#tab-ltd:checked ~ .faq-tab-labels label[for="tab-ltd"] {
  color: var(--navy);
  border-bottom-color: var(--accent);
}

#tab-sa:checked ~ #content-sa,
#tab-ltd:checked ~ #content-ltd {
  display: block;
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.accordion summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.accordion details[open] summary::after {
  content: "\2212";
}

.accordion .answer {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 0.96rem;
  padding-right: 32px;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  background:
    linear-gradient(180deg, rgba(13, 14, 17, 0.82) 0%, rgba(13, 14, 17, 0.94) 100%),
    url("../images/notebook-coffee.jpg") center / cover no-repeat;
  background-color: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-card h3 {
  color: #fff;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.contact-info-list {
  margin: 20px 0;
  display: grid;
  gap: 14px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
}

.contact-info-list .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-list a {
  color: #fff;
  font-weight: 500;
}

.contact-note {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ==========================================================================
   MTD band, seasonal deadline banner, consultation strip
   ========================================================================== */

.mtd-band {
  background:
    linear-gradient(180deg, rgba(13, 14, 17, 0.86) 0%, rgba(22, 24, 29, 0.92) 100%),
    url("../images/calculator.jpg") center 30% / cover no-repeat;
  background-color: var(--navy-dark);
  color: #fff;
}

.mtd-band .mtd-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mtd-band .eyebrow {
  color: var(--accent);
}

.mtd-band h2 {
  color: #fff;
}

.mtd-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.seasonal-banner {
  display: none;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 0.93rem;
  font-weight: 500;
}

.seasonal-banner.show {
  display: block;
}

.seasonal-banner a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.consult-strip {
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.consult-strip h3 {
  margin-bottom: 4px;
}

.consult-strip p {
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   Pricing extras: Most popular badge, comparison table
   ========================================================================== */

.price-card {
  position: relative;
}

.price-tag .from {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card.popular {
  border: 2px solid var(--accent);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  vertical-align: top;
}

.compare-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-table td.price {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

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

.compare-wrap {
  overflow-x: auto;
}

/* ==========================================================================
   GDPR consent checkbox
   ========================================================================== */

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.07);
  text-decoration: none;
}

/* ==========================================================================
   Legal pages (Privacy / Terms)
   ========================================================================== */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
}

.legal-page .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page h2:first-of-type {
  margin-top: 0;
}

.legal-page ul {
  list-style: disc;
  margin: 0 0 1em 1.3em;
}

.legal-page ul li {
  margin-bottom: 0.4em;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.legal-page table th,
.legal-page table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  vertical-align: top;
}

.legal-page table th {
  color: var(--navy);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.footer-grid p,
.footer-grid li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-brand .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Misc helpers
   ========================================================================== */

.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: 48px;
}

.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

.tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
