﻿:root {
  --font-main: "Poppins", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ink: #101b1a;
  --ink-soft: #273735;
  --muted: #667572;
  --paper: #f5f3ed;
  --paper-strong: #e9e2d4;
  --surface: #ffffff;
  --line: rgba(23, 32, 31, 0.12);
  --line-strong: rgba(23, 32, 31, 0.2);
  --red: #d93632;
  --red-dark: #b52a28;
  --teal: #047c7a;
  --blue: #2364aa;
  --amber: #f4b93d;
  --green: #5c8f38;
  --shadow: 0 18px 50px rgba(23, 32, 31, 0.12);
  --shadow-soft: 0 10px 30px rgba(23, 32, 31, 0.08);
  --header-height: 76px;
  --site-width: 1200px;
  --site-gutter: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 27, 26, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 27, 26, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgba(16, 27, 26, 0.08);
  box-shadow: 0 8px 22px rgba(16, 27, 26, 0.06);
  backdrop-filter: none;
}

.header-inner {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: 224px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow: visible;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 10px;
  border: 1px solid rgba(16, 27, 26, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(16, 27, 26, 0.06);
  font-family: var(--font-main);
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 0;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(16, 27, 26, 0.16);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: transparent;
  color: var(--red);
  outline: none;
}
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--red), #f04b3e);
  color: #fff;
  box-shadow: 0 12px 24px rgba(217, 54, 50, 0.18);
}

.button-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-secondary:hover {
  background: var(--amber);
  color: var(--ink);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(300px, calc(100vw - 44px));
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(16, 27, 26, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(16, 27, 26, 0.22);
  outline: none;
}

.whatsapp-float-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: #25d366;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-float-icon svg {
  width: 46px;
  height: 46px;
  display: block;
}

