.footer, .footer * {
  color: #fff !important;
}
.footer a {
  color: #fff !important;
  text-decoration: underline;
}
.footer a:hover, .footer a:focus {
  color: #fff !important;
  text-decoration: underline;
}
/* Hamburger Menu Styles */
.hamburger {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 120;
}
.hamburger-box {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 28px;
  height: 4px;
  background: #073d79;
  border-radius: 2px;
  position: absolute;
  left: 6px;
  transition: all 0.3s;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
  width: 28px;
  height: 4px;
  background: #073d79;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  top: 10px;
}
.hamburger.is-active .hamburger-inner {
  background: transparent;
}
.hamburger.is-active .hamburger-inner::before {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.is-active .hamburger-inner::after {
  transform: translateY(-10px) rotate(-45deg);
}

.primary-nav {
  position: absolute;
  top: 72px;
  right: 0;
  left: auto;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-120%);
  transition: transform 0.3s;
  z-index: 110;
  padding: 1rem 1rem 0.75rem;
  display: inline-block;
  width: max-content;
  max-width: calc(100vw - 2rem);
  opacity: 0;
  pointer-events: none;
}
.primary-nav.nav-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.primary-nav ul.nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.header-inner {
  position: relative;
}
/* Why Choose Section Styles */
.why-choose-section {
  background: #073D79;
  color: #fff;
  padding: 60px 0;
}

.why-choose-section .container {
  font-size: 1.15rem;
}

.why-choose-section h2 {
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.why-choose-section ul {
  list-style: disc inside;
  margin: 24px 0 0 0;
  padding: 0;
}

.why-choose-section li {
  margin-bottom: 12px;
  font-size: 1.1em;
}

.product-features {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
}

.feature-icon {
  color: #fff;
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.why-choose-emphasis {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.35rem;
}

@media (min-width: 768px) {
  .product-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* AI-Replacing-Accountants Section */
.ai-replacing-accountants-section {
  background: #fff;
  color: #101827;
  padding: 60px 0;
}

.ai-replacing-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ai-replacing-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.ai-replacing-text {
  flex: 1 1 60%;
}

.ai-replacing-text ul {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
}

.ai-replacing-text li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.5rem;
}

.ai-replacing-text li::before {
  content: "\f3ed";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--color-primary);
}

.ai-replacing-image {
  flex: 1 1 40%;
}

.ai-replacing-emphasis {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .ai-replacing-content {
    flex-direction: column;
  }
}

/* The Architecture Section */
.architecture-section {
  background: #073d79;
  color: #fff;
  padding: 60px 0;
}

.architecture-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.architecture-left,
.architecture-right {
  flex: 1 1 50%;
}

.architecture-section h2,
.architecture-section p,
.architecture-section li {
  color: #fff;
}

.architecture-left img {
  margin: 1rem 0;
  max-width: 100%;
  height: auto;
}

.architecture-emphasis {
  font-weight: 700;
}

.architecture-right ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

@media (max-width: 900px) {
  .architecture-content {
    flex-direction: column;
  }
}

/* Designed For Section */
.designed-for-section {
  background: #fff;
  color: #101827;
  padding: 60px 0;
}

.designed-for-title {
  text-align: center;
  margin-bottom: 2rem;
}

.designed-for-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.designed-for-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
}

.designed-for-icon {
  color: #073d79;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.designed-for-card h3 {
  margin-bottom: 0.75rem;
}

.designed-for-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.designed-for-card li {
  margin-bottom: 0.4rem;
}

/* Services Page */
.services-hero-section {
  background: #073d79;
  color: #fff;
  padding: 70px 0;
}

.services-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.services-hero-text {
  flex: 1 1 70%;
}

.services-hero-text h1 {
  color: #fff;
  margin: 0;
  font-style: italic;
}

.services-hero-image {
  flex: 0 0 170px;
}

.analytics-suite-section {
  background: #fff;
  color: #101827;
  padding: 60px 0;
}

.analytics-suite-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
}

.analytics-suite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.analytics-suite-card {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.5rem;
  background: #f8fafc;
}

.analytics-suite-card h3 {
  margin-bottom: 0.75rem;
  font-style: italic;
}

.analytics-suite-section sup {
  font-size: 0.65em;
}

