/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--lmd-white);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    url("https://images.unsplash.com/photo-1580060839134-75a5edca2e99?auto=format&fit=crop&w=2000&q=90") center/cover no-repeat;
  filter: saturate(1.05) brightness(1.02);
  z-index: -3;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,28,61,0.10) 0%, rgba(11,28,61,0.20) 70%, rgba(11,28,61,0.55) 100%),
    linear-gradient(95deg, rgba(11,28,61,0.72) 0%, rgba(11,28,61,0.45) 35%, rgba(11,28,61,0.10) 60%, transparent 90%),
    radial-gradient(ellipse at 78% 18%, rgba(201,168,76,0.18), transparent 55%);
  z-index: -1;
}

/* === ANIMATED CLOUDS === */
.hero-clouds {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}
.cloud {
  position: absolute;
  background-repeat: repeat-x;
  background-size: 1200px auto;
  opacity: 0.55;
  filter: drop-shadow(0 6px 24px rgba(255,255,255,0.12));
  will-change: transform;
}
.cloud.layer-1 {
  top: 6%;
  height: 26%;
  width: 220%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'><g fill='%23ffffff' fill-opacity='0.85'><path d='M0,150 Q60,90 140,110 Q170,60 240,80 Q300,40 380,80 Q420,55 470,90 Q540,75 600,120 Q660,100 700,150 L0,150 Z'/><path d='M520,170 Q580,120 650,135 Q700,100 780,125 Q830,90 900,120 Q960,105 1010,140 Q1080,125 1130,160 Q1170,140 1200,170 L520,170 Z'/></g></svg>");
  animation: cloudDriftL 180s linear infinite;
  opacity: 0.42;
}
.cloud.layer-2 {
  top: 22%;
  height: 18%;
  width: 220%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'><g fill='%23ffffff' fill-opacity='0.75'><path d='M120,140 Q180,90 260,110 Q310,80 380,100 Q450,75 520,110 Q580,95 620,140 L120,140 Z'/><path d='M740,150 Q800,100 880,120 Q940,85 1020,115 Q1080,100 1140,140 L740,140 Z'/></g></svg>");
  animation: cloudDriftL 280s linear infinite;
  animation-delay: -60s;
  opacity: 0.28;
}
.cloud.layer-3 {
  top: 0%;
  height: 14%;
  width: 220%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'><g fill='%23ffffff' fill-opacity='0.6'><path d='M0,120 Q70,80 150,100 Q220,75 300,95 Q380,80 460,110 L0,120 Z'/><path d='M620,130 Q700,95 800,115 Q900,90 1000,120 Q1100,105 1200,130 L620,130 Z'/></g></svg>");
  animation: cloudDriftL 380s linear infinite;
  animation-delay: -120s;
  opacity: 0.18;
}
@keyframes cloudDriftL {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .cloud { animation: none; }
}
.hero .container { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: 60px; align-items: center; padding: 160px 0 100px; }
.hero-copy { max-width: 640px; }

.sa-flag { display: inline-flex; width: 22px; height: 14px; border-radius: 2px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.25); flex: none; vertical-align: middle; }
.sa-flag svg { display: block; width: 22px; height: 14px; }
.hero-watermark .sa-flag svg, .proudly-sa .sa-flag svg { width: 22px; height: 14px; }

.proudly-sa {
  display: inline-flex; align-items: center; gap: 10px;
  width: max-content; max-width: 100%;
  padding: 7px 14px 7px 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-weight: 500; font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  opacity: 0; transform: translateY(-8px);
  animation: liveBadgeIn 1s var(--ease) 0.3s forwards;
}