.whatsapp-float-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.whatsapp-float-copy strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.whatsapp-float-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.scroll-top-button {
  --scroll-progress-offset: 125.66;
  --scroll-red: #c82b2b;
  position: fixed;
  right: 30px;
  bottom: 34px;
  z-index: 80;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 9px 24px rgba(16, 27, 26, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.scroll-top-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scroll-ring-track,
.scroll-ring-progress {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.scroll-ring-track {
  stroke: rgba(200, 43, 43, 0.14);
}

.scroll-ring-progress {
  stroke: var(--scroll-red);
  stroke-dasharray: 125.66;
  stroke-dashoffset: var(--scroll-progress-offset);
}

.scroll-top-icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  color: var(--scroll-red);
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  box-shadow: 0 12px 28px rgba(200, 43, 43, 0.18);
  outline: none;
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 670px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: #fff;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 52%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, rgba(245, 243, 237, 0.62) 100%);
}

.hero-scene {
  display: none;
}

.scene-panel {
  position: absolute;
  width: 270px;
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(16, 27, 26, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 20px 70px rgba(16, 27, 26, 0.08);
  opacity: 0.12;
}

.scene-panel span,
.scene-panel small {
  color: rgba(16, 27, 26, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.scene-panel strong {
  font-size: 42px;
  line-height: 1;
}

.scene-panel-a {
  right: 10%;
  top: 15%;
}

.scene-panel-b {
  right: 26%;
  bottom: 19%;
  border-color: rgba(244, 185, 61, 0.44);
}

.scene-panel-c {
  right: -16px;
  bottom: 30%;
  border-color: rgba(4, 124, 122, 0.55);
}

.chart-bars {
  height: 54px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  margin-top: 4px;
}

.chart-bars i {
  display: block;
  border-radius: 4px 4px 0 0;
  background: var(--amber);
}

.chart-bars i:nth-child(1) { height: 28%; }
.chart-bars i:nth-child(2) { height: 52%; }
.chart-bars i:nth-child(3) { height: 42%; }
.chart-bars i:nth-child(4) { height: 70%; }
.chart-bars i:nth-child(5) { height: 62%; }
.chart-bars i:nth-child(6) { height: 92%; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.mini-grid i {
  height: 30px;
  border-radius: 6px;
  background: rgba(16, 27, 26, 0.08);
}

.scene-line {
  position: absolute;
  height: 2px;
  background: var(--teal);
  opacity: 0.28;
  transform-origin: left center;
}

.scene-line-one {
  width: 300px;
  right: 27%;
  top: 45%;
  transform: rotate(-18deg);
}

.scene-line-two {
  width: 220px;
  right: 4%;
  top: 62%;
  background: var(--red);
  transform: rotate(28deg);
}

.scene-card-stack {
  position: absolute;
  right: 9%;
  bottom: 8%;
  display: grid;
  gap: 12px;
  opacity: 0.26;
}

.scene-card-stack span {
  display: block;
  width: 220px;
  height: 42px;
  border-radius: 8px;
  background: rgba(16, 27, 26, 0.06);
  border: 1px solid rgba(16, 27, 26, 0.1);
}

.hero-content {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(760px, 0.96fr) minmax(430px, 0.7fr);
  align-items: center;
  gap: 44px;
  padding: 68px 0 66px;
  color: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(217, 54, 50, 0.18);
  border-radius: 999px;
  background: rgba(217, 54, 50, 0.08);
  color: var(--red);
  font-size: 12px;
  line-height: 1;
}

.hero-content .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(217, 54, 50, 0.11);
}

.hero-content h1 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  font-family: var(--font-main);
  font-size: clamp(34px, 2.35vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: none;
  white-space: nowrap;
  text-wrap: nowrap;
}

.hero-content h1 span {
  color: var(--red);
}

.hero-tagline {
  max-width: 650px;
  margin: 22px 0 0;
  color: #263735;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 760;
  line-height: 1.18;
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel-stack {
  position: relative;
  z-index: 3;
  width: min(660px, 100%);
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel-stack::before {
  content: none;
}

.hero-composite-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 640px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(16, 27, 26, 0.1));
  animation: dashboardFloat 6.2s ease-in-out infinite;
}

@keyframes dashboardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.4deg);
  }
}

.solutions-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  border-top: 1px solid rgba(16, 27, 26, 0.08);
}

.solutions-heading {
  max-width: 900px;
  margin-bottom: 34px;
  text-align: center;
}

.solutions-heading h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.solutions-heading p:last-child {
  max-width: 820px;
  margin: 16px auto 0;
  color: var(--muted);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  min-height: 238px;
  grid-column: span 2;
  padding: 28px;
  border: 1px solid rgba(16, 27, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f7f4ed 100%);
  box-shadow: 0 18px 46px rgba(16, 27, 26, 0.08);
}

.solution-card:nth-child(4),
.solution-card:nth-child(5) {
  grid-column: span 3;
}

.solution-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.solution-card:nth-child(2) span {
  background: var(--blue);
}

.solution-card:nth-child(3) span {
  background: var(--red);
}

.solution-card:nth-child(4) span {
  background: var(--teal);
}

.solution-card:nth-child(5) span {
  background: var(--green);
}

.solution-card h3 {
  margin: 22px 0 10px;
  font-size: 23px;
  line-height: 1.15;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.channel-section {
  padding: 76px 0 84px;
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 100%);
  border-top: 1px solid rgba(16, 27, 26, 0.08);
}

.channel-heading {
  max-width: 760px;
  margin-bottom: 28px;
  text-align: center;
}

.channel-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}

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

.channel-inner article {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(16, 27, 26, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 27, 26, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.channel-inner article:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 27, 26, 0.16);
  box-shadow: 0 22px 48px rgba(16, 27, 26, 0.12);
}

.channel-inner img {
  width: 100%;
  max-width: 158px;
  height: 48px;
  display: block;
  object-fit: contain;
}

.channel-inner img.channel-logo-pazarama,
.channel-inner img.channel-logo-ciceksepeti,
.channel-inner img.channel-logo-pttavm,
.channel-inner img.channel-logo-modanisa,
.channel-inner img.channel-logo-lcwaikiki {
  max-width: 172px;
}

.channel-inner img.channel-logo-n11 {
  max-width: 126px;
}

.channel-inner img.channel-logo-idefix,
.channel-inner img.channel-logo-cimri {
  max-width: 140px;
}

.channel-inner img.channel-logo-akakce {
  max-width: 96px;
}

.advertising-section {
  padding: 82px 0 90px;
  background: #fff;
  border-top: 1px solid rgba(16, 27, 26, 0.08);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.advertising-heading {
  max-width: 820px;
  margin-bottom: 28px;
  text-align: center;
}

.advertising-heading h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.advertising-heading p:last-child {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--muted);
}

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

