/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
  --navy-950: #071b34;
  --navy-900: #0b2545;
  --blue-700: #0f5fa8;
  --blue-600: #1877c9;
  --sky-100: #e8f6ff;
  --sky-50: #f5fbff;
  --yellow-500: #ffc83d;
  --yellow-400: #ffd45c;
  --mint-100: #dcf3ea;
  --peach-100: #ffe2d7;
  --lavender-100: #e9e5ff;
  --cyan-100: #daf4f4;
  --sand-100: #fff2cf;
  --surface: #f8fbfd;
  --text: #0b203a;
  --muted: #5c6d7e;
  --border: #d9e8f2;
  --white: #ffffff;

  --container: 1220px;
  --gutter: 20px;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(15, 95, 168, 0.07);
  --shadow-md: 0 14px 34px rgba(15, 95, 168, 0.1);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.12);

  --header-h: 80px;

  --font: 'Manrope', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  /* Keep anchor targets clear of the sticky header. */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, var(--sky-50) 0%, var(--surface) 38%, var(--white) 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* Guards against any child pushing the page sideways. */
  overflow-x: hidden;
}

body.has-drawer {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}


/* ==========================================================================
   İkonlar — index.html-dəki <symbol> kitabxanasından <use> ilə çağırılır.
   fill/stroke miras qalan (inherited) xüsusiyyətlərdir, ona görə <use>-un
   shadow məzmununa buradan təsir edir.
   ========================================================================== */

.sprite {
  display: none;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

/* Dolu ikonlar */
.testimonial__stars svg,
.testimonial__quote,
.brand__mark {
  fill: currentColor;
  stroke: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn,
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.btn--ghost {
  background: var(--white);
  color: var(--navy-900);
  border: 1.6px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--blue-600);
  color: var(--blue-700);
}

.call-btn {
  background: var(--yellow-500);
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(255, 200, 61, 0.38);
}

.call-btn:hover {
  background: var(--yellow-400);
  transform: translateY(-2px);
}

.call-btn__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--yellow-400);
}

.call-btn__text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.call-btn__number {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.call-btn__label {
  white-space: nowrap;
}

.call-btn--header {
  padding: 8px 20px 8px 10px;
  min-height: 58px;
}

.call-btn--header .call-btn__text {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.call-btn--header .call-btn__number {
  font-size: 1.12rem;
  font-weight: 800;
}

.call-btn--header .call-btn__note {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(7, 27, 52, 0.66);
}

.call-btn--compact .call-btn__label {
  display: none;
}

.call-btn--compact .call-btn__number {
  font-size: 1.05rem;
  font-weight: 800;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245, 251, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.header[data-scrolled] {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 22px rgba(11, 37, 69, 0.06);
}

.header__inner {
  max-width: 1400px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: var(--header-h);
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 1 auto;
  min-width: 0;
  min-height: 52px;
}

.brand__mark {
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 12px rgba(11, 37, 69, 0.16));
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.brand:hover .brand__mark {
  transform: translateY(-2px) rotate(-2deg);
  filter: drop-shadow(0 11px 15px rgba(11, 37, 69, 0.22));
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand__name {
  font-size: 1.55rem;
  font-weight: 850;
  color: var(--navy-900);
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand__tagline {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2;
  /* Longer EN/RU taglines must not widen the header. */
  max-width: 28ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav--desktop {
  margin-inline: auto;
  min-width: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.nav__link {
  font-weight: 600;
  color: var(--navy-900);
  padding: 8px 2px;
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--yellow-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.header__aside {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex: 0 0 auto;
}

.header__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
}

.lang__btn {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 34px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.lang__btn:hover {
  color: var(--blue-700);
  background: var(--sky-100);
}

.lang__btn[data-active] {
  background: var(--navy-900);
  color: var(--white);
}

.header__toggle-close {
  display: none;
}

.header__toggle[aria-expanded='true'] .header__toggle-open {
  display: none;
}

.header__toggle[aria-expanded='true'] .header__toggle-close {
  display: block;
}

.header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-900);
  margin-left: auto;
}

/* Mobile drawer */

.drawer {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  z-index: 70;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.drawer__inner {
  display: grid;
  gap: 18px;
  padding-block: 20px 26px;
}

.drawer__list {
  display: grid;
  gap: 4px;
}

.drawer__link {
  display: block;
  padding: 14px 12px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--navy-900);
}

.drawer__link:hover {
  background: var(--sky-100);
}

.drawer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.drawer__call {
  justify-content: center;
}

.drawer__scrim {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(7, 27, 52, 0.4);
  cursor: default;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding-block: 18px 8px;
}

.hero__panel {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--sky-100);
  min-height: 520px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(240, 249, 255, 0.94) 32%,
    rgba(226, 243, 255, 0.72) 48%,
    rgba(226, 243, 255, 0) 66%
  );
}

.hero__content {
  position: relative;
  width: min(690px, 100%);
  padding: 52px clamp(24px, 3vw, 44px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy-900);
  margin-bottom: 20px;
}

.hero__eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow-500);
  flex: 0 0 auto;
}

.hero__title {
  font-size: clamp(2.05rem, 4.4vw, 3rem);
  font-weight: 800;
  /* `balance` would split the second line early; let it flow naturally. */
  text-wrap: normal;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--blue-600);
}

.hero__subtitle {
  margin-top: 18px;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--muted);
  max-width: 34em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 30px;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-900);
}

