:root{
  --bg: #FBFCFB;
  --surface: rgba(255,255,255,0.72);
  --surface-strong: rgba(255,255,255,0.86);

  --text: #0F1C16;
  --muted: rgba(15, 28, 22, 0.66);

  --green-900: #194630;
  --green-800: #1F5A3D;
  --gold-600: #B29A1F;
  --yellow-500: #FFDB21;
  --mint-200: #D1E5D2;

  --border: rgba(25, 70, 48, 0.14);
  --border-strong: rgba(25, 70, 48, 0.22);

  --shadow-sm: 0 10px 22px rgba(15, 28, 22, 0.08);
  --shadow: 0 18px 44px rgba(15, 28, 22, 0.10);
  --shadow-lg: 0 28px 80px rgba(15, 28, 22, 0.16);

  --radius: 22px;
  --radius-sm: 16px;

  --container: 1120px;

  --font-body: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: "Libre Baskerville", Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(.2,.85,.2,1);
}

/* -------------------------
   BASE
------------------------- */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1200px 620px at 50% -120px, rgba(255,219,33,0.18), transparent 60%),
    radial-gradient(900px 620px at 88% 18%, rgba(209,229,210,0.50), transparent 55%),
    radial-gradient(900px 620px at 12% 82%, rgba(25,70,48,0.08), transparent 60%),
    var(--bg);
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }

.container{
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}

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

.mt-16{ margin-top: 16px; }
.muted{ color: var(--muted); }

.lead{
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 62ch;
  margin: 0;
}

.h1,.h2,.h3,.h4{
  font-family: var(--font-head);
  letter-spacing: -0.2px;
  margin: 0 0 12px;
}
.h1{
  font-size: clamp(1.9rem, 2.9vw, 2.7rem);
  line-height: 1.20;
}
.h2{
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}
.h3{ font-size: 1.28rem; line-height: 1.28; }
.h4{ font-size: 1.06rem; line-height: 1.35; }

.accent{
  color: var(--green-900);
  position: relative;
}
.accent::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -0.14em;
  height: 0.32em;
  background: linear-gradient(90deg, rgba(255,219,33,0.38), rgba(209,229,210,0.28));
  border-radius: 999px;
  z-index: -1;
}

/* subtle grain overlay */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.12) 0, rgba(0,0,0,0.12) 1px, transparent 1px, transparent 2px);
  mix-blend-mode: overlay;
  z-index: 0;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.60);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(15,28,22,0.78);
  box-shadow: 0 10px 22px rgba(15,28,22,0.06);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  user-select:none;
  transition:
    transform 180ms var(--ease),
    box-shadow 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease);
}
.btn--small{ padding: 10px 14px; font-size: 0.92rem; }

.btn--primary{
  background: linear-gradient(180deg, rgba(255,219,33,1), rgba(255,219,33,0.86));
  color: #16261E;
  border-color: rgba(178,154,31,0.55);
  box-shadow: 0 16px 30px rgba(255,219,33,0.18);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(255,219,33,0.24);
}
.btn--primary:active{ transform: translateY(0); }

.btn--ghost{
  background: rgba(255,255,255,0.62);
  border-color: var(--border);
  color: rgba(15,28,22,0.92);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(178,154,31,0.45);
  box-shadow: var(--shadow-sm);
}
.btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,219,33,0.22), var(--shadow-sm);
}

.section{ padding: 92px 0; position: relative; z-index: 1; }
.section--alt{
  background:
    radial-gradient(1200px 500px at 50% 0%, rgba(209,229,210,0.30), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  border-top: 1px solid rgba(25,70,48,0.10);
  border-bottom: 1px solid rgba(25,70,48,0.10);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 28px;
}
/* -------------------------
   HERO (minimalist + glow)
------------------------- */
.hero{
  position: relative;
  padding: 110px 0;
  min-height: 72vh;
  overflow: clip;
  z-index: 1;
  background:
    radial-gradient(980px 520px at 16% 16%, rgba(255,219,33,0.26), transparent 62%),
    radial-gradient(980px 520px at 86% 58%, rgba(25,70,48,0.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.98));
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 22% 0%, rgba(255,219,33,0.12), transparent 65%),
    radial-gradient(900px 600px at 92% 18%, rgba(25,70,48,0.05), transparent 60%);
  opacity: 0.9;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  min-height: calc(84vh - 220px);
  align-items: center;
}
.hero__copy, .hero__media{ position: relative; z-index: 2; }

.hero__copy{
  padding-top: 0;
  align-self: center;
}