.advertising-card {
  display: grid;
  gap: 22px;
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgba(16, 27, 26, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), #fff),
    #fff;
  box-shadow: 0 18px 46px rgba(16, 27, 26, 0.09);
}

.advertising-card-google {
  border-top: 4px solid #4285f4;
}

.advertising-card-meta {
  border-top: 4px solid #0082fb;
}

.advertising-logo {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(16, 27, 26, 0.09);
  border-radius: 8px;
  background: #f8fbfa;
}

.advertising-logo img {
  width: 100%;
  max-width: 280px;
  height: 72px;
  display: block;
  object-fit: contain;
}

.advertising-card-meta .advertising-logo img {
  max-width: 240px;
}

.advertising-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.advertising-copy h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.15;
}

.advertising-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.advertising-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advertising-points li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.advertising-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.advertising-card-google .advertising-points li::before {
  background: #4285f4;
}

.advertising-card-meta .advertising-points li::before {
  background: #0082fb;
}

.section-heading p,
.contact-layout p {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.packages-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfa 0%, #ffffff 44%, #f3f7f6 100%);
}

.packages-section::before {
  content: none;
}

.packages-section > .container {
  position: relative;
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.section-heading-left {
  text-align: left;
  margin: 0;
}

.section-heading h2,
.contact-layout h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.contact-layout p {
  margin: 18px 0 0;
  font-size: 17px;
}

.packages-section .section-heading {
  max-width: var(--site-width);
}

.packages-section .section-heading p {
  white-space: nowrap;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.package-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid rgba(23, 32, 31, 0.12);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 20px 50px rgba(23, 32, 31, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--tier, var(--teal));
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 32, 31, 0.18);
  box-shadow: 0 24px 58px rgba(23, 32, 31, 0.14);
}

.package-card.is-featured {
  border-color: rgba(23, 32, 31, 0.14);
  box-shadow: 0 20px 50px rgba(23, 32, 31, 0.1);
}

.package-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 8px;
  padding: 0 10px;
  background: var(--amber);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.package-top {
  min-height: 132px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px 20px;
  background:
    linear-gradient(135deg, var(--tier-soft, #e3f3ef) 0%, rgba(255, 255, 255, 0.95) 76%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 12px);
  border-bottom: 1px solid rgba(23, 32, 31, 0.08);
}

.package-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--tier, var(--teal));
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.13);
}

.package-kicker {
  margin: 1px 0 10px;
  color: var(--tier, var(--teal));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1.1;
}

.package-price {
  position: relative;
  margin: 0 22px;
  padding: 20px 0 17px;
  border-bottom: 1px solid rgba(23, 32, 31, 0.1);
}

.package-price strong {
  display: block;
  padding-right: 58px;
  color: var(--tier, var(--ink));
  font-size: 34px;
  line-height: 1;
  white-space: nowrap;
}