.hero-watermark {
  position: absolute;
  left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  background: rgba(11,28,61,0.55);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: var(--radius-pill);
  color: var(--lmd-white);
  font-family: var(--font-body); font-weight: 500; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  pointer-events: none;
}
.hero-watermark .brand-pip { font-family: var(--font-heading); font-style: italic; font-weight: 400; font-size: 0.82rem; color: var(--lmd-gold-light); letter-spacing: 0.02em; text-transform: none; }
.hero-watermark .pip-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--lmd-gold); opacity: 0.6; }
@media (max-width: 720px) {
  .hero-watermark { font-size: 0.62rem; padding: 6px 12px 6px 8px; }
  .hero-watermark .brand-pip { font-size: 0.72rem; }
}

.hero h1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: var(--text-display);
  color: var(--lmd-white);
  line-height: 1.05;
  margin: 18px 0 28px;
}
.hero h1 span { display: block; }
.hero h1 .accent { font-style: normal; color: var(--lmd-gold); }
.hero-body { color: rgba(255,255,255,0.82); max-width: 520px; font-weight: 300; font-size: 1.1rem; line-height: 1.75; }
.hero-cta-row { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 32px; margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.18); flex-wrap: wrap; color: rgba(255,255,255,0.72); font-size: 0.88rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: "✓"; color: var(--lmd-gold); font-weight: 600; }
.hero-visual { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,28,61,0.04) 0%, rgba(11,28,61,0.20) 100%),
    url("https://images.unsplash.com/photo-1573497019418-b400bb3ab074?auto=format&fit=crop&w=1400&q=90&brightness=10") center/cover;
  filter: brightness(1.12) contrast(1.04) saturate(1.05);
}
.hero-visual::after {
  content: ""; position: absolute; right: -10px; bottom: -10px;
  width: 100px; height: 100px;
  border-right: 2px solid var(--lmd-gold);
  border-bottom: 2px solid var(--lmd-gold);
  border-bottom-right-radius: var(--radius-lg);
  pointer-events: none;
}
.live-badge {
  position: absolute;
  top: 130px;
  right: 32px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 14px;
  background: rgba(11, 28, 61, 0.40);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-pill);
  color: var(--lmd-white);
  font-family: var(--font-body);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  animation: liveBadgeIn 1.2s var(--ease) 0.8s forwards;
  overflow: hidden;
  isolation: isolate;
}
.live-badge::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 0%, transparent 35%, rgba(201,168,76,0.18) 50%, transparent 65%, transparent 100%);
  background-size: 220% 100%;
  animation: liveShimmer 6s linear infinite;
}
@keyframes liveBadgeIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes liveShimmer { 0% { background-position: 220% 0; } 100% { background-position: -220% 0; } }
.live-dot { position: relative; width: 10px; height: 10px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); animation: livePulse 2.2s ease-out infinite; flex-shrink: 0; }
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(74,222,128,0.65); }
  70%  { box-shadow: 0 0 0 14px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0   rgba(74,222,128,0); }
}
.live-text { display: flex; flex-direction: column; line-height: 1.15; }
.live-text .top { display: inline-flex; align-items: center; gap: 8px; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lmd-gold-light); font-weight: 500; }
.live-text .top .sep { opacity: 0.5; }
.live-text .clock { font-family: var(--font-heading); font-weight: 400; font-size: 1.25rem; color: var(--lmd-white); letter-spacing: 0.01em; margin-top: 3px; font-variant-numeric: tabular-nums; }
.live-text .date { font-size: 0.7rem; color: rgba(255,255,255,0.65); margin-top: 1px; letter-spacing: 0.04em; }
@media (max-width: 900px) {
  .live-badge { top: 92px; right: 16px; padding: 10px 14px 10px 12px; }
  .live-text .clock { font-size: 1.1rem; }
}

.scroll-cue { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: var(--lmd-gold); font-size: 1.4rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 90px; padding-bottom: 60px; text-align: center; }
  .hero-copy { margin: 0 auto; }
  .hero h1 { font-size: clamp(2.6rem, 8vw, 3.5rem); }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
  .hero-trust { justify-content: center; gap: 18px; }
  .hero-trust .section-label::after { margin-left: auto; margin-right: auto; }
  .section-label::after { margin-left: 0; margin-right: 0; }
  .hero-copy .section-label::after { margin: 12px auto 0; }
  .hero-visual { aspect-ratio: 16/10; max-width: 520px; margin: 0 auto; }
}

