:root{
  --page:#F3F3F3;
  --text:#2f3336;
  --muted:rgba(47,51,54,.72);

  --card:#FFFFFF;
  --border:#E8EEF0;
  --shadow: 0 14px 40px rgba(16,24,40,.08);
  --radius:26px;

  /* Adjust to your brand */
  --accent:#1E8A8A;
  --dark:#0D1617;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:"Mona Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--page);
  color:var(--text);
}

/* Global link reset (prevents default blue/underline) */
a,
a:visited{
  color:inherit;
  text-decoration:none;
}
a:hover{
  text-decoration:none;
}

/* Contrast helpers (after replacing lime accents) */
.brand .mark svg path{ stroke:#fff !important; }
.svc-pillbtn svg path{ stroke:#fff !important; }
.rating .stars svg{ fill:#fff !important; }

.container{
  max-width:1180px;
  margin:0 auto;
  padding:64px 20px;
}

/* Top header */
.about-header{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:40px;
  align-items:start;
  margin-bottom:34px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:999px;
  padding:10px 14px;
  font-size:14px;
  color:var(--muted);
  box-shadow:0 6px 18px rgba(16,24,40,.06);
}
.pill .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  flex:0 0 auto;
}

.about-title{
  margin:14px 0 0;
  font-size:54px;
  line-height:1.05;
  letter-spacing:-.03em;
}
.about-title em{ font-style:italic; }

.lead{
  margin:6px 0 18px;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
  max-width:46ch;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--dark);
  color:#fff;
  text-decoration:none;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  box-shadow:0 10px 22px rgba(13,22,23,.18);
  transition:transform .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 30px rgba(13,22,23,.22);
}
.btn svg{
  width:18px;
  height:18px;
}

/* Card grid */
.about-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:22px;
  align-items:stretch;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* Big image card (left) */
.hero-card{
  grid-column:1;
  grid-row:1 / span 2;
  position:relative;
  min-height:430px;
}
.hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Rotating badge */
.badge{
  position:absolute;
  top:26px;
  left:26px;
  width:110px;
  height:110px;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.85);
  box-shadow:0 10px 22px rgba(16,24,40,.12);
  display:grid;
  place-items:center;
  pointer-events:none;
}
.badge-inner{
  position:relative;
  width:96px;
  height:96px;
  display:grid;
  place-items:center;
}
.badge .center{
  position:absolute;
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(30,138,138,.12);
  color:var(--accent);
}

/* Small cards (right top) */
.small{
  padding:22px;
}
.small h3{
  margin:0;
  font-size:18px;
  letter-spacing:-.01em;
}
.small p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}
.media{
  margin-top:16px;
  border-radius:20px;
  overflow:hidden;
  height:220px;
  background:#eaeef0;
}
.media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.compact .media{ height:170px; }
.small-copy{ padding-top:16px; }

/* Stats row (right bottom spanning 2 cols) */
.stats{
  grid-column:2 / span 2;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  padding:0;
  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
}
.stat{
  padding:18px 18px;
  border-radius:22px;
  background:#F3F5F6;
  border:1px solid var(--border);
}
.stat strong{
  display:block;
  font-size:42px;
  letter-spacing:-.03em;
}
.stat span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

/* Responsive */
@media (max-width: 980px){
  .about-header{
    grid-template-columns:1fr;
    gap:18px;
  }
  .about-title{ font-size:42px; }

  .about-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
  .hero-card{
    grid-column:auto;
    grid-row:auto;
    min-height:340px;
  }
  .stats{
    grid-column:auto;
    grid-template-columns:1fr;
    gap:14px;
  }
  .stat{
    background:var(--card);
    box-shadow:var(--shadow);
  }
}

/* =========================
   HERO + HEADER (Skyvilla)
   ========================= */
