/* ─────────────────────────────────────────────
   COMMVIO — Header, Footer & Page Sections
   ───────────────────────────────────────────── */

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--dur) var(--ease);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.header__logo {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.header__logo span { color: var(--c-accent); }
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
.header__link {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--c-subtext);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.header__link:hover,
.header__link.is-active {
  color: var(--c-text);
}
.header__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-accent);
  border-radius: 1px;
}
.header__lang {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: var(--r-full);
  transition: all var(--dur) var(--ease);
}
.header__lang:hover {
  background: var(--c-accent);
  color: var(--c-white);
}
.header__cta {
  display: none;
}
@media (min-width: 769px) {
  .header__cta { display: inline-flex; }
}

/* Mobile menu */
.header__burger {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
@media (max-width: 768px) {
  .header__burger { display: flex; }
  .header__nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-8);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease-out);
  }
  .header__nav.is-open {
    transform: translateX(0);
  }
  .header__link {
    font-size: var(--fs-h3);
  }
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: calc(56px + var(--sp-section)) 0 var(--sp-section);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
}
.hero__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  max-width: 14ch;
  margin: 0 auto;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--c-subtext);
  max-width: 520px;
  margin: 0 auto;
}
.hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}
.hero--sm {
  min-height: 50vh;
  padding-top: calc(56px + var(--sp-10));
}

/* ── Band (Typography only) ── */
.band {
  padding: var(--sp-section) 0;
  text-align: center;
}
.band__text {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  max-width: 18ch;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--c-text) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CTA Band ── */
.cta-band {
  background: var(--c-surface);
  padding: var(--sp-section) 0;
  text-align: center;
}
.cta-band__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
}
.cta-band__sub {
  color: var(--c-subtext);
  margin-bottom: var(--sp-6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-8);
}
.section-header__sub {
  color: var(--c-accent);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}
.section-header__title {
  margin-bottom: var(--sp-3);
}
.section-header__desc {
  color: var(--c-subtext);
}

/* ── Footer ── */
.footer {
  background: var(--c-surface);
  padding: var(--sp-section) 0 var(--sp-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand {
  max-width: 280px;
}
.footer__brand-name {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
}
.footer__brand-name span { color: var(--c-accent); }
.footer__brand-desc {
  color: var(--c-subtext);
  font-size: var(--fs-small);
}
.footer__col-title {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__link {
  font-size: var(--fs-small);
  color: var(--c-subtext);
  transition: color var(--dur) var(--ease);
}
.footer__link:hover { color: var(--c-accent); }
.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--fs-pill);
  color: var(--c-subtext);
}

/* ── Service Detail: What You Get ── */
.what-you-get {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
@media (max-width: 640px) {
  .what-you-get { grid-template-columns: 1fr; }
}
.what-you-get__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.what-you-get__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,113,227,0.10);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.what-you-get__text h4 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-1);
}
.what-you-get__text p {
  font-size: var(--fs-small);
  color: var(--c-subtext);
}

/* ── Timeline ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  position: relative;
  padding-left: var(--sp-8);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}
.timeline__item {
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-8) + 6px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  border: 3px solid var(--c-bg);
}
.timeline__item-title {
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-1);
}
.timeline__item-desc {
  font-size: var(--fs-small);
  color: var(--c-subtext);
}

/* ── Contact Info ── */
.contact-info {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,113,227,0.10);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: var(--fs-pill);
  color: var(--c-subtext);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info__value {
  font-weight: var(--fw-semibold);
}
.contact-info__value a {
  color: var(--c-accent);
  transition: opacity var(--dur) var(--ease);
}
.contact-info__value a:hover { opacity: 0.7; }
