:root {
  --bg: #0a0f1a;
  --bg-soft: #0f1726;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.10);
  --text: #e8eefc;
  --muted: #a7b4d0;
  --brand: #7cc4ff;
  --brand-2: #79ffd4;
  --shadow: 0 20px 60px rgba(0, 0, 0, .35);
  --radius: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 196, 255, .10), transparent 28%),
    radial-gradient(circle at top right, rgba(121, 255, 212, .08), transparent 20%),
    linear-gradient(180deg, #0a0f1a 0%, #0b1220 45%, #09101b 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 22, .7);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 95px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  flex: 0 0 auto
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 30px rgba(124, 196, 255, .30);
}

.brand span:last-child {
  font-size: 0.95rem
}

nav ul {
  display: flex;
  list-style: none;
  gap: 26px;
  padding: 0;
  margin: 0
}

nav a {
  color: var(--muted);
  font-size: .98rem
}

nav a:hover {
  color: #fff
}

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

.lang-switch a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted)
}

.lang-switch a.active,
.lang-switch a:hover {
  color: #fff;
  background: var(--panel)
}

.menu-toggle {
  display: none
}

.hero {
  padding: 90px 0 54px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: .92rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 18px rgba(124, 196, 255, .8);
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.04em;
  margin: 18px 0 18px;
  max-width: 12ch;
}

.hero p {
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.72;
  max-width: 720px;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s ease;
}

.btn-primary {
  color: #081019;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 40px rgba(124, 196, 255, .18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.06)
}

.btn-secondary {
  border-color: var(--line);
  background: var(--panel);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--panel-strong);
  transform: translateY(-2px)
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem
}

.hero-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75
}

.hero-list {
  display: grid;
  gap: 14px;
  margin-top: 22px
}

.hero-list .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px
}

.item span {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex: none;
  background: linear-gradient(135deg, rgba(124, 196, 255, .20), rgba(121, 255, 212, .18));
  border: 1px solid rgba(255, 255, 255, .08);
}

section {
  padding: 34px 0
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px
}

.kicker {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
}

h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -.03em;
  line-height: 1.05;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
  font-size: 1.05rem;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr)
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr)
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -.02em
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7
}

.badge {
  display: inline-block;
  font-size: .78rem;
  color: #d8f8ef;
  background: rgba(121, 255, 212, .10);
  border: 1px solid rgba(121, 255, 212, .18);
  border-radius: 999px;
  padding: 7px 10px;
  margin-bottom: 14px;
}

.problem-card {
  min-height: 190px
}

.cap-card {
  min-height: 210px
}

.tech-card {
  min-height: 230px
}

.case-card {
  min-height: 280px
}

.case-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-meta span {
  font-size: .84rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(124, 196, 255, .08);
  color: #d7e8fb;
  border: 1px solid rgba(124, 196, 255, .14);
}

.approach-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline .step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  flex: none;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #081019;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.step p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.65
}

.quote {
  background: linear-gradient(180deg, rgba(124, 196, 255, .10), rgba(255, 255, 255, .04));
}

.quote blockquote {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.55;
  letter-spacing: -.02em;
}

.quote cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal
}

.cta-panel {
  margin-top: 12px;
  background: linear-gradient(135deg, rgba(124, 196, 255, .12), rgba(121, 255, 212, .08));
}

footer {
  padding: 28px 0 38px;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 12px;
}

small {
  color: var(--muted)
}

.reveal {
  opacity: 1;
  transform: none
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease
}

.js .reveal.visible {
  opacity: 1;
  transform: none
}

noscript .reveal {
  opacity: 1 !important;
  transform: none !important
}

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

  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-grid,
  .approach-wrap {
    grid-template-columns: 1fr
  }
}

@media (max-width: 760px) {
  nav ul {
    display: none
  }

  .menu-toggle {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: #fff
  }

  header.open nav ul {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    flex-direction: column;
    background: rgba(9, 14, 25, .96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
  }

  .lang-switch {
    display: none
  }

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 56px
  }

  .hero h1 {
    max-width: none
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start
  }
}

