:root {
  --blue: #00aeef;
  --blue-dark: #0090c7;
  --green: #8dc63f;
  --green-dark: #6fa22e;
  --ink: #12202b;
  --muted: #5a6b78;
  --line: #dce6ec;
  --bg: #ffffff;
  --bg-soft: #f4f8fb;
  --bg-mist: #eaf4fa;
  --gradient: linear-gradient(115deg, #00aeef 0%, #3ec4a8 48%, #8dc63f 100%);
  --shadow: 0 18px 40px rgba(18, 32, 43, 0.08);
  --radius: 18px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Sora", system-ui, sans-serif;
  --header-h: 78px;
  --topbar-h: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4em;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.container {
  width: min(1440px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding:0 24px;
}

.narrow {
  width: min(760px, calc(100% - 2.5rem));
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
}

.btn--blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 174, 239, 0.28);
}

.btn--blue:hover {
  background: var(--blue-dark);
}

.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(141, 198, 63, 0.28);
}

.btn--green:hover {
  background: var(--green-dark);
}

.btn--outline {
  background: transparent;
  border-color: rgba(18, 32, 43, 0.18);
  color: var(--ink);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
}

/* Top bar */
.topbar {
  background: var(--ink);
  color: #fff;
  min-height: var(--topbar-h);
  font-size: 0.85rem;
}

.topbar__inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 0.45rem;
}

.topbar__contacts {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.topbar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
}

.topbar__contacts a i {
  color: var(--blue);
  font-size: 0.85rem;
}

.topbar a:hover {
  color: #fff;
}

.topbar__contacts a:hover i {
  color: var(--green);
}

.topbar__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 230, 236, 0.9);
  padding:10px 0;
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  width: 148px;
  height: auto;
}

.logo--footer img {
  width: 120px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}

.nav a:not(.btn):hover {
  color: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(0, 174, 239, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(141, 198, 63, 0.2), transparent 55%),
    linear-gradient(180deg, #f7fbfe 0%, #eef6f2 48%, #ffffff 100%);
  animation: heroShift 12s ease-in-out infinite alternate;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 55%;
  background: linear-gradient(90deg, transparent, rgba(0, 174, 239, 0.08), rgba(141, 198, 63, 0.1), transparent);
  transform: skewY(-4deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3.5rem 0 4rem;
  max-width: 860px;
  animation: riseIn 0.9s ease both;
}

.hero__brand {
  width: min(240px, 62vw);
  height: auto;
  margin: 0 auto 1.2rem;
  animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 28px rgba(0, 174, 239, 0.18));
}

.hero h1 {
  margin-bottom: 0.7rem;
}

.hero p {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 1.6rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Trust */
.trust {
  padding: 2.5rem 0 1rem;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}

.trust__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.trust__head h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin-bottom: 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}

.trust__item {
  position: relative;
  text-align: center;
  padding: 1.25rem 0.75rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.trust__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.trust__item:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(0, 174, 239, 0.12);
}

.trust__item:hover::before {
  transform: scaleX(1);
}

.trust__icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.7rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(141, 198, 63, 0.2));
  color: var(--blue-dark);
  font-size: 1rem;
}

.trust__item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
}

.trust__item span:last-child {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

/* Sticky CTA strip */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.75rem 1rem;
  background: rgba(18, 32, 43, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -10px 30px rgba(18, 32, 43, 0.18);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.sticky-cta.is-visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-cta__btn {
  min-width: min(320px, 100%);
  box-shadow: 0 10px 28px rgba(141, 198, 63, 0.35);
}

body.has-sticky-cta {
  padding-bottom: 76px;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--soft {
  background:
    linear-gradient(180deg, var(--bg-soft), #fff 70%);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section__cta {
  text-align: center;
  margin-top: 2.25rem;
}

/* About */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.12), transparent 70%);
  top: -80px;
  right: -120px;
  pointer-events: none;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about__copy h2 {
  margin-bottom: 0.85rem;
}

.about__stats {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.4rem 0 1.6rem;
}

.about__stat {
  padding: 0.85rem 0.7rem;
  background: var(--bg-soft);
  border-left: 3px solid transparent;
  border-image: var(--gradient) 1;
  text-align: center;
}

.about__stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.1;
}

.about__stat span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.check-list li:hover {
  border-color: rgba(0, 174, 239, 0.45);
  transform: translateX(4px);
}

.check-list i {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(141, 198, 63, 0.18));
  color: var(--blue-dark);
  font-size: 0.8rem;
}

.about__visual {
  position: relative;
}

