:root{
  --bg: #0b1220;
  --page: radial-gradient(1200px 700px at 15% 10%, rgba(24,195,107,.10), transparent 55%),
          radial-gradient(900px 500px at 85% 30%, rgba(96,165,250,.10), transparent 55%),
          linear-gradient(180deg, #eef3f7, #edf7f2 60%, #eef3f7);
  --surface: rgba(255,255,255,.78);
  --surface2: rgba(255,255,255,.92);
  --stroke: rgba(11,18,32,.10);
  --stroke2: rgba(11,18,32,.14);

  --text: #0b1220;
  --muted: rgba(11,18,32,.62);

  --green: #18C36B;
  --green2: #12A957;

  --r12: 12px;
  --r16: 16px;
  --r18: 18px;
  --r20: 20px;
  --r24: 24px;
  --r28: 28px;

  --family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;

  --shadow: 0 22px 60px rgba(11,18,32,.10);
  --shadow2: 0 14px 32px rgba(11,18,32,.08);

  --max: 1160px;
}

*{ box-sizing:border-box }
html{ scroll-behavior:smooth }
body{
  margin:0;
  font-family: var(--family);
  color: var(--text);
  background: var(--page);
  line-height: 1.55;
  font-size: var(--r16);
}

a{ color:inherit; text-decoration:none }
a.link{ color: var(--green2); text-decoration: underline; text-underline-offset: 3px; }
a.link:hover{ opacity:.9 }

.container{ max-width: var(--max); margin: 0 auto; padding: 0 20px; }
@media (max-width:520px){ .container{ padding:0 16px; } }

[hidden]{ display:none !important; }

:focus-visible{
  outline: 3px solid rgba(24,195,107,.45);
  outline-offset: 3px;
  border-radius: 14px;
}

.skip{
  position:absolute; left:-9999px; top:10px;
  background:#fff; border:1px solid var(--stroke);
  padding:10px 12px; border-radius: var(--r16);
  box-shadow: var(--shadow2);
}
.skip:focus{ left:10px; z-index:9999; }

/* Header */
.header{
  position: sticky; top:0; z-index:60;
  background: rgba(255,255,255,.70);
  border-bottom: 1px solid rgba(11,18,32,.08);
  backdrop-filter: blur(14px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{
  display:flex; align-items:center; gap: 12px;
  min-width: 210px;
}
.brandMark{
  width: 40px; height: 40px;
  border-radius: 16px;
  background: radial-gradient(22px 22px at 30% 30%, rgba(154,243,200,1), rgba(24,195,107,1));
  box-shadow: 0 18px 40px rgba(24,195,107,.20);
  display:grid; place-items:center;
}
.brandWord{
  display:flex; flex-direction:column; line-height:1.05;
}
.brandWord b{
  font-size: 20px;
  letter-spacing: -0.3px;
}
.brandWord span{
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.navlinks{
  display:flex; gap: 10px; flex-wrap:wrap;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.08);
  background: rgba(255,255,255,.55);
}
.navlinks a{
  font-size: 13.5px;
  color: rgba(11,18,32,.72);
  padding: 8px 10px;
  border-radius: 999px;
}
.navlinks a:hover{
  background: rgba(255,255,255,.85);
  color: rgba(11,18,32,.92);
}
@media (max-width: 980px){ .navlinks{ display:none; } }

.actions{ display:flex; gap:10px; align-items:center; }

.btn{
  min-height: 44px;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.80);
  color: rgba(11,18,32,.92);
  font-weight: 900;
  cursor:pointer;
  transition: transform .08s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{ filter: brightness(1.03); border-color: rgba(11,18,32,.16); }
.btn:active{ transform: translateY(1px); }

.btn.primary{
  background: linear-gradient(135deg, var(--green), #2BE38D);
  border-color: rgba(24,195,107,.18);
  color: #062313;
  box-shadow: 0 18px 44px rgba(24,195,107,.18);
}
.btn.primary:hover{ filter: brightness(1.03); }

.btn.ghost{
  background: rgba(255,255,255,.35);
  border-color: rgba(11,18,32,.10);
}
.btn.dark{
  background: rgba(11,18,32,.92);
  border-color: rgba(255,255,255,.12);
  color:#fff;
}

.icon{
  width: 18px; height: 18px;
  display:inline-block;
}
.icon.logo{ width: 50px; height:50px; color: white;}
.icon.lg{ width: 24px; height:24px;}
.iconWrap{
  width: 34px; height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.65);
  display:grid; place-items:center;
}

@media (max-width:520px){
  .brandWord span{ display:none; }
  .actions .btn.primary{ padding: 10px 12px; font-size: 14px; }
}

/* Main spacing */
main{ padding: 18px 0 70px; }

/* Hero */
.hero{
  position:relative;
  border-radius: var(--r28);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(900px 420px at 85% 25%, rgb(6 255 127), transparent 60%),
    linear-gradient(120deg, #566d78, #b0c1c9);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(1px 1px at 70% 65%, rgba(255,255,255,.30), transparent 60%),
    radial-gradient(1px 1px at 45% 35%, rgba(255,255,255,.25), transparent 60%);
  opacity:.55;
  pointer-events:none;
}

.heroInner{
  position:relative;
  padding: 26px;
}

.heroTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}

.badges{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.20);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 12.5px;
  backdrop-filter: blur(10px);
}
.badge .dot{
  width:8px; height:8px; border-radius:999px; background: rgba(24,195,107,1);
  box-shadow: 0 0 0 4px rgba(24,195,107,.18);
}

.heroTitle{
  margin: 16px 0 10px;
  font-size: clamp(28px, 3.1vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.9px;
  color: rgba(255,255,255,.95);
  max-width: 19ch;
}
.heroSub{
  margin:0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  max-width: 64ch;
}

/* Bento panels */
.heroPanels{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 14px;
  align-items: start;
}

@media (max-width: 980px){
  .heroInner{ padding: 18px; }
  .heroPanels{ grid-template-columns: 1fr; }
  .heroTitle{ max-width: 30ch; }
  .heroSub{ font-size: 15px; }
}

.panel{
  border-radius: var(--r28);
  background: var(--surface);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
@supports (backdrop-filter: blur(12px)){
  .panel{ backdrop-filter: blur(14px); }
}
.panelHead{
  display:flex; justify-content:space-between; align-items:center; gap: 12px; flex-wrap:wrap;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(11,18,32,.08);
  background: linear-gradient(135deg, rgba(24,195,107,.18), rgba(255,255,255,.35));
}
.panelHead b{ font-size: 14px; }
.panelHead span{ font-size: 13px; color: rgba(11,18,32,.64); }

.tabbar{
  display:flex; gap:8px; flex-wrap:wrap;
  padding: 12px 16px 0;
}
.tabbar button{
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.70);
  color: rgba(11,18,32,.66);
  font-weight: 950;
  font-size: 13px;
  border-radius: 999px;
  padding: 8px 12px;
  cursor:pointer;
  transition: background .2s ease, border-color .2s ease;
}
.tabbar button:hover{ background: rgba(255,255,255,.88); }
.tabbar button[aria-selected="true"]{
  background: rgba(24,195,107,.14);
  border-color: rgba(24,195,107,.24);
  color: rgba(6,35,19,.92);
}

.tabPanel{ padding: 14px 16px 16px; }
.tabTitle{
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.tabText{ margin: 0; color: var(--muted); font-size: 15.5px; }
.tabBullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(11,18,32,.68);
  font-size: 15.5px;
}
.tabBullets li{ margin: 6px 0; }
.tabCtas{ margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap; }

.outcomeGrid{
  padding: 14px;
  display:grid;
  gap: 10px;
}
.outcomeCard{
  border-radius: var(--r20);
  border: 1px solid rgba(11, 18, 32, 0);
  background: rgba(255,255,255,.88);
  padding: 12px;
  box-shadow: 0 10px 22px rgba(11,18,32,.06);
}
.outcomeCardTop{
  display:flex; align-items:center; gap:10px;
}
.outcomeCard b{ font-size: 14px; }
.outcomeCard p{ margin: 6px 0 0; color: var(--muted); font-size: 14.8px; }

.section{ margin-top: 28px; }
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap: 12px;
  margin: 18px 0 12px;
}
.sectionHead h2{
  margin:0;
  font-size: clamp(22px, 1.9vw, 30px);
  letter-spacing:-0.2px;
}
.sectionHead p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  max-width: 70ch;
}

/* Bento grid (What you get) */
.bento{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.bentoCard{
  grid-column: span 4;
  border-radius: var(--r24);
  border: 1px solid rgba(11,18,32,.05);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow2);
  padding: 14px;
  overflow:hidden;
  position:relative;
}
@supports (backdrop-filter: blur(12px)){
  .bentoCard{ backdrop-filter: blur(14px); }
}
.bentoCard::before{
  content:"";
  position:absolute; inset:-60px -60px auto auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(24,195,107,.18), transparent 60%);
  transform: rotate(18deg);
}
.bentoCard h3{
  margin: 10px 0 6px;
  font-size: 16.8px;
  letter-spacing:-0.1px;
}
.bentoCard p{
  margin:0;
  color: var(--muted);
  font-size: 14.8px;
}
.bentoCard .iconWrap{ position:relative; z-index:1; }
.bentoCard .meta{ position:relative; z-index:1; }