.hero-wrap{
  padding:22px 20px 0;
}
.hero{
  position:relative;
  display:flex;
  max-width:1650px;
  margin:0 auto;
  min-height:960px;
  border-radius:28px;
  overflow:hidden;
  background:#0b1320;
  box-shadow:0 22px 70px rgba(16,24,40,.18);
}
.hero-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 72%, rgba(0,0,0,.72) 100%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2400&q=80");
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-inner{
  position:relative;
  flex:1;
  width:100%;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* Header pill */
.nav-pill{
  width:85%;
  margin-left:auto;
  margin-right:auto;
  align-self:center;
  height:102px;
  padding:25px;
  background:rgba(47,51,54,.92);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:16px;
  backdrop-filter: blur(10px);
  box-shadow:0 18px 40px rgba(16,24,40,.12);
}
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  color:rgba(255,255,255,.92);
  font-weight:900;
  letter-spacing:-.02em;
  white-space:nowrap;
}
.brand-logo{
  height:52px;
  width:auto;
  display:block;
  border-radius:10px;
}
.brand .mark{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#2f3336;
  display:grid;
  place-items:center;
  box-shadow:0 10px 18px rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.05);
}
.brand .mark svg{
  width:18px;
  height:18px;
}
.brand .name{ font-size:18px; }
.brand .name .dot{ color:#2f3336; }

.nav{
  margin-left:auto;
  margin-right:auto;
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a{
  text-decoration:none;
  color:rgba(255,255,255,.86);
  font-weight:800;
  font-size:16px;
  opacity:.95;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 10px;
  border-radius:999px;
  transition:background .15s ease, transform .15s ease, opacity .15s ease;
}
.nav a:hover{
  background:rgba(255,255,255,.08);
  opacity:1;
  transform:translateY(-1px);
}
.nav a[aria-current="page"]{
  background:rgba(255,255,255,.14);
  opacity:1;
}
.nav a .chev{
  width:10px;
  height:10px;
  opacity:.7;
}

.nav-cta{
  margin-left:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.92);
  color:#2f3336;
  text-decoration:none;
  padding:11px 16px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  box-shadow:0 14px 26px rgba(0,0,0,.22);
  white-space:nowrap;
}
.nav-cta svg{
  width:18px;
  height:18px;
}

/* Hero content */
.hero-bottom{
  margin-top:auto;
  width:85%;
  margin-left:auto;
  margin-right:auto;
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap:28px;
  align-items:end;
  padding:0 0 90px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(13,22,23,.35);
  border:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.92);
  font-size:12px;
  font-weight:800;
  width:max-content;
  backdrop-filter: blur(8px);
}
.hero-kicker .dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#2f3336;
}

.hero-title{
  margin:14px 0 0;
  color:#fff;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.04em;
  text-shadow:0 20px 60px rgba(0,0,0,.35);
}
.hero-title em{
  font-style:italic;
  opacity:.95;
}

.hero-actions{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.92);
  color:#2f3336;
  text-decoration:none;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  border:1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  box-shadow:0 18px 36px rgba(0,0,0,.22);
}
.hero-btn svg{
  width:18px;
  height:18px;
}

.rating{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.9);
  font-weight:800;
  font-size:13px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(13,22,23,.35);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}
.stars{
  display:inline-flex;
  gap:4px;
}
.stars svg{
  width:14px;
  height:14px;
  fill:#2f3336;
}
.rating small{
  display:block;
  font-weight:700;
  opacity:.85;
}

.hero-stats{
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:stretch;
}
.hero-stats-top{
  display:flex;
  gap:22px;
  align-items:flex-end;
  justify-content:space-between;
  width:100%;
}
.hero-stats-top .hero-stat{
  flex:1;
  min-width:0;
}

.hero-stats-bottom{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  flex-wrap:nowrap;
}
.hero-stats-bottom .rating{
  height:50px;
  padding:0 14px;
  white-space:nowrap;
}

.hero-stat{
  min-width:0;
  text-align:left;
  color:#fff;
}
.hero-stat strong{
  display:block;
  font-size:40px;
  letter-spacing:-.03em;
}
.hero-stat span{
  display:block;
  margin-top:8px;
  font-size:12px;
  font-weight:800;
  opacity:.9;
}

/* Make About section spacing nicer after hero */
#about.container{ padding-top:54px; }

@media (max-width: 1100px){
  .hero-bottom{ grid-template-columns:1fr; }
  .hero-stats{ align-items:stretch; }
  .hero-stats-top{ flex-wrap:wrap; justify-content:flex-start; }
  .hero-stats-top .hero-stat{ flex:0 0 auto; min-width:160px; }
}

