/* ==========================================================================
   IndoShipApp Landing Page — Design System & Corporate Stylesheet
   Color Scheme:
   - Light Mode: Deep Corporate Navy (#00113a) & Vivid Crimson Accent (#cc090b)
   - Dark Mode: Midnight Obsidian Navy (#030712 / #0a1224) & Ice Blue Accent (#38bdf8)
   NO RED TEXT IN DARK MODE — All dark mode typography uses crisp White, Sky Blue, or Mint!
   ========================================================================== */

:root {
  /* Brand Exact Color Identifiers */
  --brand-navy: #00113a;
  --brand-red: #cc090b;

  /* Color Palette — Light Mode */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #ffffff;
  --bg-surface-subtle: #f1f5f9;
  --bg-header: #ffffff;

  --text-main: #00113a;
  --text-muted: #334155;
  --text-subdued: #64748b;
  --text-inverse: #ffffff;

  --color-primary: #cc090b;
  --color-primary-hover: #a60709;
  --color-primary-bg: #cc090b;
  --color-badge-bg: rgba(204, 9, 11, 0.08);
  --color-badge-border: rgba(204, 9, 11, 0.25);
  --color-navy: #00113a;
  --color-navy-hover: #001a57;
  --color-accent: #10b981;
  --color-accent-hover: #059669;

  --border-light: #e2e8f0;
  --border-focus: #cc090b;

  --shadow-sm: 0 1px 3px 0 rgba(0, 17, 58, 0.06);
  --shadow-md: 0 4px 14px -2px rgba(0, 17, 58, 0.08), 0 2px 4px -1px rgba(0, 17, 58, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 17, 58, 0.12), 0 8px 10px -6px rgba(0, 17, 58, 0.06);
  --shadow-glow: 0 0 28px rgba(204, 9, 11, 0.28);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

[data-theme="dark"] {
  /* Color Palette — Dark Mode (NO RED TEXT) */
  --bg-page: #030712;
  --bg-surface: #0a1224;
  --bg-surface-elevated: #13203c;
  --bg-surface-subtle: #0d172e;
  --bg-header: #030712;

  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-subdued: #94a3b8;
  --text-inverse: #00113a;

  --color-primary: #38bdf8;
  --color-primary-hover: #60a5fa;
  --color-primary-bg: #00113a;
  --color-badge-bg: rgba(56, 189, 248, 0.12);
  --color-badge-border: rgba(56, 189, 248, 0.3);
  --color-navy: #38bdf8;
  --color-navy-hover: #60a5fa;
  --color-accent: #34d399;

  --border-light: #182645;
  --border-focus: #38bdf8;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 32px rgba(56, 189, 248, 0.35);
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

/* Utility Shell Container */
.shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}

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

/* Section Spacing */
.section-space {
  padding: 5.5rem 0;
}

@media (max-width: 768px) {
  .section-space {
    padding: 3.5rem 0;
  }
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-heading h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-heading p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Header & Navigation */
.page-sentinel {
  height: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Brand Logo Image & Solid Background Wrapper */
.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  background-color: transparent;
  transition: opacity var(--transition-fast);
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #cc090b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(204, 9, 11, 0.25);
}

[data-theme="dark"] .brand-icon {
  background: #00113a;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #00113a;
  line-height: 1.2;
}

[data-theme="dark"] .brand-name {
  color: #ffffff;
}

.brand-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    display: none;
  }

  .primary-nav.is-active {
    display: flex;
  }

  .header-actions .button-quiet {
    display: none;
  }
}

/* Button Components with Solid Color Fills */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.button-compact {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

.button-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.button-full {
  width: 100%;
}

.button-primary {
  background: #cc090b;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.button-primary:hover {
  background: #a60709;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

[data-theme="dark"] .button-primary {
  background: #FFF;
  color: #030712;
}

[data-theme="dark"] .button-primary:hover {
  background: lightgrey;
  color: #030712;
}

.button-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border-color: var(--border-light);
}

.button-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.button-quiet {
  background: transparent;
  color: var(--text-muted);
}

.button-quiet:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  padding: 4.5rem 0 4rem;
  background: var(--bg-page);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--color-badge-bg);
  border: 1px solid var(--color-badge-border);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #00113a;
  margin-bottom: 1.25rem;
}

[data-theme="dark"] .hero h1 {
  color: #ffffff;
}

.hero h1 span {
  display: block;
}

.hero h1 span.highlight-text {
  color: #cc090b;
}

[data-theme="dark"] .hero h1 span.highlight-text {
  color: #38bdf8;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
}

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

/* Corporate UI Interactive Mockup Card */
.hero-media {
  position: relative;
}

.mockup-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.mockup-header {
  height: 42px;
  background: var(--bg-surface-subtle);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.5rem;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }

.mockup-title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-subdued);
}

.mockup-body {
  padding: 1.5rem;
}