/* === STAT STRIP === */
.stat-strip { background: var(--lmd-navy); color: var(--lmd-white); padding: 72px 0; }
.stat-strip .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 12px 24px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(201,168,76,0.45); }
.stat .num { font-family: var(--font-heading); font-weight: 400; font-size: clamp(2.8rem, 5vw, 4rem); color: var(--lmd-gold); line-height: 1; margin-bottom: 8px; }
.stat .lbl { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
@media (max-width: 720px) {
  .stat-strip .grid { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(odd)::after { content: ""; position: absolute; right: -6px; top: 20%; bottom: 20%; width: 1px; background: rgba(201,168,76,0.35); }
}

/* === SPLIT (mediation, about) === */
.split { background: var(--lmd-off-white); }
.split.alt { background: var(--lmd-white); }
.split .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse .split-image { order: 2; }
.split-image { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.split-image::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; }
.split-image::after { content: ""; position: absolute; left: 0; top: 12%; width: 4px; height: 76%; background: var(--lmd-gold); }
.split-image.bg1::before { background-image: linear-gradient(135deg, rgba(11,28,61,0.10), rgba(11,28,61,0.25)), url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1200&q=80"); }
.split-image.bg2::before { background-image: linear-gradient(135deg, rgba(11,28,61,0.10), rgba(11,28,61,0.25)), url("https://images.unsplash.com/photo-1573497019418-b400bb3ab074?auto=format&fit=crop&w=1200&q=80"); }
.split-body p { color: var(--lmd-text-body); font-size: 1.02rem; line-height: 1.85; margin-bottom: 18px; }
.split-body h2 { margin-bottom: 24px; }
.stat-box { background: var(--lmd-navy); color: var(--lmd-white); padding: 26px 28px; border-radius: var(--radius-md); margin: 32px 0; position: relative; }
.stat-box .tag { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lmd-gold); }
.stat-box .big { font-family: var(--font-heading); font-size: 2rem; color: var(--lmd-gold); margin: 8px 0 4px; line-height: 1.1; }
.stat-box p { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin: 0; }
.checklist { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; color: var(--lmd-text-body); font-size: 1rem; }
.checklist li::before { content: "✓"; color: var(--lmd-gold); font-weight: 700; margin-top: 2px; }

@media (max-width: 900px) {
  .split .container { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-image { order: -1; }
  .split-image { aspect-ratio: 16/10; max-height: 320px; }
}

/* === SERVICES GRID === */
.services { background: var(--lmd-white); }
.services .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .services .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services .grid { grid-template-columns: 1fr; } }

/* === PROCESS === */
.process { background: var(--lmd-navy); color: var(--lmd-white); position: relative; overflow: hidden; }
.process::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.15), transparent 60%); }
.process .container { position: relative; }
.process .section-header h2, .process .section-header p { color: var(--lmd-white); }
.process .section-header p { color: rgba(255,255,255,0.7); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 36px; left: 12%; right: 12%; height: 0;
  border-top: 2px dashed rgba(201,168,76,0.5);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 16px; }
.step .num-circle {
  width: 72px; height: 72px; margin: 0 auto 24px;
  border-radius: 50%; border: 2px solid var(--lmd-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.8rem; color: var(--lmd-white);
  background: var(--lmd-navy);
}
.step .icon { width: 32px; height: 32px; color: var(--lmd-gold); margin: 0 auto 14px; }
.step h3 { color: var(--lmd-white); margin-bottom: 10px; }
.step p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.75; }
.process .center-cta { text-align: center; margin-top: 56px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
}