@media (max-width: 920px){
  .nav{ display:none; }
  .hero{ min-height:860px; }
  .hero-title{ font-size:44px; }
  .hero-bottom{ grid-template-columns:1fr; }
  .hero-stats-bottom{ flex-wrap:wrap; }
}

@media (max-width: 520px){
  .hero-wrap{
    padding-left:14px;
    padding-right:14px;
  }
  .hero-inner{ padding:14px; }
  .hero{
    border-radius:22px;
    min-height:720px;
  }
  .hero-title{ font-size:38px; }
  .hero-stats-top{
    flex-direction:column;
    gap:12px;
  }
  .hero-stats-bottom{
    flex-direction:column;
    align-items:stretch;
  }
  .hero-stats-bottom .rating{ justify-content:flex-start; }
  .hero-stat strong{ font-size:36px; }
}

/* =========================
   SERVICES (hover -> image)
   ========================= */
.services{
  max-width:1180px;
  margin:0 auto;
  padding:78px 20px 22px;
}
.services-top{
  text-align:center;
  margin-bottom:34px;
}
.services-top .pill{
  margin:0 auto;
  justify-content:center;
}
.services-top h2{
  margin:16px 0 0;
  font-size:54px;
  line-height:1.05;
  letter-spacing:-.03em;
  color:var(--text);
}
.services-top h2 em{ font-style:italic; }

.svc-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:22px;
  margin-top:24px;
}

.svc-card{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:360px;
  padding:26px;
  border-radius:28px;
  background:#F2F3F4;
  border:1px solid rgba(16,24,40,.06);
  box-shadow:0 16px 48px rgba(16,24,40,.08);
  overflow:hidden;
  text-decoration:none;
  color:var(--text);
  transition:transform .18s ease, box-shadow .18s ease;
  isolation:isolate;
}
.svc-card:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 64px rgba(16,24,40,.14);
  color:#fff;
}

/* background image layer */
.svc-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.38) 58%, rgba(0,0,0,.62) 100%),
    var(--bg);
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.02);
  transition:opacity .28s ease, transform .55s ease;
  z-index:-1;
}
.svc-card:hover::before{
  opacity:1;
  transform:scale(1.06);
}

/* Primary icon style for the first card */
.svc-card.svc-primary .svc-icon{
  background:#2f3336;
  border:1px solid rgba(255,255,255,.25);
}
.svc-card.svc-primary .svc-icon svg{ stroke:#fff; }

/* Optional default-image card variant */
.svc-card.is-featured{
  background:#0D1617;
  color:#fff;
}
.svc-card.is-featured::before{ opacity:1; }

.svc-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.svc-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#0D1617;
  border:1px solid rgba(16,24,40,.10);
  box-shadow:0 10px 22px rgba(0,0,0,.10);
}
.svc-icon svg{
  width:22px;
  height:22px;
  stroke:#fff;
}

.svc-card.is-featured .svc-icon{
  background:#2f3336;
  border:1px solid rgba(255,255,255,.25);
}
.svc-card.is-featured .svc-icon svg{ stroke:#0B1320; }

.svc-body h3{
  margin:16px 0 8px;
  font-size:20px;
  letter-spacing:-.01em;
}
.svc-body p{
  margin:0;
  color:rgba(47,51,54,.68);
  font-size:16px;
  line-height:1.6;
  max-width:32ch;
}

.svc-card:hover .svc-body p,
.svc-card.is-featured .svc-body p{
  color:rgba(255,255,255,.86);
}

.svc-bottom{
  margin-top:18px;
}
.svc-divider{
  height:1px;
  background:rgba(47,51,54,.10);
  margin:18px 0 14px;
}
.svc-card:hover .svc-divider,
.svc-card.is-featured .svc-divider{
  background:rgba(255,255,255,.16);
}

.svc-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:16px;
  color:inherit;
}
.svc-pillbtn{
  width:26px;
  height:26px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:#2f3336;
  color:#fff;
  flex:0 0 auto;
}
.svc-pillbtn svg{
  width:14px;
  height:14px;
}