.hero__actions{
  display:flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* ==========================================
   HERO RIGHT SIDE — VIDEO (NO RIGHT GAP + NO RADIUS + FADE)
   + MOBILE subtitle fix (better wrapping)
========================================== */

/* keep the grid stretched so media can fill height */
.hero__grid{ align-items: stretch; }

/* -------------------------
   MEDIA (base)
------------------------- */
.hero__media{
  position: relative;
  justify-self: end;

  /* full-bleed to the right edge */
  width: clamp(560px, 54vw, 980px);
  margin-right: calc(50% - 50vw);
  transform: translateX(48px);

  min-height: clamp(520px, 60vh, 740px);
  align-self: stretch;

  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;

  overflow: hidden;
  border-radius: 0;
  pointer-events: none;

  /* blend edge */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 100%) !important;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 100%) !important;
}

.hero__img{ display:none !important; }

/* frame = FULL BLEED inside hero__media (no radius, no gaps) */
.hero__videoFrame{
  position: absolute;
  inset: 0;
  border-radius: 0;
  overflow: hidden;

  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;

  z-index: 2;
}

/* actual video */
.hero__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

/* fade the VIDEO edges so it blends with the hero background */
.hero__videoFrame::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  background:
    /* left blend into hero */
    linear-gradient(90deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.55) 6%,
      rgba(255,255,255,0.00) 18%,
      rgba(255,255,255,0.00) 100%),

    /* soften top/bottom */
    linear-gradient(180deg,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.00) 18%,
      rgba(255,255,255,0.00) 82%,
      rgba(255,255,255,0.18) 100%),

    /* subtle right shade so it doesn’t look cut */
    linear-gradient(90deg,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0.00) 14%);

  opacity: 1;
}

/* -------------------------
   MOBILE (subtitle/lead fix)
------------------------- */
@media (max-width: 981px){
  .hero{
    padding: 100px 0;
    min-height: 83vh;
  }

  .hero__grid{
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    align-items: center;
  }

  .hero__copy{
    padding-top: 0;
    margin: auto 0;
    width: 100%;
    max-width: 560px;
  }

  .h1{
    font-size: clamp(2.05rem, 9.2vw, 3.0rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  /* ✅ subtitle/lead: make wrapping cleaner on narrow screens */
  .hero .lead{
    margin-top: 14px;
    line-height: 1.72;
    font-size: 0.98rem;
    max-width: 42ch;        /* avoids super-short lines */
    text-wrap: balance;     /* modern browsers */
    hyphens: none;
  }

  .hero__actions{
    margin-top: 18px;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn{
    width: 100%;
    max-width: 180px;
  }

  .hero__media{ display:none; }
}

/* -------------------------
   DESKTOP (absolute media full height)
------------------------- */
@media (min-width: 982px){
  .hero{
    position: relative;
    padding: 110px 0;
    min-height: 84vh;
  }

  .hero__grid{
    min-height: calc(84vh - 220px);
    align-items: center;
  }

  .hero__copy{
    position: relative;
    z-index: 3;
    padding-top: 0;
    align-self: center;
  }

  .hero__media{
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;

    width: clamp(560px, 54vw, 980px) !important;
    margin-right: calc(50% - 50vw) !important;

    min-height: 0 !important;
    height: auto !important;
    align-self: stretch !important;

    border-radius: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;

    /* stronger blend from left to right */
    -webkit-mask-image: linear-gradient(to left, #000 0%, #000 74%, transparent 100%) !important;
    mask-image: linear-gradient(to left, #000 0%, #000 74%, transparent 100%) !important;
  }
}
/* =========================
   ABOUT (CLEAN / NO DUPLICATES)
========================= */

.aboutModern{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 7vw, 110px) 0;

  /* tokens */
  --gold: #ffdb21;
  --ink: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --glass: rgba(255,255,255,.045);
  --radius: 18px;

  background:
    radial-gradient(980px 560px at 84% 56%, rgba(209,229,210,0.10), transparent 62%),
    radial-gradient(1200px 720px at 52% 112%, rgba(0,0,0,0.72), transparent 55%),
    linear-gradient(180deg, #06120c 0%, #040b07 100%);
  color: var(--ink);
}

.aboutModern::before{
  content:"";
  position:absolute;
  inset:-22%;
  pointer-events:none;
  z-index: 0;

  background:
    radial-gradient(980px 720px at 10% 50%, rgba(255,219,33,.16), transparent 62%),
    radial-gradient(820px 620px at 16% 64%, rgba(209,229,210,.11), transparent 66%),
    radial-gradient(760px 420px at 40% 0%, rgba(255,255,255,.05), transparent 66%),
    linear-gradient(90deg, rgba(255,219,33,.10) 0%, rgba(255,219,33,.04) 22%, transparent 52%);

  filter: blur(18px);
  opacity: .88;
  mix-blend-mode: screen;
  animation: hfLeftGlow 10s ease-in-out infinite alternate;
}

.aboutModern::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 0;
  opacity: .08;
  mix-blend-mode: overlay;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.020) 0px,
      rgba(255,255,255,0.020) 1px,
      transparent 2px,
      transparent 10px
    );
}

/* wand canvas */
.aboutWandCanvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 180ms ease;
  filter: none;
}
.aboutModern:hover .aboutWandCanvas,
.aboutModern.is-wand-on .aboutWandCanvas{ opacity: 1; }

/* layout */
.aboutModern__grid{
  position: relative;
  z-index: 3;
  display:grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: clamp(18px, 3.8vw, 52px);
  align-items: center;
}

.aboutModern__copy,
.aboutModern__cards{
  position: relative;
  z-index: 3;
}

/* left panel */
.aboutModern__copy{
  border-radius: 26px;
  padding: clamp(22px, 2.2vw, 34px);
  border: 1px solid transparent;
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow:
    0 26px 90px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.aboutModern__copy::before{
  content:"";
  position:absolute;
  inset:0;
  padding: 1px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,219,33,.52), rgba(255,219,33,.16), rgba(255,255,255,.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity: .55;
}

.aboutModern__kicker{
  margin: 0 0 12px;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,219,33,0.88);
}
.aboutModern__title{
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.02;
  color: rgba(255,255,255,0.96);
  text-wrap: balance;
}
.aboutModern__lead{
  margin: 0;
  max-width: 52ch;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
}

/* chips (2 top + 1 centered under) */
.aboutModern__mini{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 10px 12px;
  max-width: none;
}
.aboutModern__chip{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size: 0.84rem;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,219,33,0.22);
  background: rgba(255,219,33,0.07);
  color: rgba(255,255,255,0.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  white-space: nowrap;
}
.aboutModern__chip:nth-child(3){
  grid-column: 1 / -1;
  justify-self: center;
}

/* right cards wrapper */
.aboutModern__cards{
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
  max-width: 860px;
  margin-left: auto;
}
.aboutModern__cards::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,219,33,.08), transparent 44%),
    radial-gradient(700px 160px at 18% 0%, rgba(255,219,33,.08), transparent 56%),
    radial-gradient(700px 160px at 82% 100%, rgba(255,219,33,.06), transparent 60%);
  opacity: .40;
  pointer-events:none;
}

