:root {
  color-scheme: light;
  --bg: #f1f5f9;
  --bg-alt: #e8eef6;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-dark: #0b1628;
  --surface-darker: #07111f;
  --surface-deep: #0f172a;
  --border: #cbd5e1;
  --border-dark: rgba(148, 163, 184, 0.22);
  --text: #0f172a;
  --text-soft: #475569;
  --text-on-dark: #f8fafc;
  --text-on-dark-soft: rgba(248, 250, 252, 0.75);
  --accent: #2563eb;
  --accent-2: #22d3ee;
  --accent-3: #60a5fa;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 24px 80px rgba(7, 17, 31, 0.35);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.11), transparent 25%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--surface-solid);
  color: var(--text);
  border: 1px solid var(--border);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(18px);
  background: rgba(248, 250, 252, 0.76);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.92);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 26px rgba(37, 99, 235, 0.35);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark span {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  transform: rotate(12deg);
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 24rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--border);
  background: var(--surface-solid);
  color: var(--text);
  border-radius: 999px;
  padding: 0.75rem 1rem;
}

.nav-toggle-bars {
  position: relative;
  width: 18px;
  height: 12px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars {
  display: block;
  background: transparent;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease, box-shadow 0.25s ease;
}

.nav-toggle-bars::before {
  top: 0;
  box-shadow: 0 5px 0 currentColor;
}

.nav-toggle-bars::after {
  top: 10px;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(37, 99, 235, 0.08);
  color: var(--text);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  color: white !important;
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.25);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.section--dark {
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.1), transparent 22%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.12), transparent 24%),
    linear-gradient(180deg, var(--surface-darker), var(--surface-deep));
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 86%);
  pointer-events: none;
}

.section--light {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(241, 245, 249, 0.95), rgba(241, 245, 249, 0.78));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section--dark .eyebrow {
  color: var(--accent-2);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.hero-copy h1,
.split-copy h2,
.final-cta h2 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.06;
  letter-spacing: -0.05em;
  margin: 0;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.hero-lead,
.split-copy > p,
.contact-copy > p {
  font-size: 1.05rem;
  color: var(--text-soft);
}

.section--dark .section-heading p,
.section--dark .split-copy > p,
.section--dark .contact-copy > p {
  color: var(--text-on-dark-soft);
}

.section-heading--dark h2 {
  color: var(--text-on-dark);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.75;
}

.orb-a {
  width: 32rem;
  height: 32rem;
  right: -10rem;
  top: -8rem;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), rgba(37, 99, 235, 0));
}

.orb-b {
  width: 26rem;
  height: 26rem;
  left: -8rem;
  bottom: -9rem;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), rgba(37, 99, 235, 0));
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 85%);
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  z-index: 1;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 12ch;
}

.hero-lead {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  color: rgba(248, 250, 252, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), #1d4ed8);
  color: white;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.28);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.09);
}

.button--tertiary {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(148, 163, 184, 0.3);
}

.button--tertiary:hover,
.button--tertiary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.button--full {
  width: 100%;
}