.svc-card:not(.is-featured) .svc-link{ color:#2f3336; }
.svc-card:hover .svc-link{ color:#fff; }

/* Card background assignments moved from inline style */
.svc-bg-1{ --bg:url("https://images.unsplash.com/photo-1501183638710-841dd1904471?auto=format&fit=crop&w=1600&q=80"); }
.svc-bg-2{ --bg:url("https://images.unsplash.com/photo-1542315192-1f61a179d6fe?auto=format&fit=crop&w=1600&q=80"); }
.svc-bg-3{ --bg:url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80"); }
.svc-bg-4{ --bg:url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80"); }

/* Footer line under cards */
.svc-footer{
  margin-top:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:14px;
  color:rgba(47,51,54,.78);
}
.svc-note{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  text-align:center;
  font-weight:700;
  font-size:14px;
}
.svc-avatar{
  width:30px;
  height:30px;
  border-radius:50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 22%, rgba(255,255,255,0) 23%),
    linear-gradient(135deg, rgba(30,138,138,.25), rgba(13,22,23,.10));
  border:1px solid rgba(16,24,40,.10);
  position:relative;
  overflow:hidden;
}
.svc-avatar::after{
  content:"";
  position:absolute;
  right:-6px;
  bottom:-6px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#2f3336;
  border:2px solid #fff;
}
.svc-note a{
  color:var(--text);
  font-weight:900;
}

.svc-ratingline{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  justify-content:center;
  flex-wrap:wrap;
}
.svc-ratingline .stars svg{
  width:16px;
  height:16px;
  fill:#2f3336;
}
.svc-ratingline .muted{
  font-weight:800;
  color:rgba(47,51,54,.68);
}

@media (max-width: 1100px){
  .services-top h2{ font-size:46px; }
  .svc-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 620px){
  .services{ padding-top:64px; }
  .services-top h2{ font-size:38px; }
  .svc-grid{ grid-template-columns:1fr; }
  .svc-card{ min-height:320px; }
}

/* =========================
   Global button sizing
   ========================= */
.btn,
.nav-cta,
.hero-btn{
  height:50px;
  padding:0 18px;
  font-size:16px;
  line-height:1;
}

/* =========================
   VIDEO BANNER SECTION
   ========================= */
.ms-video-banner {
  padding: 22px 0;
  font-family: "Mona Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI,
    Roboto, Arial, "Noto Sans";
}

.ms-video-banner__wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  min-height: 560px;
  background-image: var(--msvb-bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
  border: 1px solid rgba(47, 51, 54, 0.08);
  isolation: isolate;
}

.ms-video-banner__wrap--default {
  --msvb-bg: url("https://images.unsplash.com/photo-1502005229762-cf1b2da7c5d6?auto=format&fit=crop&w=2400&q=80");
  --msvb-accent: #2f3336;
}

/* Overlay for readability */
.ms-video-banner__wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 520px at 22% 78%,
      rgba(0, 0, 0, 0.62),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 55%,
      rgba(0, 0, 0, 0.3) 100%
    );
  z-index: 0;
}

.ms-video-banner__content {
  position: absolute;
  left: 46px;
  bottom: 44px;
  z-index: 1;
  max-width: 720px;
}

.ms-video-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47, 51, 54, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ms-video-banner__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--msvb-accent);
  box-shadow: 0 0 0 4px rgba(47, 51, 54, 0.16);
}