.about__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-mist);
  box-shadow: 0 24px 50px rgba(18, 32, 43, 0.12);
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 32, 43, 0.35));
  pointer-events: none;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about__visual:hover .about__media img {
  transform: scale(1.04);
}

.about__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(18, 32, 43, 0.12);
}

.about__badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__badge strong {
  font-family: var(--display);
  font-size: 1.15rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.about__flow i {
  color: var(--green);
  font-size: 0.7rem;
}

/* Why */
.why-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-soft), #fff 70%);
}

.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  position: relative;
}

.why::before {
  content: "";
  position: absolute;
  top: 2.35rem;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0.35;
  pointer-events: none;
}

.why__item {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.15rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why__item:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 174, 239, 0.12);
}

.why__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.why__item:hover::after {
  transform: scaleX(1);
}

.why__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.why__icon {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(141, 198, 63, 0.2));
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.why__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why__item h3 {
  margin-bottom: 0.45em;
  font-size: 1.05rem;
}

.why__item p {
  margin: 0;
  font-size: 0.92rem;
}

#testimonials {
  background: linear-gradient(180deg, var(--bg-soft), #fff 70%);
}

#clients{
  background: linear-gradient(180deg, var(--bg-soft), #fff 70%);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 1.5rem;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.service__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--bg-mist);
  isolation: isolate;
}

.service__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(0, 174, 239, 0.28) 0%,
    transparent 42%,
    rgba(18, 32, 43, 0.45) 100%
  );
  opacity: 0.55;
  transition: opacity 0.35s ease;
}

.service:hover .service__media::before {
  opacity: 0.85;
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service:hover .service__media img {
  transform: scale(1.08);
}

.service__num {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 0.35rem 0.55rem;
  background: rgba(18, 32, 43, 0.55);
  backdrop-filter: blur(6px);
}

.service__body {
  position: relative;
  z-index: 2;
  margin: -2.4rem 0.9rem 0;
  padding: 1.15rem 1.15rem 1.25rem;
  background: #fff;
  border-top: 3px solid transparent;
  border-image: var(--gradient) 1;
  box-shadow: 0 14px 34px rgba(18, 32, 43, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service:hover .service__body {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 174, 239, 0.14);
}

.service__icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.12), rgba(141, 198, 63, 0.18));
  color: var(--blue-dark);
  font-size: 0.95rem;
}

.service__body h3 {
  margin-bottom: 0.4em;
  font-size: 1.12rem;
}

.service__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.95rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}

.service__link i {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.service:hover .service__link {
  color: var(--blue-dark);
}

.service:hover .service__link i {
  transform: translateX(4px);
}

/* Why */
.why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why__num {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.why__item p {
  margin: 0;
  font-size: 0.95rem;
}

/* Portfolio */
.portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio__item {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.portfolio__item:hover {
  transform: translateY(-6px);
}

.portfolio__browser {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(18, 32, 43, 0.08);
}

.portfolio__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: #f1f5f8;
  border-bottom: 1px solid var(--line);
}

.portfolio__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5dde4;
}

.portfolio__chrome span:nth-child(1) { background: #ff5f57; }
.portfolio__chrome span:nth-child(2) { background: #febc2e; }
.portfolio__chrome span:nth-child(3) { background: #28c840; }

.portfolio__chrome em {
  margin-left: 0.55rem;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio__frame {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-mist);
}

.portfolio__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.portfolio__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(0, 174, 239, 0.45), rgba(18, 32, 43, 0.62));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__item:hover .portfolio__frame img {
  transform: scale(1.06);
}

.portfolio__meta {
  padding: 1rem 0.15rem 0.2rem;
}

.portfolio__tag {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
}

.portfolio__meta h3 {
  margin-bottom: 0.3em;
  font-size: 1.05rem;
}

.portfolio__meta p {
  margin: 0;
  font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.75rem;
}

.quote {
  margin: 0;
  padding: 1.4rem 1.25rem 1.3rem;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.quote:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 174, 239, 0.12);
}

.quote__stars {
  display: flex;
  gap: 0.2rem;
  color: #f5b301;
  font-size: 0.85rem;
}

.quote p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  flex: 1;
}

.quote footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.quote__avatar {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
}

.quote__who {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.quote cite {
  font-style: normal;
  font-weight: 700;
}

.quote__who span {
  color: var(--muted);
  font-size: 0.85rem;
}

.reviews {
  margin-bottom: 2.75rem;
  padding: 1.5rem 1.25rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.reviews__head {
  text-align: center;
  margin-bottom: 1.25rem;
}

.reviews__head h3 {
  margin-bottom: 0.25rem;
}

.reviews__head p {
  margin: 0;
  font-size: 0.92rem;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-score {
  text-align: center;
  padding: 1.1rem 0.75rem;
  background: #fff;
  border-top: 3px solid transparent;
  border-image: var(--gradient) 1;
}

.review-score__icon {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.45rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(141, 198, 63, 0.18));
  color: var(--blue-dark);
}

.review-score strong {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--blue-dark);
  line-height: 1.1;
}

.review-score > span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.video-testimonials {
  margin-top: 0.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.video-slot {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1520;
  box-shadow: 0 14px 30px rgba(18, 32, 43, 0.1);
}

.video-slot iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Results */
.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.result {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 174, 239, 0.12);
}

.result__shot {
  position: relative;
  min-height: 200px;
  padding: 1.35rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(145deg, rgba(0, 174, 239, 0.95), rgba(0, 120, 170, 0.9));
}

.result__shot--green {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.22), transparent 40%),
    linear-gradient(145deg, rgba(141, 198, 63, 0.96), rgba(49, 170, 140, 0.9));
}