/* v2 homepage topbar/hero refresh */
body {
  background:
    radial-gradient(circle at 10% 10%, rgba(79, 124, 255, .12), transparent 24%),
    radial-gradient(circle at 90% 0%, rgba(62, 214, 231, .10), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(138, 85, 255, .08), transparent 20%),
    linear-gradient(180deg, #090d1a 0%, #0a0f1a 38%, #0b1220 100%);
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0 0;
  backdrop-filter: none;
  background: transparent;
  border-bottom: none;
}

.nav.glass-nav {
  min-height: unset;
  border-radius: 18px;
  padding: 14px 18px;
  background: rgba(18, 24, 41, .68);
  border: 1px solid rgba(143, 158, 192, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .22))
}

.brand.brand-footer .brand-logo {
  height: 28px;
  opacity: .95
}

.brand-text {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0
}

.brand-text .gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.desktop-nav {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: center
}

.desktop-nav a {
  padding: 6px 9px;
  border-radius: 12px;
  color: var(--muted);
  transition: .25s ease;
  font-size: 0.9rem;
  white-space: nowrap
}

.desktop-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .05)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0
}

.lang-switch {
  display: flex;
  gap: 4px;
  align-items: center
}

.lang-switch a {
  padding: 8px 10px;
  min-width: 40px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(143, 158, 192, .18);
  background: rgba(255, 255, 255, .04);
  font-size: 0.9rem
}

.lang-switch a.active,
.lang-switch a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(143, 158, 192, .18);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  cursor: pointer
}

.mobile-menu-btn span {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 2px
}

.mobile-nav {
  display: none;
  margin: 10px auto 0;
  width: min(var(--max), calc(100% - 40px));
  padding: 12px;
  border-radius: 18px;
  background: rgba(18, 24, 41, .78);
  border: 1px solid rgba(143, 158, 192, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  flex-direction: column;
  gap: 4px
}

.mobile-nav.open {
  display: flex
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted)
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, .05);
  color: #fff
}

.hero.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 22%, rgba(79, 124, 255, .18), transparent 18%),
    radial-gradient(circle at 18% 30%, rgba(62, 214, 231, .10), transparent 24%),
    linear-gradient(180deg, rgba(9, 13, 26, .34), rgba(9, 13, 26, .82));
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("https://d2xsxph8kpxj0f.cloudfront.net/310519663471767311/6jdWH8TeVZbLuDVcxDcQsr/hero-bg-Q5zzoKMC3GHGGcUxbQ8UVQ.webp") center/cover no-repeat;
  opacity: .22;
  mix-blend-mode: screen
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 90px
}

.hero-grid.v2 {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: end
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #dce4ff;
  font-size: .92rem
}

.hero-v2 h1 {
  margin: 22px 0 18px;
  max-width: 820px;
  display: grid;
  gap: 4px;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.04em
}

.hero-v2 h1 span {
  display: block
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  padding-bottom: 8px;
  line-height: 1.1
}

.hero-v2 p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.16rem);
  line-height: 1.75;
  margin: 0 0 28px
}

.hero-side-card {
  background: rgba(18, 24, 41, .68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(143, 158, 192, .18);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
  padding: 26px
}

.hero-side-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem
}

.hero-side-card p {
  font-size: 1rem;
  margin: 0 0 18px
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 18px
}

.hero-points .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.hero-points .icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex: none;
  background: linear-gradient(135deg, rgba(124, 196, 255, .20), rgba(121, 255, 212, .18));
  border: 1px solid rgba(255, 255, 255, .08)
}

.hero-points strong {
  display: block;
  margin-bottom: 4px
}

.hero-points span {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55
}

@media (max-width:1080px) {
  .hero-grid.v2 {
    grid-template-columns: 1fr
  }

  .desktop-nav {
    display: none
  }

  .mobile-menu-btn {
    display: inline-block
  }

  .nav.glass-nav {
    min-height: 82px;
    padding: 0 16px
  }
}