.ms-video-banner__title {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(30px, 4.1vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 750;
}

.ms-video-banner__title em {
  font-style: italic;
  font-weight: 750;
}

/* Orb button */
.ms-video-banner__orb {
  position: absolute;
  right: 42px;
  bottom: 38px;
  width: 152px;
  height: 152px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0;
}

.ms-video-banner__orbText {
  width: 152px;
  height: 152px;
  overflow: visible;
  animation: msvb-spin 10s linear infinite;
}

.ms-video-banner__orbText text {
  fill: rgba(255, 255, 255, 0.86);
  font-size: 12.5px;
  letter-spacing: 2.2px;
  font-weight: 650;
  text-transform: uppercase;
}

.ms-video-banner__orbCore {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--msvb-accent);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 22px rgba(13, 22, 23, 0.18);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.ms-video-banner__orb:hover .ms-video-banner__orbCore {
  transform: scale(1.06);
  filter: brightness(1.02);
}

@keyframes msvb-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Modal */
.ms-video-banner__modal {
  width: min(980px, calc(100% - 32px));
  border: 0;
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.ms-video-banner__modal::backdrop {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}

.ms-video-banner__modalTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #2f3336;
  color: #fff;
}

.ms-video-banner__modalTitle {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 14px;
}

.ms-video-banner__close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.ms-video-banner__frame {
  background: #000;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.ms-video-banner__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 920px) {
  .ms-video-banner__wrap {
    min-height: 520px;
  }
  .ms-video-banner__content {
    left: 22px;
    bottom: 22px;
    right: 22px;
  }
  .ms-video-banner__orb {
    right: 18px;
    bottom: 18px;
    transform: scale(0.92);
  }
}

@media (max-width: 520px) {
  .ms-video-banner__wrap {
    min-height: 520px;
  }
  .ms-video-banner__orb {
    display: none;
  }
}

/* =========================
   FAQ SECTION
   ========================= */
.ms-faq {
  padding: 88px 0;
  font-family: "Mona Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Arial, "Noto Sans";
  color: #2f3336;
  background: #fff;
}
.ms-faq__wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.ms-faq__wrap--default {
  --msfaq-accent: #2f3336;
}
.ms-faq__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 48px;
  align-items: start;
}

.ms-faq__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47, 51, 54, 0.04);
  border: 1px solid rgba(47, 51, 54, 0.10);
  font-weight: 650;
  font-size: 13px;
  letter-spacing: .2px;
}
.ms-faq__kdot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--msfaq-accent);
  box-shadow: 0 0 0 4px rgba(47, 51, 54, .14);
}

.ms-faq__title {
  margin: 22px 0 0;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 820;
}
.ms-faq__title em {
  font-style: italic;
  font-weight: 820;
}

.ms-faq__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #0f1416;
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 14px 30px rgba(15, 20, 22, .18);
}
.ms-faq__cta:hover {
  transform: translateY(-1px);
}
.ms-faq__arrow {
  opacity: .9;
}

.ms-faq__rule {
  height: 1px;
  background: rgba(47, 51, 54, .12);
  margin: 34px 0 22px;
  width: min(520px, 100%);
}

.ms-faq__foot {
  display: flex;
  gap: 16px;
  align-items: center;
}
.ms-faq__avatars {
  display: flex;
  align-items: center;
}
.ms-faq__av {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, .10);
  margin-left: -10px;
}
.ms-faq__av:first-child {
  margin-left: 0;
}
.ms-faq__av--1 {
  background-image: url("https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=facearea&w=120&h=120&q=80&facepad=2");
}
.ms-faq__av--2 {
  background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=facearea&w=120&h=120&q=80&facepad=2");
}
.ms-faq__av--3 {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=facearea&w=120&h=120&q=80&facepad=2");
}
.ms-faq__plus {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--msfaq-accent);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  margin-left: -10px;
  box-shadow: 0 14px 30px rgba(47, 51, 54, .18);
}
.ms-faq__note {
  margin: 0;
  color: rgba(47, 51, 54, .78);
  font-weight: 650;
  line-height: 1.35;
}

/* Accordion */
.ms-faq__right {
  display: grid;
  gap: 16px;
}
.ms-faq__item {
  border-radius: 14px;
  border: 1px solid rgba(47, 51, 54, .12);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 24, 40, .04);
}
.ms-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: #2f3336;
}
.ms-faq__qtext {
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 15px;
}
.ms-faq__n {
  color: rgba(47, 51, 54, .55);
  font-weight: 850;
  margin-right: 8px;
}
.ms-faq__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(47, 51, 54, .14);
  color: #2f3336;
  flex: 0 0 auto;
}

.ms-faq__a {
  padding: 0 18px 18px;
  color: rgba(47, 51, 54, .82);
  font-weight: 650;
  line-height: 1.55;
}
.ms-faq__a p {
  margin: 0 0 10px;
}
.ms-faq__a ul {
  margin: 10px 0 0;
  padding-left: 18px;
}
.ms-faq__a li {
  margin: 6px 0;
}

