:root {
  --navy: #1B2A4A;
  --navy-deep: #101B30;
  --teal: #16B892;
  --teal-light: #5FD9BB;
  --cream: #F6F7F8;
  --ink: #16232E;
  --muted: #5B6472;
  --line: #E2E5E9;
  --card: #FFFFFF;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--cream); line-height: 1.55; }
h1, h2, h3, h4 { font-family: 'Newsreader', serif; font-weight: 700; color: var(--navy); }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Newsreader', serif; font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.brand img { border-radius: 50%; display: block; }
.brand .sub { display: block; font-size: 0.56rem; letter-spacing: 0.12em; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 600; }
.nav-links { display: flex; gap: 26px; font-size: 0.9rem; font-weight: 600; }
.nav-links a.active { border-bottom: 2px solid var(--navy); padding-bottom: 4px; }
.nav-actions { display: flex; align-items: center; gap: 16px; font-size: 0.88rem; font-weight: 600; }
.lang-toggle { display: flex; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.lang-btn { padding: 6px 11px; font-size: 0.76rem; font-weight: 700; background: #fff; color: var(--muted); border: none; cursor: pointer; }
.lang-btn.active { background: var(--navy); color: #fff; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 11px 20px; border-radius: 4px; font-size: 0.9rem; font-weight: 700; cursor: pointer; border: none; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: #129B7C; }
.btn-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }

/* Mobile hamburger + off-canvas menu (hidden on desktop, see min-width:861px reset below) */
.menu-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 8px; background: none; border: none; cursor: pointer; flex-shrink: 0; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.menu-toggle span + span { margin-top: 5px; }

.mobile-menu-backdrop { display: none; position: fixed; inset: 0; background: rgba(11,33,54,0.55); z-index: 200; opacity: 0; transition: opacity 0.25s ease; }
.mobile-menu-backdrop.open { display: block; opacity: 1; }

.mobile-menu { position: fixed; top: 0; right: 0; height: 100%; width: min(82vw, 320px); background: var(--navy); color: #fff; z-index: 201; padding: 20px 24px 32px; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close { align-self: flex-end; background: none; border: none; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; padding: 6px 8px; margin-bottom: 8px; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }
.mobile-menu-links a { color: #fff; font-size: 1.1rem; font-weight: 600; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-menu-links a.active { color: var(--teal-light); }
.mobile-menu-lang.lang-toggle { border-color: rgba(255,255,255,0.25); align-self: flex-start; margin-bottom: 22px; }
.mobile-menu-lang .lang-btn { background: transparent; color: rgba(255,255,255,0.7); }
.mobile-menu-lang .lang-btn.active { background: var(--teal); color: #fff; }
.mobile-menu-cta { width: 100%; margin-bottom: 18px; }
.mobile-menu-phone { color: rgba(255,255,255,0.8); font-weight: 600; text-align: center; font-size: 0.95rem; }

body.menu-open { overflow: hidden; }

.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; display: flex; align-items: center; min-height: 640px; padding: 0; }
.hero-image-wrap { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,33,54,0.95) 0%, rgba(11,33,54,0.88) 24%, rgba(11,33,54,0.5) 46%, rgba(11,33,54,0.1) 64%, rgba(11,33,54,0) 78%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 72px 0; max-width: none; margin: 0; padding-left: max(28px, 5vw); padding-right: 28px; box-sizing: border-box; }
.hero-text { max-width: 540px; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 7px 14px; border-radius: 20px; font-size: 0.82rem; margin-bottom: 20px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-light); }
.hero h1 { color: #fff; font-size: 2.75rem; line-height: 1.12; margin-bottom: 18px; }
.hero h1 .accent { color: var(--teal-light); }
.hero p.lead { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 460px; margin-bottom: 26px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.chip-row { display: flex; gap: 12px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); padding: 6px 12px; border-radius: 16px; font-size: 0.78rem; }

/* Page hero (interior pages) */
.page-hero { background: var(--navy); color: #fff; padding: 56px 0; }
.page-hero .wrap { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.page-hero .eyebrow { color: var(--teal-light); }
.page-hero h1 { color: #fff; margin-bottom: 10px; font-size: 2.1rem; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; }
.page-hero-note { display: flex; align-items: center; gap: 14px; max-width: 190px; font-size: 0.85rem; color: rgba(255,255,255,0.75); flex-shrink: 0; line-height: 1.4; }
.page-hero-note .bar { width: 2px; align-self: stretch; background: var(--teal); flex-shrink: 0; }

section { padding: 64px 0; }
.eyebrow { color: var(--teal); font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head h2 { font-size: 2rem; margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.02rem; }

/* Empty state (case studies placeholder) */
.empty-state { border: 1.5px dashed var(--line); border-radius: 12px; padding: 46px 30px; text-align: center; background: #fff; }
.empty-state .icon { width: 46px; height: 46px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 8px; }
.empty-state p { color: var(--muted); font-size: 0.92rem; max-width: 420px; margin: 0 auto; }

.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 32px; }
.service-card .icon-wrap { width: 46px; height: 46px; border-radius: 10px; background: rgba(22,184,146,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.service-card ul { display: flex; flex-direction: column; gap: 10px; }
.service-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--ink); }
.service-card li svg { flex-shrink: 0; margin-top: 3px; }
.service-card.brief p:last-child { margin-bottom: 0; }
.service-card .link-more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 700; font-size: 0.88rem; }

/* Service feature rows (services page — image + quote) */
.service-feature { display: grid; grid-template-columns: 1fr 1.35fr 0.65fr; gap: 28px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 32px; margin-bottom: 24px; }
.service-feature-content { order: 1; }
.service-feature-image { order: 2; }
.service-feature-quote { order: 3; }
.service-feature.reverse .service-feature-content { order: 2; }
.service-feature.reverse .service-feature-image { order: 1; }
.service-feature-content .icon-wrap { width: 46px; height: 46px; border-radius: 10px; background: rgba(22,184,146,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-feature-content h3 { font-size: 1.3rem; margin-bottom: 8px; }
.service-feature-content .tagline { font-weight: 700; color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.service-feature-content > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.service-feature-content ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.service-feature-content li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.87rem; color: var(--ink); }
.service-feature-content li svg { flex-shrink: 0; margin-top: 3px; }
.service-feature-image img { width: 100%; height: auto; border-radius: 10px; display: block; }
.service-feature-quote { background: var(--cream); border-radius: 10px; padding: 20px 18px; font-size: 0.85rem; color: var(--ink); align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.service-feature-quote svg { color: var(--teal); margin-bottom: 10px; }
.service-feature-quote p { line-height: 1.5; }

@media (max-width: 860px) {
  .service-feature, .service-feature.reverse { grid-template-columns: 1fr; padding: 24px; }
  .service-feature-content, .service-feature.reverse .service-feature-content,
  .service-feature-image, .service-feature.reverse .service-feature-image,
  .service-feature-quote { order: 0; }
  .page-hero .wrap { flex-direction: column; align-items: flex-start; gap: 16px; }
  .page-hero-note { display: none; }
  .nav-actions { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 480px) {
  .nav-phone { display: none; }
  .nav-actions { gap: 10px; }
  .nav-actions .btn-primary { padding: 9px 14px; font-size: 0.82rem; }
}

section.pricing { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan-card { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 28px 24px; display: flex; flex-direction: column; }
.plan-card.featured { background: var(--navy); color: #fff; border-color: var(--navy); position: relative; transform: translateY(-8px); }
.plan-card.featured .plan-name, .plan-card.featured h4 { color: #fff; }
.featured-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 12px; }
.plan-name { font-size: 0.85rem; color: var(--muted); font-weight: 700; margin-bottom: 6px; }
.plan-card.featured .plan-name { color: rgba(255,255,255,0.7); }
.plan-title { font-family: 'Newsreader', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.plan-price { font-family: 'Newsreader', serif; font-size: 2.1rem; font-weight: 800; margin-bottom: 4px; }
.plan-price span { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.plan-card.featured .plan-price span { color: rgba(255,255,255,0.65); }
.plan-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }
.plan-card.featured .plan-sub { color: rgba(255,255,255,0.65); }
.plan-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 0; flex-grow: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.87rem; }
.plan-features li.disabled { opacity: 0.4; }
.plan-features .val { font-weight: 700; }
.select-plan-btn { width: 100%; }

/* Plans page — centered header with accent word */
.plans-hero { text-align: center; padding-bottom: 0; }
.plans-hero .wrap { max-width: 700px; }
.eyebrow-lines { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--teal); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; margin-bottom: 14px; }
.eyebrow-lines .line { width: 44px; height: 1px; background: var(--line); }
.plans-hero h1 { font-size: 2.1rem; margin-bottom: 12px; }
.accent-teal { color: var(--teal); }
.plans-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* Plan card include / exclude / note / ideal-for blocks */
.plan-section-label { font-size: 0.76rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; margin: 18px 0 10px; }
.plan-card.featured .plan-section-label { color: rgba(255,255,255,0.6); }
.plan-divider { border: none; border-top: 1px solid var(--line); margin: 18px 0 0; }
.plan-card.featured .plan-divider { border-top-color: rgba(255,255,255,0.15); }
.plan-note { display: flex; gap: 8px; align-items: flex-start; background: rgba(22,184,146,0.08); border-radius: 8px; padding: 12px; font-size: 0.82rem; color: var(--ink); margin-top: 18px; }
.plan-note svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.featured-tag { display: inline-flex; align-items: center; gap: 4px; }
.plan-ideal { display: flex; gap: 12px; align-items: flex-start; }
.ideal-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plan-ideal-label { font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 2px; }
.plan-ideal-text { font-size: 0.82rem; color: var(--muted); }
.pricing-ideal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }

.gallery-wrap { padding: 40px 0 10px; }
.gallery-fan { display: flex; justify-content: center; align-items: flex-end; gap: 0; perspective: 1400px; flex-wrap: wrap; padding: 20px 0 40px; }
.gallery-card {
  width: 190px; height: 250px; border-radius: 14px; cursor: pointer;
  margin: 0 -22px; position: relative; overflow: hidden;
  box-shadow: 0 20px 40px -14px rgba(11,33,54,0.35);
  transition: transform 0.35s ease, margin 0.35s ease, z-index 0s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
  color: #fff;
}
.gallery-card:nth-child(1) { animation: float1 5s ease-in-out infinite; animation-delay: 0s; }
.gallery-card:nth-child(2) { animation: float2 5s ease-in-out infinite; animation-delay: 0.4s; }
.gallery-card:nth-child(3) { animation: float3 5s ease-in-out infinite; animation-delay: 0.8s; }
.gallery-card:nth-child(4) { animation: float4 5s ease-in-out infinite; animation-delay: 0.4s; }
.gallery-card:nth-child(5) { animation: float5 5s ease-in-out infinite; animation-delay: 0s; }
@keyframes float1 { 0%,100% { transform: rotate(-9deg) translateY(10px); z-index:1; } 50% { transform: rotate(-9deg) translateY(-2px); z-index:1; } }
@keyframes float2 { 0%,100% { transform: rotate(-4deg) translateY(-4px); z-index:2; } 50% { transform: rotate(-4deg) translateY(-16px); z-index:2; } }
@keyframes float3 { 0%,100% { transform: rotate(0deg) translateY(-14px); z-index:3; } 50% { transform: rotate(0deg) translateY(-26px); z-index:3; } }
@keyframes float4 { 0%,100% { transform: rotate(4deg) translateY(-4px); z-index:2; } 50% { transform: rotate(4deg) translateY(-16px); z-index:2; } }
@keyframes float5 { 0%,100% { transform: rotate(9deg) translateY(10px); z-index:1; } 50% { transform: rotate(9deg) translateY(-2px); z-index:1; } }
.gallery-card:hover, .gallery-card.active {
  animation-play-state: paused;
  transform: rotate(0deg) translateY(-28px) scale(1.14) !important;
  z-index: 10 !important;
  box-shadow: 0 30px 60px -12px rgba(11,33,54,0.5);
}
.gallery-card .g-icon { position: absolute; top: 16px; right: 16px; opacity: 0.85; }
.gallery-card .g-label { font-family: 'Newsreader', serif; font-weight: 700; font-size: 1.05rem; }
.gallery-card .g-sub { font-size: 0.75rem; opacity: 0.85; margin-top: 2px; }
.gallery-hint { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 0.88rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card { border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; display: flex; gap: 14px; align-items: center; margin-bottom: 14px; background: #fff; }
.contact-info-card .lbl { font-size: 0.72rem; color: var(--teal); font-weight: 700; }
.contact-info-card .val2 { font-family: 'Newsreader', serif; font-size: 1rem; }
.contact-form-box { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.contact-form-box input, .contact-form-box textarea { border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px; font-family: inherit; font-size: 0.9rem; }
.contact-form-box textarea { min-height: 110px; resize: vertical; }

.closing { background: var(--navy); color: #fff; border-radius: 14px; padding: 56px 48px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.closing h2 { color: #fff; font-size: 1.9rem; margin-bottom: 12px; }
.closing p { color: rgba(255,255,255,0.75); }
.closing-cta { display: flex; }

footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 48px 0 24px; font-size: 0.88rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
footer h4 { color: #fff; font-size: 0.85rem; margin-bottom: 14px; }
footer li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(11,33,54,0.6); z-index: 100; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal-box { background: #fff; border-radius: 12px; max-width: 560px; width: 100%; max-height: 84vh; display: flex; flex-direction: column; }
.modal-head { padding: 24px 28px 16px; border-bottom: 1px solid var(--line); }
.modal-head h3 { font-size: 1.2rem; margin-bottom: 4px; }
.modal-head p { color: var(--muted); font-size: 0.85rem; }
.modal-body { padding: 20px 28px; overflow-y: auto; font-size: 0.87rem; color: var(--ink); }
.modal-body p { margin-bottom: 12px; }
.modal-body ul { padding-left: 4px; margin-bottom: 4px; }
.modal-body li { margin-bottom: 10px; padding-left: 18px; position: relative; }
.modal-body li::before { content: "\2022"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.modal-foot { padding: 18px 28px 24px; border-top: 1px solid var(--line); }
.agree-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; font-size: 0.85rem; }
.agree-row input { margin-top: 3px; }
.modal-actions { display: flex; gap: 12px; }
#confirmBtn:disabled { opacity: 0.4; cursor: not-allowed; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .service-grid, .pricing-grid, .pricing-ideal-grid, .footer-grid, .values-grid, .contact-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }

  /* Pair each "Ideal for" blurb with its own plan card instead of
     stacking all three cards, then all three blurbs, underneath. The
     two grids stay separate containers (desktop layout untouched) —
     on mobile only, they're flattened into one flex column and
     reordered so card/blurb pairs stay adjacent. */
  .pricing > .wrap { display: flex; flex-direction: column; gap: 20px; }
  .pricing > .wrap > .pricing-grid,
  .pricing > .wrap > .pricing-ideal-grid { display: contents; }
  .pricing > .wrap > .pricing-grid > .plan-card:nth-child(1) { order: 1; }
  .pricing > .wrap > .pricing-ideal-grid > .plan-ideal:nth-child(1) { order: 2; }
  .pricing > .wrap > .pricing-grid > .plan-card:nth-child(2) { order: 3; }
  .pricing > .wrap > .pricing-ideal-grid > .plan-ideal:nth-child(2) { order: 4; }
  .pricing > .wrap > .pricing-grid > .plan-card:nth-child(3) { order: 5; }
  .pricing > .wrap > .pricing-ideal-grid > .plan-ideal:nth-child(3) { order: 6; }
  .pricing > .wrap > .empty-state { order: 7; }
  .closing { grid-template-columns: 1fr; }

  /* Hero: stack image on top, text below, instead of hiding the photo */
  .hero { display: block; padding: 0 0 40px; min-height: 0; }
  .hero::after { display: none; }
  .hero-image-wrap { position: static; width: 100%; height: 240px; }
  .hero-inner { padding: 28px 0 0; }
  .hero-text { max-width: none; }

  /* Gallery: turn off the floating/rotating animation and stack cards simply */
  .gallery-fan { flex-direction: column; align-items: center; gap: 16px; }
  .gallery-card {
    animation: none !important;
    transform: none !important;
    margin: 0;
    width: 100%;
    max-width: 320px;
  }
  .gallery-card:hover, .gallery-card.active {
    transform: scale(1.02) !important;
  }
}

/* Safety net: the off-canvas menu and its trigger must never show on desktop */
@media (min-width: 861px) {
  .mobile-menu, .mobile-menu-backdrop, .menu-toggle { display: none !important; }
}

/* Legal pages (Terms / Privacy / Data Security) */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 28px; }
.legal-content h2 { font-size: 1.35rem; margin: 36px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin: 20px 0 8px; }
.legal-content p { font-size: 0.95rem; color: var(--ink); line-height: 1.7; margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-content li { font-size: 0.95rem; color: var(--ink); line-height: 1.7; margin-bottom: 8px; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 10px 0 24px; font-size: 0.88rem; }
.legal-content th, .legal-content td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.legal-content th { color: var(--navy); font-weight: 700; background: var(--cream); }
.legal-content .note { background: var(--cream); border-radius: 8px; padding: 14px 16px; font-size: 0.88rem; color: var(--muted); margin: 4px 0 20px; }
.legal-content a { color: var(--teal); font-weight: 600; }

/* Footer legal links row */
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.8rem; margin-bottom: 20px; }
.footer-legal a { color: rgba(255,255,255,0.55); }
.footer-legal a:hover { color: rgba(255,255,255,0.85); }

/* Contact form privacy notice */
.form-privacy-notice { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.form-privacy-notice a { color: var(--teal); font-weight: 600; }

@media (max-width: 860px) {
  .legal-content table { font-size: 0.82rem; }
  .legal-content th, .legal-content td { padding: 8px; }
}

