
/* ========== Design tokens (from landing) ========== */
:root {
  --content-width: 1200px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --font-family: "Manrope", sans-serif;

  --bg-color: #f6f7f9;
  --black-color: #010101;
  --green-color: #10b981;
  --green-dark: #41b690;
  --green-light: #1cf1ab;
  --muted-color: #acb8c6;
  --gray-text: #5d6a76;
  --card-border: rgba(172, 184, 198, 0.2);
}

/* ========== Reset & Base ========== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

* {
  scroll-margin-top: 100px;
  -webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-family: var(--font-family, sans-serif);
  color: var(--black-color);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  background-color: #f6f7f9;
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-style: none;
}

a {
  text-decoration: none;
  background-color: transparent;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition: all 0.2s ease-in;
}

b,
strong {
  font-weight: bolder;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/* ========== Utilities ========== */
.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.margin-section {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .margin-section {
    margin-bottom: 30px;
  }
}

/* ========== Buttons & tags (landing) ========== */
.btn-gradient {
  background: linear-gradient(101.4deg, #41B690 0%, #1CF1AB 100%) !important;
}

.btn-1 {
  background-color: #41b690;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 16px);
  line-height: normal;
  color: #f6f7f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (any-hover: hover) {
  .btn-1:hover {
    background-color: #48c79f;
  }
}
@media (max-width: 768px) {
  .btn-1 {
    padding: 12px 14px;
  }
}

.btn-primary {
  background: #fff;
  color: #000;
}
.btn-primary:hover {
  color: #fff;
}

.btn-auth {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
  font-weight: 500;
}

.title-2 {
  font-weight: 600;
  font-size: clamp(32px, 4vw, 64px);
  line-height: clamp(32px, 4vw, 64px);
  color: black;
}

.tag-border {
  line-height: normal;
  color: #acb8c6;
  font-size: clamp(14px, 3vw, 16px);
  padding: 12px 24px;
  border-radius: 24px;
  border: 1px solid #acb8c6;
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .tag-border {
    padding: 12px 14px;
  }
}

/* ========== Header (landing — sits on dark hero) ========== */
.header-wrapper {
  height: 55px;
  margin: 8px 24px;
}

.header {
  height: 100%;
}

.header-container {
  height: 100%;
  margin: 0px 26px;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo svg {
  display: block;
}

@media (max-width: 768px) {
  .header__logo svg,
  .header__logo img {
    width: 100px;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
.header__nav-link:hover {
  color: #10b981;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__link-auth {
  color: #ffffff;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  will-change: transform;
}
.header__link-auth.green {
  background: #10b981;
  border-radius: 9px;
}

/* ========== Language dropdown (landing) ========== */
.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-dropdown__button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: all 0.2s ease;
  justify-content: center;
}

.language-dropdown__button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.language-dropdown__button img {
  width: 23px;
  border-radius: 4px;
}

.language-dropdown__code {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.language-dropdown__arrow {
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.language-dropdown__arrow--open {
  transform: rotate(180deg);
}

.language-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
  padding: 4px;
  z-index: 1000;
  overflow: hidden;
  transform-origin: top right;
}

.language-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0px 8px;
  border-radius: 9px;
  height: 38px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.language-dropdown__item img {
  border-radius: 4px;
  width: 23px;
}

.language-dropdown__item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.language-dropdown__name {
  font-weight: 500;
}

[x-cloak] {
  display: none !important;
}

/* ========== Burger & mobile menu (landing) ========== */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: none;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.burger__lines {
  width: 18px;
  height: 12px;
  position: relative;
  display: block;
}

.burger__lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #1f2937;
  border-radius: 2px;
}

.burger__lines span:nth-child(1) { top: 0; }
.burger__lines span:nth-child(2) { top: 5px; }
.burger__lines span:nth-child(3) { top: 10px; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 2000;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(360px, 92vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 14px;
  overflow: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo__slogan {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.mobile-menu__close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  text-decoration: none;
  line-height: 1;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu__section-title {
  font-weight: 600;
  color: #111827;
  margin-top: 4px;
}

.mobile-menu__langs {
  display: flex;
  gap: 10px;
}

.mobile-menu__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #111827;
  background: #fff;
}

.mobile-menu__lang img,
.flag-icon {
  border-radius: 50%;
  width: 34px;
  height: 28px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .header__nav {
    display: none !important;
  }
  .header__links {
    display: none !important;
  }
  .burger {
    display: inline-flex !important;
  }
}

/* ========== Floating Island Header (landing) ========== */
.island-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(172, 184, 198, 0.28);
  box-shadow: 0 12px 40px -8px rgba(24, 39, 75, 0.18), 0 2px 8px rgba(24, 39, 75, 0.06);
  transform: translateX(-50%) translateY(-72px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.island-header.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.island-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #010101;
}
.island-header__logo svg {
  width: 28px;
  height: 28px;
  display: block;
}
.island-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.island-header__link {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: #5d6a76;
  transition: color 0.2s ease, background-color 0.2s ease;
}
@media (any-hover: hover) {
  .island-header__link:hover {
    color: #010101;
    background-color: rgba(172, 184, 198, 0.16);
  }
}
.island-header__login {
  margin-left: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: #010101;
  transition: background-color 0.2s ease;
}
@media (any-hover: hover) {
  .island-header__login:hover {
    background-color: rgba(172, 184, 198, 0.16);
  }
}
.island-header__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 100px;
  background: linear-gradient(101.4deg, #41b690 0%, #1cf1ab 100%);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(28, 241, 171, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (any-hover: hover) {
  .island-header__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(28, 241, 171, 0.45);
  }
}
@media (max-width: 880px) {
  .island-header__nav,
  .island-header__login {
    display: none;
  }
  .island-header {
    gap: 14px;
    padding: 8px 8px 8px 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .island-header {
    transition: opacity 0.3s ease;
  }
}

/* ========== Blog hero (dark gradient card, like landing hero) ========== */
.blog-hero {
  margin: 26px;
  background: linear-gradient(188deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 31%, rgba(16, 185, 129, 1) 100%);
  border-radius: 24px;
  padding-top: 16px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .blog-hero {
    margin: 12px;
    padding-bottom: 48px;
  }
}

.blog-hero__content {
  max-width: 760px;
  padding-top: 48px;
  animation: reveal-up 0.4s ease both;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .blog-hero__content {
    padding-top: 24px;
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-hero__tag {
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 20px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.blog-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.blog-hero__back:hover,
.blog-hero__back:focus-visible {
  color: #fff;
}

.blog-hero__back svg {
  transition: transform 0.2s ease;
}

.blog-hero__back:hover svg,
.blog-hero__back:focus-visible svg {
  transform: translateX(-3px);
}

.blog-hero__title {
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  color: #fff;
  margin: 0;
}

.blog-hero__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #f6f7f9;
  max-width: 520px;
  opacity: 0.85;
}

.blog-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .blog-hero__meta {
    padding-bottom: 24px;
  }
}

.blog-hero__meta svg {
  vertical-align: -2px;
  margin-right: 5px;
}

/* ========== Blog archive ========== */
.blog-archive {
  padding-bottom: 24px;
}

/* Categories */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 40px;
}

.blog-categories__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  background: transparent;
  border: 1px solid #acb8c6;
  color: #5d6a76;
  transition: all 0.2s;
}

.blog-categories__link:hover {
  color: #010101;
  background-color: rgba(172, 184, 198, 0.16);
}

.blog-categories__link.is-active {
  background: #010101;
  color: #fff;
  border-color: #010101;
}

/* Cards grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Blog card (matches landing white cards) */
.blog-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(172, 184, 198, 0.2);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

@media (any-hover: hover) {
  .blog-card:hover {
    box-shadow: 0 30px 40px -20px rgba(169, 186, 202, 0.4);
    transform: translateY(-4px);
  }
}

.blog-card__top {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f6f7f9;
  display: block;
}

.blog-card__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: left center;
  transition: transform 0.4s ease;
}

@media (any-hover: hover) {
  .blog-card:hover .blog-card__top img {
    transform: scale(1.04);
  }
}

.blog-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.blog-card__category {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #41b690;
}

.blog-card__main-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.blog-card__main-title a {
  color: #010101;
}

.blog-card__main-title a:hover {
  color: #41b690;
}

.blog-card__description {
  font-size: 14px;
  font-weight: 400;
  color: #5d6a76;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(172, 184, 198, 0.2);
}

.blog-card__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: #acb8c6;
}

.blog-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #010101;
  transition: color 0.2s;
}

.blog-card__arrow:hover {
  color: #41b690;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  border: 1px solid rgba(172, 184, 198, 0.28);
  color: #010101;
}

.pagination .current {
  background: #010101;
  color: #fff;
  border-color: #010101;
}

.pagination a:hover {
  background: rgba(172, 184, 198, 0.16);
}

/* ========== Single post ========== */
.single-thumb {
  margin: -90px auto 40px;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .single-thumb {
    margin-top: -60px;
  }
}

.single-thumb img {
    width: 100%;
    border-radius: 24px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 40px -10px rgba(169, 186, 202, 0.2),
                0 2px 5px 0px rgba(61, 59, 53, 0.06);
}

.single-content-wrap {
  max-width: 100%;
  margin: 0 auto 64px;
  background: #ffffff;
  border: 1px solid rgba(172, 184, 198, 0.2);
  border-radius: 24px;
  padding: 56px;
}
@media (max-width: 768px) {
  .single-content-wrap {
    padding: 28px 20px;
    border-radius: 16px;
  }
}

.single-content {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  color: #1f1f1f;
}

.single-content h2,
.single-content h3,
.single-content h4 {
  font-weight: 600;
  margin: 40px 0 16px;
  line-height: 1.25;
  color: #010101;
}

.single-content > h2:first-child,
.single-content > h3:first-child,
.single-content > p:first-child {
  margin-top: 0;
}

.single-content h2 { font-size: 28px; }
.single-content h3 { font-size: 22px; }
.single-content h4 { font-size: 18px; }

.single-content p {
  margin-bottom: 20px;
}

.single-content a {
  color: #41b690;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-content a:hover {
  color: #10b981;
}

.single-content ul,
.single-content ol {
  margin: 0 0 20px 24px;
  list-style: revert;
}

.single-content li {
  margin-bottom: 8px;
}

.single-content blockquote {
  border-left: 3px solid #1cf1ab;
  background: #f6f7f9;
  border-radius: 0 16px 16px 0;
  padding: 16px 20px;
  margin: 24px 0;
  color: #5d6a76;
}

.single-content blockquote p:last-child {
  margin-bottom: 0;
}

.single-content img {
  border-radius: 16px;
  margin: 24px 0;
}

.single-content figure {
  margin: 24px 0;
}

.single-content figure img {
  margin: 0;
}

.single-content figcaption {
  font-size: 13px;
  color: #acb8c6;
  margin-top: 8px;
  text-align: center;
}

.single-content pre,
.single-content code {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 14px;
}

.single-content pre {
  background: #010101;
  color: #f6f7f9;
  padding: 20px;
  border-radius: 16px;
  overflow-x: auto;
  margin: 24px 0;
}

.single-content code {
  background: #f6f7f9;
  padding: 2px 6px;
  border-radius: 4px;
}

.single-content pre code {
  background: transparent;
  padding: 0;
}

.single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}