/* Open (dark) */
.ms-faq__item.is-open {
  background: linear-gradient(180deg, #0f1416 0%, #2b3136 100%);
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 40px rgba(15, 20, 22, .26);
}
.ms-faq__item.is-open .ms-faq__q,
.ms-faq__item.is-open .ms-faq__a {
  color: #fff;
}
.ms-faq__item.is-open .ms-faq__n {
  color: rgba(255, 255, 255, .66);
}
.ms-faq__item.is-open .ms-faq__icon {
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}
.ms-faq__item.is-open .ms-faq__a {
  color: rgba(255, 255, 255, .86);
}

/* Responsive */
@media (max-width: 980px) {
  .ms-faq {
    padding: 70px 0;
  }
  .ms-faq__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ms-faq__rule {
    width: 100%;
  }
}

/* =========================
   TESTIMONIALS SECTION
   ========================= */
.ms-tst {
  padding: 92px 0;
  font-family: "Mona Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Arial, "Noto Sans";
  color: #2f3336;
  background: #fff;
}
.ms-tst__wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.ms-tst__wrap--default {
  --mst-accent: #2f3336;
}

.ms-tst__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.ms-tst__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(47, 51, 54, .04);
  border: 1px solid rgba(47, 51, 54, .10);
  font-weight: 650;
  font-size: 13px;
  letter-spacing: .2px;
}
.ms-tst__kdot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mst-accent);
  box-shadow: 0 0 0 4px rgba(47, 51, 54, .14);
}

.ms-tst__title {
  margin: 22px 0 0;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 840;
}
.ms-tst__title em {
  font-style: italic;
  font-weight: 840;
}

.ms-tst__topRight {
  max-width: 520px;
  padding-top: 10px;
}
.ms-tst__desc {
  margin: 0 0 18px;
  color: rgba(47, 51, 54, .78);
  font-weight: 650;
  line-height: 1.55;
}
.ms-tst__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #0f1416;
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 14px 30px rgba(15, 20, 22, .18);
}
.ms-tst__cta:hover {
  transform: translateY(-1px);
}
.ms-tst__arrow {
  opacity: .9;
}

.ms-tst__cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ms-tst__card {
  background: rgba(47, 51, 54, .03);
  border: 1px solid rgba(47, 51, 54, .08);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, .05);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ms-tst__cardTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ms-tst__stars {
  display: inline-flex;
  gap: 6px;
}
.ms-tst__star {
  width: 16px;
  height: 16px;
  background: var(--mst-accent);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M12 17.3l-6.18 3.74 1.64-7.03L2 9.24l7.19-.61L12 2l2.81 6.63 7.19.61-5.46 4.77 1.64 7.03L12 17.3z\"/></svg>")
    center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M12 17.3l-6.18 3.74 1.64-7.03L2 9.24l7.19-.61L12 2l2.81 6.63 7.19.61-5.46 4.77 1.64 7.03L12 17.3z\"/></svg>")
    center/contain no-repeat;
  box-shadow: 0 10px 20px rgba(47, 51, 54, .12);
  border-radius: 2px;
}

.ms-tst__quote {
  color: rgba(47, 51, 54, .25);
}

.ms-tst__text {
  margin: 18px 0 0;
  color: rgba(47, 51, 54, .76);
  font-weight: 650;
  line-height: 1.65;
}

.ms-tst__divider {
  height: 1px;
  background: rgba(47, 51, 54, .12);
  margin: 18px 0 14px;
}

