:root {
  --bg: #f7f8fb;              /* основной фон */
  --bg-soft: #ffffff;         /* карточки */
  --text: #0f172a;            /* основной текст */
  --muted: #64748b;           /* вторичный текст */
  --accent: #3b6cff;          /* акцент (кнопки) */
  --border: #e5e7eb;          /* границы */
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1400px; /* чуть шире для hero */
  margin: 0 auto;
  padding: 0 24px;
}
/* ===== LOGO ===== */

.logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.6;
}
/* ===== NAV LINKS ===== */

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  color: var(--muted);
  padding: 8px 4px;
  transition: color .2s ease;
}

nav a:hover {
  color: #0f172a;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s ease;
  border-radius: 2px;
}

nav a:hover::after {
  width: 100%;
}
nav a.active {
  color: #0f172a;
  color: var(--text);
  font-weight: 500;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
/* ================= HEADER ================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  backdrop-filter: blur(12px);
  background: rgba(247, 248, 251, 0.75);

  border-bottom: 1px solid var(--border);

  /* ВАЖНО */
  height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

header nav a {
  opacity: 0.9;
}

header nav a:hover {
  opacity: 1;
}

.logo {
  font-weight: 600;
  font-size: 20px;
}

nav a {
  margin-left: 24px;
  font-size: 14px;
  color: var(--muted);
}

/* ================= HERO ================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 100px;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* левая часть */
.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 32px;
}

.hero-content p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.hero-actions a {
  padding: 12px 22px;
  font-size: 14px;
  border-radius: 6px;
  line-height: 1;
  transition: all .2s ease;
}

/* Основная кнопка — спокойная, уверенная */
.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #3f6df0;
}

/* Вторичная — лёгкая, почти текстовая */
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}


.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 32px;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  padding: 16px 34px;
  font-size: 15px;
  font-weight: 500;
}

.btn-secondary {
  padding: 16px 28px;
  font-size: 14px;
}

/* ===== HERO VISUAL (КЛЮЧЕВОЕ МЕСТО) ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 1100px;
  max-width: none; /* 🔥 ВОТ КЛЮЧ */
  height: auto;
  display: block;
}


@media (max-width: 1000px) {
  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 40px;
    text-align: center;
  }

  .hero-visual img {
    width: 100%;
    max-width: 520px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= SECTIONS ================= */

section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
   scroll-margin-top: 90px; /* высота header + запас */
}

.section-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 64px;
}

/* ================= SERVICES ================= */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service {
  background: var(--bg-soft);
  padding: 32px;
  border: 1px solid var(--border);
}

.service h3 {
  margin-bottom: 12px;
}

/* ================= PORTFOLIO ================= */

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case {
  height: 220px;
  background: linear-gradient(135deg, #1a1f2b, #0e1118);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

/* ================= WHY US ================= */

/* WHY (как в примере: иконка + заголовок + текст, 3 колонки) */
.why {
  padding: 80px 0;
}

.why-grid{
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 60px;
}

.why-item{
  position: relative;
  padding-left: 44px; /* место под иконку слева */
}

.why-ico{
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
}

.why-title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.why-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  max-width: 46ch; /* чтобы абзацы были аккуратной ширины */
}

/* Адаптив */
@media (max-width: 1024px){
  .why-grid{ grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
}
@media (max-width: 640px){
  .why-grid{ grid-template-columns: 1fr; }
  .why-item{ padding-left: 40px; }
}




/* ================= FORM ================= */

form {
  max-width: 520px;
}

input,
textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 14px;
  margin-bottom: 16px;
  color: var(--text);
}

button {
  background: var(--accent);
  border: none;
  padding: 14px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
/* ================= IG CONTACT FORM — LIGHT ================= */

.ig-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.ig-field label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.ig-field input,
.ig-field textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  font-size: 14px;
  color: var(--text);
}

.ig-field input:focus,
.ig-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,108,255,0.12);
}