@media (max-width: 980px){
  .bentoCard{ grid-column: span 12; }
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.step{
  border-radius: var(--r24);
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.stepTop{
  display:flex; align-items:center; justify-content:space-between;
}
.stepNum{
  width: 34px; height: 34px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.70);
  display:grid; place-items:center;
  font-weight: 950;
}
.step h3{ margin: 12px 0 6px; font-size: 17px; }
.step p{ margin:0; color: var(--muted); font-size: 14.8px; }

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

/* Banner */
.banner{
  border-radius: var(--r28);
  background: linear-gradient(135deg, rgba(24,195,107,.92), rgba(46,227,141,.92));
  box-shadow: 0 22px 60px rgba(24,195,107,.16);
  overflow:hidden;
  position:relative;
}
.banner::before{
  content:"";
  position:absolute; right:-120px; top:-160px;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.50), transparent 60%);
  transform: rotate(16deg);
}
.bannerInner{
  position:relative;
  padding: 22px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px; flex-wrap:wrap;
}
.banner h3{ margin:0; font-size: 22px; letter-spacing:-0.2px; color:#062313; }
.banner p{ margin:6px 0 0; color: rgba(6,35,19,.80); max-width: 72ch; }

/* Packages */
.packFilter{
  display:flex; gap:8px; flex-wrap:wrap; margin-bottom: 12px;
}
.packFilter button{
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.75);
  color: rgba(11,18,32,.68);
  font-weight: 950;
  font-size: 13px;
  border-radius: 999px;
  padding: 8px 12px;
  cursor:pointer;
}
.packFilter button[aria-selected="true"]{
  background: rgba(24,195,107,.14);
  border-color: rgba(24,195,107,.22);
  color: rgba(6,35,19,.92);
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.col-4{ grid-column: span 4; }
@media (max-width:980px){ .col-4{ grid-column: span 12; } }

.card{
  border-radius: var(--r24);
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.cardTop{
  padding: 14px;
  border-bottom: 1px solid rgba(11,18,32,.08);
  display:flex; align-items:center; justify-content:space-between;
}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.70);
  font-size: 12.5px;
  font-weight: 950;
  color: rgba(11,18,32,.72);
}
.cardPad{ padding: 14px; }
.cardPad h3{ margin: 2px 0 6px; font-size: 18px; letter-spacing:-0.1px; }
.cardPad p{ margin:0; color: var(--muted); font-size: 14.8px; }
.price{
  margin: 12px 0 0;
  font-size: 32px;
  letter-spacing:-0.4px;
}
.price small{
  font-size: 12.5px;
  color: rgba(11,18,32,.58);
  font-weight: 900;
}
.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(11,18,32,.68);
  font-size: 14.8px;
}
.list li{ margin:6px 0; }
.cardBottom{ padding: 12px 14px 14px; display:flex; gap:10px; flex-wrap:wrap; }

