:root {
  --bg: #070909;
  --surface: #101211;
  --surface-raised: #151716;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.19);
  --text: #f3f4f0;
  --muted: #898d88;
  --muted-2: #7b807a;
  --lime: #9af12e;
  --lime-soft: rgba(154, 241, 46, 0.08);
  --orange: #ff9b42;
  --red: #f05258;
  --blue: #42a5ff;
  --shell: 1120px;
  --serif: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: repeat;
  will-change: background-position;
}

body::before {
  opacity: 0.1;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.25px),
    radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 0.7px, transparent 1px);
  background-size: 173px 211px, 257px 293px;
  background-position: 21px -211px, 103px -293px;
  animation: snow-a 38s linear infinite;
}

body::after {
  opacity: 0.055;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.62) 0 0.85px, transparent 1.15px);
  background-size: 311px 347px;
  background-position: 177px -347px;
  animation: snow-b 56s linear infinite;
}

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

main:focus {
  outline: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 9px 13px;
  border-radius: 8px;
  background: var(--lime);
  color: #10130d;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(154, 241, 46, 0.42);
  border-radius: 9px;
  background: var(--lime-soft);
  color: var(--lime);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 750;
}

.hero {
  min-height: 0;
  display: flex;
  align-items: center;
  padding-block: 70px 64px;
}

.hero-copy {
  max-width: 910px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 9px;
  color: var(--lime);
}

h1,
h2,
h3,
h4,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.5vw, 5.75rem);
  font-weight: 750;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

h1 em {
  color: var(--lime);
  font-style: normal;
  font-weight: 750;
}

.hero-lead {
  max-width: 630px;
  margin: 22px 0 18px;
  color: #a6aaa4;
  font-size: 16px;
  line-height: 1.65;
}

.services {
  padding-block: 62px 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.section-heading,
.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.section-heading > p,
.panel-heading > p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-tab {
  min-height: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.tab-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.service-tab:nth-child(3) .tab-icon {
  width: 44px;
}

.tab-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.tab-copy strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 720;
}

.tab-copy small {
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}

.service-tab:nth-child(1).is-active {
  border-color: rgba(240, 82, 88, 0.55);
}

.service-tab:nth-child(2).is-active {
  border-color: rgba(66, 165, 255, 0.55);
}

.service-tab:nth-child(3).is-active {
  border-color: rgba(154, 241, 46, 0.5);
}

.service-tab:hover {
  border-color: var(--line-strong);
  color: var(--text);
}

.service-tab.is-active {
  color: var(--text);
}

.service-tab:focus-visible,
.card-link:focus-visible,
.brand:focus-visible,
.footer-contact:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.service-panel {
  --panel-accent: var(--lime);
  padding-top: 46px;
}

.service-panel--gmail {
  --panel-accent: var(--red);
}

.service-panel--outlook {
  --panel-accent: var(--blue);
}

.service-panel--seo {
  --panel-accent: var(--lime);
}

.panel-heading {
  margin-bottom: 28px;
}

.service-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 14px;
  margin-bottom: 28px;
}

.service-brief--single {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin-inline: auto;
}

.brief-block {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.brief-block--warning {
  border-color: rgba(255, 155, 66, 0.2);
  background: rgba(255, 155, 66, 0.045);
}

.brief-title {
  margin: 0 0 14px;
  color: var(--panel-accent);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-block--warning .brief-title {
  color: var(--orange);
}

.brief-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #b7bbb5;
  font-size: 13px;
  list-style: none;
}

.brief-list li {
  display: flex;
  gap: 9px;
}

.brief-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  margin-top: 6px;
  border-radius: 99px;
  background: var(--panel-accent);
}

.brief-block--warning .brief-list li::before {
  background: var(--orange);
}

.brief-list--icons li::before {
  content: none;
}

.detail-icon {
  width: 22px;
  flex: 0 0 22px;
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
}

.panel-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.panel-logo {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.panel-logo--maps {
  height: 19px;
}

.panel-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 180ms ease;
}

.service-card:hover {
  border-color: var(--line-strong);
}

.service-card--featured {
  border-color: color-mix(in srgb, var(--panel-accent) 32%, var(--line));
  background: var(--surface);
}

.card-service-logo {
  width: 48px;
  height: 48px;
  display: block;
  margin-inline: auto;
  object-fit: contain;
}

.service-card h4 {
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 720;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-align: center;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 0;
  padding: 10px 14px;
  border: 1px solid rgba(154, 241, 46, 0.22);
  border-radius: 10px;
  background: var(--lime-soft);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease;
}

