:root {
  --ink: #07111f;
  --navy: #0b1730;
  --muted: #627084;
  --line: #e7edf5;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --blue: #177cff;
  --yellow: #ffc83d;
  --orange: #ff7a2f;
  --green: #22c55e;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.11);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 237, 245, 0.9);
  transition: transform 260ms ease, opacity 260ms ease;
}


.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 40px;
  object-fit: contain;
  display: block;
}

.brand-logo-footer {
  height: 34px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #05080f 48%, var(--blue));
  box-shadow: 0 14px 30px rgba(23, 124, 255, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #2d3a4d;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  background: #eef5ff;
  color: var(--blue);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.dropdown-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  border-radius: 12px;
  white-space: nowrap;
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  padding: 9px 14px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 200, 61, 0.2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.page-title {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  max-width: 760px;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 790px;
  margin-bottom: 42px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: 60px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 66px 0 34px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 span,
.text-gradient {
  background: linear-gradient(100deg, var(--blue), var(--orange) 52%, var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.08);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #07111f, #13274a 48%, var(--blue));
  box-shadow: 0 18px 40px rgba(7, 17, 31, 0.22);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.07);
}

.btn-accent {
  color: #07111f;
  background: var(--yellow);
  box-shadow: 0 16px 36px rgba(255, 200, 61, 0.28);
}

.btn-whatsapp {
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #1fbd5a;
}

.btn-full {
  width: 100%;
}

.mockup {
  position: relative;
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(145deg, #101928, #07111f);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.mockup::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(23, 124, 255, 0.18), rgba(255, 122, 47, 0.14), rgba(255, 200, 61, 0.16));
}

.hero-image {
  margin: 0;
  position: relative;
  isolation: isolate;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 5% 3%;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(23, 124, 255, 0.14), rgba(255, 122, 47, 0.12), rgba(255, 200, 61, 0.16));
  filter: blur(18px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 34px;
}

.browser {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.browser-top {
  height: 44px;
  background: #f1f5fb;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d7dfeb;
}

.dot:nth-child(1) { background: #ff7a2f; }
.dot:nth-child(2) { background: #ffc83d; }
.dot:nth-child(3) { background: #22c55e; }

.browser-body {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.visual-hero-card {
  min-height: 168px;
  border-radius: 24px;
  background: linear-gradient(135deg, #07111f, #12396f 58%, #177cff);
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visual-line {
  height: 10px;
  border-radius: 999px;
  background: #dbe6f3;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mini-card {
  min-height: 112px;
  border-radius: 20px;
  background: #f6f8fb;
  padding: 16px;
  display: grid;
  align-content: space-between;
}

.metric {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 42px rgba(7, 17, 31, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 124, 255, 0.28);
  box-shadow: var(--shadow);
}

.card h2 {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.pricing-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 214, 232, 0.62), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(205, 231, 255, 0.72), transparent 32%),
    radial-gradient(circle at 50% 92%, rgba(215, 251, 232, 0.64), transparent 34%),
    linear-gradient(135deg, #fff8fb, #f4f9ff 48%, #f6fff9);
}

.pricing-head {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}

.pricing-head .lead {
  color: #66758a;
  margin-inline: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.pricing-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(120, 144, 170, 0.18);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(72, 92, 120, 0.14);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(23, 124, 255, 0.22);
  box-shadow: 0 30px 90px rgba(121, 144, 184, 0.22);
}

.pricing-featured {
  min-height: 640px;
  padding: 34px;
  border-color: rgba(111, 66, 255, 0.2);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 36px 110px rgba(171, 146, 255, 0.22);
}

.price-blob {
  position: absolute;
  top: 108px;
  left: 50%;
  width: 235px;
  height: 205px;
  transform: translateX(-50%) rotate(-9deg);
  border-radius: 44% 56% 62% 38% / 48% 36% 64% 52%;
  filter: blur(0.2px);
  opacity: 0.52;
  transition: transform 260ms ease, filter 260ms ease, opacity 260ms ease;
}

.pricing-card:hover .price-blob {
  transform: translateX(-50%) rotate(4deg) scale(1.08);
  filter: saturate(1.18);
  opacity: 1;
}

.pricing-blue .price-blob {
  background: linear-gradient(135deg, #b9dcff, #bff5ec 58%, #e7f8ff);
  box-shadow: 0 0 78px rgba(145, 198, 255, 0.34);
}

.pricing-purple .price-blob {
  background: linear-gradient(135deg, #dccdff, #cde7ff 50%, #caf7ef);
  box-shadow: 0 0 90px rgba(184, 162, 255, 0.34);
}

.pricing-teal .price-blob {
  background: linear-gradient(135deg, #c8f8ef, #cde7ff 54%, #eadcff);
  box-shadow: 0 0 82px rgba(143, 221, 211, 0.34);
}

.pricing-content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.pricing-content p {
  color: #66758a;
  min-height: 52px;
}

.price {
  display: block;
  margin: 72px 0 14px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.pricing-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #243044;
  background: linear-gradient(135deg, #fff1f8, #dff7ff);
  font-size: 13px;
  font-weight: 900;
}

.pricing-list {
  display: grid;
  gap: 11px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #344256;
}

.pricing-list li::before {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #06101d;
  background: #bff5ec;
  font-size: 13px;
  font-weight: 900;
}

.pricing-list li.included::before {
  content: "✓";
}

.pricing-list li.excluded {
  color: #93a0b2;
}

.pricing-list li.excluded::before {
  content: "×";
  color: #66758a;
  background: #edf2f7;
}

.pricing-list span {
  flex: 1;
  min-width: 0;
}

.pricing-list strong {
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}

.pricing-list li.excluded strong {
  color: #9aa7b7;
}

.pricing-button {
  margin-top: auto;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 124, 255, 0.28);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pricing-button:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.pricing-note {
  margin: 28px auto 0;
  color: #66758a;
  text-align: center;
}

.logo-strip {
  margin-top: 54px;
  padding: 34px 22px 30px;
  border: 1px solid rgba(120, 144, 170, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 214, 232, 0.34), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(205, 231, 255, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 232, 0.64), rgba(218, 245, 255, 0.58) 50%, rgba(222, 255, 239, 0.58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-align: center;
}

.logo-strip p {
  margin-bottom: 18px;
  background: linear-gradient(90deg, #a8557b, #2b77c8 42%, #238767);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 62px);
  animation: logo-scroll 28s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-track span,
.logo-track a {
  color: rgba(36, 48, 68, 0.52);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  filter: grayscale(1);
  transition: color 180ms ease, transform 180ms ease;
}

.logo-track span:nth-child(3n),
.logo-track a:nth-child(3n) {
  font-style: italic;
}

.logo-track span:nth-child(4n),
.logo-track a:nth-child(4n) {
  font-weight: 700;
}

.logo-track span:hover,
.logo-track a:hover {
  color: var(--ink);
  transform: translateY(-2px);
}

.value-words {
  max-width: 880px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-words span {
  color: #66758a;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff4c9;
  margin-bottom: 20px;
}

.icon.blue { background: #e8f2ff; color: var(--blue); }
.icon.orange { background: #fff0e8; color: var(--orange); }
.icon.dark { background: #eef1f6; color: var(--navy); }

.muted {
  color: var(--muted);
}

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

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #344256;
}

.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0 22%, var(--green) 24%);
}

.why-panel {
  padding: 34px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #07111f, #102448 58%, #177cff);
  box-shadow: var(--shadow);
}

.why-panel .muted {
  color: rgba(255, 255, 255, 0.74);
}

.why-panel .feature-list li {
  color: rgba(255, 255, 255, 0.86);
}

.why-dark {
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 214, 232, 0.7), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255, 214, 232, 0.7), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(205, 231, 255, 0.72), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(205, 231, 255, 0.72), transparent 30%),
    radial-gradient(circle at 50% 8%, rgba(215, 251, 232, 0.58), transparent 26%),
    radial-gradient(circle at 50% 92%, rgba(215, 251, 232, 0.58), transparent 26%),
    linear-gradient(135deg, #fff8fb, #f4f9ff 54%, #f6fff9);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.why-copy {
  max-width: 720px;
}

.why-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #6f7cff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.05;
  color: var(--ink);
}

.why-copy h2 span {
  background: linear-gradient(100deg, #c45bff, #177cff 55%, #8b6cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-copy > p {
  max-width: 620px;
  color: #66758a;
  font-size: 19px;
}

.why-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.why-benefits article {
  min-width: 0;
}

.why-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #27d9ff;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 31px;
  font-weight: 900;
}

.why-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.why-benefits article:nth-child(1) .why-icon,
.why-benefits article:nth-child(4) .why-icon {
  color: #c45bff;
}

.why-benefits h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
}

.why-benefits p {
  margin: 0;
  color: #66758a;
  font-size: 13px;
  line-height: 1.45;
}

.why-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #8a16ff, #177cff);
  box-shadow: 0 20px 46px rgba(23, 124, 255, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.why-button::after {
  content: "→";
  margin-left: 10px;
}

.why-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(138, 22, 255, 0.3);
}

.why-image {
  margin: 0;
  position: relative;
}

.why-image::before {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: 0;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(220, 205, 255, 0.45), rgba(205, 231, 255, 0.44));
  filter: blur(24px);
}

.why-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

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

.stat {
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-card {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.compare-card.after {
  color: #fff;
  background: linear-gradient(135deg, #06101d, #0f2d59 56%, #177cff);
}

.pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.compare-card.after .pill {
  color: #07111f;
  background: var(--yellow);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote {
  font-size: 18px;
  color: #263448;
}

.avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(34px, 7vw, 70px);
  color: #fff;
  background: linear-gradient(135deg, #07111f, #13274a 52%, #177cff);
  box-shadow: var(--shadow);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 720px;
}

.process-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 10%, rgba(220, 205, 255, 0.32), transparent 28%),
    radial-gradient(circle at 80% 16%, rgba(205, 231, 255, 0.38), transparent 30%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.process-head {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.process-head span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8a5cff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-head h2 {
  margin-bottom: 16px;
  color: #07111f;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.05;
}

.process-head h2 strong {
  background: linear-gradient(100deg, #8a5cff, #177cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.process-head p {
  max-width: 620px;
  margin: 0 auto;
  color: #66758a;
  font-size: 18px;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 9%;
  right: 9%;
  height: 3px;
  z-index: 0;
  background: repeating-linear-gradient(90deg, #8a5cff 0 5px, transparent 5px 11px);
  opacity: 0.7;
}

.process-card {
  position: relative;
  z-index: 1;
  min-height: 254px;
  padding: 52px 18px 22px;
  border: 1px solid #e9eef6;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(72, 92, 120, 0.11);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(72, 92, 120, 0.17);
}

.process-number {
  position: absolute;
  top: -22px;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(23, 124, 255, 0.25);
}

.process-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 900;
}

.process-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.process-card p {
  margin: 0;
  color: #66758a;
  font-size: 13px;
  line-height: 1.5;
}

.process-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 54px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
}

.process-purple .process-number,
.process-purple::after {
  background: linear-gradient(135deg, #8a5cff, #6f42ff);
}

.process-purple .process-icon {
  color: #7b3fff;
  background: #f0e9ff;
}

.process-blue .process-number,
.process-blue::after {
  background: linear-gradient(135deg, #177cff, #2f6bff);
}

.process-blue .process-icon {
  color: #177cff;
  background: #eaf2ff;
}

.process-teal .process-number,
.process-teal::after {
  background: linear-gradient(135deg, #13c7c5, #23b8d7);
}

.process-teal .process-icon {
  color: #0fadb5;
  background: #e8fbfb;
}

.process-green .process-number,
.process-green::after {
  background: linear-gradient(135deg, #22c55e, #49d88a);
}

.process-green .process-icon {
  color: #22a861;
  background: #eaf9f0;
}

.page-hero {
  padding: 86px 0 54px;
  background: linear-gradient(180deg, #f6f8fb, #fff);
}

.web-design-hero,
.site-example-section,
.web-process-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 214, 232, 0.58), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(205, 231, 255, 0.66), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(215, 251, 232, 0.54), transparent 30%),
    linear-gradient(135deg, #fff8fb, #f4f9ff 54%, #f6fff9);
}

.web-hero-panel {
  min-height: 360px;
  border: 1px solid rgba(120, 144, 170, 0.16);
  border-radius: 34px;
  padding: 34px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 214, 232, 0.86), transparent 30%),
    radial-gradient(circle at 80% 22%, rgba(205, 231, 255, 0.9), transparent 34%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(72, 92, 120, 0.14);
}

.web-hero-panel span {
  color: var(--blue);
  font-weight: 900;
}

.web-hero-panel strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.92;
  background: linear-gradient(100deg, #8a5cff, #177cff, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-example {
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #0c2032, #102235 56%, #17120d);
  background-size: 60px 60px, 60px 60px, auto;
  box-shadow: 0 34px 90px rgba(12, 32, 50, 0.22);
}

.site-example-image {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(120, 144, 170, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 80px rgba(72, 92, 120, 0.16);
}

.site-example-image img {
  width: 100%;
  height: auto;
}

.example-nav {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.example-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.example-brand span {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #c99a70;
  font-weight: 900;
}

.example-brand strong {
  font-size: 18px;
  letter-spacing: 0.03em;
}

.example-nav nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.example-nav > a {
  padding: 10px 14px;
  border-radius: 6px;
  background: #d19b70;
  color: #fff;
  font-weight: 900;
}

.example-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: center;
  padding: clamp(34px, 7vw, 82px) 54px;
}

.example-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #d7a77e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.example-hero h3 {
  max-width: 650px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1;
}

.example-hero h3 span {
  color: #d19b70;
}

.example-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.area-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.wood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.wood-card {
  min-height: 190px;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 30%),
    repeating-linear-gradient(90deg, #9b6d45 0 14px, #b98655 14px 28px);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.wood-card.tall {
  grid-row: span 2;
  min-height: 400px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 34%),
    repeating-linear-gradient(90deg, #bc8751 0 16px, #d4a46a 16px 32px);
}

.wood-card.light {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 34%),
    repeating-linear-gradient(90deg, #d8c8b3 0 16px, #eee5d8 16px 32px);
}

.web-flow,
.web-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.web-flow {
  position: relative;
  gap: 34px 22px;
}

.web-flow::before {
  content: "";
  position: absolute;
  top: 49px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, #8a5cff, #177cff, #2dd4bf);
  opacity: 0.55;
}

.web-process-card {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(120, 144, 170, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 52px rgba(72, 92, 120, 0.11);
}

.web-process-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #8a5cff, #177cff);
  font-weight: 900;
}

.web-flow .web-process-card span {
  box-shadow: 0 12px 28px rgba(23, 124, 255, 0.22);
}

.web-flow .web-process-card::after {
  content: "";
  position: absolute;
  top: 47px;
  right: -16px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #177cff;
  border-right: 3px solid #177cff;
  transform: rotate(45deg);
  background: transparent;
}

.web-flow .web-process-card:nth-child(3)::after,
.web-flow .web-process-card:nth-child(6)::after {
  display: none;
}

.web-process-card p {
  color: #66758a;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  counter-increment: step;
  position: relative;
}

.step::before {
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  background: var(--navy);
}

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-visual {
  min-height: 210px;
  padding: 22px;
  background: linear-gradient(135deg, #101928, #177cff);
  display: grid;
  align-content: end;
  gap: 10px;
}

.project-screen {
  height: 118px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 15px;
  display: grid;
  gap: 9px;
}

.project-card:nth-child(2n) .project-visual {
  background: linear-gradient(135deg, #07111f, #ff7a2f);
}

.project-card:nth-child(3n) .project-visual {
  background: linear-gradient(135deg, #0b1730, #ffc83d);
}

.project-content {
  padding: 24px;
}

.blog-hero {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 214, 232, 0.56), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(205, 231, 255, 0.68), transparent 32%),
    linear-gradient(180deg, #fff8fb, #fff);
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(72, 92, 120, 0.12);
}

.featured-post-visual {
  min-height: 320px;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: end;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 200, 61, 0.48), transparent 26%),
    linear-gradient(135deg, #07111f, #177cff 58%, #8a5cff);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(72, 92, 120, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(72, 92, 120, 0.14);
}

.blog-thumb {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #07111f, #177cff 58%, #8a5cff);
}

.blog-thumb.orange {
  background: linear-gradient(135deg, #180c00, #d95d0a 52%, #ffc83d);
}

.blog-thumb.green {
  background: linear-gradient(135deg, #001810, #0aad6e 52%, #2dd4bf);
}

.blog-thumb.teal {
  background: linear-gradient(135deg, #001620, #0891b2 54%, #6366f1);
}

.blog-thumb.purple {
  background: linear-gradient(135deg, #0c001e, #7c3aed 52%, #ec4899);
}

.blog-thumb.dark {
  background: linear-gradient(135deg, #07111f, #1e3a5f 60%, #0d5589);
}

.blog-icon.orange { color: var(--orange); }
.blog-icon.green  { color: var(--green); }
.blog-icon.teal   { color: #0891b2; }
.blog-icon.purple { color: #7c3aed; }

.blog-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 200, 61, 0.34), transparent 28%),
    radial-gradient(circle at 78% 76%, rgba(45, 212, 191, 0.24), transparent 30%);
}

.blog-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #07111f;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.24);
}

.blog-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.blog-content {
  padding: 22px;
}

.blog-meta {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  border-radius: 999px;
  padding: 6px 10px;
  background: #f0f4fa;
  color: #344256;
  font-size: 13px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 124, 255, 0.12);
}

.map-placeholder {
  min-height: 280px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(7, 17, 31, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #eef5ff, #fff6dc);
  background-size: 28px 28px, 28px 28px, auto;
  display: grid;
  place-items: center;
  color: #344256;
  font-weight: 900;
  border: 1px solid var(--line);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 28px;
  color: #66758a;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 214, 232, 0.62), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(205, 231, 255, 0.72), transparent 32%),
    radial-gradient(circle at 48% 92%, rgba(215, 251, 232, 0.58), transparent 34%),
    linear-gradient(135deg, #fff8fb, #f5f9ff 52%, #f7fff9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.8fr 1fr;
  gap: 34px;
  padding-top: 34px;
}

.footer-grid h3,
.footer-grid a,
.footer-grid strong {
  color: var(--ink);
}

.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(120, 144, 170, 0.16);
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-logo {
  height: 54px;
}

.footer-hero h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.05;
}

.footer-hero h2::after {
  content: "";
  display: block;
  width: 170px;
  height: 5px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8a5cff, #177cff, #2dd4bf);
}

.footer-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #07111f, #177cff);
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(23, 124, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(138, 92, 255, 0.26);
}

.footer-about p {
  max-width: 440px;
  margin-bottom: 22px;
}

.footer-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-mini span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #344256;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(120, 144, 170, 0.16);
  font-size: 13px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: #66758a;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--blue);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(120, 144, 170, 0.16);
  color: #7a8798;
  font-size: 14px;
}

.footer-social .social-link {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(120, 144, 170, 0.16);
  box-shadow: 0 10px 24px rgba(72, 92, 120, 0.1);
}

.footer-social .social-link:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Breadcrumb ─────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 160ms ease;
}

.breadcrumb a:hover { color: var(--blue); }

.breadcrumb-sep {
  color: #ccc;
  font-size: 11px;
}

/* ── Article page ────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 52px;
  align-items: start;
}

.article-body {
  max-width: 100%;
}

.article-body p {
  font-size: 17px;
  line-height: 1.85;
  color: #344256;
  margin-bottom: 22px;
}

.article-body h2 {
  font-size: 22px;
  margin: 40px 0 14px;
  color: var(--ink);
}

.article-body h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--ink);
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
  margin-bottom: 22px;
}

.article-body li {
  font-size: 17px;
  line-height: 1.8;
  color: #344256;
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--ink);
}

.article-body .callout {
  padding: 18px 22px;
  border-left: 3px solid var(--blue);
  background: #eef5ff;
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
}

.article-body .callout p {
  margin: 0;
  font-size: 15px;
}

.article-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 22px;
}

.aside-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.aside-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
}

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

.aside-links li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 160ms ease;
}

.aside-links li a:hover { color: var(--blue); }

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.article-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.article-date {
  font-size: 13px;
  color: var(--muted);
}

.article-read {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}

/* ── Category page ───────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.category-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(72, 92, 120, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 124, 255, 0.22);
  box-shadow: 0 18px 48px rgba(72, 92, 120, 0.12);
}

.category-card h3 { font-size: 17px; margin-bottom: 8px; }
.category-card p  { font-size: 14px; color: var(--muted); margin: 0; }

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.city-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.city-link:hover {
  color: var(--blue);
  border-color: rgba(23, 124, 255, 0.28);
  box-shadow: 0 12px 30px rgba(72, 92, 120, 0.1);
}

@media (max-width: 640px) {
  .category-grid { grid-template-columns: 1fr; }
}

/* ── About page ─────────────────────────────────── */
.about-lead {
  max-width: 800px;
  margin-bottom: 52px;
}

.about-lead p {
  font-size: 18px;
  color: #2d3a4d;
  line-height: 1.8;
  padding-left: 22px;
  border-left: 3px solid var(--blue);
}

.about-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 62px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 52px;
}

.about-cols h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.about-cols p {
  color: #344256;
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-value h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  margin-bottom: 10px;
}

.about-value h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex: 0 0 auto;
}

.about-value p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── Contact professional ────────────────────────── */
.contact-pro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: start;
}

.contact-side-title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.c-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef5ff;
  color: var(--blue);
}

.c-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.c-text strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 3px;
  color: var(--ink);
}

.c-text a,
.c-text span {
  color: var(--muted);
  font-size: 15px;
  transition: color 160ms ease;
}

.c-text a:hover {
  color: var(--blue);
}

.contact-rule {
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}

.contact-hours {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-hours strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(72, 92, 120, 0.09);
}

.contact-form-wrap h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.contact-form-wrap > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 26px;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

@media (max-width: 980px) {
  .about-cols { grid-template-columns: 1fr; gap: 34px; }
  .about-values { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .contact-pro { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .about-values { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px; }
}

/* ── Hakkımızda hero override ───────────────────── */
.about-hero {
  background: linear-gradient(180deg, #f6f8fb, #fff);
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

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

  .nav-links.open {
    position: fixed;
    inset: 74px 16px auto;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 14px 16px;
  }

  .nav-links.open .nav-item {
    display: grid;
    gap: 6px;
  }

  .nav-links.open .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .split,
  .contact-grid,
  .why-layout,
  .featured-post,
  .example-hero {
    grid-template-columns: 1fr;
  }

  .example-nav {
    grid-template-columns: 1fr;
  }

  .example-nav nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .card-grid,
  .card-grid.four,
  .testimonials,
  .process,
  .blog-grid,
  .web-process-grid,
  .web-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-flow::before {
    display: none;
  }

  .web-flow .web-process-card::after {
    display: none;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .pricing-card,
  .pricing-featured {
    flex: initial;
    min-height: auto;
    scroll-snap-align: initial;
  }

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

  .footer-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .process-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 40px;
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 62px 0 36px;
  }

  .actions,
  .stats,
  .comparison,
  .card-grid,
  .card-grid.four,
  .testimonials,
  .process,
  .blog-grid,
  .web-process-grid,
  .web-flow,
  .footer-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .web-flow {
    gap: 18px;
  }

  .web-flow .web-process-card {
    padding-left: 82px;
  }

  .web-flow .web-process-card span {
    position: absolute;
    left: 22px;
    top: 26px;
  }

  .example-nav {
    padding: 18px;
  }

  .example-nav nav {
    gap: 12px;
    font-size: 11px;
  }

  .example-hero {
    padding: 28px 18px;
  }

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

  .wood-card,
  .wood-card.tall {
    min-height: 160px;
  }

  .featured-post-visual {
    min-height: 220px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .why-layout {
    gap: 34px;
  }

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

  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 25px;
  }

  .why-icon img {
    width: 40px;
    height: 40px;
  }

  .why-button {
    width: 100%;
  }

  .process-head {
    margin-bottom: 46px;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 14px;
  }

  .process-card {
    min-height: 230px;
    padding: 46px 12px 20px;
  }

  .process-icon {
    width: 62px;
    height: 62px;
    font-size: 30px;
  }

  .process-icon img {
    width: 34px;
    height: 34px;
  }

  .actions .btn {
    width: 100%;
  }

  .mockup {
    border-radius: 24px;
    padding: 10px;
  }

  .hero-image img {
    border-radius: 24px;
  }

  .browser-body {
    padding: 16px;
  }

  .card,
  .why-panel {
    padding: 22px;
  }

  .pricing-card,
  .pricing-featured {
    padding: 10px;
    border-radius: 16px;
  }

  .price-blob {
    top: 74px;
    width: 92px;
    height: 82px;
  }

  .pricing-content h3 {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 5px;
  }

  .price {
    margin: 36px 0 8px;
    font-size: clamp(20px, 6vw, 26px);
  }

  .pricing-content p {
    min-height: 44px;
    font-size: 11px;
    line-height: 1.35;
  }

  .pricing-badge {
    margin-bottom: 8px;
    padding: 5px 7px;
    font-size: 9px;
  }

  .pricing-list {
    gap: 7px;
    margin: 12px 0 16px;
    font-size: 10px;
    line-height: 1.25;
  }

  .pricing-list li {
    display: grid;
    grid-template-columns: 15px 1fr;
    gap: 5px;
  }

  .pricing-list li::before {
    width: 15px;
    height: 15px;
    font-size: 10px;
  }

  .pricing-list strong {
    grid-column: 2;
    white-space: normal;
    font-size: 9px;
  }

  .pricing-button {
    min-height: 36px;
    padding: 8px 6px;
    font-size: 11px;
  }

}