.highlight{
  border-color: rgba(24,195,107,.22);
  box-shadow: 0 24px 70px rgba(24,195,107,.12);
}

/* =========================
   Team / Consultants (final)
   Big photo cards (light theme) + about text + single-card compact layout
   ========================= */

/* Grid */
.consultantsGridXL{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

/* Card */
.consultantXL{
  grid-column: span 3; /* 4 cards/row */
  border-radius: var(--r24);
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}
.consultantXL:hover{
  transform: translateY(-2px);
  border-color: rgba(11,18,32,.16);
  box-shadow: 0 22px 60px rgba(11,18,32,.12);
}

/* Photo (big) */
.cxlPhoto{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(11,18,32,.06);
  overflow: hidden;
}
.cxlPhoto img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transform: scale(1.02);
}

/* Fallback */
.cxlPhoto[data-noimg="true"] .cxlFallback{ display: grid; }
.cxlFallback{
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  font-weight: 950;
  font-size: 22px;
  letter-spacing: -0.4px;
  color: rgba(11,18,32,.70);
  background:
    radial-gradient(240px 140px at 30% 30%, rgba(24,195,107,.18), transparent 60%),
    rgba(255,255,255,.70);
}

/* Body */
.cxlBody{
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cxlName{
  font-weight: 950;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: rgba(11,18,32,.92);
  line-height: 1.15;
}

/* Meta: role + company on separate row */
.cxlMeta{
  display: grid;
  gap: 6px;
  margin-top: 2px;
  font-size: 13.5px;
  color: rgba(11,18,32,.62);
}
.cxlRole{
  font-weight: 800;
  color: rgba(11,18,32,.72);
}
.cxlCompanyRow{
  display: flex;
  align-items: center;
  gap: 8px;
}
.cxlCompany{
  background: rgba(255,255,255,.75);
  color: rgba(11,18,32,.78);
  font-weight: 900;
  font-size: 12.5px;
}

/* Social icons */
.cxlLinks{
  margin-top: 6px;
  display: flex;
  gap: 10px;
}

.cxlIcon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.75);
  display: grid;
  place-items: center;
  color: rgba(11,18,32,.78);
  transition: transform .08s ease, filter .2s ease, border-color .2s ease;
}
.cxlIcon:hover{
  filter: brightness(1.03);
  border-color: rgba(11,18,32,.16);
}
.cxlIcon:active{ transform: translateY(1px); }