.aboutModern .aboutCards{
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* card */
.aboutModern .aboutCard{
  position: relative;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--glass);
  backdrop-filter: blur(12px);
  cursor: default;
  box-shadow:
    0 12px 34px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: none !important;
  overflow: hidden;
}
.aboutModern .aboutCard:hover{ transform: none !important; }

.aboutModern .aboutCard::before{
  content:"";
  position:absolute;
  inset:0;
  padding: 1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,219,33,.48), rgba(255,219,33,.16), rgba(255,255,255,.07));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  opacity: .88;
}
.aboutModern .aboutCard::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(420px 180px at 15% 15%, rgba(255,219,33,.08), transparent 55%);
  pointer-events:none;
  opacity: .85;
}
.aboutModern .aboutCard p{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

/* card top */
.aboutCard__top{
  position: relative;
  z-index: 3;
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.aboutCard__icon{
  width: 40px;
  height: 40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 14px;
  border: 1px solid rgba(255,219,33,0.26);
  background: rgba(255,219,33,0.10);
  color: rgba(255,219,33,0.95);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.aboutCard__title{
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.94);
}

/* reveal helpers */
.aboutModern:not(.reveal-ready) .aboutModern__copy,
.aboutModern:not(.reveal-ready) .aboutModern__cards,
.aboutModern:not(.reveal-ready) .aboutCard{
  opacity: 1;
  transform: none;
}

.aboutModern.reveal-ready .reveal-item{
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  will-change: opacity, transform;
}

.aboutModern.reveal-ready .reveal-item.is-in{
  opacity: 1;
  transform: none;
  transition:
    opacity 1050ms cubic-bezier(.2,.9,.2,1),
    transform 1050ms cubic-bezier(.2,.9,.2,1);
  transition-delay: calc(var(--d, 0ms) + (var(--i, 0) * 200ms));
}

.aboutModern.reveal-ready .aboutCard.reveal-item{
  transition:
    opacity 1050ms cubic-bezier(.2,.9,.2,1),
    transform 1050ms cubic-bezier(.2,.9,.2,1)
    !important;
}

.aboutModern.reveal-ready .aboutCard__icon{
  transform: scale(0.92);
  filter: saturate(0.95);
}
.aboutModern.reveal-ready .aboutCard.reveal-item.is-in .aboutCard__icon{
  animation: hfIconPop 900ms cubic-bezier(.2,.9,.2,1) both;
  animation-delay: calc(180ms + (var(--i, 0) * 200ms));
}

@keyframes hfIconPop{
  0%   { transform: scale(0.90); filter: drop-shadow(0 0 0 rgba(255,219,33,0)); }
  55%  { transform: scale(1.06); filter: drop-shadow(0 0 18px rgba(255,219,33,0.18)); }
  100% { transform: scale(1);    filter: drop-shadow(0 0 10px rgba(255,219,33,0.10)); }
}

.aboutModern.reveal-ready .aboutCard.reveal-item.is-in{
  background-image:
    linear-gradient(120deg,
      rgba(255,219,33,0.00) 0%,
      rgba(255,219,33,0.06) 35%,
      rgba(255,255,255,0.05) 50%,
      rgba(255,219,33,0.00) 70%
    );
  background-size: 180% 180%;
  background-position: -60% 0%;
  animation: hfCardShine 1200ms ease-out both;
  animation-delay: calc(220ms + (var(--i, 0) * 200ms));
}

@keyframes hfCardShine{
  0%   { background-position: -60% 0%; }
  100% { background-position: 130% 0%; }
}

.aboutModern.no-reveal .reveal-item{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

/* bg animation */
@keyframes hfLeftGlow{
  0%   { transform: translate3d(-1.2%, -0.6%, 0); opacity: .84; }
  100% { transform: translate3d( 1.2%,  0.8%, 0); opacity: .95; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .aboutModern::before{ animation: none !important; }
  .aboutModern.reveal-ready .reveal-item{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .aboutWandCanvas{ display:none; }
}

/* mobile */
@media (max-width: 980px){
  .aboutModern{
    padding: 56px 0;
  }

  .aboutModern__grid{
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .aboutModern__copy{
    width: 100%;
    border-radius: 22px;
    padding: 18px 16px;
    text-align: center;
  }

  .aboutModern__title{
    font-size: clamp(1.55rem, 6.6vw, 2.05rem);
    line-height: 1.08;
  }

  .aboutModern__lead{
    max-width: none;
    font-size: 0.96rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .aboutModern__kicker{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* chips: centered stack */
  .aboutModern__mini{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .aboutModern__chip{
    white-space: normal;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 360px;
    padding: 10px 12px;
  }

  .aboutModern__cards{
    max-width: 100%;
    margin-left: 0;
    padding: 12px;
  }

  .aboutModern .aboutCard{
    padding: 18px 16px;
  }

  .aboutWandCanvas{ display:none; }
}
/* =========================
   SERVICES 
========================= */

.servicesV2{
  position: relative;
  padding: clamp(86px, 7vw, 124px) 0;
  background: transparent !important;
  border: 0 !important;

  --sv-ink: #0F1C16;
  --sv-muted: rgba(15,28,22,0.76);

  --sv-gold: rgba(255,219,33,0.95);

  --sv-green: rgba(25,70,48,0.95);
  --sv-green-border: rgba(25,70,48,0.30);
  --sv-green-border-strong: rgba(25,70,48,0.52);

  --sv-card-green: rgba(25,70,48,0.14);
  --sv-card-green-2: rgba(25,70,48,0.08);

  color: var(--sv-ink);
}

.servicesV2__grid{
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, 560px);
  gap: clamp(22px, 4.2vw, 96px);
  align-items: start;
}

.solutionsCard{
  position: sticky;
  top: 92px;

  margin: 0 !important;
  padding: 0 !important;

  justify-self: end;
  width: 100%;
  max-width: 560px;
  padding-left: clamp(18px, 2.2vw, 44px) !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
}

.solutionsCard::before{
  content:"";
  position:absolute;
  right: 0;
  left: auto;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    var(--sv-gold),
    rgba(255,219,33,0.20),
    transparent
  );
  opacity: .9;
}

.solutionsCard::after{
  content:"";
  position:absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: -260px;
  background:
    radial-gradient(circle at 30% 35%, rgba(255,219,33,0.14), transparent 62%),
    radial-gradient(circle at 55% 60%, rgba(25,70,48,0.14), transparent 66%);
  filter: blur(18px);
  opacity: .72;
  pointer-events:none;
}

.solutionsCard__kicker{
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: rgba(178,154,31,0.95);
  text-transform: uppercase;
}

.solutionsCard__title{
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.0rem, 2.9vw, 2.7rem);
  line-height: 1.05;
  color: var(--sv-ink);
  text-wrap: balance;
}

.solutionsCard__desc{
  margin: 0;
  color: var(--sv-muted);
  line-height: 1.85;
  font-size: 0.98rem;
  max-width: 58ch;
}

/* =========================
   ✅ SERVICES LIST (3 TOP, 2 CENTERED BOTTOM)
========================= */

.servicesList{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;

  display: grid;

  /* ✅ 12-col grid so we can center the last 2 cards perfectly */
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.servicesList__titleWrap{
  grid-column: 1 / -1;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(25,70,48,0.22);
}

.servicesList__kicker{
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: rgba(15,28,22,0.78);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.servicesList__kicker::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,219,33,0.92);
  box-shadow:
    0 0 0 4px rgba(255,219,33,0.12),
    0 0 0 7px rgba(25,70,48,0.08);
}

/* ✅ each card spans 4 columns => 3 cards per row */
.serviceLine{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding: 14px;
  min-height: 128px;
  border-radius: 18px;

  border: 1.5px solid var(--sv-green-border-strong);

  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.62)),
    radial-gradient(340px 220px at 18% 18%, var(--sv-card-green), transparent 62%),
    radial-gradient(360px 240px at 86% 86%, var(--sv-card-green-2), transparent 64%);

  backdrop-filter: blur(10px);

  box-shadow:
    0 18px 54px rgba(15,28,22,0.10),
    inset 0 1px 0 rgba(255,255,255,0.70),
    0 0 0 2px rgba(25,70,48,0.12);

  transition: none !important;
  cursor: default;

  /* ✅ important for layout */
  grid-column: span 4;
}

.serviceLine:hover{
  transform: none !important;
}

.serviceLine::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 18px;
  pointer-events:none;
  background:
    radial-gradient(260px 150px at 22% 18%, rgba(255,219,33,0.10), transparent 60%),
    radial-gradient(320px 190px at 86% 85%, rgba(25,70,48,0.16), transparent 62%);
  opacity: .95;
}

.serviceLine .serviceLine__icon,
.serviceLine .serviceLine__text{
  position: relative;
  z-index: 1;
}

.serviceLine__icon{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  border-radius: 14px;

  border: 1px solid rgba(25,70,48,0.38);
  background:
    linear-gradient(180deg, rgba(25,70,48,0.12), rgba(255,219,33,0.10)),
    radial-gradient(circle at 30% 30%, rgba(25,70,48,0.20), transparent 60%);

  color: #122018;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.sIcon{ width: 22px; height: 22px; display:block; }

.serviceLine__text{
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: 0.08px;
  color: var(--sv-ink);
}

.serviceLine::after{ content: none !important; }

/* ✅ CENTER the last 2 cards under the 3-card row (for 5 cards total) */
.servicesList > .serviceLine:nth-last-child(2){
  grid-column: 3 / span 4;  /* centered-left */
}
.servicesList > .serviceLine:last-child{
  grid-column: 7 / span 4;  /* centered-right */
}

/* =========================
   DESIGNED FOR
========================= */

.designedFor{
  margin-top: 18px;
  position: relative;
  max-width: 52ch;
}

.designedFor__kicker{ margin-bottom: 10px !important; }

.designedFor__pill{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  border: 1px solid rgba(25,70,48,0.28);
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(10px);

  box-shadow:
    0 18px 60px rgba(15,28,22,0.08),
    inset 0 1px 0 rgba(255,255,255,0.70);
}

.designedFor__pill::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  pointer-events:none;
  background:
    radial-gradient(240px 120px at 20% 20%, rgba(255,219,33,0.12), transparent 60%),
    radial-gradient(260px 140px at 85% 80%, rgba(25,70,48,0.12), transparent 65%);
  opacity: .9;
}

.designedFor__text{
  position: relative;
  z-index: 1;
  color: #0F1C16;
  font-size: 0.98rem;
  letter-spacing: 0.1px;
  line-height: 1.2;
  white-space: nowrap;
}

.designedFor__text strong{ font-weight: 900; }

.designedFor__note{
  margin: 10px 0 0;
  color: rgba(15,28,22,0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){
  .servicesV2__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .solutionsCard{
    order: 1;
    position: relative;
    top: auto;
    justify-self: start;
    max-width: none;
    padding-left: 0 !important;
  }

  .solutionsCard::before{ display: none; }

  .servicesList{ order: 2; }

  .servicesList{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .servicesList > .serviceLine{
    grid-column: auto !important;
  }
}

@media (max-width: 680px){
  .servicesList{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .serviceLine{
    min-height: 122px;
    padding: 12px;
  }
  .serviceLine__text{ font-size: 0.92rem; }
}

@media (max-width: 340px){
  .servicesList{ grid-template-columns: 1fr; }
  .servicesList > .serviceLine{ grid-column: auto !important; }
}

@media (prefers-reduced-motion: reduce){
  .solutionsCard::after{ display:none; }
}

/* =========================
   SOCIAL MEDIA BIO (Therapists & Coaches)
   - More creative, calm background (soft blobs + waves + bokeh)
   - Still transparent (no solid dark panel)
========================= */

.whoSection{
  position: relative;
  isolation: isolate;
  overflow: hidden;

  /* ✅ transparent section (lets your page background show through) */
  background: transparent !important;

  /* palette */
  --who-ink: rgba(15,28,22,0.92);
  --who-muted: rgba(15,28,22,0.70);

  --who-green: rgba(25,70,48,0.92);
  --who-gold: rgba(255,219,33,0.95);
  --who-mint: rgba(209,229,210,0.55);

  color: var(--who-ink);
  padding: clamp(84px, 7vw, 120px) 0;
}

/* ✅ creative background layers */
.whoSection::before{
  content:"";
  position:absolute;
  inset:-20%;
  z-index:0;
  pointer-events:none;

  background:
    /* big calm glows */
    radial-gradient(980px 640px at 16% 18%, rgba(255,219,33,0.22), transparent 62%),
    radial-gradient(980px 700px at 86% 30%, rgba(209,229,210,0.50), transparent 64%),
    radial-gradient(820px 560px at 64% 72%, rgba(25,70,48,0.10), transparent 66%),

    /* soft “therapy aura” blob shapes (SVG) */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23FFDB21' stop-opacity='0.18'/%3E%3Cstop offset='1' stop-color='%23194630' stop-opacity='0.08'/%3E%3C/linearGradient%3E%3ClinearGradient id='g2' x1='1' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23D1E5D2' stop-opacity='0.30'/%3E%3Cstop offset='1' stop-color='%23194630' stop-opacity='0.06'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M140 260 C 220 90, 520 70, 640 210 C 760 350, 640 520, 460 520 C 280 520, 80 420, 140 260 Z' fill='url(%23g1)'/%3E%3Cpath d='M980 120 C 1160 70, 1320 210, 1240 360 C 1160 510, 920 520, 860 350 C 800 180, 880 160, 980 120 Z' fill='url(%23g2)'/%3E%3C/svg%3E"),

    /* gentle wave lines (SVG) */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Cg fill='none' stroke='%23194630' stroke-width='2' opacity='0.09'%3E%3Cpath d='M-90 260 C 220 110, 450 420, 740 260 S 1120 110, 1490 260'/%3E%3Cpath d='M-90 520 C 240 360, 480 730, 780 520 S 1140 360, 1490 520'/%3E%3Cpath d='M-90 740 C 270 600, 520 950, 880 740 S 1210 600, 1490 740'/%3E%3C/g%3E%3C/svg%3E"),

    /* bokeh dots */
    radial-gradient(circle at 20% 28%, rgba(255,219,33,0.18) 0 6px, transparent 7px),
    radial-gradient(circle at 72% 32%, rgba(25,70,48,0.10) 0 6px, transparent 7px),
    radial-gradient(circle at 82% 62%, rgba(209,229,210,0.30) 0 7px, transparent 8px),
    radial-gradient(circle at 34% 72%, rgba(255,219,33,0.12) 0 6px, transparent 7px);

  background-repeat: no-repeat;
  background-size:
    auto,
    auto,
    auto,
    cover,
    cover,
    auto, auto, auto, auto;

  background-position:
    0 0,
    0 0,
    0 0,
    50% 35%,
    50% 55%,
    0 0, 0 0, 0 0, 0 0;

  filter: blur(0.25px);
  opacity: 1;
}

/* subtle vignette for focus */
.whoSection::after{
  content:"";
  position:absolute;
  inset:-10%;
  z-index:0;
  pointer-events:none;
  background: radial-gradient(circle at 50% 42%, transparent 58%, rgba(0,0,0,0.06) 100%);
  opacity: .55;
}

.global__kicker{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  color: rgba(178,154,31,0.95);
  text-transform: uppercase;
}

.whoLayout{
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;

  justify-items: center;
  text-align: center;
}

.whoLeft{ max-width: 980px; }

.whoTitle{
  margin: 0;
  font-family: var(--font-head, system-ui, -apple-system, Segoe UI, Arial);
  font-weight: 900;
  line-height: 1.08;
  color: rgba(15,28,22,0.96);
}

.whoRight{
  width: min(980px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whoRule{
  width: min(980px, 92vw);
  height: 1px;
  margin: 16px 0 18px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(25,70,48,0.22),
    rgba(255,219,33,0.22),
    rgba(25,70,48,0.14),
    transparent
  );
}

/* ✅ bigger main bio sentence (supports either class name) */
.whoBio,
.whoLead{
  max-width: 70ch;
  margin: 0 auto;

  font-weight: 800;
  font-size: clamp(1.18rem, 1.35vw, 1.55rem);
  line-height: 1.7;

  color: rgba(15,28,22,0.82);
}

/* bottom area */
.whoBottom{
  margin-top: 18px;
  display: grid;
  gap: 14px;
  justify-items: center;
}

/* ✅ designed “Authority. Visibility. Growth.” chip (supports .whoNote) */
.whoNote{
  margin: 0;

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 11px 16px;
  border-radius: 999px;

  font-weight: 950;
  letter-spacing: 0.06em;

  color: rgba(25,70,48,0.92);

  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.62)),
    radial-gradient(240px 140px at 18% 22%, rgba(255,219,33,0.18), transparent 60%),
    radial-gradient(240px 140px at 86% 78%, rgba(209,229,210,0.32), transparent 62%);

  border: 1px solid rgba(25,70,48,0.16);
  box-shadow:
    0 18px 54px rgba(15,28,22,0.08),
    inset 0 1px 0 rgba(255,255,255,0.70);

  backdrop-filter: blur(10px);
}

/* gradient ring for extra “designed” feel */
.whoNote::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 999px;
  pointer-events:none;
  background:
    linear-gradient(90deg,
      rgba(255,219,33,0.42),
      rgba(209,229,210,0.28),
      rgba(25,70,48,0.22)
    );
  opacity: .35;
  filter: blur(0.2px);
  z-index: -1;
}

/* dot accent */
.whoNote::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,219,33,0.95);
  box-shadow: 0 0 0 4px rgba(255,219,33,0.14);
}

/* CTA button alignment (uses your .btn styles) */
.whoCTA{
  display: inline-flex;
  justify-content: center;
  align-self: center;
}

/* responsive */
@media (max-width: 980px){
  .whoSection{ padding: 72px 0; }
  .whoRule{ width: min(720px, 92vw); }
  .whoBio, .whoLead{ font-size: 1.12rem; }
}

@media (prefers-reduced-motion: reduce){
  .whoSection::before,
  .whoSection::after{
    filter: none;
  }
}


/* =========================
   TESTIMONIALS 
========================= */
.testimonials{
  padding: 96px 0;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(255,219,33,0.14), transparent 60%),
    radial-gradient(900px 520px at 85% 75%, rgba(209,229,210,0.18), transparent 62%),
    linear-gradient(180deg, #0F211A, #07110D);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.testimonials__kicker{
  margin: 0 0 10px;
  text-align:center;
  font-weight: 900;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(255,219,33,0.92);
  text-transform: uppercase;
}
.testimonials__title{
  margin: 0 0 32px;
  text-align:center;
  font-family: var(--font-head);
  font-weight: 700;
  color: rgba(255,255,255,0.94);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.testimonials__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.tCard{
  border-radius: 22px;
  padding: 26px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(209,229,210,0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.22);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
  min-height: 270px;
  display: grid;
  align-content: space-between;
}
.tCard:hover{
  transform: translateY(-2px);
  border-color: rgba(255,219,33,0.30);
  background: rgba(255,219,33,0.06);
}
.tCard__quote{
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  text-align: center;
}
.tCard__who{
  text-align:center;
  display:grid;
  gap: 6px;
}
.tCard__who strong{
  font-weight: 900;
  color: rgba(255,255,255,0.94);
}
.tCard__who span{
  color: rgba(255,255,255,0.72);
  font-weight: 700;
}

@media (max-width: 980px){
  .testimonials__grid{ grid-template-columns: 1fr; }
  .tCard{ min-height: auto; }
}

/* =========================
   CONTACT BAND + CONTACT FORM (UPDATED)
   - Keeps your current colors/design
   - Fixes toast visibility (z-index + pointer-events)
   - Makes title consistent (serif look but not too dark/changed)
   ========================= */

/* Contact Band Background */
.contactBand{
  padding-top: 60px;
  padding-bottom: 110px;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(255,219,33,0.22), transparent 60%),
    radial-gradient(900px 520px at 85% 70%, rgba(124,149,138,0.22), transparent 60%),
    linear-gradient(180deg, #F4FAF4, #EAF4EA);
  border-top: 1px solid rgba(25,70,48,0.12);
  color: rgba(15,28,22,0.92);
}

/* Layout: left (title + form) / right (info blocks) */
.contactBand__grid{
  display: grid;
  grid-template-columns: minmax(720px, 1fr) 380px;
  gap: 52px;
  align-items: start;
}

.contactBand__left{ min-width: 0; }

/* Title (keep your serif style but don't change colors) */
.contactBand__title{
  margin: 0 0 10px;
  font-family: "Libre Baskerville", serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 2.0vw, 2.15rem);
  line-height: 1.05;
  color: rgba(15,28,22,0.92);
  max-width: 560px;
}

/* Form wrapper spacing */
.contactBand__formWrap{ margin-top: 25px; }

/* =========================
   FORM CARD
   ========================= */
#contactBandForm.contactForm{
  --card-radius: 28px;
  --outer-stroke: rgba(35, 79, 63, 0.22);
  --inner-stroke: rgba(35, 79, 63, 0.14);

  width: 650px;
  max-width: 100%;

  position: relative;
  overflow: hidden;

  padding: 38px 38px 32px;
  border-radius: var(--card-radius);

  border: 5px solid var(--outer-stroke);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 26px 60px rgba(15,28,22,0.10);

  display: grid;
  gap: 18px;
}

/* inner border */
#contactBandForm.contactForm::after{
  content:"";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--card-radius) - 12px);
  border: 1px solid var(--inner-stroke);
  pointer-events: none;
}