.hero__trust-item svg {
  color: var(--blue-600);
  flex: 0 0 auto;
}

/* ==========================================================================
   Section shell
   ========================================================================== */

.section {
  padding-block: clamp(46px, 6vw, 74px);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 22px;
  margin-bottom: 30px;
}

.section__head--tight {
  margin-bottom: 26px;
}

.section__title {
  position: relative;
  font-size: clamp(1.6rem, 3.1vw, 2.35rem);
  font-weight: 800;
  padding-bottom: 10px;
}

.section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: var(--yellow-500);
}

.section__subtitle,
.section__note {
  color: var(--muted);
  font-size: 1rem;
  max-width: 48em;
}

.section__note {
  font-weight: 600;
  color: var(--blue-700);
  border-bottom: 2px solid var(--yellow-500);
  padding-bottom: 2px;
}

.section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-left: auto;
  font-weight: 700;
  color: var(--blue-700);
  white-space: nowrap;
}

.section__link:hover {
  color: var(--navy-900);
}

/* ==========================================================================
   Services
   ========================================================================== */

.services__grid {
  display: grid;
  gap: 18px;
}

.services__grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.services__grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--sky-100);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  min-height: 92px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card[data-tone='sky'] {
  background: var(--sky-100);
}
.service-card[data-tone='sand'] {
  background: var(--sand-100);
}
.service-card[data-tone='mint'] {
  background: var(--mint-100);
}
.service-card[data-tone='peach'] {
  background: var(--peach-100);
}
.service-card[data-tone='lavender'] {
  background: var(--lavender-100);
}
.service-card[data-tone='cyan'] {
  background: var(--cyan-100);
}

.service-card__media {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.service-card__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-900);
  overflow-wrap: break-word;
  hyphens: none;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  overflow-wrap: break-word;
}

/* Compact cards keep the description for assistive tech only. */
.service-card:not(.service-card--featured) .service-card__desc {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.service-card:not(.service-card--featured) {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 10px;
  padding: 18px 12px 44px;
  min-height: 150px;
}

.service-card:not(.service-card--featured) .service-card__body {
  align-items: center;
  width: 100%;
}

.service-card:not(.service-card--featured) .service-card__name {
  font-size: 0.92rem;
  line-height: 1.25;
}

.service-card:not(.service-card--featured) .service-card__arrow {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  margin-left: 0;
}

.service-card__arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.service-card--featured {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 24px 22px;
  min-height: 176px;
}

.service-card--featured .service-card__media {
  width: 104px;
  height: 104px;
}

.service-card--featured .service-card__name {
  font-size: 1.3rem;
  text-wrap: balance;
}

.service-card--featured[data-tone='sky'] {
  background: linear-gradient(140deg, #e3f2ff 0%, #d4eaff 100%);
}

.brand__accent {
  position: relative;
  display: inline-block;
  margin-left: 0.04em;
  color: var(--blue-600);
  letter-spacing: -0.055em;
}

.brand__accent::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: -0.22em;
  left: 0.02em;
  height: 0.16em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow-500) 0 72%, var(--blue-600) 72% 100%);
  transform: rotate(-1.5deg);
}

/* ==========================================================================
   Search-friendly service overview
   ========================================================================== */

.service-overview {
  padding-top: 16px;
}

.service-overview__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 24px;
}

.service-overview__lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 62em;
}

.service-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-overview__card {
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  background: var(--sky-100);
  box-shadow: var(--shadow-sm);
}

.service-overview__card[data-tone='sand'] {
  background: var(--sand-100);
}

.service-overview__card[data-tone='mint'] {
  background: var(--mint-100);
}

.service-overview__card h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

.service-overview__card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-overview__area {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--blue-700);
  font-size: 0.94rem;
  font-weight: 700;
}