.card-link:hover {
  border-color: rgba(154, 241, 46, 0.42);
  background: rgba(154, 241, 46, 0.11);
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.card-price {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding: 22px 0 14px;
  border-top: 1px solid var(--line);
}

.card-price span {
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-price strong {
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 750;
  line-height: 1;
  text-align: center;
}

.seo-contact-card {
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 44px;
  margin-inline: auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.seo-contact-card__text {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.seo-contact-card__link {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid #b5ff5a;
  border-radius: 11px;
  background: var(--lime);
  color: #10120e;
  font-size: 16px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.seo-contact-card__link:hover {
  background: #a7f548;
  border-color: #c2ff76;
}

.seo-contact-card__link .whatsapp-icon {
  width: 23px;
  height: 23px;
  flex: none;
  filter: brightness(0) saturate(100%);
  opacity: 0.82;
}

.seo-contact-card__link:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 3px;
}

@keyframes snow-a {
  to {
    background-position: 39px 1055px, 86px 1172px;
  }
}

@keyframes snow-b {
  to {
    background-position: 157px 1041px;
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.footer-contact {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 9px 18px;
  border: 1px solid #b5ff5a;
  border-radius: 11px;
  background: var(--lime);
  color: #10120e;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.footer-contact:hover {
  border-color: #c2ff76;
  background: #a7f548;
}

.footer-contact .whatsapp-icon {
  width: 22px;
  height: 22px;
  flex: none;
  filter: brightness(0) saturate(100%);
  opacity: 0.82;
}

.footer-contact__copy {
  display: grid;
  gap: 2px;
  letter-spacing: 0;
}

.footer-contact__copy strong {
  font-size: 14px;
  font-weight: 780;
  line-height: 1.15;
}

.footer-contact:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero {
    padding-block: 56px 50px;
  }

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

  .service-brief {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .header-inner {
    min-height: 56px;
  }

  .hero {
    padding-block: 42px 38px;
  }

  .seo-contact-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    padding: 20px 18px;
    border-radius: 12px;
  }

  .seo-contact-card__text {
    font-size: 14px;
    line-height: 1.55;
  }

  .seo-contact-card__link {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
    font-size: 15px;
  }

  body::before {
    opacity: 0.065;
    animation-duration: 46s;
  }

  body::after {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 4rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .services {
    padding-block: 44px 64px;
  }

  .section-heading,
  .panel-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .service-tab {
    justify-content: flex-start;
    min-height: 92px;
  }

  .service-panel {
    padding-top: 38px;
  }

  .service-card {
    padding: 20px;
  }

  .brand,
  .card-link {
    min-height: 44px;
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-block: 18px;
  }

  .footer-contact {
    width: 100%;
    min-height: 60px;
  }
}

@media (max-width: 430px) {
  body {
    overflow-x: clip;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 54px;
    gap: 12px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
    border-radius: 8px;
    font-size: 16px;
  }

  .hero {
    padding-block: 28px 30px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 2.8rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .hero-lead {
    margin-block: 16px 10px;
    font-size: 15px;
    line-height: 1.58;
  }

  .services {
    padding-block: 34px 56px;
  }

  .section-heading {
    gap: 11px;
    margin-bottom: 22px;
  }

  .section-heading .eyebrow {
    margin-bottom: 9px;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .section-heading > p,
  .panel-heading > p {
    font-size: 13px;
    line-height: 1.55;
  }

  .service-tabs {
    gap: 8px;
  }

  .service-tab {
    min-height: 80px;
    gap: 14px;
    padding: 14px;
  }

  .tab-icon {
    width: 52px;
    height: 52px;
  }

  .service-tab:nth-child(3) .tab-icon {
    width: 38px;
  }

  .tab-copy strong {
    font-size: 14px;
  }

  .tab-copy small {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .service-panel {
    padding-top: 32px;
  }

  .panel-heading {
    gap: 13px;
    margin-bottom: 22px;
  }

  .panel-kicker {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .panel-heading h3 {
    font-size: 2rem;
  }

  .service-brief {
    gap: 10px;
    margin-bottom: 20px;
  }

  .brief-block {
    padding: 17px 16px;
  }

  .brief-title {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .brief-list {
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
  }

  .detail-icon {
    width: 20px;
    flex-basis: 20px;
    font-size: 14px;
  }

  .card-grid {
    gap: 12px;
  }

  .service-card {
    padding: 20px;
    border-radius: 12px;
  }

  .card-service-logo {
    width: 42px;
    height: 42px;
  }

  .service-card h4 {
    margin-top: 14px;
    font-size: 20px;
  }

  .card-price {
    padding: 20px 0 10px;
  }

  .card-price span {
    font-size: 10px;
  }

  .card-price strong {
    font-size: 1.35rem;
  }

  .card-link {
    padding: 10px 14px;
    font-size: 13px;
  }

  .footer-inner {
    min-height: 78px;
    font-size: 9px;
    line-height: 1.5;
  }
}

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

  body::before,
  body::after {
    animation: none;
    opacity: 0.025;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