.hero-tags {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-tags li {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(248, 250, 252, 0.84);
  font-size: 0.92rem;
}

.hero-note {
  margin-top: 1.8rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.36);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(248, 250, 252, 0.85);
  display: inline-flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero-note strong {
  color: white;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.dashboard-card,
.info-panel,
.security-panel,
.performance-panel,
.reasons-panel {
  width: 100%;
  border-radius: var(--radius-xl);
}

.dashboard-card {
  max-width: 560px;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(7, 17, 31, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.1), transparent 36%);
  pointer-events: none;
}

.dashboard-top,
.dashboard-score,
.progress-block,
.info-panel__header,
.security-summary,
.final-cta,
.contact-highlights,
.review-card,
.package-card,
.process-step,
.service-card,
.benefit-card,
.metric-card,
.performance-card,
.reason-card,
.info-card,
.faq-item,
.contact-form,
.quick-contact__button,
.mobile-contact-bar a {
  position: relative;
  z-index: 1;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.dashboard-label,
.dashboard-status {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dashboard-label {
  color: rgba(248, 250, 252, 0.72);
}

.dashboard-status {
  color: var(--accent-2);
}

.dashboard-score {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.dashboard-score p,
.metric-card p,
.performance-card p,
.before-after__col span,
.package-label,
.price-label,
.process-step span,
.info-card span,
.security-summary span,
.review-card strong {
  margin: 0;
}

.dashboard-score p {
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.95rem;
}

.dashboard-score strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.status-pill {
  flex: 0 0 auto;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.status-pill--accent {
  color: white;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(34, 211, 238, 0.8));
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.metric-card p {
  color: rgba(248, 250, 252, 0.68);
  font-size: 0.86rem;
}

.metric-card strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.98rem;
}

.metric-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(34, 211, 238, 0.18));
  border: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 1.05rem;
}

.progress-block {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.progress-block__header {
  display: flex;
  justify-content: space-between;
  color: rgba(248, 250, 252, 0.74);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.progress-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.9rem;
  align-items: center;
}

.progress-row + .progress-row {
  margin-top: 0.8rem;
}

.progress-label {
  color: rgba(248, 250, 252, 0.76);
  font-size: 0.94rem;
}

.progress-track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  border-radius: inherit;
}

.progress-fill--before {
  width: 38%;
  background: rgba(148, 163, 184, 0.28);
}

.progress-fill--after {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.progress-fill.short {
  width: 24%;
}

.progress-fill.medium {
  width: 31%;
}

.progress-fill.long {
  left: 24%;
  width: 64%;
}

.progress-fill.longer {
  left: 31%;
  width: 55%;
}

.benefit-grid,
.service-grid,
.review-grid,
.package-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

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

.benefit-card,
.service-card,
.review-card,
.package-card,
.process-step,
.reason-card,
.performance-card,
.info-card,
.faq-item {
  border-radius: var(--radius-lg);
}

.benefit-card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.benefit-card:hover,
.service-card:hover,
.review-card:hover,
.package-card:hover,
.process-step:hover,
.reason-card:hover,
.performance-card:hover,
.info-card:hover {
  transform: translateY(-4px);
}

.benefit-card span,
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.12));
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.benefit-card h3,
.service-card h3,
.package-card h3,
.process-step h3,
.reason-card h3,
.performance-card strong,
.review-card strong,
.info-card h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
}

.benefit-card h3 {
  font-size: 1.18rem;
}

.benefit-card p,
.service-card p,
.review-card p,
.package-card li,
.process-step p,
.reason-card p,
.info-card p,
.performance-card strong,
.before-after__col p,
.faq-item p {
  color: var(--text-soft);
  margin: 0;
}

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

.service-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.service-icon {
  margin-bottom: 1rem;
  color: var(--text-on-dark);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.45), rgba(34, 211, 238, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card h3,
.package-card h3,
.review-card strong,
.reason-card h3,
.info-card h3 {
  color: var(--text-on-dark);
}

.service-card p {
  color: rgba(248, 250, 252, 0.72);
  margin-bottom: 1rem;
}

.service-card a {
  color: var(--accent-2);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.split-layout--reverse .split-copy {
  order: 2;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--text-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.section--dark .check-list li {
  color: rgba(248, 250, 252, 0.8);
}

.section--dark .check-list li::before {
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
}

.info-panel {
  padding: 1.2rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-panel__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.3rem 1rem;
  color: var(--text-soft);
  font-weight: 700;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.09);
}

.info-stack {
  display: grid;
  gap: 0.9rem;
}

.info-card {
  display: flex;
  gap: 0.95rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.92), rgba(255, 255, 255, 0.96));
  border: 1px solid var(--border);
}

.info-card span {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 800;
  flex: 0 0 auto;
}

.info-card h3 {
  color: var(--text);
  font-size: 1.02rem;
}

.info-card p {
  color: var(--text-soft);
}

.security-panel {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.shield-visual {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.shield-core {
  position: relative;
  z-index: 2;
  width: 42%;
  aspect-ratio: 1 / 1.2;
  display: grid;
  place-items: center;
  border-radius: 28px 28px 38px 38px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35), rgba(7, 17, 31, 0.8));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 30px 60px rgba(7, 17, 31, 0.38);
  color: white;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.06), transparent 60%),
    transparent;
}

.shield-ring--one {
  inset: 10%;
}

.shield-ring--two {
  inset: 22%;
}

.shield-ring--three {
  inset: 34%;
}