.single-content th,
.single-content td {
  border: 1px solid rgba(172, 184, 198, 0.28);
  padding: 10px 14px;
  text-align: left;
}

.single-content th {
  background: #f6f7f9;
  font-weight: 600;
}


.post-cta {
  max-width: 100%;
  margin: 0 auto 64px;
  background: linear-gradient(135deg, #010101 0%, #0c5e46 130%);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .post-cta {
    padding: 32px 24px;
  }
}

.post-cta__title {
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.post-cta__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(246, 247, 249, 0.8);
  max-width: 460px;
}

/* ========== Footer (landing) ========== */
.footer {
  background-color: #f6f7f9 !important;
  padding: 40px 0 80px !important;
}

.footer__inner {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 56px 56px 28px;
  margin: 0 auto;
  border: 1px solid rgba(172, 184, 198, 0.2);
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 40px 24px 24px;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(172, 184, 198, 0.2);
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #a6a5a7;
  margin: 0;
  max-width: 280px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  background: #f6f7f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #010101;
  transition: background 0.2s, transform 0.2s;
}

.footer__social-link:hover {
  background: rgba(28, 241, 171, 0.15);
  transform: scale(1.07);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  color: #acb8c6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 18px 0;
}

.footer__col-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__col-item {
  margin-bottom: 12px;
}

.footer__col-link {
  font-size: 15px;
  color: #1f1f1f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer__col-link:hover {
  color: #41b690;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 20px 0 14px;
}

.footer__copy {
  font-size: 14px;
  font-weight: 600;
  color: #1f1f1f;
  margin: 0;
}

.footer__smallprint {
  font-size: 12px;
  color: #a6a5a7;
  margin: 0;
}
.footer__smallprint a {
  color: #41b690;
}

.footer__disclaimer {
  font-size: 11px;
  line-height: 1.6;
  color: #c0c9d3;
  margin: 0;
}

/* ========== Scrollbar (landing) ========== */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f6f7f9;
}
::-webkit-scrollbar-thumb {
  background: #c4c9d4;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #10b981;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #c4c9d4 #f6f7f9;
}

/* ========== WP core alignment helpers ========== */
.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.alignleft {
  float: left;
  margin: 0 24px 16px 0;
}
.alignright {
  float: right;
  margin: 0 0 16px 24px;
}
.wp-caption {
  max-width: 100%;
}