/* === WHY IT MATTERS === */
.matters { background: linear-gradient(135deg, var(--lmd-navy) 0%, var(--lmd-navy-mid) 100%); color: var(--lmd-white); position: relative; overflow: hidden; }
.matters::before { content: "“"; position: absolute; top: 60px; left: 8%; font-family: var(--font-heading); font-size: 18rem; color: rgba(201,168,76,0.12); line-height: 1; pointer-events: none; }
.matters .container { max-width: 820px; text-align: center; position: relative; }
.matters .section-label { color: var(--lmd-gold-light); }
.matters h2 { color: var(--lmd-white); margin-bottom: 36px; }
.matters .quote { font-family: var(--font-heading); font-style: italic; font-weight: 300; font-size: clamp(1.2rem, 2vw, 1.45rem); color: rgba(255,255,255,0.92); line-height: 1.85; }
.matters .quote + .quote { margin-top: 22px; }
.matters .divider { width: 80px; height: 2px; background: var(--lmd-gold); margin: 44px auto; }
.matters .benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 50px; }
.matters .benefit { display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.82); font-size: 0.92rem; }
.matters .benefit .icon { width: 28px; height: 28px; color: var(--lmd-gold); }
@media (max-width: 720px) { .matters .benefits { grid-template-columns: repeat(2, 1fr); } }

/* === TESTIMONIALS === */
.testimonials { background: var(--lmd-white); }
.t-slider { position: relative; }
.t-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; transition: transform 0.5s var(--ease); }
.t-card {
  background: var(--lmd-off-white);
  border: 1px solid var(--lmd-border);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.t-card:hover { border-color: var(--lmd-gold); transform: translateY(-4px); }
.t-stars { color: var(--lmd-gold); font-size: 1.1rem; letter-spacing: 0.12em; }
.t-mark { font-family: var(--font-heading); font-size: 3.6rem; color: var(--lmd-gold); line-height: 0.6; }
.t-body { font-size: 1.02rem; color: var(--lmd-text-body); line-height: 1.85; flex-grow: 1; }
.t-rule { height: 1px; background: var(--lmd-border); }
.t-meta { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--lmd-gold); background-size: cover; background-position: center; flex-shrink: 0; }
.t-meta .name { font-weight: 600; color: var(--lmd-navy); font-size: 0.95rem; }
.t-meta .role { color: var(--lmd-text-muted); font-size: 0.82rem; }
.t-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.t-dots button { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--lmd-navy); background: transparent; padding: 0; transition: all 0.3s var(--ease); }
.t-dots button.active { background: var(--lmd-gold); border-color: var(--lmd-gold); width: 28px; border-radius: 5px; }
@media (max-width: 1000px) { .t-track { grid-template-columns: 1fr; } .t-track .t-card:not(.active) { display: none; } }

/* === LEAD FORM === */
.lead {
  position: relative;
  color: var(--lmd-white);
  background:
    linear-gradient(135deg, rgba(11,28,61,0.92) 0%, rgba(11,28,61,0.80) 100%),
    url("https://images.unsplash.com/photo-1591389703635-e15a07b842d7?auto=format&fit=crop&w=1600&q=80") center/cover;
  padding: clamp(80px, 12vw, 140px) 0;
}
.lead .container { max-width: 760px; text-align: center; }
.lead h2 { color: var(--lmd-white); margin: 14px 0 18px; }
.lead p { color: rgba(255,255,255,0.78); margin: 0 auto 38px; max-width: 560px; }

/* === FAQ === */
.faq { background: var(--lmd-off-white); }
.faq .container { max-width: 820px; }
.faq-item {
  background: var(--lmd-white);
  border: 1px solid var(--lmd-border);
  border-left: 1px solid var(--lmd-border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 12px;
  transition: border-color 0.3s var(--ease), border-left-width 0.3s var(--ease);
}
.faq-item.open { border-color: var(--lmd-gold); border-left: 4px solid var(--lmd-gold); padding-left: 23px; }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; font-weight: 500; color: var(--lmd-navy); font-size: 1rem; }
.faq-q .chev { width: 18px; height: 18px; color: var(--lmd-gold); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.3s var(--ease); opacity: 0; color: var(--lmd-text-body); font-size: 0.96rem; line-height: 1.85; padding: 0; }
.faq-item.open .faq-a { max-height: 320px; opacity: 1; padding: 14px 0 4px; border-top: 1px solid var(--lmd-border); margin-top: 14px; }