.ms-tst__person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ms-tst__avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, .10);
}
.ms-tst__avatar--1 {
  background-image: url("https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=facearea&w=120&h=120&q=80&facepad=2");
}
.ms-tst__avatar--2 {
  background-image: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=facearea&w=120&h=120&q=80&facepad=2");
}
.ms-tst__avatar--3 {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=facearea&w=120&h=120&q=80&facepad=2");
}
.ms-tst__name {
  margin: 0;
  font-weight: 850;
  letter-spacing: -.01em;
}
.ms-tst__role {
  margin: 2px 0 0;
  color: rgba(47, 51, 54, .70);
  font-weight: 650;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {
  .ms-tst {
    padding: 74px 0;
  }
  .ms-tst__top {
    flex-direction: column;
    gap: 18px;
  }
  .ms-tst__topRight {
    max-width: unset;
  }
  .ms-tst__cards {
    grid-template-columns: 1fr;
  }
  .ms-tst__card {
    min-height: unset;
  }
}

@media (min-width: 981px) and (max-width: 1220px) {
  .ms-tst__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================
   Footer (MS Immobilien)
   ===================== */
.ms-footer {
  --mf-text: #2f3336;
  --mf-dark: #14181b;
  --mf-accent: #E9EEF1;
  position: relative;
  margin: 56px auto 24px;
  max-width: min(1500px, calc(100% - 32px));
  border-radius: 28px;
  overflow: hidden;
  background: var(--mf-dark);
  color: #fff;
}
.ms-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0, rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0, rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 22px);
  pointer-events: none;
}
.ms-footer::after {
  content: "";
  position: absolute;
  inset: -120px;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .12), transparent 60%);
  transform: translate(12%, -10%);
  pointer-events: none;
}
.ms-footer .mf-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 22px;
}
.ms-footer .mf-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.ms-footer .mf-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.ms-footer .mf-title {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 0;
}
.ms-footer .mf-title em {
  font-style: italic;
  font-weight: 700;
}

.ms-footer .mf-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 260px;
}
.ms-footer .mf-social .label {
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
}
.ms-footer .mf-social .icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ms-footer .mf-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .03);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.ms-footer .mf-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255, 255, 255, .92);
  stroke-width: 2;
}
.ms-footer .mf-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .35);
}

.ms-footer .mf-divider {
  margin: 34px 0 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .20), transparent);
}

.ms-footer .mf-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.1fr 1.4fr;
  gap: 26px;
}
.ms-footer .mf-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ms-footer .mf-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -.02em;
  font-size: 20px;
}
.ms-footer .mf-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--mf-accent);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
}
.ms-footer .mf-mark svg {
  width: 22px;
  height: 22px;
  stroke: var(--mf-dark);
  stroke-width: 2;
  fill: none;
}
.ms-footer .mf-brand p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  max-width: 44ch;
  line-height: 1.65;
  font-size: 14px;
}

.ms-footer h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .86);
}
.ms-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ms-footer a {
  color: rgba(255, 255, 255, .78);
}
.ms-footer a:hover {
  color: #fff;
}

.ms-footer .mf-news p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.65;
  font-size: 14px;
}
.ms-footer .mf-form {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
  padding: 10px 12px 10px 16px;
}
.ms-footer .mf-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}
.ms-footer .mf-form input::placeholder {
  color: rgba(255, 255, 255, .55);
}
.ms-footer .mf-send {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: var(--mf-accent);
  color: var(--mf-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}
.ms-footer .mf-send:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}
.ms-footer .mf-send svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--mf-dark);
  stroke-width: 2;
}

.ms-footer .mf-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