.result__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 0.55rem;
}

.result__shot strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.result__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  margin-bottom: 0.45rem;
}

.result__bar span {
  display: block;
  height: 100%;
  width: var(--fill, 70%);
  border-radius: inherit;
  background: #fff;
}

.result__shot small {
  font-size: 0.78rem;
  opacity: 0.85;
}

.result__body {
  padding: 1.05rem 1.15rem 1.2rem;
}

.result__body h3 {
  margin-bottom: 0.3em;
  font-size: 1.05rem;
}

.result__body p {
  margin: 0;
  font-size: 0.9rem;
}

/* Clients marquee */
#clients {
  overflow: hidden;
}

.clients-marquee {
  position: relative;
  margin-top: 0.5rem;
  padding: 0.5rem 0 0.25rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-marquee__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: clientsMarquee 28s linear infinite;
}

.clients-marquee:hover .clients-marquee__track {
  animation-play-state: paused;
}

.clients-marquee__group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-logo {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 168px;
  height: auto;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(18, 32, 43, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.client-logo:hover {
  border-color: rgba(0, 174, 239, 0.35);
  box-shadow: 0 14px 30px rgba(0, 174, 239, 0.12);
  transform: translateY(-3px);
}

.client-logo:hover img {
  filter: none;
  transform: scale(1.04);
}

@keyframes clientsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 1.25rem;
  }

  .clients-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.faq__intro h2 {
  margin-bottom: 0.7rem;
}

.faq__intro > p {
  margin-bottom: 1.25rem;
}

.faq__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.faq__highlights li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.faq__highlights i {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(141, 198, 63, 0.18));
  color: var(--blue-dark);
  font-size: 0.8rem;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq__item[open] {
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(0, 174, 239, 0.1);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  transition: background 0.25s ease;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary:hover {
  background: var(--bg-soft);
}

.faq__num {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faq__q {
  flex: 1;
  padding-right: 2rem;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--ink);
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(141, 198, 63, 0.18));
  color: var(--blue-dark);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.faq__item[open] summary::after {
  content: "–";
  background: var(--gradient);
  color: #fff;
}

.faq__a {
  padding: 0 1.15rem 1.15rem 3.2rem;
  border-top: 1px solid transparent;
}

.faq__item[open] .faq__a {
  border-top-color: var(--line);
  padding-top: 0.85rem;
  margin-top: 0;
}

.faq__a p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 760px) {
  .faq__a {
    padding-left: 1.15rem;
  }
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0, 174, 239, 0.14), transparent),
    radial-gradient(ellipse 45% 40% at 100% 0%, rgba(141, 198, 63, 0.14), transparent),
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 55%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__channels {
  display: grid;
  gap: 0.75rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

a.contact__channel:hover {
  transform: translateX(4px);
  border-color: rgba(0, 174, 239, 0.4);
  box-shadow: 0 12px 28px rgba(0, 174, 239, 0.1);
}

.contact__channel-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(141, 198, 63, 0.2));
  color: var(--blue-dark);
}

.contact__channel strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.contact__channel em {
  display: block;
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.fomo {
  position: relative;
  margin: 0;
  padding: 1.4rem 1.2rem 1.25rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 174, 239, 0.22), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(141, 198, 63, 0.2), transparent 42%),
    linear-gradient(155deg, #0d1a24 0%, #142836 55%, #101f2a 100%);
  color: #fff;
  flex: 1;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(0, 174, 239, 0.22);
  box-shadow:
    0 0 0 1px rgba(141, 198, 63, 0.08) inset,
    0 18px 40px rgba(13, 26, 36, 0.35);
}