/* === CONTACT STRIP === */
.contact-strip { background: var(--lmd-navy); color: var(--lmd-white); padding: 56px 0; }
.contact-strip .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.c-col { text-align: center; padding: 8px 24px; position: relative; transition: color 0.3s var(--ease); }
.c-col + .c-col::before { content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,0.18); }
.c-col .icon { width: 32px; height: 32px; color: var(--lmd-gold); margin: 0 auto 12px; }
.c-col .lbl { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lmd-gold); margin-bottom: 6px; }
.c-col a { color: var(--lmd-white); font-weight: 500; font-size: 1.05rem; }
.c-col a:hover { color: var(--lmd-gold); }
@media (max-width: 720px) { .contact-strip .grid { grid-template-columns: 1fr; gap: 28px; } .c-col + .c-col::before { display: none; } }

/* === FOOTER === */
.site-footer { background: var(--lmd-navy-deep); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.site-footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 56px; }
.f-brand .logo-text { font-family: var(--font-heading); color: var(--lmd-white); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.02em; }
.f-brand .tagline { font-family: var(--font-heading); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.6); margin: 8px 0 16px; }
.f-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.f-social { display: flex; gap: 12px; }
.f-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.3s var(--ease); }
.f-social a:hover { border-color: var(--lmd-gold); color: var(--lmd-gold); transform: translateY(-2px); }
.f-col h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.10em; color: var(--lmd-white); margin-bottom: 12px; }
.f-col h4::after { content: ""; display: block; width: 30px; height: 2px; background: var(--lmd-gold); margin-top: 10px; }
.f-col ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.f-col ul a { color: rgba(255,255,255,0.6); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
.f-col ul a::before { content: "›"; color: var(--lmd-gold); }
.f-col ul a:hover { color: var(--lmd-gold); }
.f-contact ul { gap: 14px; }
.f-contact ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.f-contact ul li .icon { color: var(--lmd-gold); flex-shrink: 0; margin-top: 3px; }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.f-bottom a { color: rgba(255,255,255,0.5); }
.f-bottom a:hover { color: var(--lmd-gold); }
@media (max-width: 900px) {
  .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .site-footer .grid { grid-template-columns: 1fr; }
  .f-bottom { justify-content: center; text-align: center; }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--lmd-white);
  padding: 140px 0 80px;
  background:
    linear-gradient(135deg, rgba(11,28,61,0.78) 0%, rgba(11,28,61,0.65) 100%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.page-hero h1 { color: var(--lmd-white); margin: 20px 0 16px; }
.page-hero .gold-rule { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 18px; }
.page-hero .gold-rule::before, .page-hero .gold-rule::after { content: ""; width: 50px; height: 1px; background: var(--lmd-gold); }
.page-hero .gold-rule .diamond { width: 8px; height: 8px; background: var(--lmd-gold); transform: rotate(45deg); }

/* === VALUES (about page) === */
.values { background: var(--lmd-off-white); }
.values .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value { background: var(--lmd-white); padding: 40px 32px; border-radius: var(--radius-lg); border: 1px solid var(--lmd-border); text-align: center; }
.value .icon { width: 56px; height: 56px; color: var(--lmd-gold); margin: 0 auto 18px; }
.value h3 { color: var(--lmd-navy); margin-bottom: 12px; }
.value p { color: var(--lmd-text-body); font-size: 0.96rem; line-height: 1.8; }
@media (max-width: 800px) { .values .grid { grid-template-columns: 1fr; } }

/* === SERVICES DETAIL === */
.svc-detail { padding: 96px 0; }
.svc-detail:nth-child(odd) { background: var(--lmd-off-white); }
.svc-detail .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.svc-detail.reverse .svc-icon-wrap { order: 2; }
.svc-icon-wrap { display: flex; align-items: center; justify-content: center; }
.svc-icon-circle { width: 220px; height: 220px; border-radius: 50%; background: var(--lmd-navy); display: flex; align-items: center; justify-content: center; box-shadow: var(--lmd-shadow-lg); }
.svc-icon-circle .icon { width: 80px; height: 80px; color: var(--lmd-gold); }
.svc-detail h2 { color: var(--lmd-navy); margin-bottom: 18px; }
.svc-detail p { color: var(--lmd-text-body); font-size: 1.02rem; line-height: 1.85; }
.svc-benefits { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.svc-benefits li { display: flex; gap: 12px; color: var(--lmd-text-body); font-size: 0.98rem; }
.svc-benefits li::before { content: "→"; color: var(--lmd-gold); font-weight: 600; }
@media (max-width: 900px) { .svc-detail .container { grid-template-columns: 1fr; gap: 32px; } .svc-detail.reverse .svc-icon-wrap { order: -1; } .svc-icon-circle { width: 160px; height: 160px; } .svc-icon-circle .icon { width: 60px; height: 60px; } }

/* === COMPARISON (why choose us) === */
.compare { background: var(--lmd-white); }
.compare .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compare-card { border: 1px solid var(--lmd-border); border-radius: var(--radius-lg); padding: 36px 28px; display: flex; flex-direction: column; gap: 18px; }
.compare-card.lmd { background: var(--lmd-navy); color: var(--lmd-white); border-color: var(--lmd-navy); transform: translateY(-12px); box-shadow: var(--lmd-shadow-lg); position: relative; }
.compare-card.lmd::before { content: "RECOMMENDED"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--lmd-gold); color: var(--lmd-white); padding: 6px 18px; font-size: 0.7rem; letter-spacing: 0.12em; border-radius: var(--radius-pill); font-weight: 600; }
.compare-card h3 { color: var(--lmd-navy); margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.compare-card.lmd h3 { color: var(--lmd-gold); }
.compare-card .tag { font-family: var(--font-heading); font-size: 1.8rem; color: var(--lmd-navy); }
.compare-card.lmd .tag { color: var(--lmd-white); }
.compare-card ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 12px; }
.compare-card ul li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--lmd-text-body); }
.compare-card.lmd ul li { color: rgba(255,255,255,0.85); }
.compare-card.no ul li::before { content: "✕"; color: #c54444; font-weight: 700; }
.compare-card.lmd ul li::before { content: "✓"; color: var(--lmd-gold); font-weight: 700; }
.compare-card.warn ul li::before { content: "⚠"; color: #e0a13a; font-weight: 700; }
@media (max-width: 900px) { .compare .grid { grid-template-columns: 1fr; } .compare-card.lmd { transform: none; } }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h3 { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.10em; color: var(--lmd-gold); margin-bottom: 8px; }
.contact-info .big { font-family: var(--font-heading); font-size: 1.6rem; color: var(--lmd-navy); margin-bottom: 28px; }
.contact-info ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .icon { color: var(--lmd-gold); width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; }
.contact-info .lbl { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lmd-text-muted); margin-bottom: 4px; }
.contact-info a, .contact-info span { color: var(--lmd-navy); font-weight: 500; font-size: 1rem; }
.contact-info a:hover { color: var(--lmd-gold); }
.contact-form-card { background: var(--lmd-navy); border-radius: var(--radius-lg); padding: 44px 36px; color: var(--lmd-white); }
.contact-form-card h2 { color: var(--lmd-white); font-size: 2rem; margin-bottom: 12px; }
.contact-form-card p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.contact-form-card .form-grid { grid-template-columns: 1fr; gap: 12px; }
.contact-form-card textarea.form-field { height: auto; min-height: 130px; resize: vertical; font-family: var(--font-body); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