@media (max-width:760px) {
  .hero-content {
    padding: 132px 0 72px
  }

  .cta-row {
    gap: 10px
  }

  .btn {
    width: auto
  }

  .hero-v2 h1 {
    font-size: clamp(2.4rem, 12vw, 4rem)
  }

  .brand-logo {
    height: 36px
  }

  .brand.brand-footer .brand-logo {
    height: 24px
  }
}



/* Official logo support */
.brand-logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 220px;
  object-fit: contain;
}

.footer-brand img {
  height: 30px;
  max-width: 160px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .nav {
    min-height: 84px;
  }

  .brand-logo img {
    height: 38px;
    max-width: 180px;
  }

  .footer-brand img {
    height: 26px;
    max-width: 140px;
  }
}


.services-showcase {
  padding: 52px 0 34px
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce4ff;
  font-size: .92rem
}

.section-heading {
  margin-bottom: 40px
}

.section-heading.center {
  text-align: center
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  line-height: 1.06;
  margin: 18px 0 12px;
  letter-spacing: -.04em
}

.section-heading p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.service-card {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(9, 13, 26, 0.78), rgba(9, 13, 26, 0.92));
  border: 1px solid rgba(143, 158, 192, .18)
}

.service-card img {
  width: 100%;
  /* height: 175px; */
  object-fit: contain;
  object-position: center;
  display: block;
  /* padding: 18px; */
  background: rgba(255, 255, 255, 0.02);
  box-sizing: border-box
}

.service-body {
  padding: 20px 18px 18px
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.12rem
}

.service-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65
}

.service-body ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px
}

.service-body li {
  color: #d5ddf7;
  position: relative;
  padding-left: 16px;
  font-size: .95rem;
  line-height: 1.4
}

.service-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #35d6ff
}

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

@media (max-width:760px) {
  .services-grid {
    grid-template-columns: 1fr
  }

  .service-card img {
    height: 210px
  }

  .section-heading h2 {
    font-size: clamp(2rem, 8vw, 3rem)
  }
}


/* visual refinements based on original premium model */
.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(79, 124, 255, 0.10), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(62, 214, 231, 0.08), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(138, 85, 255, 0.08), transparent 24%);
  pointer-events: none;
  z-index: -2;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.20;
  pointer-events: none;
  z-index: -1;
}

.orb-blue {
  background: var(--brand);
}

.orb-violet {
  background: #8a55ff;
}

.orb-cyan {
  background: var(--brand-2);
}

.orb-hero-1 {
  width: 460px;
  height: 460px;
  top: -90px;
  right: -90px;
}

.orb-hero-2 {
  width: 380px;
  height: 380px;
  bottom: 18%;
  left: -120px;
}

.orb-hero-3 {
  width: 280px;
  height: 280px;
  top: 30%;
  right: 22%;
}

main,
footer,
header {
  position: relative;
  z-index: 1;
}

section {
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
  pointer-events: none;
}

.hero::before,
.contact-section::before {
  display: none;
}

.desktop-cta {
  display: inline-flex;
}

.nav-actions .btn-small {
  padding: 11px 16px;
  border-radius: 12px;
  font-size: .94rem;
}

.mobile-nav a:last-child {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
}

.section-head,
.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.section-head .kicker,
.section-heading .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce4ff;
  font-size: .92rem;
}

.section-head h2,
.section-heading h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #f5f7ff;
}

.section-head p,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto;
}

.services-showcase .section-heading h2,
#cases .section-head h2,
#approach .section-head h2,
#contact .section-heading h2 {
  font-family: "Sora", "Inter", system-ui, sans-serif;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.glass-card,