.btn-services-suite,
.btn-services-demo {
  background: #4f86c6;
  color: #fff;
  border: 1px solid #4f86c6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.btn-services-suite:hover,
.btn-services-demo:hover {
  background: #3e74b4;
  border-color: #3e74b4;
}

.analytics-suite-demo-wrap {
  text-align: center;
  margin-top: 2rem;
}

.btn-services-demo i {
  margin-right: 0.35rem;
}

@media (max-width: 900px) {
  .services-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .analytics-suite-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 640px) {
  .designed-for-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Book a Demo page
   ========================================================= */

/* Hero */
.demo-hero-section {
  background: #073d79;
  padding: 60px 0 50px;
  text-align: center;
}

.demo-hero-headline {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.demo-hero-headline i {
  color: #fff;
  font-style: normal;
}

.demo-hero-headline em {
  font-style: italic;
}

.demo-hero-subheading {
  color: #fff;
  max-width: 920px;
  margin: 0 auto 1.75rem;
  font-size: 1.06rem;
  line-height: 1.7;
}

/* Carousel */
.demo-carousel {
  position: relative;
  max-width: 675px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.demo-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.demo-carousel-slide {
  min-width: 100%;
  height: 315px;
  object-fit: cover;
  display: block;
}

.demo-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.40);
  color: #fff;
  border: none;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.2rem 0.65rem 0.35rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 2;
  transition: background 0.2s;
}

.demo-carousel-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.demo-carousel-prev { left: 10px; }
.demo-carousel-next { right: 10px; }

.demo-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.demo-carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.demo-carousel-dot.active {
  background: #fff;
}

/* Book Demo section */
.demo-book-section {
  background: #fff;
  padding: 65px 0;
  text-align: center;
}

.demo-book-headline {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.demo-book-text {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
  color: var(--color-accent);
  line-height: 1.75;
}

.demo-book-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2.25rem 0 1.75rem;
  flex-wrap: wrap;
}

.demo-book-figure {
  text-align: center;
  margin: 0;
}

.demo-book-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
  display: block;
}

.demo-book-figure figcaption {
  margin-top: 0.55rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--color-primary);
  font-weight: 600;
}

.demo-book-figure figcaption sup {
  font-size: 0.65em;
}

.demo-book-cta-wrap {
  text-align: center;
  margin-top: 1.75rem;
}

.btn-book-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #4f86c6;
  color: #fff;
  padding: 0.8rem 2.25rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.btn-book-demo:hover {
  background: #3b6da8;
  color: #fff;
}

@media (max-width: 700px) {
  .demo-hero-headline {
    font-size: 1.35rem;
  }

  .demo-carousel-slide {
    height: 165px;
  }

  .demo-book-images {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================================================
   FirmMetrics page
   ========================================================= */

.firmmetrics-hero-section {
  background: #073d79;
  padding: 70px 0;
  text-align: center;
}

.firmmetrics-hero-section h1 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: 2.15rem;
  line-height: 1.3;
}

.firmmetrics-hero-section p {
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.firmmetrics-foundation-section {
  background: #fff;
  padding: 65px 0;
}

.firmmetrics-foundation-section h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.firmmetrics-foundation-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.firmmetrics-foundation-left p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.firmmetrics-foundation-left h3,
.firmmetrics-foundation-right h3 {
  color: var(--color-primary);
  margin: 1.4rem 0 0.8rem;
  font-style: italic;
}

.firmmetrics-foundation-left h4 {
  position: relative;
  padding-left: 1rem;
  margin: 1rem 0 0.4rem;
  color: var(--color-accent);
}

.firmmetrics-foundation-left h4::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
}

.firmmetrics-foundation-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid #e5e7eb;
}

.firmmetrics-delivers-block {
  margin-top: 1.25rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.25rem;
}

.firmmetrics-delivers-block ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.firmmetrics-delivers-block li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.55rem;
}

.firmmetrics-delivers-block li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #22c55e;
  font-weight: 700;
}

.firmmetrics-foundation-emphasis {
  margin: 2rem auto 0;
  max-width: 950px;
  text-align: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
}

.firmmetrics-demo-cta-wrap {
  text-align: center;
  margin-top: 1.25rem;
}

.firmmetrics-foundation-section sup,
.firmmetrics-hero-section sup {
  font-size: 0.5em;
}

@media (max-width: 900px) {
  .firmmetrics-foundation-content {
    grid-template-columns: 1fr;
  }

  .firmmetrics-hero-section h1 {
    font-size: 1.75rem;
  }
}

/* =========================================================
   Base Reset & Variables
   ========================================================= */

:root {
  --color-primary: #073d79;
  --color-dark: #101827;
  --color-light: #ffffff;
  --color-muted: #6b7280;
  --color-bg: #f4f5f7;
  --color-accent: #1f2937;

  --font-body: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Open Sans", system-ui, sans-serif;

  --container-max: 1200px;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-light);
  line-height: 1.6;
}

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

/* =========================================================
   Accessibility
   ========================================================= */