.service-overview__area svg {
  flex: 0 0 auto;
}

/* ==========================================================================
   How it works
   ========================================================================== */

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.how__step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.how__index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--blue-700);
  font-weight: 800;
}

.how__icon {
  color: var(--blue-600);
  flex: 0 0 auto;
}

.how__step:last-child .how__icon {
  color: var(--blue-700);
}

.how__text {
  min-width: 0;
}

.how__step-title {
  font-size: 1.05rem;
  font-weight: 800;
}

.how__step-desc {
  font-size: 0.92rem;
  color: var(--muted);
  overflow-wrap: break-word;
}

/* ==========================================================================
   Why us
   ========================================================================== */

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why__card {
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: var(--sky-100);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.why__card[data-tone='sand'] {
  background: var(--sand-100);
}
.why__card[data-tone='cyan'] {
  background: var(--cyan-100);
}
.why__card[data-tone='mint'] {
  background: var(--mint-100);
}

.why__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.why__card-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.why__card-desc {
  font-size: 0.94rem;
  color: var(--muted);
  overflow-wrap: break-word;
}

/* ==========================================================================
   About
   ========================================================================== */

.about__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(115deg, #fff8ed 0%, #ffefd8 58%, #f7dfbd 100%);
  box-shadow: var(--shadow-md);
}

.about__content {
  padding: clamp(28px, 4vw, 54px);
}

.about__title {
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  font-weight: 800;
}

.about__title-accent {
  color: #b85b0b;
}

.about__text {
  margin-top: 16px;
  color: var(--navy-900);
  opacity: 0.78;
  font-size: 1.02rem;
  max-width: 34em;
}

.about__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 26px;
}

.about__point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.about__check {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: #c66a12;
  color: var(--white);
}

.about__media {
  position: relative;
  height: 100%;
  min-height: 340px;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.about__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 241, 218, 1) 0%, rgba(255, 241, 218, 0.56) 28%, rgba(255, 241, 218, 0) 62%);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial {
  height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.testimonial__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--blue-700);
  font-weight: 800;
  font-size: 1.25rem;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--yellow-500);
}

.testimonial__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
  overflow-wrap: break-word;
}

.testimonial__quote {
  margin-left: auto;
  color: var(--sky-100);
  flex: 0 0 auto;
}

.testimonial__text {
  color: var(--muted);
  font-size: 0.96rem;
  overflow-wrap: break-word;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.faq__lead {
  margin-top: 16px;
  color: var(--muted);
  max-width: 34em;
}

.faq__help {
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--sky-100);
}

.faq__help-title {
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--navy-900);
}

.faq__help-text {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 14px;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq__item[open] {
  border-color: #bcdcf4;
}

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 56px;
  padding: 16px 20px;
  text-align: start;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  /* Brauzerin standart üçbucaq işarəsini gizlədirik */
  list-style: none;
}

.faq__trigger::-webkit-details-marker {
  display: none;
}

.faq__question {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq__sign {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--blue-700);
  transition: transform 0.22s ease;
}

.faq__item[open] .faq__sign {
  transform: rotate(180deg);
  background: var(--blue-700);
  color: var(--white);
}

.faq__panel {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  align-items: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(115deg, #eaf8f3 0%, #dcf3ea 60%, #ccebdd 100%);
  box-shadow: var(--shadow-md);
}

.cta__content {
  padding: clamp(28px, 4vw, 52px);
}

.cta__title {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 800;
}

.cta__subtitle {
  margin-top: 12px;
  color: var(--navy-900);
  opacity: 0.76;
  font-size: 1.02rem;
  max-width: 32em;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.cta__media {
  position: relative;
  height: 100%;
  min-height: 300px;
}

.cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.cta__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(220, 243, 234, 1) 0%, rgba(220, 243, 234, 0.56) 26%, rgba(220, 243, 234, 0) 58%);
}

.cta__badge {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 2vw, 26px);
  bottom: 22px;
  max-width: 11em;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(4px);
  font-weight: 700;
  font-style: italic;
  color: var(--navy-900);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  line-height: 1.3;
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  margin-top: 20px;
  padding-block: 44px 34px;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.82);
}

.footer .brand__name {
  color: var(--white);
}

.footer .brand__accent::after {
  z-index: 0;
}

.footer .brand__tagline {
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(360px, 1.7fr) minmax(150px, 0.72fr) minmax(220px, 1fr);
  align-items: start;
  gap: 42px;
}

.footer__brand-block {
  display: grid;
  align-content: start;
  gap: 18px;
}

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

.footer__summary {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__list {
  display: grid;
  gap: 2px;
  font-size: 0.94rem;
}

.footer__list--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
}