.ig-field input::placeholder,
.ig-field textarea::placeholder {
  color: #9aa3b2;
}

.ig-submit {
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.ig-submit:hover {
  background: #335fe0;
}



/* ===== HINT ===== */

.ig-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 16px;
}

/* ===== ATTACH ===== */

.ig-attach {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.ig-attach input[type="file"] {
  display: none;
}

.ig-attach-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px dashed var(--border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s ease;
}

.ig-attach-btn:hover {
  border-color: var(--accent);
  color: #fff;
}

.ig-file-name {
  font-size: 13px;
  color: var(--muted);
}

/* ===== STATUS ===== */

.ig-status {
  font-size: 13px;
  margin: 10px 0;
  color: var(--muted);
}

/* ===== SUBMIT ===== */

.ig-submit {
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
}

.ig-submit:hover {
  background: #2f5df0;
}

.ig-attach-btn {
  background: #f8fafc;
  border: 1px dashed var(--border);
  color: var(--muted);
}

.ig-attach-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}


/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 140px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ===== LEFT INFO ===== */

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-info .section-subtitle {
  max-width: 420px;
  margin-bottom: 32px;
}

.contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}

.contact-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== FORM CARD FIX ===== */

.ig-right {
  max-width: none;
}

.ig-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;

  font-size: 26px;
  color: #0f172a;           /* чёткий цвет */
  opacity: 0.85;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-toggle:hover {
  opacity: 1;
}


@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    top: 18px;
  }
@media (max-width: 900px) {
  header {
    position: relative;
  }

  .menu-toggle{
  position: absolute;
  right: -170px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

}

@media (max-width: 900px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;              /* ← ВАЖНО */
    z-index: 1000;
    background: rgba(247, 248, 251, 0.92);
    backdrop-filter: blur(10px);
  }

  body {
    padding-top: 64px;
  }
}


  nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(247,248,251,0.96);
    backdrop-filter: blur(12px);
    display: none;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 12px 0;
    font-size: 16px;
  }
}

/* ================= FOOTER ================= */

footer {
  padding: 24px 0;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

footer .container {
  text-align: center;
  font-size: 13px;
  color: #64748b;
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 48px;
  }

  .hero-visual img {
    width: 100%;
    max-width: 520px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}
/* ================================
   REQUEST — СВЯЗАННЫЙ БЛОК
   ================================ */

#request {
  padding: 90px 0;
  background: #f8fafc;
}

#request .section-title {
  text-align: center;
  margin-bottom: 10px;
}

#request .section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
}

/* ОБЩИЙ КОНТЕЙНЕР */
.request-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  padding: 48px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

/* ЛЕВАЯ ЧАСТЬ */
.request-info {
  padding-right: 40px;
  border-right: 1px solid #e5e7eb;
}

.request-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.request-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.request-info ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #475569;
}

.request-info ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #2563eb;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.request-note {
  font-size: 13px;
  color: #64748b;
}

/* ПРАВАЯ ЧАСТЬ — ФОРМА */
.request-form {
  padding-left: 40px;
}

.request-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #64748b;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 14px;
  color: #0f172a;
  transition: border-color .2s ease, background .2s ease;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
}

.request-form textarea {
  resize: vertical;
  min-height: 110px;
}

/* ФАЙЛ */
.rf-attach {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 28px;
}

.rf-file {
  cursor: pointer;
  font-size: 14px;
  color: #2563eb;
}

.rf-file input {
  display: none;
}

.rf-attach span {
  font-size: 12px;
  color: #94a3b8;
}

/* КНОПКА */
.request-form button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease;
}

.request-form button:hover {
  background: #1d4ed8;
}

/* ================================
   АДАПТИВ
   ================================ */

