/* About page — editorial rhythm inspired by Wix Studio blog (structure only, not assets) */
/* Reference: https://www.wix.com/studio/blog */

.svc-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  left: 0;
  top: 0;
}

body.subpage-about {
  background: #0a0a0f;
}

body.subpage-about #navbar {
  background: rgba(10, 10, 15, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.subpage-about .nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

body.subpage-about .logo {
  color: #fff;
}

body.subpage-about .lang-switcher {
  background: rgba(255, 255, 255, 0.08);
}

body.subpage-about .lang-btn {
  color: rgba(255, 255, 255, 0.55);
}

body.subpage-about .lang-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.subpage-about .hamburger span {
  background: #fff;
}

body.subpage-about a.nav-cta {
  background: #fff;
  color: #0a0a0f;
}

body.subpage-about a.nav-cta:hover {
  background: #f0f0f2;
  color: #000;
}

body.subpage-about #navbar.scrolled {
  background: rgba(10, 10, 15, 0.96);
}

.about-page-main {
  max-width: none !important;
  width: 100%;
  padding: 0 !important;
  margin: 0;
}

.abt-hero {
  padding: 100px 24px 56px;
  background: #f5f5f7;
  color: var(--dark-gray);
}

.abt-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.abt-hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.abt-hero-title {
  font-size: clamp(36px, 6.5vw, 76px);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1.02;
  max-width: 16ch;
  margin-bottom: 20px;
  white-space: pre-line;
}

.abt-hero-lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: #515154;
  max-width: 520px;
}

.abt-toolbar {
  padding: 20px 24px 32px;
  background: #f5f5f7;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}

.abt-toolbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.abt-search {
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 0.5px solid var(--light-gray);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.abt-search:focus-within {
  border-color: rgba(0, 113, 227, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}

.abt-search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  color: var(--dark-gray);
}

.abt-search input::placeholder {
  color: #aeaeb2;
}

.abt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.abt-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  color: var(--dark-gray);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.abt-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.35);
}

.abt-pill.is-active {
  background: var(--dark-gray);
  color: #fff;
  border-color: var(--dark-gray);
}

.abt-featured {
  padding: 48px 24px 56px;
  background: #fff;
}

.abt-featured-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  .abt-featured-inner {
    grid-template-columns: 1fr;
  }
}

.abt-card {
  border-radius: 20px;
  overflow: hidden;
  background: #f5f5f7;
  border: 0.5px solid var(--light-gray);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
}

.abt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.abt-tilt-card .abt-card:hover {
  transform: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.abt-card--hero {
  min-height: 380px;
}

.abt-card-media {
  position: relative;
  flex: 1;
  min-height: 200px;
}

.abt-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.abt-card-body {
  padding: 22px 22px 26px;
}

.abt-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.abt-card-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.abt-card-by {
  font-size: 13px;
  color: var(--mid-gray);
}

.abt-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-card--sm {
  min-height: 0;
  flex-direction: row;
  align-items: stretch;
}

.abt-card--sm .abt-card-media {
  width: 42%;
  min-width: 140px;
  min-height: 140px;
}

.abt-card--sm .abt-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.abt-card--sm .abt-card-title {
  font-size: 16px;
}

.abt-grid-section {
  padding: 56px 24px 72px;
  background: #f5f5f7;
}

.abt-grid-head {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.abt-grid-head h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.abt-post-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 700px) {
  .abt-post-grid {
    grid-template-columns: 1fr;
  }
}

.abt-tilt-card {
  perspective: 900px;
}

.abt-tilt-card .abt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.abt-marquee-wrap {
  overflow: hidden;
  padding: 26px 0;
  background: #0c0c12;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.abt-marquee {
  display: flex;
  width: max-content;
  animation: abt-marquee 28s linear infinite;
}

.abt-marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.abt-marquee-group span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  padding-right: 2.5rem;
  white-space: nowrap;
}

@keyframes abt-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.abt-play {
  padding: 72px 24px;
  background: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
  color: #fff;
}

.abt-play-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .abt-play-inner {
    grid-template-columns: 1fr;
  }
}

.abt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.abt-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.abt-tab.is-active {
  background: #fff;
  color: #0a0a0f;
  border-color: #fff;
}

.abt-tab-panels {
  min-height: 140px;
}

.abt-tab-panel {
  display: none;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.abt-tab-panel.is-active {
  display: block;
}

.abt-parallax-stage {
  border-radius: 22px;
  height: min(280px, 42vw);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 40% 35%, rgba(0, 113, 227, 0.35), transparent 55%),
    linear-gradient(155deg, #1e1e2a, #101018);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.abt-parallax-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(85%, 360px);
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.abt-parallax-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}

.abt-parallax-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.abt-newsletter {
  padding: 64px 24px;
  background: #fff;
  border-top: 0.5px solid var(--light-gray);
}

.abt-newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.abt-newsletter h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.abt-newsletter p {
  font-size: 15px;
  color: var(--mid-gray);
  margin-bottom: 22px;
  line-height: 1.55;
}

.abt-nl-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.abt-nl-form input {
  flex: 1 1 220px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 0.5px solid var(--light-gray);
  font-size: 15px;
  font-family: var(--font);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.abt-nl-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}

.abt-nl-form button {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: var(--dark-gray);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: transform 0.2s, background 0.2s;
}

.abt-nl-form button:hover {
  transform: scale(1.03);
  background: #000;
}

.abt-muted {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 14px;
}

/* FAQ block (same structure as Services) */
.svc-faq {
  max-width: none;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #e8ebf2 0%, #dce1ea 55%, #d5dae5 100%);
  color: var(--dark-gray);
}

.svc-faq-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 100px;
}

.svc-faq-box {
  padding: 28px 26px 32px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
}

.svc-faq-box h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.svc-faq-box p {
  font-size: 16px;
  line-height: 1.65;
  color: #1d1d1f;
  margin: 0 0 12px;
}

.svc-faq-box p:last-child {
  margin-bottom: 0;
}

.svc-faq-box a {
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
}

.svc-faq-box a:hover {
  text-decoration: underline;
  color: var(--accent-dark);
}

.svc-faq-popular {
  padding: 28px 26px 8px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.svc-faq-popular > h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

.svc-faq-item {
  border-bottom: 0.5px solid var(--light-gray);
}

.svc-faq-item:last-child {
  border-bottom: none;
}

.svc-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 8px 18px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.svc-faq-item summary::-webkit-details-marker {
  display: none;
}

.svc-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  border: 0.5px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--mid-gray);
  transition: transform 0.2s var(--transition), background 0.2s;
}

.svc-faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  background: rgba(0, 113, 227, 0.08);
  color: var(--accent);
}

.svc-faq-item summary:hover::after {
  background: var(--light-gray);
}

.svc-faq-answer {
  padding: 0 8px 20px 0;
  font-size: 15px;
  line-height: 1.65;
  color: #424245;
  max-width: 720px;
}

body.subpage-about footer {
  background: var(--surface-dark);
}

body.subpage-about .footer-brand .logo {
  color: #fff;
}

.abt-card[data-abt-cat].is-dimmed {
  opacity: 0.28;
  pointer-events: none;
  filter: grayscale(0.4);
}