.footer__list--services a {
  min-height: 38px;
}

.footer__list a,
.footer__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.footer__list a:hover {
  color: var(--yellow-400);
}

.footer__list--contact svg {
  color: var(--yellow-400);
  flex: 0 0 auto;
}

.footer__legal {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Sticky mobile call bar
   ========================================================================== */

.call-bar {
  display: none;
  position: fixed;
  z-index: 55;
  inset-inline: 0;
  bottom: 0;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

.call-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: var(--radius-pill);
  background: var(--yellow-500);
  color: var(--navy-950);
  font-weight: 800;
  padding-inline: 18px;
  text-align: center;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1320px) {
  .header__location {
    display: none;
  }

}

@media (max-width: 1180px) {
  .services__grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  :root {
    --header-h: 72px;
  }

  .nav--desktop,
  .header__aside {
    display: none;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header__toggle[aria-expanded='true'] .header__toggle-close {
    display: block;
  }

  .hero__panel {
    min-height: 0;
  }

  .hero__overlay {
    background: linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(240, 249, 255, 0.93) 40%,
      rgba(226, 243, 255, 0.62) 58%,
      rgba(226, 243, 255, 0) 78%
    );
  }

  .services__grid--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-overview__intro,
  .service-overview__grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    min-height: 150px;
  }

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

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

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

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

  .about__panel,
  .cta__panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .about__media,
  .cta__media {
    min-height: 280px;
    order: -1;
  }

  .about__media::before {
    background: linear-gradient(180deg, rgba(255, 241, 218, 0) 55%, rgba(255, 241, 218, 0.96) 100%);
  }

  .cta__media::before {
    background: linear-gradient(180deg, rgba(220, 243, 234, 0) 55%, rgba(220, 243, 234, 0.96) 100%);
  }

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

@media (max-width: 760px) {
  :root {
    --gutter: 16px;
  }

  /* Leaves room for the sticky call bar. */
  body {
    padding-bottom: 82px;
  }

  .call-bar {
    display: block;
  }

  /* Mobile: keep the tel: action, but show only the concise call label. */
  .call-btn__number,
  .call-bar__number {
    display: none;
  }

  .call-btn--compact .call-btn__label {
    display: inline;
  }

  .hero {
    padding-top: 12px;
  }

  .hero__panel {
    border-radius: var(--radius-lg);
    flex-direction: column;
  }

  .hero__image {
    position: relative;
    height: 230px;
    object-position: center right;
    z-index: 0;
  }

  .hero__overlay {
    display: none;
  }

  .hero__content {
    width: 100%;
    padding: 26px 20px 30px;
    background: linear-gradient(180deg, #eaf5ff 0%, #ffffff 100%);
  }

  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .hero__actions .call-btn,
  .hero__actions .btn,
  .cta__actions .call-btn,
  .cta__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero__trust {
    gap: 10px 18px;
    margin-top: 24px;
  }

  .hero__trust-item {
    font-size: 0.86rem;
  }

  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .section__link {
    margin-left: 0;
  }

  .services__grid--featured,
  .services__grid--compact,
  .testimonials__grid,
  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    gap: 10px;
    padding: 16px;
    min-height: 130px;
  }

  .service-card:not(.service-card--featured) {
    min-height: 132px;
    padding: 16px 12px 40px;
  }

  .service-card__media {
    width: 54px;
    height: 54px;
  }

  .service-card--featured {
    min-height: 168px;
    /* Bottom room so the description never runs under the arrow. */
    padding: 18px 18px 48px;
  }

  .service-card--featured .service-card__media {
    width: 68px;
    height: 68px;
  }

  .service-card--featured .service-card__name {
    font-size: 1.1rem;
  }

  .service-card--featured .service-card__desc {
    font-size: 0.84rem;
  }

  .service-card__arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;
    margin-left: 0;
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .about__media,
  .cta__media {
    min-height: 220px;
  }

  .cta__badge {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__list--services {
    column-gap: 18px;
  }
}

@media (max-width: 420px) {
  /* Narrow phones: let the call button wrap instead of spilling off-screen. */
  .call-btn {
    padding-inline: 18px;
    gap: 8px;
  }

  .call-btn--solid .call-btn__text {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0;
  }

  .call-bar__link {
    padding-inline: 14px;
    font-size: 0.95rem;
  }

  .services__grid--featured,
  .testimonials__grid,
  .why__grid {
    grid-template-columns: 1fr;
  }

  .brand__tagline {
    display: none;
  }

  .service-card--featured {
    min-height: 0;
  }
}