@media (max-width: 980px) {
  .ms-footer .mf-title {
    font-size: 40px;
  }
  .ms-footer .mf-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ms-footer .mf-social {
    align-items: flex-start;
    min-width: auto;
  }
  .ms-footer .mf-top {
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .ms-footer .mf-title {
    font-size: 32px;
  }
  .ms-footer .mf-grid {
    grid-template-columns: 1fr;
  }
  .ms-footer .mf-inner {
    padding: 56px 0 18px;
  }
}

/* =====================
   Inner pages
   ===================== */
.subhero-wrap{
  padding:22px 20px 0;
}
.subhero{
  position:relative;
  max-width:1650px;
  margin:0 auto;
  min-height:560px;
  border-radius:28px;
  overflow:hidden;
  background:#0b1320;
  box-shadow:0 22px 70px rgba(16,24,40,.18);
}
.subhero-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.48) 65%, rgba(0,0,0,.68) 100%),
    var(--subhero-bg);
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.subhero-inner{
  position:relative;
  width:100%;
  min-height:560px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.subhero-content{
  margin-top:auto;
  width:85%;
  margin-left:auto;
  margin-right:auto;
  padding:0 0 86px;
}
.subhero-title{
  margin:14px 0 0;
  color:#fff;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.04em;
  text-shadow:0 20px 60px rgba(0,0,0,.35);
}
.subhero-title em{
  font-style:italic;
  opacity:.95;
}
.subhero-lead{
  margin:14px 0 0;
  max-width:68ch;
  color:rgba(255,255,255,.88);
  font-size:16px;
  line-height:1.6;
}
.subhero-actions{
  margin-top:20px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

.subhero--verkauf{
  --subhero-bg:url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=2400&q=80");
}
.subhero--vermietung{
  --subhero-bg:url("https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=2400&q=80");
}
.subhero--verwaltung{
  --subhero-bg:url("https://images.unsplash.com/photo-1448630360428-65456885c650?auto=format&fit=crop&w=2400&q=80");
}
.subhero--unternehmen{
  --subhero-bg:url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2400&q=80");
}
.subhero--kontakt{
  --subhero-bg:url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=2400&q=80");
}
.subhero--datenschutz{
  --subhero-bg:url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2400&q=80");
}
.subhero--impressum{
  --subhero-bg:url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2400&q=80");
}

.page-content{
  max-width:1180px;
  margin:0 auto;
  padding:64px 20px 12px;
}
.page-head{
  margin-bottom:22px;
}
.page-title{
  margin:16px 0 0;
  font-size:46px;
  line-height:1.08;
  letter-spacing:-.03em;
}
.page-title em{
  font-style:italic;
}
.page-lead{
  margin:12px 0 0;
  max-width:72ch;
  color:var(--muted);
  line-height:1.7;
}
.page-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.page-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:0 14px 40px rgba(16,24,40,.08);
  padding:22px;
}
.page-card h3{
  margin:0;
  font-size:20px;
  letter-spacing:-.01em;
}
.page-card p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.65;
}
.page-card ul{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.page-card li{
  margin:7px 0;
}

.page-split{
  margin-top:22px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:start;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.contact-panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:0 14px 40px rgba(16,24,40,.08);
  padding:22px;
}
.contact-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:14px;
}
.contact-list strong{
  display:block;
  font-size:14px;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:rgba(47,51,54,.62);
}
.contact-list span,
.contact-list a{
  display:block;
  margin-top:4px;
  font-size:18px;
  letter-spacing:-.01em;
}
.contact-form{
  display:grid;
  gap:12px;
}
.contact-form label{
  font-size:14px;
  font-weight:700;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid var(--border);
  background:#fff;
  border-radius:14px;
  padding:12px 14px;
  font:inherit;
  color:var(--text);
}
.contact-form textarea{
  min-height:130px;
  resize:vertical;
}

.legal-shell{
  max-width:980px;
  margin:0 auto;
  padding:64px 20px 18px;
}
.legal-block{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:0 14px 40px rgba(16,24,40,.08);
  padding:24px;
}
.legal-block + .legal-block{
  margin-top:16px;
}
.legal-block h2{
  margin:0;
  font-size:26px;
  letter-spacing:-.02em;
}
.legal-block h3{
  margin:18px 0 0;
  font-size:18px;
}
.legal-block p,
.legal-block li{
  color:var(--muted);
  line-height:1.7;
}
.legal-block ul{
  margin:10px 0 0;
  padding-left:18px;
}

@media (max-width: 1100px){
  .subhero-content{
    width:100%;
    padding:0 0 78px;
  }
  .subhero-title{
    font-size:46px;
  }
  .page-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .page-split{
    grid-template-columns:1fr;
  }
}

@media (max-width: 920px){
  .subhero{
    min-height:500px;
  }
  .subhero-inner{
    min-height:500px;
  }
  .subhero-title{
    font-size:40px;
  }
  .contact-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 620px){
  .subhero-wrap{
    padding-left:14px;
    padding-right:14px;
  }
  .subhero{
    border-radius:22px;
    min-height:460px;
  }
  .subhero-inner{
    min-height:460px;
    padding:14px;
  }
  .subhero-title{
    font-size:34px;
  }
  .page-title{
    font-size:34px;
  }
  .page-grid{
    grid-template-columns:1fr;
  }
}