/* Field block */
#contactBandForm .contactForm__field{
  display: grid;
  gap: 10px;
}

/* Label */
#contactBandForm .contactForm__field span{
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(15,28,22,0.92);
}

/* Inputs */
#contactBandForm input,
#contactBandForm textarea{
  width: 100%;
  padding: 14px 16px;

  border-radius: 14px;
  border: 1.6px solid rgba(15,28,22,0.28);
  background: #fff;

  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(15,28,22,0.90);

  outline: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

#contactBandForm input::placeholder,
#contactBandForm textarea::placeholder{
  color: rgba(15,28,22,0.45);
}

#contactBandForm input:focus,
#contactBandForm textarea:focus{
  border-color: rgba(178,154,31,0.70);
  box-shadow: 0 0 0 4px rgba(178,154,31,0.16);
}

/* Textarea size */
#contactBandForm textarea{
  min-height: 210px;
  resize: vertical;
}

/* Submit button */
#contactBandForm .contactForm__submit{
  justify-self: end;
  margin-top: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 34px;
  border-radius: 999px;

  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  background: #234f3f;
  border: 1px solid rgba(35,79,63,0.25);
  color: rgba(255,255,255,0.98);

  box-shadow: 0 14px 30px rgba(15,28,22,0.12);
  cursor: pointer;

  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease), filter 160ms var(--ease), opacity 160ms var(--ease);
}