.package-price span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.package-price em {
  position: absolute;
  right: 0;
  top: 50px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 8px;
  padding: 0 10px;
  background: var(--tier-soft, #e3f3ef);
  color: var(--tier, var(--teal));
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.package-vat-included {
  display: block;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.package-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 22px 0;
}

.package-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid rgba(23, 32, 31, 0.08);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.package-summary {
  margin: 18px 22px 0;
  color: var(--ink-soft);
  font-size: 14px;
  min-height: 66px;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0 22px;
  margin: 20px 0 24px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--tier-soft, #dff4ef);
  color: var(--tier, var(--teal));
  font-size: 11px;
  font-weight: 900;
}

.package-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding: 0 22px 22px;
}

.package-card-actions .button {
  width: 100%;
}

.package-card-actions .button-ghost {
  background: #fff;
}

.comparison-wrap {
  margin-top: 28px;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.comparison-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.comparison-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.comparison-scroll {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 260px;
  text-align: left;
  color: var(--ink);
  font-weight: 800;
}

.comparison-table thead th {
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-actions {
  display: flex;
  justify-content: center;
  padding: 20px 22px 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfaf7);
}

.comparison-toggle {
  min-width: min(100%, 320px);
  justify-content: center;
}

.full-comparison {
  border-top: 1px solid var(--line);
  background: #fff;
}

.full-comparison[hidden] {
  display: none;
}

.full-comparison-note {
  margin: 0;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 14px;
}

.full-comparison .comparison-table {
  min-width: 1180px;
  font-size: 13px;
}

.full-comparison .comparison-table th:first-child,
.full-comparison .comparison-table td:first-child {
  width: 320px;
}

.full-comparison .comparison-table th,
.full-comparison .comparison-table td {
  padding: 12px 14px;
}

.comparison-section-row td {
  background: #f1eee8;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  text-transform: none;
}

.check,
.dash {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.check {
  background: #dff4ef;
  color: var(--teal);
}

.dash {
  background: #f1eee6;
  color: var(--muted);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 185, 61, 0.22), transparent 28%),
    radial-gradient(circle at 84% 42%, rgba(4, 124, 122, 0.28), transparent 32%),
    linear-gradient(135deg, #111817 0%, #172522 48%, #0b1211 100%);
  color: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 100%);
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 60px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.contact-section .container {
  position: relative;
}

.contact-section .eyebrow {
  color: var(--amber);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  gap: 22px;
}

.contact-copy {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.contact-copy::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 185, 61, 0.24), transparent 68%);
}

.contact-copy .button {
  margin-top: auto;
}

.contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.contact-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-list a,
.contact-list div {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-list a::after,
.contact-list div::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: var(--amber);
  transform: translateY(-3px);
  outline: none;
}