.security-summary {
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.security-summary article {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.16);
  text-align: center;
}

.security-summary strong {
  display: block;
  color: white;
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin-bottom: 0.25rem;
}

.performance-panel {
  display: grid;
  gap: 1rem;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.performance-card {
  padding: 1.1rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.performance-card span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.16));
  margin-bottom: 0.9rem;
  font-size: 1.25rem;
}

.performance-card p {
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.performance-card strong {
  font-size: 1rem;
  color: var(--text);
}

.before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 10px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(241, 245, 249, 0.92));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.before-after__col {
  padding: 0.8rem;
}

.before-after__col span {
  display: inline-flex;
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-after__divider {
  width: 10px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.2), rgba(34, 211, 238, 0.85));
}

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

.package-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 100%;
}

.package-card--featured {
  background:
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(34, 211, 238, 0.35);
  transform: translateY(-8px);
}

.package-badge {
  align-self: flex-start;
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--surface-darker);
  background: linear-gradient(135deg, var(--accent-2), #a5f3fc);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-card__top h3 {
  font-size: 1.5rem;
}

.package-label {
  color: var(--accent-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.price-label {
  margin-top: 0.6rem;
  color: rgba(248, 250, 252, 0.72);
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: rgba(248, 250, 252, 0.82);
}

.package-card li {
  position: relative;
  padding-left: 1.4rem;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

.process-step {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.reason-card {
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.reasons-panel {
  display: grid;
  gap: 0.95rem;
}

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

.review-card {
  padding: 1.35rem;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.review-card .stars {
  color: #f59e0b;
  letter-spacing: 0.12em;
}

.review-card p {
  font-size: 1rem;
}

.review-card strong {
  color: var(--text);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0;
  overflow: clip;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.2rem;
  font-weight: 700;
  color: var(--text-on-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(148, 163, 184, 0.14);
  color: var(--accent-2);
  font-size: 1.1rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.2rem 1.2rem;
  color: rgba(248, 250, 252, 0.76);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3.6vw, 3rem);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 12ch;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.quick-contact__button {
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.quick-contact__button--whatsapp {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: white;
}

.quick-contact__button--call {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: white;
}

.quick-contact__button--email {
  background: linear-gradient(135deg, #0f172a, #334155);
  color: white;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-highlights article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}

.contact-highlights strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.contact-highlights span {
  color: var(--text-soft);
}

.contact-form {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: var(--accent);
  font-weight: 700;
}

.final-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 18ch;
}

.site-footer {
  padding: 1.3rem 0 7rem;
  background: var(--surface-darker);
  color: rgba(248, 250, 252, 0.74);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
}

.mobile-contact-bar {
  position: fixed;
  inset: auto 0 0;
  display: none;
  z-index: 220;
  padding: 0.75rem;
  background: rgba(7, 17, 31, 0.84);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  gap: 0.7rem;
}

.mobile-contact-bar a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-contact-bar a:nth-child(1) {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

.mobile-contact-bar a:nth-child(2) {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.mobile-contact-bar a:nth-child(3) {
  background: linear-gradient(135deg, #334155, #0f172a);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse .split-copy {
    order: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .dashboard-card {
    max-width: 100%;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .benefit-grid,
  .service-grid,
  .review-grid,
  .package-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-height) - 8px);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(248, 250, 252, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: var(--shadow);
    transform-origin: top center;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .security-summary,
  .contact-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand-copy span {
    max-width: 12rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .section-heading h2,
  .split-copy h2,
  .contact-copy h2,
  .final-cta h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .benefit-grid,
  .service-grid,
  .review-grid,
  .package-grid,
  .process-grid,
  .form-grid,
  .performance-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .progress-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after__divider {
    width: 100%;
    height: 8px;
  }

  .package-card--featured {
    transform: none;
  }

  .quick-contact,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .quick-contact__button {
    width: 100%;
  }

  .mobile-contact-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 8.6rem;
  }
}

@media (max-width: 520px) {
  .site-nav {
    left: 0.6rem;
    right: 0.6rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 1rem;
  }

  .dashboard-card,
  .contact-form,
  .benefit-card,
  .process-step,
  .review-card,
  .package-card,
  .service-card,
  .info-panel,
  .before-after,
  .final-cta {
    border-radius: 22px;
  }
}