.info-card,
.contact-form {
  background: rgba(18, 24, 41, .68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(143, 158, 192, .18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.info-card {
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-card strong {
  color: #fff;
  font-size: 1rem;
}

.info-card span,
.info-card a {
  color: var(--muted);
  line-height: 1.6;
}

.address-card {
  gap: 12px;
}

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

.country-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.address-header strong {
  font-size: 0.95rem;
}

.contact-form {
  border-radius: 24px;
  padding: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: block;
  margin: 0 0 8px;
  color: #dce4ff;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(143, 158, 192, .18);
  background: rgba(255, 255, 255, .03);
  color: #fff;
  padding: 14px 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8d98b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(79, 124, 255, .55);
  box-shadow: 0 0 0 4px rgba(79, 124, 255, .12);
}

.contact-form>div {
  margin-bottom: 16px;
}

.form-status {
  min-height: 24px;
  color: #9ee5ff;
  margin: 12px 0 0;
}

.site-footer {
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-grid h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
}

.footer-grid a {
  color: var(--muted);
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(124, 196, 255, 0.1);
  color: var(--brand);
  transition: all 0.3s ease;
  border: 1px solid rgba(124, 196, 255, 0.2);
}

.footer-social .social-icon:hover {
  background: var(--brand);
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 196, 255, 0.3);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-brand img {
  height: 34px;
  width: auto;
}

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

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

@media (max-width: 760px) {
  .desktop-cta {
    display: none;
  }

  .section-head h2,
  .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* anchor offset for sticky header */
main section[id],
footer[id],
[id="top"] {
  scroll-margin-top: 120px;
}

@media (max-width: 760px) {

  main section[id],
  footer[id],
  [id="top"] {
    scroll-margin-top: 100px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 24px !important;
  }

  .testimonial-quote {
    font-size: 1rem;
  }
}


/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 32px !important;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  min-height: 100%;
}

.testimonial-card:hover {
  border-color: rgba(124, 196, 255, .32);
  background: rgba(124, 196, 255, .04);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(124, 196, 255, .08);
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-quote-mark {
  font-size: 48px;
  color: var(--brand);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 20px 0;
  font-weight: 500;
}

.testimonial-context {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px 0;
}

.testimonial-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-author strong {
  color: var(--text);
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonial-author .company {
  color: var(--brand);
  font-size: 0.85rem;
  margin-top: 4px;
}

.testimonial-impact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonial-impact .badge {
  background: rgba(124, 196, 255, .15);
  border: 1px solid rgba(124, 196, 255, .3);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Team Section */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 50px;
}

.team-card {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.team-card:hover {
  border-color: rgba(124, 196, 255, .32);
  background: rgba(124, 196, 255, .04);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(124, 196, 255, .08);
}

.team-card-header {
  padding: 24px;
  background: linear-gradient(135deg, rgba(124, 196, 255, .1), rgba(121, 255, 212, .05));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--bg);
  box-shadow: 0 12px 30px rgba(124, 196, 255, .30);
}

.team-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(124, 196, 255, .30);
  border: 2px solid rgba(124, 196, 255, .3);
}

.team-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.team-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: var(--text);
}

.team-card .role {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card .bio {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex: 1;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 12px;
  border: 1px solid rgba(124, 196, 255, .3);
  border-radius: 6px;
  transition: all 0.2s ease;
  width: fit-content;
}

.social-link:hover {
  background: rgba(124, 196, 255, .1);
  border-color: rgba(124, 196, 255, .6);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-card-header {
    min-height: 100px;
  }

  .team-avatar {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
  }

  .team-card h3 {
    font-size: 1.1rem;
  }

  .team-card .bio {
    font-size: 0.9rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 60px 0;
}

.cta-section .btn {
  margin-top: 20px;
}

/* final adjustments */
.desktop-cta {
  display: none !important;
}

.contact-success {
  color: #22c55e;
}

.contact-error {
  color: #ef4444;
}

/* Legal Pages Styling */
.legal-hero {
  padding: 100px 0 60px;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin: 0 0 16px;
  line-height: 1.1;
  opacity: 1 !important;
  transform: none !important;
}

.legal-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  opacity: 1 !important;
  transform: none !important;
}

.legal-content {
  padding: 40px 0 100px;
}

.prose {
  max-width: 800px;
  margin: 0 auto;
  opacity: 1 !important;
  transform: none !important;
}

.prose h2 {
  font-size: 1.6rem;
  margin: 48px 0 20px;
  color: var(--text);
  line-height: 1.3;
  opacity: 1 !important;
  transform: none !important;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 28px 0 14px;
  color: #dce4ff;
  line-height: 1.3;
  opacity: 1 !important;
  transform: none !important;
}

.prose p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 16px;
  opacity: 1 !important;
  transform: none !important;
}

.prose ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  opacity: 1 !important;
  transform: none !important;
}

.prose ul li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
}

.prose ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.prose strong {
  color: #fff;
  font-weight: 600;
}

.prose em {
  color: #ffb3ba;
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 80px 0 40px;
  }

  .legal-hero h1 {
    font-size: 2rem;
  }

  .legal-content {
    padding: 30px 0 60px;
  }

  .prose h2 {
    font-size: 1.4rem;
    margin: 36px 0 16px;
  }

  .prose h3 {
    font-size: 1.1rem;
    margin: 20px 0 12px;
  }

  .prose p,
  .prose ul li {
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.faq-item {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s ease;
}

.faq-item:hover {
  border-color: rgba(124, 196, 255, .32);
  background: rgba(124, 196, 255, .04);
}

.faq-item[open] {
  border-color: rgba(124, 196, 255, .32);
  background: rgba(124, 196, 255, .04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.5s ease;
}

.faq-question:hover {
  color: var(--brand);
}

.faq-question span {
  text-align: left;
  flex: 1;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--brand);
  transition: transform 0.5s ease;
}

.faq-item[open] .faq-question svg {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.faq-answer p {
  margin: 0 0 14px;
}

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

.faq-answer ol {
  margin: 14px 0;
  padding-left: 24px;
  color: var(--muted);
}

.faq-answer ol li {
  margin: 8px 0;
  line-height: 1.6;
}

.faq-answer ul {
  margin: 14px 0;
  padding-left: 24px;
  list-style: disc;
  color: var(--muted);
}

.faq-answer ul li {
  margin: 8px 0;
  line-height: 1.6;
}

.faq-answer strong {
  color: #fff;
  font-weight: 600;
}

.faq-answer a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: var(--brand-2);
}

.link-inline {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.link-inline:hover {
  color: var(--brand-2);
}

@media (max-width: 760px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-question {
    padding: 16px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 16px 16px;
    font-size: 0.9rem;
  }
}

/* Clients Carousel Section */
.clients-section {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(124, 196, 255, .04));
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}

.carousel-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(143, 158, 192, .18);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(124, 196, 255, .1);
  border-color: rgba(124, 196, 255, .3);
  color: var(--brand);
  transform: scale(1.05);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-container {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
  padding: 40px 20px;
}

.carousel-slide {
  flex: 0 0 calc(16.66% - 16px);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.carousel-slide:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 12px rgba(124, 196, 255, .4);
}

@media (max-width: 1080px) {
  .carousel-slide {
    flex: 0 0 calc(25% - 15px);
  }
}

@media (max-width: 760px) {
  .carousel-wrapper {
    gap: 12px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-slide {
    flex: 0 0 calc(50% - 10px);
  }

  .carousel-track {
    padding: 30px 10px;
    gap: 10px;
  }

  .carousel-slide img {
    max-height: 60px;
  }
}

/* WhatsApp Button */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-tooltip {
  background: white;
  color: #1f2937;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-container:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.whatsapp-button:hover {
  background: #20BA5A;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  transform: scale(1.1);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

.whatsapp-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: whatsapp-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.2;
}

@keyframes whatsapp-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 10;
}

.whatsapp-indicator {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #4ade80;
  border: 2px solid white;
  border-radius: 50%;
  z-index: 11;
}

@media (max-width: 768px) {
  .whatsapp-container {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .whatsapp-tooltip {
    font-size: 13px;
    padding: 6px 12px;
  }
}