.contact-list i {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list strong {
  position: relative;
  z-index: 1;
  font-size: 19px;
  line-height: 1.35;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.site-footer::before {
  display: none;
}

.footer-contact {
  position: relative;
  z-index: 1;
  padding: 78px 0 70px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 18px;
}

.footer-card {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 34px;
  border: 1px solid rgba(16, 27, 26, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(16, 27, 26, 0.09);
}

.footer-card::after {
  content: "";
  position: absolute;
  right: -74px;
  bottom: -86px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(217, 54, 50, 0.045);
}

.footer-address-card::after {
  display: none;
}

.footer-map-logo {
  position: absolute;
  right: -18px;
  bottom: -30px;
  z-index: 0;
  width: 148px;
  height: 148px;
  opacity: 0.2;
  pointer-events: none;
}

.footer-card h2,
.footer-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.12;
  text-align: center;
  width: 100%;
}

.footer-card h2 {
  font-size: 30px;
}

.footer-card p,
.footer-card a,
.footer-contact-actions {
  position: relative;
  z-index: 1;
}

.footer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.footer-card a {
  color: var(--ink);
  text-decoration: none;
}

.footer-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(16, 27, 26, 0.72);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.footer-card .footer-kicker {
  align-self: center;
}

.footer-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(217, 54, 50, 0.16);
}

.footer-contact-card {
  align-items: stretch;
}

.footer-contact-card::after {
  background: rgba(34, 197, 94, 0.08);
}

.footer-contact-card .footer-kicker::before {
  background: #16a34a;
  box-shadow: 0 0 0 5px rgba(22, 163, 74, 0.14);
}

.footer-contact-actions {
  display: grid;
  gap: 12px;
  width: min(100%, 360px);
  margin: 2px auto 0;
}

.footer-contact-button,
.footer-email-link {
  display: grid;
  gap: 2px;
  min-height: 62px;
  align-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(16, 27, 26, 0.1);
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.footer-contact-button span,
.footer-email-link span {
  color: rgba(16, 27, 26, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-contact-button strong,
.footer-email-link strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.footer-contact-button:hover,
.footer-contact-button:focus-visible,
.footer-email-link:hover,
.footer-email-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(16, 27, 26, 0.18);
  box-shadow: 0 16px 30px rgba(16, 27, 26, 0.08);
  outline: none;
}

.footer-whatsapp-link {
  border-color: rgba(28, 181, 90, 0.32);
  background: #16a34a;
  color: #fff;
  box-shadow: 0 16px 34px rgba(22, 163, 74, 0.26);
}

.footer-whatsapp-link span,
.footer-whatsapp-link strong {
  color: #fff;
}

.footer-call-link {
  background: #eef7f4;
  border-color: rgba(4, 124, 122, 0.18);
}

.footer-email-link {
  min-height: 58px;
  background: #fff;
}

.footer-email-link strong {
  font-size: 16px;
  word-break: break-word;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid rgba(16, 27, 26, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(16, 27, 26, 0.72);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .site-nav {
    justify-self: end;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 32px;
  }

  .hero-copy {
    transform: none;
  }

  .hero-content h1 {
    font-size: clamp(34px, 3.6vw, 42px);
  }

  .performance-item strong {
    font-size: 18px;
  }

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

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

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

  .scene-panel-a {
    right: 3%;
  }

  .scene-panel-b {
    right: 18%;
  }

  .scene-panel-c {
    display: none;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-block;
    grid-column: 2;
    grid-row: 1;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .site-nav a:not(:last-child)::after {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 46px;
    white-space: normal;
  }

  .hero-lead {
    font-size: 18px;
    max-width: 560px;
  }

  .hero-scene {
    opacity: 0.62;
  }

  .hero-panel-stack {
    justify-self: start;
    width: min(620px, 100%);
  }

  .hero-composite-image {
    max-height: 580px;
  }

  .scene-panel {
    width: 230px;
    min-height: 138px;
  }

  .scene-panel-a {
    right: -70px;
    top: 10%;
  }

  .scene-panel-b {
    right: -18px;
    bottom: 8%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-card {
    min-height: auto;
  }

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

  .solution-card,
  .solution-card:nth-child(4),
  .solution-card:nth-child(5) {
    grid-column: span 1;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading h2,
  .solutions-heading h2,
  .contact-layout h2,
  .advertising-heading h2 {
    font-size: 36px;
  }

  .packages-section .section-heading p {
    white-space: normal;
  }

}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
    --site-gutter: 32px;
  }

  .brand-logo {
    width: 180px;
    height: 54px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0 54px;
  }

  .hero-content h1 {
    font-size: 42px;
    max-width: 380px;
  }

  .hero-tagline {
    max-width: 380px;
    font-size: 22px;
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .section-heading h2,
  .solutions-heading h2,
  .contact-layout h2,
  .advertising-heading h2 {
    font-size: 32px;
  }

  .hero-lead {
    max-width: 360px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    max-width: 398px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scene-panel-a,
  .scene-panel-b,
  .scene-line,
  .scene-card-stack {
    display: none;
  }

  .hero-panel-stack {
    width: min(100%, 390px);
    justify-self: center;
    margin-top: 4px;
  }

  .hero-composite-image {
    max-height: 430px;
  }

  .packages-grid,
  .contact-list,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
    padding: 24px;
  }

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

  .channel-heading h2 {
    font-size: 30px;
  }

  .channel-inner article {
    min-height: 92px;
    padding: 14px;
  }

  .channel-inner img {
    height: 48px;
  }

  .advertising-section {
    padding: 64px 0 70px;
  }

  .advertising-card {
    min-height: auto;
    padding: 24px;
  }

  .advertising-logo {
    min-height: 98px;
    padding: 18px;
  }

  .advertising-logo img {
    max-width: 220px;
    height: 58px;
  }

  .package-card {
    min-height: auto;
  }

  .comparison-head {
    display: grid;
  }

  .comparison-head p {
    text-align: left;
  }

  .contact-copy {
    padding: 24px;
  }

  .footer-contact {
    padding: 56px 0 48px;
  }

  .footer-contact-grid {
    gap: 14px;
  }

  .footer-card {
    padding: 26px;
  }

  .footer-card h2 {
    font-size: 26px;
  }

  .footer-card h3 {
    font-size: 22px;
  }

  .footer-card p {
    font-size: 16px;
  }

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    gap: 9px;
    padding: 8px 12px 8px 8px;
  }

  .whatsapp-float-icon,
  .whatsapp-float-icon svg {
    width: 42px;
    height: 42px;
  }

  .whatsapp-float-copy strong {
    font-size: 12px;
  }

  .whatsapp-float-copy small {
    font-size: 10px;
  }

  .scroll-top-button {
    right: 18px;
    bottom: 24px;
    width: 44px;
    height: 44px;
  }

  .scroll-top-icon {
    width: 19px;
    height: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-composite-image {
    animation: none;
  }
}