.cxlIcon svg{
  width: 18px;
  height: 18px;
  display: block;
}

.cxlIcon--disabled{
  opacity: .35;
  pointer-events: none;
}

/* About block (optional text under socials) */
.cxlAbout{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(11,18,32,.08);
}
.cxlPitch{
  margin: 0;
  color: rgba(11,18,32,.72);
  font-size: 14.3px;
  line-height: 1.55;
}
.cxlList{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(11,18,32,.70);
  font-size: 14.3px;
}
.cxlList li{ margin: 6px 0; }
.cxlList b{ color: rgba(11,18,32,.88); }

/* Responsive grid */
@media (max-width: 1100px){
  .consultantXL{ grid-column: span 4; } /* 3 per row */
}
@media (max-width: 980px){
  .consultantXL{ grid-column: span 6; } /* 2 per row */
}
@media (max-width: 560px){
  .consultantXL{ grid-column: span 12; } /* 1 per row */
  .cxlPhoto{ aspect-ratio: 16 / 10; }
}

/* Single consultant: compact premium layout (NOT huge full-width) */
.consultantsGridXL:has(.consultantXL:only-child){
  justify-content: center;
}
.consultantsGridXL:has(.consultantXL:only-child) .consultantXL{
  grid-column: 1 / -1;
  max-width: 980px;
  width: 100%;
}

@media (min-width: 980px){
  .consultantsGridXL:has(.consultantXL:only-child) .consultantXL{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
  }
  .consultantsGridXL:has(.consultantXL:only-child) .cxlPhoto{
    height: 100%;
  }
  .consultantsGridXL:has(.consultantXL:only-child) .cxlBody{
    padding: 16px;
  }
  .consultantsGridXL:has(.consultantXL:only-child) .cxlName{
    font-size: 20px;
  }
}

/* =========================
   FAQ (premium accordion)
   - narrower block
   - bigger, readable typography
   - formatted answers
   ========================= */

.faqWrap{
  max-width: 920px;          /* делает блок уже */
  margin: 0 auto;
}

.faqList{
  display: grid;
  gap: 12px;
}