.fomo__glow {
  position: absolute;
  inset: -40% -20%;
  background: conic-gradient(from 120deg, rgba(0, 174, 239, 0.16), transparent 35%, rgba(141, 198, 63, 0.14), transparent 70%, rgba(0, 174, 239, 0.12));
  animation: fomoSpin 14s linear infinite;
  z-index: -1;
  opacity: 0.55;
}

.fomo__head {
  position: relative;
  margin-bottom: 1.15rem;
  text-align: center;
}

.fomo__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #dff7b8;
  background: rgba(141, 198, 63, 0.16);
  border: 1px solid rgba(141, 198, 63, 0.35);
  box-shadow: 0 0 18px rgba(141, 198, 63, 0.18);
  animation: fomoPulse 2.4s ease-in-out infinite;
}

.fomo__label {
  font-family: var(--display);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: 1.05rem;
}

.fomo__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.fomo__unit {
  flex: 1;
  max-width: 104px;
}

.fomo__ring {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  filter: drop-shadow(0 0 10px rgba(0, 174, 239, 0.25));
}

.fomo__ring--teal {
  filter: drop-shadow(0 0 10px rgba(62, 196, 168, 0.28));
}

.fomo__ring--green {
  filter: drop-shadow(0 0 10px rgba(141, 198, 63, 0.3));
}

.fomo__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.fomo__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 6;
}

.fomo__progress {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 0.6s ease;
}

.fomo__ring--blue .fomo__progress {
  stroke: #00aeef;
  filter: drop-shadow(0 0 6px rgba(0, 174, 239, 0.85));
}

.fomo__ring--teal .fomo__progress {
  stroke: #3ec4a8;
  filter: drop-shadow(0 0 6px rgba(62, 196, 168, 0.85));
}

.fomo__ring--green .fomo__progress {
  stroke: #8dc63f;
  filter: drop-shadow(0 0 6px rgba(141, 198, 63, 0.9));
}

.fomo__value {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1;
}

.fomo__value span {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 18px rgba(0, 174, 239, 0.35);
}

.fomo__ring--green .fomo__value span {
  text-shadow: 0 0 18px rgba(141, 198, 63, 0.4);
}

.fomo__value small {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fomo__sep {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.9rem;
  animation: fomoBlink 1.2s steps(1) infinite;
}

.fomo__note {
  margin: 1.05rem 0 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.fomo__note i {
  color: var(--blue);
}

@keyframes fomoSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fomoPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(141, 198, 63, 0.15);
  }
  50% {
    box-shadow: 0 0 22px rgba(141, 198, 63, 0.35);
  }
}

@keyframes fomoBlink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.25;
  }
}

@media (max-width: 420px) {
  .fomo__timer {
    gap: 0.25rem;
  }

  .fomo__sep {
    font-size: 1.1rem;
  }
}

.form {
  display: grid;
  gap: 0.95rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(18, 32, 43, 0.08);
  position: relative;
  overflow: hidden;
}

.form::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--gradient);
}

.form__head {
  margin-bottom: 0.25rem;
}

.form__head h3 {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.form__head p {
  margin: 0;
  font-size: 0.9rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
}

.form label span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.form label span i {
  color: var(--blue);
  font-size: 0.8rem;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
  background: #fff;
}

.form .btn i {
  margin-left: 0.35rem;
  font-size: 0.8rem;
}

.form__note {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.form__success {
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
  text-align: center;
  padding: 0.65rem;
  background: rgba(141, 198, 63, 0.12);
}

@media (max-width: 980px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(0, 174, 239, 0.12), transparent),
    radial-gradient(ellipse 45% 80% at 100% 50%, rgba(141, 198, 63, 0.1), transparent),
    var(--ink);
  color: #fff;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer__copy {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__social a {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer__social a:hover {
  transform: translateY(-3px);
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroShift {
  from {
    filter: saturate(1);
  }
  to {
    filter: saturate(1.15);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact__grid,
  .portfolio,
  .testimonials,
  .results,
  .video-grid,
  .reviews__row {
    grid-template-columns: 1fr 1fr;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .why {
    grid-template-columns: 1fr 1fr;
  }

  .why::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: calc(var(--topbar-h) + var(--header-h)) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.35rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.65rem 0.2rem;
  }

  .nav__cta {
    margin-top: 0.35rem;
    width: 100%;
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .about__grid,
  .contact__grid,
  .portfolio,
  .testimonials,
  .results,
  .video-grid,
  .reviews__row,
  .why,
  .trust__grid {
    grid-template-columns: 1fr;
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__flow {
    justify-content: center;
    font-size: 0.75rem;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: auto;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