.checkout-preview-box {
  background: var(--bg-page);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.checkout-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-subdued);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rate-option-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.rate-option-pill.selected {
  border-color: var(--color-primary);
  background: var(--color-badge-bg);
}

.courier-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.courier-badge-tag {
  padding: 0.25rem 0.5rem;
  background: var(--bg-surface-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-primary);
}

.rate-cost {
  font-weight: 800;
  color: var(--text-main);
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
}

/* Capability Rail */
.capability-rail {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 0;
  box-shadow: var(--shadow-sm);
}

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

.capability-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.capability-item i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.capability-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.capability-item span {
  font-size: 0.8rem;
  color: var(--text-subdued);
}

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

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

/* Live Quote Simulator Workspace */
.quote-section {
  background: var(--bg-page);
}

.quote-workspace {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.form-heading i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.form-heading h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.field select, .field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-page);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.field select:focus, .field input:focus {
  outline: none;
  border-color: var(--border-focus);
}

.input-suffix {
  position: relative;
}

.input-suffix span {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--text-subdued);
  font-weight: 700;
}

.quote-results-panel {
  display: flex;
  flex-direction: column;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.results-header h4 {
  font-size: 1.1rem;
  font-weight: 800;
}

.rates-list-table {
  width: 100%;
  border-collapse: collapse;
}

.rates-list-table th, .rates-list-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.rates-list-table th {
  font-weight: 700;
  color: var(--text-subdued);
  background: var(--bg-surface-subtle);
}

.rates-list-table td strong {
  color: var(--color-primary);
}

[data-theme="dark"] .rates-list-table td strong {
  color: #34d399;
}

@media (max-width: 992px) {
  .quote-workspace {
    grid-template-columns: 1fr;
  }
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #cc090b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

[data-theme="dark"] .feature-icon {
  background: #00113a;
  color: #38bdf8;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

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

/* Courier Logos Matrix Showcase */
.courier-showcase {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

.courier-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.courier-tag {
  padding: 0.5rem 1.25rem;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Comparison Table */
.comparison-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
  background: var(--bg-surface-subtle);
  font-weight: 800;
}

.comparison-table th.highlight-col {
  background: var(--color-badge-bg);
  color: var(--color-primary);
}

.comparison-table td i.ph-check-circle {
  color: var(--color-accent);
  font-size: 1.35rem;
}

.comparison-table td i.ph-x-circle {
  color: #ef4444;
  font-size: 1.35rem;
}

/* Pricing Section */
.pricing-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-glow);
  text-align: center;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin: 1rem 0 0.5rem;
}

.pricing-amount span {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-subdued);
}

.pricing-features {
  margin: 2rem 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.pricing-features li i {
  color: var(--color-accent);
  font-size: 1.25rem;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
}

.faq-trigger i {
  font-size: 1.25rem;
  transition: transform var(--transition-fast);
}

.faq-item.is-open .faq-trigger i {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 1.5rem 1.25rem;
  display: none;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.is-open .faq-content {
  display: block;
}

/* Final CTA Section Solid Color Background */
.cta-banner {
  background: #00081a;
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: #cbd5e1;
}

.cta-banner .button-secondary {
  background: #cc090b;
  color: #ffffff;
  border: none;
}

.cta-banner .button-secondary:hover {
  background: #a60709;
  color: #ffffff;
}

[data-theme="dark"] .cta-banner .button-secondary {
  background: #cc090b;
  color: #fff;
}

[data-theme="dark"] .cta-banner .button-secondary:hover {
  background: #FFF;
  color: #000;
}

/* Footer Styling */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-pill {
  padding: 0.25rem 0.65rem;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-grid nav h2 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.footer-grid nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-subdued);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

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

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

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: #00113a;
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* Sticky Mobile Action Bar */
.mobile-action {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  padding: 0.75rem 1.25rem;
  z-index: 998;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .mobile-action {
    display: flex;
  }
  .whatsapp-float {
    bottom: 4.5rem;
  }
}

/* Legal & Contact Page Layouts */
.legal-hero {
  padding: 4.5rem 0 2.5rem;
  background: var(--bg-surface-subtle);
  border-bottom: 1px solid var(--border-light);
}

.legal-hero-inner {
  max-width: 840px;
}

.legal-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--color-badge-bg);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.legal-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.legal-hero-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.legal-content-section {
  padding: 3.5rem 0 5rem;
}

.legal-article {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.legal-article h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.legal-article ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-article li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 5rem;
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-card i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 0.2rem;
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-form-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-panel h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-form-panel p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.contact-field label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
}

.contact-field input, .contact-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-page);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
}

.captcha-group {
  display: flex;
  gap: 0.75rem;
}

.captcha-refresh-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-surface-subtle);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-honeypot {
  display: none;
}

.contact-status {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-status.is-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-accent);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.contact-status.is-error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

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