#contactBandForm .contactForm__submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15,28,22,0.16);
  filter: brightness(1.03);
}

#contactBandForm .contactForm__submit:active{ transform: translateY(0); }

#contactBandForm .contactForm__submit:disabled{
  opacity: .78;
  cursor: not-allowed;
  transform: none;
}

/* Spinner (used by your JS) */
#contactBandForm .btnSpin{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.45);
  border-top-color: rgba(255,255,255,1);
  animation: btnspin .7s linear infinite;
}
@keyframes btnspin{ to{ transform: rotate(360deg); } }

/* =========================
   RIGHT SIDE INFO BLOCKS
   ========================= */
.contactBand__grid > .contactBand__right{ align-self: center; }

.contactBand__right{
  display: grid;
  gap: 26px;
  justify-content: end;
  text-align: left;
}

.contactBand__block{
  max-width: 340px;
  padding-left: 18px;
  border-left: 2px solid rgba(178,154,31,0.75);
}

.contactBand__label{
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: rgba(15,28,22,0.55);
  text-transform: uppercase;
}

.contactBand__value{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 800;
  color: rgba(15,28,22,0.82);
}

/* =========================
   TOAST (FIXED: should show now)
   - z-index higher than everything
   - pointer-events fixed (click works)
   ========================= */
