@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;500;600;700&display=swap');

/* Rafique Enterprise — matched to public_html Bricks/Rizklab (post-9, post-44) */
:root {
  --color-primary: #1d1e23;
  --color-accent: #1a73e8;
  --color-accent-light: #4b91f1;
  --color-accent-dark: #0d5ec9;
  --color-accent-mid: #2b7de9;
  --color-hover: #e62830;
  --color-orange: #f5a623;
  --color-gold: #ffb347;
  --color-text: #53504b;
  --color-heading: #081e37;
  --color-light: #ffffff;
  --color-muted: #e6e7e8;
  --color-card: #f4f5f6;
  --color-soft: #d6e3f3;
  --font-main: "Li Ador", "Noto Sans Bengali", system-ui, sans-serif;
  --container: 1200px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(8, 30, 55, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-hover); }
h1, h2, h3, h4, h5, h6 { color: var(--color-heading); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 2.5vw, 2.25rem); }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.text-center { text-align: center; }
.content-narrow { max-width: 820px; margin-inline: auto; }
.eyebrow { color: var(--color-accent); font-weight: 600; font-size: .875rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.site-main { flex: 1; }

/* Header — public_html Bricks post-44 (#brxe-bxjzux / #brxe-lxfuma / #brxe-pqrykc) */
.site-header {
  background: #fff;
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(8,30,55,.06);
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 10px 0;
  gap: 20px 30px;
  min-height: 0;
}
.site-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  text-decoration: none;
  width: auto;
  max-width: 200px;
}
.site-logo:hover { opacity: .92; text-decoration: none; }
.site-logo__img,
img.site-logo__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 52px;
  object-fit: contain;
}
.site-nav { display: flex; justify-content: center; min-width: 0; flex: 1; }
.site-nav__list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}
.site-nav__item + .site-nav__item { margin-left: 30px; }
.site-nav__link {
  color: #081e37;
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-main);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 0;
  white-space: nowrap;
  position: relative;
}
.site-nav__link:hover { color: #e62830; text-decoration: none; }
.site-header__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  width: auto;
}
.offer-count {
  background: #e62830;
  color: #fff;
  font-size: .7rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 .3rem;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.15rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Header CTAs — Bricks #brxe-psfzje / #brxe-uitwac */
.btn.btn--header,
.btn--header {
  background: var(--color-accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px !important;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-main);
  white-space: nowrap;
  line-height: 1.2;
  border: 0;
}
.btn.btn--header:hover,
.btn--header:hover {
  background: var(--color-accent-dark);
  color: #fff;
  text-decoration: none;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--color-accent);
  border: 0;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #d6e3f3; }

/* Buttons */
.btn { display: inline-block; padding: .8rem 1.75rem; border-radius: 4px; font-weight: 600; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: .2s; font-size: 1rem; }
.btn--primary, .btn-primary { background: var(--color-accent); color: #fff; }
.btn--primary:hover { background: var(--color-accent-light); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn--secondary { background: var(--color-primary); color: #fff; }
.btn--secondary:hover { color: #fff; text-decoration: none; }
.btn--light { background: #fff; color: var(--color-accent); }
.btn--light:hover { background: #f0f0ff; color: var(--color-accent); text-decoration: none; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; text-decoration: none; }
.btn--sm { padding: .5rem 1rem; font-size: .875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--block { display: block; width: 100%; text-align: center; }
.btn--outline { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn--outline:hover { background: var(--color-accent); color: #fff; text-decoration: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  box-sizing: border-box;
}
.hero__content {
  max-width: 640px;
  margin-left: 0;
  margin-right: auto;
}
.hero__list { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; row-gap: 12px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero — photo + left gradient (Aichgati / Rizklab) */
.hero {
  color: #fff;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero--home {
  background-color: #0a1628;
  background-image: url('/uploads/frontwp.webp');
  /* Zoom + shift up ~5in worth of lower crop (legs/cable) out of view */
  background-size: cover;
  background-position: center 12%;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .hero--home {
    background-size: 115% auto;
    background-position: center -2.5rem;
  }
}
.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.2) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero h1 {
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  font-family: var(--font-main);
}
.hero__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
}
.hero__list img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(77%) sepia(61%) saturate(650%) hue-rotate(358deg) brightness(1.05);
}
.btn.btn--primary,
.btn--primary {
  border-radius: 6px !important;
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-accent-light);
  color: #fff;
}
.btn.btn--hero,
.btn--hero {
  border-radius: 6px !important;
  padding: .9rem 1.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  display: inline-block;
}

/* Features bar — inset rounded panel (Aichgati style, not full-bleed) */
.features-bar {
  background: transparent;
  color: #fff;
  padding: 0;
  margin: -2.5rem 0 0;
  position: relative;
  z-index: 5;
}
.features-bar > .container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.features-bar__panel {
  background: var(--color-accent);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  box-shadow: 0 10px 30px rgba(26, 115, 232, .28);
  overflow: hidden;
}
.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  align-items: center;
  justify-items: center;
}
.features-bar__item {
  position: relative;
  padding: .5rem 1.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.features-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(255,255,255,.3);
}
.features-bar__item img {
  margin: 0 auto .65rem;
  width: 52px;
  height: 52px;
  filter: brightness(0) saturate(100%) invert(77%) sepia(61%) saturate(650%) hue-rotate(358deg) brightness(1.05);
}
.features-bar__item h5 {
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: .01em;
  line-height: 1.3;
}
.features-bar + .section,
.features-bar + .section--services {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

/* Pill label */
/* Pill label + services — centered */
.pill-label {
  display: block;
  width: fit-content;
  background: var(--color-accent);
  color: #fff;
  padding: .45rem 1.15rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  margin: 0 auto 1.15rem;
  text-align: center;
}
.section--services { text-align: center; }
.section--services .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section--services .section__title {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--color-heading);
}
.section--services .service-grid {
  width: 100%;
  text-align: center;
}

/* Blue service cards */
.service-card--blue {
  background: var(--color-accent) !important;
  color: #fff;
  border: none;
  text-align: center;
  padding: 2.15rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,86,210,.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.service-card--blue h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0 0 .65rem;
  text-align: center;
  width: 100%;
}
.service-card--blue p {
  color: rgba(255,255,255,.92);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
  text-align: center;
  max-width: 280px;
}
.service-card--blue img {
  margin: 0 auto 1rem;
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(77%) sepia(61%) saturate(650%) hue-rotate(358deg) brightness(1.05);
}
.service-card--blue:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,86,210,.32);
}

/* Pricing section — blue overlapping cards (Rizklab / Aichgati) */
.pricing-section { padding: 0 0 4rem; background: #fff; }
.pricing-section__head {
  background:
    linear-gradient(rgba(0, 40, 120, .68), rgba(0, 40, 120, .68)),
    url('/uploads/lowestprice.webp') center center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 0 8rem;
  background-size: cover;
  background-position: center center;
}
.pricing-section__head h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; font-weight: 700; }
.pricing-section__head p {
  color: rgba(255,255,255,.95);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
  font-weight: 500;
}
.pricing-section__body { margin-top: -5.5rem; position: relative; z-index: 2; padding-bottom: 1rem; }
.pricing-grid { gap: 1.5rem; align-items: stretch; display: grid; grid-template-columns: repeat(3, 1fr); }
.pricing-grid--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 1200px) {
  .pricing-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pricing-grid--5 { grid-template-columns: 1fr; }
}
.pricing-grid--5 .pricing-card--blue {
  padding: 1.5rem 1rem 1.35rem;
}
.pricing-grid--5 .pricing-card__speed {
  font-size: clamp(1.75rem, 2.2vw, 2.25rem);
}
.pricing-grid--5 .pricing-card__speed span {
  font-size: .95rem;
}
.pricing-grid--5 .pricing-card__features li {
  font-size: .85rem;
  padding: .35rem 0;
}
.pricing-card.pricing-card--blue.pricing-card--featured {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .22);
  outline: 2px solid rgba(245, 166, 35, .85);
  outline-offset: 0;
}
.pricing-card.pricing-card--blue.pricing-card--featured::before {
  content: 'জনপ্রিয়';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-orange, #f5a623);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 999px;
  z-index: 2;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s;
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--color-accent); }
.pricing-card--featured { border-color: var(--color-accent); box-shadow: 0 12px 40px rgba(0,86,210,.15); position: relative; }
.pricing-card--featured::before { content: 'জনপ্রিয়'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--color-hover); color: #fff; font-size: .75rem; font-weight: 700; padding: .25rem .75rem; border-radius: 999px; }
.pricing-card__label { color: var(--color-accent); font-weight: 600; font-size: .9rem; margin: 0 0 .5rem; }
.pricing-card__speed { font-size: 2.75rem; color: var(--color-heading); margin: 0 0 1.25rem; line-height: 1; }
.pricing-card__speed span { font-size: 1.25rem; font-weight: 500; color: #666; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; flex: 1; }
.pricing-card__features li { padding: .45rem 0; border-bottom: 1px solid #f0f0f0; font-size: .925rem; color: #555; }
.pricing-card__features li::before { content: '✓ '; color: var(--color-accent); font-weight: 700; }
.pricing-card__price { font-size: 1.35rem; font-weight: 700; color: var(--color-hover); margin: 0 0 1rem; }
.pricing-card__rule { border: 0; border-top: 1px solid rgba(255,255,255,.25); margin: 0 0 1.25rem; width: 100%; }

/* Blue pricing cards — must come AFTER base .pricing-card */
.pricing-card.pricing-card--blue,
.pricing-card--blue {
  background: var(--color-accent) !important;
  color: #fff;
  border: none !important;
  border-radius: 12px;
  padding: 2.25rem 1.75rem 2rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,86,210,.28);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.pricing-card--blue:hover,
.pricing-card--blue:hover {
  transform: translateY(-6px);
  border: none !important;
  box-shadow: 0 16px 48px rgba(0,86,210,.38);
}
.pricing-card--blue .pricing-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto .75rem;
  background: rgba(255, 255, 255, .14);
  color: #f5a623;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2), 0 6px 16px rgba(0, 0, 0, .15);
}
.pricing-card--bronze .pricing-card__icon { color: #e8b896; background: rgba(205, 127, 50, .22); }
.pricing-card--silver .pricing-card__icon { color: #e8eef5; background: rgba(192, 192, 192, .25); }
.pricing-card--gold .pricing-card__icon { color: #ffe08a; background: rgba(245, 166, 35, .28); }
.pricing-card--diamond .pricing-card__icon { color: #dff6ff; background: rgba(185, 242, 255, .22); }
.pricing-card--sapphire .pricing-card__icon { color: #9ecbff; background: rgba(15, 82, 186, .35); }

.pricing-card--blue .pricing-card__label {
  color: #f5a623 !important;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 .65rem;
}
.pricing-card--blue .pricing-card__speed {
  color: #fff !important;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.pricing-card--blue .pricing-card__speed span {
  font-size: .55em;
  font-weight: 600;
  color: #fff !important;
}
.pricing-card--blue .pricing-card__rule {
  border-top: 1px solid rgba(255,255,255,.28);
  margin: 0 0 1.15rem;
}
.pricing-card--blue .pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  text-align: left;
  flex: 1;
}
.pricing-card--blue .pricing-card__features li {
  padding: .48rem 0 .48rem 2.1rem;
  position: relative;
  font-size: .9rem;
  color: #fff !important;
  border: none !important;
  border-bottom: none !important;
  line-height: 1.45;
  display: flex;
  align-items: center;
}
.pricing-card--blue .pricing-card__features li::before {
  content: none;
}
.pricing-card--blue .pricing-card__features .fi {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #f5a623;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}
.pricing-card--blue .fi-share {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5'%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Ccircle cx='6' cy='12' r='3'/%3E%3Ccircle cx='18' cy='19' r='3'/%3E%3Cpath d='M8.6 13.5l6.8 4M15.4 6.5l-6.8 4'/%3E%3C/svg%3E");
}
.pricing-card--blue .fi-fb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M14 9h3V6h-3c-1.7 0-3 1.3-3 3v2H8v3h3v7h3v-7h3l1-3h-4V9c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
}
.pricing-card--blue .fi-yt {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M23 12s0-3.8-.5-5.6c-.3-1-1-1.7-2-2C18.7 4 12 4 12 4s-6.7 0-8.5.4c-1 .3-1.7 1-2 2C1 8.2 1 12 1 12s0 3.8.5 5.6c.3 1 1 1.7 2 2C5.3 20 12 20 12 20s6.7 0 8.5-.4c1-.3 1.7-1 2-2 .5-1.8.5-5.6.5-5.6z'/%3E%3Cpath d='M10 15.5V8.5l6 3.5-6 3.5z' fill='%23f5a623'/%3E%3C/svg%3E");
}
.pricing-card--blue .fi-web {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E");
}
.pricing-card--blue .fi-support {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M3 18v-6a9 9 0 0 1 18 0v6'/%3E%3Cpath d='M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z'/%3E%3C/svg%3E");
}
.pricing-card--blue .pricing-card__price {
  color: #f5a623 !important;
  font-size: 1.85rem;
  font-weight: 700;
  margin: .25rem 0 0;
  line-height: 1.2;
}
.pricing-card--blue .pricing-card__price span {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.9) !important;
}
.pricing-card--blue .btn,
.pricing-card--blue .btn--light {
  display: none;
}

/* Connect split — steps panel */
.connect-section { padding: 4.5rem 0; background: #fff; }
.connect-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.connect-split__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.connect-split__left h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  margin: 0 0 1.15rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-heading);
}
.connect-split__left p {
  color: #555;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  margin: 0 0 1.75rem;
}
.connect-split__img,
img.connect-split__img {
  border-radius: 12px !important;
  width: 560px !important;
  height: 380px !important;
  max-width: 100% !important;
  max-height: 380px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  box-shadow: var(--shadow);
  display: block !important;
}
.steps-panel {
  background: #0d47a1;
  border-radius: 12px;
  padding: 2.35rem 2.15rem;
  color: #fff;
}
.steps-panel__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.steps-panel__item:first-child { padding-top: .35rem; }
.steps-panel__item:last-child { border-bottom: 0; padding-bottom: .35rem; }
.steps-panel__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.45rem;
}
.steps-panel__item h4 {
  color: #fff;
  margin: 0 0 .5rem;
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
}
.steps-panel__item p {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  opacity: 1;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
}

/* Reviews — blue cards */
.reviews-section { padding: 4rem 0; background: #fff; }
.testimonial--blue { background: var(--color-accent); color: #fff; border: none; border-radius: 10px; padding: 2rem 1.5rem; text-align: center; box-shadow: 0 4px 20px rgba(0,86,210,.2); }
.testimonial--blue p { color: rgba(255,255,255,.95); font-style: normal; margin-bottom: 1.25rem; line-height: 1.65; }
.testimonial--blue cite { color: var(--color-orange); font-weight: 600; font-size: .95rem; }

/* Support section — yellow box */
.support-section {
  background: var(--color-accent);
  color: #fff;
  padding: 4.5rem 0 5.5rem;
  text-align: center;
}
.support-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support-section__lead {
  color: #fff !important;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.25;
  text-align: center;
}
.support-section__text {
  color: #fff;
  max-width: 860px;
  margin: 0 auto 2.25rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.7;
  opacity: 1;
  text-align: center;
}
.support-section p {
  color: #fff;
  max-width: 860px;
  margin: 0 auto 2.25rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.7;
  opacity: 1;
}
.support-box {
  background: var(--color-orange);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.support-box h3 {
  color: #0000ff;
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0 0 1.5rem;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
}
.support-phones {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.support-phones__item {
  background: transparent;
  border: 2px solid #0000ff;
  color: #000;
  padding: .85rem 1.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .02em;
}
.support-phones__item:hover {
  background: #0000ff;
  color: #fff;
  text-decoration: none;
}

/* Footer light — Aichgati */
.site-footer--light { background: #fff; color: var(--color-text); border-top: 3px solid var(--color-accent); }
.site-footer--light a { color: var(--color-accent); }
.site-footer--light a:hover { color: var(--color-hover); }
.site-footer--light .site-footer__heading { color: var(--color-heading); font-weight: 700; }
.site-footer--light .site-footer__logo img { filter: none; }
.site-footer__info { list-style: none; padding: 0; margin: 0; font-size: .9rem; line-height: 1.8; }
.site-footer__partners { background: #f8f9fa; padding: 1.25rem 0; border-top: 1px solid #eee; }
.site-footer__partners-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; align-items: center; opacity: .7; }
.site-footer__copy--light { background: #fff; color: #888; border-top: 1px solid #eee; }
.site-footer__copy-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem 1.5rem;
  padding: 1rem 0;
  text-align: left;
}
.site-footer__copy-text {
  margin: 0;
  font-size: .9rem;
  color: #555;
}
.site-footer__credit {
  margin: 0;
  font-size: .9rem;
  color: #555;
  font-weight: 500;
}
.site-footer__credit-link {
  color: var(--color-accent) !important;
  font-weight: 700;
  text-decoration: none;
}
.site-footer__credit-link:hover {
  color: var(--color-accent-dark) !important;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .site-footer__copy-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
.back-to-top { position: fixed; bottom: 1.5rem; left: 1.5rem; width: 44px; height: 44px; background: var(--color-accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; z-index: 99; box-shadow: 0 4px 12px rgba(0,0,0,.2); text-decoration: none; }
.back-to-top:hover { background: var(--color-accent-dark); color: #fff; text-decoration: none; }

.chat-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .65rem;
}
.chat-float__tip {
  position: absolute;
  right: 68px;
  bottom: 8px;
  max-width: 220px;
  background: #fff;
  color: #1a1a1a;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.4;
  padding: .7rem .9rem;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  border: 1px solid rgba(0, 0, 0, .06);
  opacity: 0;
  transform: translateY(14px) scale(.96);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  white-space: normal;
}
.chat-float__tip::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 18px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transform: rotate(-45deg);
}
.chat-float__tip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chat-float.is-open .chat-float__tip,
.chat-float__tip.is-hidden {
  opacity: 0;
  transform: translateY(10px) scale(.96);
  pointer-events: none;
}
.chat-float__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .55rem;
}
.chat-float__menu[hidden] { display: none !important; }
.chat-float__link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding: .45rem .55rem .45rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  border: 1px solid rgba(0, 0, 0, .06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.chat-float__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  text-decoration: none;
  color: #111;
}
.chat-float__brand {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f8;
  border: 1px solid rgba(0, 0, 0, .08);
}
.chat-float__toggle {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #f5a623;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(245, 166, 35, .45);
  transition: transform .15s ease, background .15s ease;
}
.chat-float__toggle:hover { transform: scale(1.05); background: #ffb84d; }
.chat-float__icon { display: inline-flex; }
.chat-float__icon--close { display: none; }
.chat-float.is-open .chat-float__icon--chat { display: none; }
.chat-float.is-open .chat-float__icon--close { display: inline-flex; }
@media (max-width: 640px) {
  .chat-float { right: .9rem; bottom: .9rem; }
  .chat-float__toggle { width: 52px; height: 52px; }
  .chat-float__tip {
    right: 60px;
    max-width: 180px;
    font-size: .85rem;
    padding: .6rem .75rem;
  }
}

.page-hero { background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent-light)); color: #fff; padding: 3rem 0; }
.page-hero--compact h1 { color: #fff; margin-bottom: .5rem; }
.page-hero__lead { font-size: 1.1rem; opacity: .9; max-width: 640px; margin: 0; }
.page-hero--speed {
  position: relative;
  overflow: hidden;
  background-color: #0a1628;
  background-image: url('/uploads/connection.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 4rem 0;
}
.page-hero--speed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
  z-index: 0;
}
.page-hero--speed .container { position: relative; z-index: 1; }
.page-hero--about {
  position: relative;
  overflow: hidden;
  background-color: #0a1628;
  background-image: url('/uploads/connection.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 4rem 0;
}
.page-hero--contact,
.page-hero--offers {
  position: relative;
  overflow: hidden;
  background-color: #0a1628;
  background-image: url('/uploads/connection.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 4rem 0;
}
.page-hero--about::before,
.page-hero--contact::before,
.page-hero--offers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
  z-index: 0;
}
.page-hero--about .container,
.page-hero--contact .container,
.page-hero--offers .container { position: relative; z-index: 1; }
@media (min-width: 992px) {
  .page-hero--speed,
  .page-hero--about,
  .page-hero--contact,
  .page-hero--offers {
    background-size: 115% auto;
    background-position: center -2.5rem;
  }
}

/* About page — Aichgati-style sections */
.about-intro__title { max-width: 800px; margin: 0 auto 1rem; }
.about-intro__text {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #555;
}
.about-highlights { gap: 1.5rem; margin-top: 1rem; }
.about-card {
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
}
.about-card h3 { color: var(--color-accent); font-size: 1.25rem; margin: 0 0 .75rem; }
.about-card p { margin: 0; color: #555; line-height: 1.65; }
.about-mvv__card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--color-accent);
}
.about-mvv__card img {
  margin: 0 auto 1rem;
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(90%) saturate(2000%) hue-rotate(195deg);
}
.about-mvv__card h3 { font-size: 1.2rem; margin: 0 0 .65rem; }
.about-mvv__card p { margin: 0; color: #555; font-size: .95rem; line-height: 1.65; }
.about-why .section__lead { margin-bottom: 2rem; }
.about-why__split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.75rem;
  align-items: center;
}
.about-why__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(8, 30, 55, .12);
  background: #0a1628;
}
.about-why__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.about-why__content h2 {
  margin: 0 0 .85rem;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  color: var(--color-heading);
  line-height: 1.3;
}
.about-why__lead {
  margin: 0 0 1.75rem;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.about-why__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: flex-start;
}
.about-why__symbol {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(26, 115, 232, .28);
}
.about-why__item h3 {
  margin: 0 0 .35rem;
  font-size: 1.15rem;
  color: var(--color-heading);
}
.about-why__item p {
  margin: 0;
  color: #666;
  font-size: .95rem;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .about-why__split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .about-why__media img { min-height: 260px; }
}

.about-license__grid { gap: 1.25rem; margin-top: 1.5rem; }
.about-license__item {
  background: #fff;
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-muted);
}
.about-license__item h5 {
  margin: 0 0 .5rem;
  color: var(--color-accent);
  font-size: .95rem;
  font-weight: 700;
}
.about-license__item p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-heading);
  word-break: break-word;
}
.support-section--compact { padding: 3.5rem 0 4.5rem; }

.service-card--aich { text-align: left; padding: 2rem 1.75rem; }
.service-card--aich img { width: 52px; height: 52px; margin: 0 0 1rem; }
.service-card--aich h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.service-card--aich p { margin: 0; font-size: .95rem; color: #666; line-height: 1.6; }
.service-grid { gap: 1.5rem; }

/* Steps */
.steps-grid { gap: 1.5rem; margin-top: 2rem; }
.step-card { text-align: center; padding: 1.5rem 1rem; }
.step-card__num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--color-accent); color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.step-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step-card p { font-size: .9rem; color: #666; margin: 0; line-height: 1.5; }

/* Reviews */
.reviews-rating { margin-bottom: 2rem; font-size: 1.1rem; color: var(--color-heading); }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 1.25rem; }
.testimonial--aich { border-left: none; border-top: 3px solid var(--color-accent); text-align: center; }
.cta-banner--support { padding: 5rem 0; }
.cta-support__eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; opacity: .85; margin-bottom: .5rem; }
.cta-support h2 { color: #fff; margin-bottom: 1.5rem; font-size: clamp(1.5rem, 3vw, 2.25rem); }

/* Sections */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--alt { background: var(--color-card); }
.section__title { margin-bottom: 2rem; }
.section__lead { font-size: 1.125rem; color: #666; max-width: 640px; margin: 0 auto 2rem; }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature-card, .service-card, .offer-card {
  background: var(--color-light);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover, .service-card:hover, .offer-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(8,30,55,.12); }
.feature-card__icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: #eef0ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.feature-card img, .service-card img { margin: 0 auto 1rem; }
.service-card img { width: 56px; height: 56px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split__media--card { position: relative; background: linear-gradient(135deg, #1a73e8, #4b91f1); border-radius: var(--radius); padding: 2rem; text-align: center; }
.split__media--card img { margin: 0 auto; max-width: 280px; filter: brightness(0) invert(1); opacity: .9; }
.split__card-caption { color: #fff; margin-top: 1rem; font-weight: 600; }
.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: .85rem; line-height: 1.5; }
.check-list img { width: 20px; height: 20px; flex-shrink: 0; margin-top: .15rem; }

.promo-block { padding: 0 0 4rem; }
.promo-block__inner { background: linear-gradient(90deg, #1a73e8, #4b91f1); border-radius: var(--radius); padding: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; color: #fff; }
.promo-block h2 { color: #fff; margin-bottom: .35rem; }
.promo-block p { margin: 0; opacity: .9; }
.promo-block__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

.cta-banner { background: linear-gradient(90deg, #1a73e8, #4b91f1); color: #fff; padding: 4rem 0; }
.cta-banner h2 { color: #fff; }
.cta-banner__inner { text-align: center; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

.service-detail { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.04); }
.service-detail__icon { width: 52px; height: 52px; margin-bottom: 1rem; }
.service-detail-grid { gap: 2rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-info { background: var(--color-card); border-radius: var(--radius); padding: 2rem; }
.contact-info__list { list-style: none; padding: 0; margin: 1rem 0 0; }
.contact-info__list li { margin-bottom: 1.25rem; }
.contact-info__list strong { display: block; color: var(--color-heading); margin-bottom: .25rem; }
.contact-info__note { font-size: .9rem; color: #666; margin-top: 1.5rem; }
.contact-info__illus { max-width: 120px; margin-top: 1rem; opacity: .7; }

.contact-help .section__lead { margin-bottom: 2rem; }
.contact-help__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  margin-top: .5rem;
  align-items: stretch;
}
.contact-badge {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.15rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(8, 30, 55, .08);
  border: 1px solid rgba(26, 115, 232, .12);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(8, 30, 55, .12);
  border-color: rgba(26, 115, 232, .35);
}
.contact-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8f1ff, #d6e7ff);
  color: var(--color-accent);
  margin-bottom: .9rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(26, 115, 232, .15);
}
.contact-badge__title {
  margin: 0 0 .65rem;
  color: var(--color-accent);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.contact-badge__body {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
  margin-bottom: .75rem;
}
.contact-badge__body p {
  margin: 0;
  color: var(--color-heading);
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.45;
}
.contact-badge__body a {
  color: var(--color-heading);
  text-decoration: none;
  word-break: break-word;
}
.contact-badge__body a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}
.contact-badge--email .contact-badge__body a {
  font-size: .9rem;
  letter-spacing: -0.02em;
  word-break: break-all;
}
.contact-badge__meta {
  margin: 0;
  margin-top: auto;
  padding-top: .65rem;
  border-top: 1px dashed rgba(0, 0, 0, .08);
  width: 100%;
  font-size: .82rem;
  font-weight: 500;
  color: #777;
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .contact-help__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .contact-help__grid { grid-template-columns: 1fr; }
}

.contact-branches__grid { gap: 1.5rem; margin-top: 1.75rem; }
.contact-branch {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-muted);
}
.contact-branch h3 { margin: 0 0 1rem; color: var(--color-heading); font-size: 1.2rem; }
.contact-branch p { margin: 0 0 .55rem; color: #444; line-height: 1.55; }
.contact-form-section__inner { max-width: 640px; margin: 0 auto; }
.contact-form-section__intro { text-align: center; margin-bottom: 1.75rem; }
.contact-form-section__intro h2 { margin-bottom: .5rem; }
.contact-form-section__intro p { margin: 0; color: #666; }

.contact-form { max-width: 100%; margin: 0; background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: block; margin-bottom: 1rem; font-weight: 500; color: var(--color-heading); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid #ddd; border-radius: 8px; font: inherit; margin-top: .35rem;
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-accent); }

.alert { padding: 1rem; border-radius: 8px; margin-bottom: 1rem; }
.alert-success { background: #d4edda; color: #155724; }
.alert-error { background: #f8d7da; color: #721c24; }

/* Offers — Aichgati-style 3-card grid */
.section--offers { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.offers-promo-grid {
  gap: 1.75rem;
  align-items: stretch;
}
.offers-promo {
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.offers-promo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(8,30,55,.12);
  border-color: rgba(26,115,232,.3);
}
.offers-promo__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #eef3f8;
  overflow: hidden;
}
.offers-promo__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.offers-promo:hover .offers-promo__img { transform: scale(1.04); }
.offers-promo__body {
  padding: 1.35rem 1.35rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.offers-promo__title {
  margin: 0 0 .75rem;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 700;
}
.offers-promo__title a { color: var(--color-accent); text-decoration: none; }
.offers-promo__title a:hover { color: var(--color-accent-dark); text-decoration: underline; }
.offers-promo__excerpt {
  margin: 0;
  color: #666;
  font-size: .95rem;
  line-height: 1.65;
}
.offers-promo__link {
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}
.offers-promo__link:hover { text-decoration: underline; }

.offers-promo-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.breadcrumb--light { color: rgba(255,255,255,.75); margin-bottom: .75rem; font-size: .9rem; }
.breadcrumb--light a { color: #fff; text-decoration: none; opacity: .9; }
.breadcrumb--light a:hover { text-decoration: underline; opacity: 1; }

.offer-detail {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-muted);
}
.offer-detail__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 0 1.5rem;
}
.offer-detail__body { font-size: 1.05rem; line-height: 1.75; color: #444; }
.offer-detail__body ul { padding-left: 1.25rem; margin: 1rem 0; }
.offer-detail__body li { margin-bottom: .45rem; }
.offer-detail__footer {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.offers-grid { gap: 2rem; }
.offer-card { text-align: left; position: relative; }
.offer-card__badge { position: absolute; top: 1rem; right: 1rem; background: var(--color-accent); color: #fff; font-size: .7rem; padding: .2rem .55rem; border-radius: 999px; font-weight: 700; }
.offer-card h2 { font-size: 1.35rem; margin-bottom: .5rem; margin-top: .5rem; }
.offer-card--single { max-width: 760px; margin: 0 auto; }
.offer-card__excerpt--lead { font-size: 1.15rem; }
.offer-card__body ul { padding-left: 1.25rem; }
.offer-card__footer { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #eee; }

/* Testimonials */
.testimonial { background: var(--color-light); border-radius: var(--radius); padding: 1.5rem; margin: 0; box-shadow: var(--shadow); border-left: 4px solid var(--color-accent); text-align: left; }
.testimonial p { font-style: italic; margin: 0 0 1rem; color: #444; line-height: 1.6; }
.testimonial cite { font-size: .875rem; color: var(--color-accent); font-style: normal; font-weight: 600; }

/* Offer detail pricing block */
.offer-pricing { background: var(--color-card); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; border: 1px solid var(--color-muted); }
.offer-pricing__speed { font-size: 1.5rem; margin: 0 0 .25rem; color: var(--color-heading); }
.offer-pricing__note { margin: 0; color: #666; }
.check-list--spaced { margin: 1.5rem 0 2rem; }
.offer-card h2 a { color: var(--color-heading); }
.offer-card h2 a:hover { color: var(--color-accent); text-decoration: none; }
.offer-card__thumb { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; background: var(--color-card); }

/* Footer — dark default (inner pages) */
.site-footer:not(.site-footer--light) { background: var(--color-primary); color: #bbb; margin-top: auto; }
.site-footer:not(.site-footer--light) a { color: #fff; }
.site-footer:not(.site-footer--light) .site-footer__logo img { filter: brightness(0) invert(1); }
.site-footer { margin-top: auto; }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; padding: 3rem 0 2rem; }
.site-footer__heading { color: var(--color-hover); display: block; margin-bottom: .75rem; font-size: 1rem; }
.site-footer__links ul { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { margin-bottom: .5rem; }
.site-footer__logo { display: inline-block; margin-bottom: .75rem; }
.site-footer__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 56px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.site-footer__badges { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.site-footer__badges-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.25rem; }
.site-footer__badges img { height: 40px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }
.site-footer__inner--aich { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0 2rem; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: .45rem; }
.site-footer__tagline { color: #ccc; font-size: .9rem; margin: .5rem 0; }
.site-footer__desc { font-size: .875rem; line-height: 1.6; color: #999; max-width: 280px; }
.site-footer__credit { display: block; margin-top: .35rem; font-size: .9rem; color: #666; font-weight: 600; }
.site-footer--light .site-footer__credit { display: inline; margin-top: 0; color: #555; font-weight: 500; }
.site-footer__copy { border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0; font-size: .875rem; text-align: center; color: #888; }

.page-content { line-height: 1.75; }

/* Speed test — Meter.net embed (Aichgati-style) */
.speed-test-section { padding-top: 2.5rem; }
.speed-test-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 .75rem;
  color: var(--color-heading);
}
.speed-test-section__lead {
  color: #666;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.speed-test-embed {
  max-width: 960px;
  margin: 0 auto 1rem;
}
.speed-test-embed__frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  min-height: 360px;
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.speed-test-embed__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  overflow: hidden;
}
.speed-test-embed__credit {
  margin: 0 0 2rem;
  font-size: .9rem;
}
.speed-test-embed__credit a { color: var(--color-accent); }
.speed-test-note {
  background: var(--color-card);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--color-accent);
}
.speed-test-note p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .speed-test-embed__frame {
    padding-bottom: 75%;
    min-height: 420px;
  }
}
.breadcrumb { font-size: .875rem; margin-bottom: 1rem; color: #888; }
.breadcrumb a { color: var(--color-accent); }

@media (max-width: 1100px) {
  .site-nav__link { font-size: 16px; }
  .site-nav__item + .site-nav__item { margin-left: 18px; }
  .btn.btn--header, .btn--header { padding: 10px 14px; font-size: 16px; }
  .site-logo { max-width: 150px; }
  .site-logo__img, img.site-logo__img { max-height: 44px; max-width: 150px; }
}

@media (max-width: 992px) {
  .grid--4, .features-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .features-bar__item:nth-child(2n)::after { display: none; }
  .features-bar__item:nth-child(-n+2) { padding-bottom: 1rem; }
  .features-bar__panel { padding: 1.35rem 1rem; border-radius: 10px; }
  .features-bar__item img { width: 48px; height: 48px; }
  .features-bar__item h5 { font-size: 1.05rem; }
  .connect-split { grid-template-columns: 1fr; }
  .site-footer__inner--aich { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .site-header__inner {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .site-nav { order: 3; width: 100%; flex: none; }
  .site-header__actions { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-muted);
    display: none;
    padding: 1rem;
    box-shadow: var(--shadow);
    justify-content: flex-start;
  }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .site-nav__item + .site-nav__item { margin-left: 0; }
  .site-header__inner { position: relative; }
}

@media (max-width: 768px) {
  .grid--4, .grid--3, .grid--2, .split, .site-footer__inner, .site-footer__inner--aich, .contact-grid, .promo-block__inner, .features-bar__grid, .connect-split, .pricing-section__body { grid-template-columns: 1fr; flex-direction: column; }
  .features-bar__item::after { display: none; }
  .pricing-section__head { padding-bottom: 4rem; }
  .pricing-section__body { margin-top: -2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .top-bar__inner { justify-content: center; text-align: center; }
  .connect-split__img,
  img.connect-split__img {
    width: 100% !important;
    height: 280px !important;
    max-height: 280px !important;
    aspect-ratio: auto !important;
  }
}

@media (max-width: 478px) {
  .hero { min-height: 420px; padding: 3.5rem 0; }
  .hero__inner { padding-inline: 1.25rem; width: 100%; }
  .site-logo { max-width: 130px; }
  .site-logo__img, img.site-logo__img { max-height: 40px; max-width: 130px; }
  .features-bar { margin-top: -1.5rem; }
  .features-bar__item h5 { font-size: 1.05rem; }
  .features-bar__item img { width: 44px; height: 44px; }
  .btn.btn--header, .btn--header { font-size: 16px; padding: 10px; }
}