/* Card */
.faqItem{
  border-radius: 18px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 30px rgba(11,18,32,.08);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faqItem:hover{
  border-color: rgba(11,18,32,.16);
  box-shadow: 0 22px 55px rgba(11,18,32,.10);
}

/* Header button */
.faqBtn{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faqBtn span{
  font-size: 16.5px;         /* крупнее вопрос */
  font-weight: 950;
  letter-spacing: -0.1px;
  color: rgba(11,18,32,.92);
  line-height: 1.25;
}

/* Icon: clean plus / x without “form-like” circle */
.faqIcon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.70);
  display: grid;
  place-items: center;
  transition: transform .18s ease, border-color .2s ease, background .2s ease;
  flex: 0 0 auto;
}
.faqItem[data-open="true"] .faqIcon{
  transform: rotate(45deg);
  border-color: rgba(24,195,107,.28);
  background: rgba(24,195,107,.10);
}

.faqIcon svg{
  width: 18px;
  height: 18px;
  display: block;
}

/* Panel */
.faqPanel{
  height: 0;
  overflow: hidden;
  transition: height .22s ease;
}

.faqPanelInner{
  padding: 0 18px 18px;
  border-top: 1px solid rgba(11,18,32,.08);
  color: rgba(11,18,32,.74);
  font-size: 15.5px;         /* крупнее ответ */
  line-height: 1.65;
}

/* Proper formatting inside answer */
.faqPanelInner p{
  margin: 12px 0 0;
}
.faqPanelInner p:first-child{
  margin-top: 14px;
}

.faqPanelInner ul,
.faqPanelInner ol{
  margin: 10px 0 0;
  padding-left: 20px;
}
.faqPanelInner li{
  margin: 8px 0;
}
.faqPanelInner b,
.faqPanelInner strong{
  color: rgba(11,18,32,.88);
}

/* Small callout style if you want later */
.faqNote{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.75);
  color: rgba(11,18,32,.70);
  font-size: 14.5px;
}

/* Mobile tweaks */
@media (max-width: 560px){
  .faqWrap{ max-width: 100%; }
  .faqBtn{ padding: 16px 14px; }
  .faqPanelInner{ padding: 0 14px 16px; font-size: 15px; }
  .faqBtn span{ font-size: 16px; }
  .faqIcon{ width: 38px; height: 38px; }
}

/* Contact */
form button{
  font-size: var(--r16);
  font-family: var(--family);
}
.contact{
  border-radius: var(--r28);
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items:start;
}
@media (max-width:980px){ .contactGrid{ grid-template-columns: 1fr; } }

.side{
  border-radius: var(--r24);
  border: 1px solid rgb(42 223 137);
  background: rgba(255,255,255,.78);
  padding: 14px;
}
.side b{ display:block; font-size: 14px; }
.side p{ margin: 8px 0 0; color: var(--muted); font-size: 14.8px; }
.side .mini{
  margin-top: 12px;
  border-radius: var(--r20);
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.85);
  padding: 12px;
  font-size: 14.8px;
}

form{ display:grid; gap: 10px; }
label{ font-size: 13px; color: rgba(11,18,32,.62); }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.92);
  color: rgba(11,18,32,.92);
  font-size: 15px;
  outline:none;
}
textarea{ min-height: 120px; resize: vertical; }
.row2{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width:560px){ .row2{ grid-template-columns:1fr; } }
.hint{ color: rgba(11,18,32,.58); font-size: 13px; }

/* Footer */
.footer{
  margin-top: 24px;
  background: rgba(11,18,32,.92);
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(232,238,248,.78);
  border-radius: var(--r28);
  overflow:hidden;
}
.footerInner{ padding: 22px; }
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}
@media (max-width:980px){ .footerGrid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footerGrid{ grid-template-columns:1fr; } }

.footer h4{ margin:0 0 10px; color:#fff; font-size: 14px; letter-spacing:.2px; }
.footer ul{ margin:0; padding:0; list-style:none; }
.footer li{ margin:8px 0; font-size: 13.5px; }
.footer a{ color: rgba(232,238,248,.78); }
.footer a:hover{ color:#fff; }

.footerBrand{ display:flex; gap:10px; align-items:center; }
.footerMark{
  width:41px; height:41px; border-radius: 16px;
  background: radial-gradient(22px 22px at 30% 30%, rgba(154,243,200,1), rgba(24,195,107,1));
  box-shadow: 0 18px 44px rgba(24,195,107,.18);
  border: 1px solid rgba(255,255,255,.08);
  display:grid; place-items:center;
}

.footerBottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex; justify-content:space-between; gap: 10px; flex-wrap:wrap;
  font-size: 13px;
  color: rgba(232,238,248,.65);
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; scroll-behavior:auto; }
}