.toastWrap{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 999999;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.toast{
  pointer-events: auto;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);

  display: grid;
  grid-template-columns: 10px 1fr 28px;
  gap: 10px;
  align-items: start;

  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease;
}

.toast.is-show{
  opacity: 1;
  transform: translateY(0);
}

.toast__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
}

.toast__title{
  margin: 0;
  font-weight: 800;
  font-size: 13px;
  color: #0f172a;
  font-family: var(--font-body);
}

.toast__msg{
  margin: 2px 0 0;
  font-size: 12.5px;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.35;
  font-family: var(--font-body);
}

.toast__x{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 18px;
  line-height: 0;
  display: grid;
  place-items: center;
  color: rgba(15, 23, 42, 0.65);
}

.toast--info .toast__dot{ background: #3b82f6; }
.toast--success .toast__dot{ background: #22c55e; }
.toast--error .toast__dot{ background: #ef4444; }

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .contactBand{ padding: 90px 0; }

  .contactBand__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contactBand__right{ justify-content: start; }

  .contactBand__block{
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(15,28,22,0.10);
    padding-top: 14px;
  }

  #contactBandForm.contactForm{
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 520px){
  #contactBandForm.contactForm{
    padding: 26px 18px 20px;
    border-radius: 24px;
  }

  #contactBandForm.contactForm::after{
    inset: 10px;
    border-radius: 14px;
  }

  #contactBandForm textarea{
    min-height: 180px;
  }

  #contactBandForm .contactForm__submit{
    width: 100%;
    justify-self: stretch;
  }
}