.skip-link {
  position: absolute;
  top: -999px;
  left: -999px;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  left: 1rem;
}

/* =========================================================
   Layout Utilities
   ========================================================= */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1rem;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-light);
}

.center {
  text-align: center;
}

.emphasis {
  font-weight: 600;
  margin-top: 1rem;
}

/* =========================================================
   Typography
   ========================================================= */

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem 0;
  color: inherit;
}

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

.site-header {
  background: var(--color-light);
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1rem;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.primary-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--color-dark);
  font-style: italic;
}

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

.nav-item-dropdown > .dropdown-toggle {
  display: inline-block;
  position: relative;
  padding-right: 1.35rem;
}

.nav-item-dropdown.open > .dropdown-toggle::after {
  content: '✕';
  position: absolute;
  right: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.dropdown-menu {
  display: none;
  list-style: none;
  margin: 0.75rem 0 0 0;
  padding: 0;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1.2rem;
}

.nav-item-dropdown.open .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  font-size: 0.95rem;
  color: var(--color-dark);
}

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

.hero {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1rem;
  gap: 2rem;
}

.hero-content {
  flex: 1 1 0;
}

.hero-image {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Hero section background color */
.hero-section {
  background-color: #073d79;
  /* Product overview section background color */
  .product-overview-section {
    background-color: #073d79;
  }
  color: #fff;
}

.hero-section .hero-title,
.hero-section .hero-description,
.hero-section .hero-actions a {
  color: #fff;
}

.hero-description {
  font-size: 1.25em;
}

.hero-section .btn.btn-tertiary {
  color: #101827;
}

/* Product Overview Section */
.product-overview-section {
  padding-bottom: 2.5rem;
}

.product-overview-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.product-overview-text {
  flex: 1;
}

.product-overview-image {
  max-width: 50%;
}

.product-overview-heading {
  font-size: calc(1.5em + 2px);
}

.product-overview-title {
  text-align: center;
  font-size: calc(1em + 2px);
}

.product-overview-section .product-overview-text p strong {
  font-size: calc(1em + 4px);
}

@media (max-width: 768px) {
  .product-overview-content {
    flex-direction: column;
  }
  .product-overview-image {
    max-width: 100%;
  }
}

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

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--color-light);
  color: var(--color-primary);
}

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

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-light);
  color: var(--color-light);
}

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

.btn.btn-tertiary {
  background: #fff;
  color: #101827;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin: 0 0.5rem 0.5rem 0;
}

.btn.btn-tertiary:hover,
.btn.btn-tertiary:focus {
  background: #f4f5f7;
  color: #073d79;
  border-color: #073d79;
}

/* =========================================================
   Two Column Layout
   ========================================================= */

.two-column {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .two-column {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* =========================================================
   Feature Cards
   ========================================================= */

.features {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.features article {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
   Audience Grid
   ========================================================= */

.audience-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.audience-grid article {
  background: var(--color-bg);
  padding: 2rem;
  border-radius: var(--radius);
}

.audience-grid ul {
  padding-left: 1.2rem;
}

.audience-grid li {
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.cta {
  background: var(--color-primary);
  color: var(--color-light);
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  margin-bottom: 1rem;
}

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

.site-footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.site-footer a {
  color: var(--color-light);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact .contact-item a {
  font-weight: 700;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 122px;
  height: auto;
  display: block;
}

.footer-copyright-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-trademark {
  font-size: 0.875rem;
  margin: 0;
  color: #fff;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav-list li,
.footer-legal-list li {
  margin: 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-contact {
  order: 1;
  flex: 0 0 100%;
}

.footer-brand {
  order: 2;
  flex: 0 1 auto;
  margin-bottom: 0;
}

.footer-nav {
  order: 3;
}

.footer-social {
  order: 2;
  margin-left: auto;
  align-self: center;
}

.footer-legal {
  order: 4;
  flex: 0 0 100%;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

.footer-social a:hover {
  color: #ccc;
}

/* =========================================================
   Utility
   ========================================================= */

.hidden {
  display: none;
}

.hero-explore {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 0.5rem;
}

.privacy-policy-page h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.privacy-document-content {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  background: #fff;
  color: var(--color-dark);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1.5rem;
}

.privacy-document-content h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.privacy-document-content p {
  margin-bottom: 0.75rem;
}

.privacy-document-content ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
}

.privacy-document-content li {
  margin-bottom: 0.4rem;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
}

.privacy-data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.privacy-data-table th,
.privacy-data-table td {
  border: 1px solid #d1d5db;
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.privacy-data-table thead th {
  background: #f3f4f6;
}