@media (max-width: 1024px) {
  .request-wrap {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .request-info {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .request-form {
    padding-left: 0;
  }
}



/* ================= PRICING ================= */

.pricing-section {
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.pricing-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-price {
  font-size: 18px;
  font-weight: 500;
}

.price-placeholder {
  color: var(--accent);
}

/* CTA карточка */
.pricing-cta {
  background: linear-gradient(
    180deg,
    rgba(79,124,255,0.08),
    rgba(79,124,255,0.02)
  );
}

.pricing-cta .pricing-desc {
  margin-bottom: 24px;
}

/* Mobile */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== TYPICAL SOLUTIONS ===== */

/* =========================
   WORKS / PORTFOLIO SLIDER
   ========================= */

#works {
  padding: 90px 0;
  background: #fff;
}

#works .section-subtitle {
  margin-top: 10px;
  color: #6b7280;
}

/* Обёртка со стрелками */
.works-slider {
  margin-top: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Видимая область */
.works-viewport {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
}

/* Лента */
.works-track {
  display: flex;
  gap: 40px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Карточка проекта */
.work-item {
  flex: 0 0 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Картинка */
.work-item img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

/* Стрелки */
.works-arrow {
  background: none;
  border: none;
  font-size: 42px;
  cursor: pointer;
  padding: 0 20px;
  color: #111;
}

/* Кнопка "Больше работ" */
.works-more {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {
  .works-slider {
    padding: 0 10px;
  }

  .works-track {
    gap: 0;
  }

  .work-item {
    flex: 0 0 100%;
  }

  .work-item img {
    width: 100%;
    max-height: none;
    aspect-ratio: 9 / 16;
    object-fit: contain;
  }

  .works-arrow {
    font-size: 34px;
    padding: 0 10px;
  }
}

/* ===== CENTER SECTION HEADINGS ===== */

section > .container > h2,
section > .container > h3,
section > .container > .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* если есть подзаголовки */
section > .container > p,
section > .container > .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* ===== SECTION TITLE LINE ===== */

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;          /* длина линии */
  height: 3px;          /* толщина */
  background: var(--accent);
  border-radius: 2px;
  margin: 16px auto 0;  /* отступ от заголовка */
}
.rf-status {
  margin: 12px 0;
  font-size: 14px;
  min-height: 18px;
}

.rf-status.loading {
  color: #6b7280;
}

.rf-status.success {
  color: #16a34a;
}

.rf-status.error {
  color: #dc2626;
}

.rf-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}
/* ================= MOBILE ADAPTIVE ================= */

@media (max-width: 768px) {

  /* ---------- HEADER ---------- */
  header {
    padding: 14px 0;
  }

  .header-inner {
    justify-content: space-between;
  }

  nav {
    display: none; /* позже можно сделать бургер */
  }

  /* ---------- HERO ---------- */
  .hero {
    padding: 72px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-content p,
  .hero-lead {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 32px;
  }

  /* ---------- HERO BUTTONS ---------- */
  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  /* ---------- HERO VISUAL ---------- */
  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    text-align: center;
  }

  .hero-visual img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  /* ---------- SECTIONS ---------- */
  section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 26px;
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* ---------- SERVICES / CARDS ---------- */
  .services,
  .solutions-grid,
  .pricing-grid,
  .stats,
  .clients {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ---------- CONTACT ---------- */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* ---------- FOOTER ---------- */
  footer {
    text-align: center;
  }
}
/* ===== PORTFOLIO SLIDER MOBILE FIX ===== */
@media (max-width: 768px) {
  .portfolio,
  .portfolio-slider,
  .portfolio-wrapper {
    overflow: visible;
    height: auto;
  }

  .portfolio-slide {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .portfolio-slide img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }

  .hero {
    padding-bottom: 40px;
  }
}
/* =========================
   Language switch
   ========================= */

.lang-switch {
  margin-left: 24px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: #6366f1;   /* твой фиолетовый */
  color: #fff;
  transition: opacity 0.2s ease;
}

.lang-btn:hover {
  opacity: 0.85;
}

/* =========================
   WebAxis Footer (Premium)
   ========================= */
.wa-footer{
  background: radial-gradient(1200px 600px at 20% 10%, rgba(55,121,255,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(120,64,255,.18), transparent 60%),
              #060b16;
  color: rgba(255,255,255,.92);
  padding: 70px 0 60px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.wa-foot-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.wa-foot-brand{
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.wa-foot-logo{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .4px;
}

.wa-foot-rating{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 15px;
  opacity: .95;
}

.wa-google{
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.5px;
  background: linear-gradient(90deg, #4285F4, #34A853, #FBBC05, #EA4335);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wa-foot-copy{
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}

.wa-foot-col{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.wa-foot-title{
  font-size: 16px;
  font-weight: 700;
  color: #ff3f8e;
  margin-bottom: 6px;
}

.wa-foot-col a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 15px;
  transition: .2s ease;
  width: fit-content;
}

.wa-foot-col a:hover{
  color: #fff;
  transform: translateX(4px);
}

.wa-foot-line{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.78);
}

.wa-foot-line a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
  transition: .2s ease;
}

.wa-foot-line a:hover{
  color: #fff;
  text-decoration: underline;
}

.wa-ico{
  width: 22px;
  height: 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  opacity: .9;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 1050px){
  .wa-foot-grid{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px){
  .wa-footer{
    padding: 50px 0 45px;
  }
  .wa-foot-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .wa-foot-title{
    margin-top: 8px;
  }
}
/* =========================
   SOCIAL SECTION
========================= */
.social{
  padding: 90px 0;
  background: #f6f7fb;
  position: relative;
  overflow: hidden;
}

.social:before{
  content:"";
  position:absolute;
  left:-180px;
  top:90px;
  width:380px;
  height:380px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(88, 101, 242, .18), rgba(88, 101, 242, 0));
  filter: blur(2px);
}

.social:after{
  content:"";
  position:absolute;
  right:-220px;
  bottom:-160px;
  width:520px;
  height:520px;
  border-radius:50%;
  background: radial-gradient(circle at 40% 40%, rgba(37, 99, 235, .16), rgba(37, 99, 235, 0));
}

.social .container{
  position:relative;
  z-index:2;
}

.social-head{
  text-align:center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.social-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .10);
  color: #1d4ed8;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  margin-bottom: 14px;
}

.social-title{
  margin:0;
  font-size: 40px;
  font-weight: 900;
  color:#0f172a;
  line-height:1.2;
}

.social-subtitle{
  margin: 14px auto 0;
  max-width: 720px;
  color:#6b7280;
  font-size: 16px;
  line-height:1.6;
}

.social-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.social-card{
  border-radius: 22px;
  padding: 22px 22px 20px;
  text-decoration:none;
  color:#fff;
  min-height: 175px;
  position:relative;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow:hidden;
}

.social-card:before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 25% 25%, rgba(255,255,255,.20), rgba(255,255,255,0) 50%);
  opacity:.75;
}

.social-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, .18);
}

.social-ico{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 18px;
  position:relative;
  z-index:2;
}

.social-name{
  font-weight: 700;
  font-size: 15px;
  opacity: .95;
  position:relative;
  z-index:2;
}

.social-handle{
  margin-top: 6px;
  font-weight: 900;
  font-size: 18px;
  position:relative;
  z-index:2;
}

.social-text{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
  opacity: .95;
  position:relative;
  z-index:2;
}

/* gradients */
.social-card.ig{
  background: linear-gradient(135deg, #ff4d7d, #a855f7);
}
.social-card.fb{
  background: linear-gradient(135deg, #4f7cff, #1e40af);
}
.social-card.tt{
  background: linear-gradient(135deg, #22c1c3, #111827 52%, #ef4444);
}
.social-card.yt{
  background: linear-gradient(135deg, #ff4b4b, #b91c1c);
}

/* Responsive */
@media (max-width: 1100px){
  .social-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .social-title{ font-size: 34px; }
}

@media (max-width: 640px){
  .social{
    padding: 70px 0;
  }
  .social-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .social-title{ font-size: 28px; }
  .social-card{ min-height: 165px; }
}
