:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-hover: #f1f5f9;
  --border: rgba(15, 23, 42, 0.07);
  --border-hover: rgba(15, 23, 42, 0.15);
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --blue: #0284c7;
  --blue-dark: #0369a1;
  --blue-glow: rgba(2, 132, 199, 0.08);
  --green: #10b981;
  --green-bg: rgba(16, 185, 129, 0.08);

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  background-image: radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}
img,
svg {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  border: 0;
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: radial-gradient(circle at 1px 1px, #000 1px, transparent 0);
  background-size: 32px 32px;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  height: 2px;
  width: 0;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

.section-base {
  position: relative;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 40px;
  width: auto;
}
.brand-caption {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 120px;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
}

.desktop-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: var(--surface-hover);
  color: var(--ink);
}

.header-cta {
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  place-items: center;
  gap: 4px;
}

.menu-button span {
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
.menu-button.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}
.menu-button.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* Typography & Base UI */
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}

.eyebrow-line {
  width: 30px;
  height: 1px;
  background: var(--blue);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  max-width: 720px;
}
.section-head h2,
.for-left h2,
.contact-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
}

.hero-text,
.section-head p,
.for-left p,
.contact-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 580px;
  line-height: 1.6;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.2);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.3);
  transform: translateY(-2px);
}

.button-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.button-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 90px 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(2, 132, 199, 0.15);
  background: rgba(2, 132, 199, 0.05);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 600;
}
.hero-badge b {
  color: var(--ink);
  margin-left: 4px;
}

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

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-benefits strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.hero-benefits span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

/* Live Leads Dashboard Visual */
.hero-visual {
  position: relative;
  perspective: 1000px;
}
.glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: var(--blue);
  filter: blur(100px);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.leads-dashboard {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transform-style: preserve-3d;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}

.dash-dots {
  display: flex;
  gap: 6px;
}
.dash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}
.dash-dots span:nth-child(1) {
  background: #ff5f56;
}
.dash-dots span:nth-child(2) {
  background: #ffbd2e;
}
.dash-dots span:nth-child(3) {
  background: #27c93f;
}

.dash-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  font-family: monospace;
}

.live-pulse-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-bg);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    opacity: 0.5;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.9);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.dash-body {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.dash-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dash-stat-card {
  padding: 14px;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--border);
}
.dash-stat-card .stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.dash-stat-card .stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.dash-stat-card .stat-value.text-blue {
  color: var(--blue);
}
.dash-stat-card .stat-sub {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.dash-stat-card .stat-sub.text-green {
  color: var(--green);
  font-weight: 600;
}

.leads-stream-container {
  position: relative;
  height: 210px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(248, 250, 252, 0.5);
}
.leads-stream-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    180deg,
    var(--surface) 0%,
    transparent 15%,
    transparent 85%,
    var(--surface) 100%
  );
}
.leads-stream {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.lead-card-live {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: slideInLead 0.5s ease-out forwards;
}

@keyframes slideInLead {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lead-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.lead-source {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.lead-source.tag-tg {
  background: #e0f2fe;
  color: #0369a1;
}
.lead-source.tag-web {
  background: #f1f5f9;
  color: #334155;
}
.lead-source.tag-max {
  background: #e0e7ff;
  color: #4338ca;
}
.lead-time {
  font-size: 10px;
  color: var(--muted);
}
.lead-card-body strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.lead-card-body p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* Logo Strip */
.compact-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  background: #fafafa;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.logo-strip span {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
}

/* Services */
.services-section,
.cases-section,
.process-section,
.pricing-section,
.contact-section {
  padding: 90px 0;
}
.section-head {
  margin-bottom: 50px;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}
.card-number {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.service-card svg {
  width: 36px;
  height: 36px;
  margin: 24px 0;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 700;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* For Section */
.for-section {
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.for-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.for-card {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.for-card span {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
}
.for-card p {
  font-size: 14px;
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}
.case-card.large {
  grid-row: span 2;
}
.case-preview {
  height: 230px;
  padding: 24px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.case-card.large .case-preview {
  height: 100%;
  min-height: 380px;
  border-bottom: none;
  border-right: 1px solid var(--border);
}
.case-info {
  padding: 28px;
}
.case-info span {
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.case-info h3 {
  font-size: 22px;
  margin: 10px 0;
  font-weight: 700;
}
.case-info p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Wireframes Graphics */
.wireframe-browser {
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.wb-head {
  display: flex;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.wb-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}
.wb-body {
  padding: 16px;
}
.wb-hero {
  height: 80px;
  background: var(--bg);
  border-radius: 8px;
  margin-bottom: 14px;
}
.wb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.wb-grid span {
  height: 60px;
  background: var(--bg);
  border-radius: 6px;
}

.wireframe-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wt-row {
  height: 24px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
}
.wt-row.head {
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 4px;
}

.wireframe-bot {
  width: 100%;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wbot-msg {
  height: 30px;
  border-radius: 12px;
}
.wbot-msg.left {
  background: rgba(0, 0, 0, 0.04);
  width: 80%;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.wbot-msg.right {
  background: rgba(2, 132, 199, 0.1);
  width: 75%;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.wbot-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}
.wbot-buttons span {
  height: 22px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}
.timeline-item {
  padding: 28px;
  border-right: 1px solid var(--border);
}
.timeline-item:last-child {
  border-right: none;
}
.timeline-item span {
  font-size: 30px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.1);
}
.timeline-item h3 {
  font-size: 19px;
  margin: 32px 0 12px;
  font-weight: 700;
}
.timeline-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
}
.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 15px 40px rgba(2, 132, 199, 0.05);
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.02), transparent);
  position: relative;
}
.price-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.price-name {
  font-size: 11px;
  color: var(--blue-dark);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.price-card h3 {
  font-size: 24px;
  margin: 14px 0 20px;
  font-weight: 700;
}
.discount-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.discount-line span {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 13px;
}
.discount-line b {
  background: rgba(15, 23, 42, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  color: var(--ink);
}
.price {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hosting-bonus {
  font-size: 12px;
  color: var(--green);
  margin-bottom: 20px;
  font-weight: 700;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-card li {
  font-size: 14px;
  color: #475569;
  padding-left: 18px;
  position: relative;
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.price-card .button {
  width: 100%;
}

/* Contacts */
.contact-section {
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: 0.2s;
}
.contact-list a:hover {
  border-bottom-color: var(--blue);
  color: var(--blue);
}

.contact-form {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--ink);
  transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--blue-glow);
}
.contact-form .button {
  width: 100%;
  margin-top: 8px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand img {
  height: 32px;
  opacity: 0.8;
}
.footer-inner p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.to-top {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.to-top:hover {
  color: var(--ink);
}

/* Animations Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* Responsive Grid Adaptive */
@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero h1 {
    margin-inline: auto;
  }
  .hero-text {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .desktop-nav,
  .brand-caption,
  .header-cta {
    display: none;
  }
  .menu-button {
    display: grid;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }
  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav a {
    padding: 16px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }
  .services-grid,
  .timeline,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .case-card.large .case-preview {
    min-height: 220px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }
  .hero-benefits {
    grid-template-columns: 1fr;
  }
  .for-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .timeline,
  .pricing-grid,
  .for-cards {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .timeline-item:last-child {
    border-bottom: none;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .leads-dashboard {
    transform: scale(0.95);
  }
}

/* ===== Restore old dashboard + requested revisions ===== */

.hero {
  padding: 56px 0 64px;
}

.hero-grid {
  gap: 42px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 4.45vw, 58px);
  max-width: 720px;
  line-height: 1.06;
}

.hero-text {
  margin-top: 16px;
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.58;
}

.hero-slogan {
  margin-top: 16px;
  max-width: 600px;
}

.hero-slogan span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(2, 132, 199, 0.20);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.hero-slogan span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(2, 132, 199, 0.11);
  animation: softPulse 2.5s ease-in-out infinite;
}

.hero-badge {
  margin-top: 12px;
}

.hero-actions {
  margin-top: 22px;
}

.hero-benefits {
  margin-top: 26px;
  padding-top: 22px;
}

.hero-benefits strong {
  font-size: 20px;
}

.visual-title {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin: 0 0 12px 18px;
  padding: 11px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.visual-title strong {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 850;
  color: var(--ink);
}

.visual-title span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.leads-dashboard {
  position: relative;
}

.leads-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.38) 42%, transparent 58%);
  transform: translateX(-130%);
  animation: dashboardShine 9s ease-in-out infinite;
}

.company-card {
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.04);
}

.company-card strong {
  display: block;
  font-size: 16px;
  font-weight: 850;
}

.company-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-list {
  margin-top: 18px;
}

.contact-list a {
  font-weight: 800;
}

.site-footer {
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.8fr) auto;
  gap: 32px;
  align-items: start;
}

.footer-main p {
  margin: 18px 0 0;
  max-width: 420px;
  line-height: 1.55;
}

.footer-contacts {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.footer-contacts strong {
  color: var(--ink);
  font-size: 14px;
}

.footer-contacts a {
  color: var(--ink);
  font-weight: 750;
}

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

.footer-contacts span {
  line-height: 1.45;
}

@keyframes dashboardShine {
  0%, 58% { transform: translateX(-130%); opacity: 0; }
  68% { opacity: 1; }
  88%, 100% { transform: translateX(130%); opacity: 0; }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.78); opacity: 0.7; }
}

@media (max-width: 1120px) {
  .hero {
    padding: 48px 0 56px;
  }

  .visual-title {
    margin-inline: auto;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 36px 0 44px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-slogan span {
    border-radius: 18px;
  }
}


/* simple explanatory text above dashboard */
.visual-title {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 0 12px 18px;
  padding: 0;
  max-width: 420px;
  background: none;
  border: 0;
  box-shadow: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.visual-title strong,
.visual-title span {
  display: inline;
  margin: 0;
  font: inherit;
  color: inherit;
}

@media (max-width: 1120px) {
  .visual-title {
    margin: 0 auto 12px;
    text-align: center;
  }
}


/* Real cases section */
.cases-section .section-head p {
  max-width: 760px;
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
}

.cases-grid-real {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.case-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
}

.case-card-featured .case-preview {
  min-height: 420px;
  border-right: 1px solid var(--border);
  border-bottom: 0;
}

.preview-photo {
  padding: 0;
  background: #eef3f8;
  overflow: hidden;
}

.preview-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.case-card:hover .preview-photo img {
  transform: scale(1.03);
}

.dark-preview {
  background: #0d1120;
}

.case-info {
  display: flex;
  flex-direction: column;
}

.case-info p {
  line-height: 1.62;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.07);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1120px) {
  .case-card-featured {
    grid-template-columns: 1fr;
  }

  .case-card-featured .case-preview {
    min-height: 300px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .cases-grid-real {
    grid-template-columns: 1fr;
  }

  .case-card-featured {
    grid-column: auto;
  }

  .case-preview {
    height: 220px;
  }

  .case-card-featured .case-preview {
    min-height: 220px;
  }
}


/* moved slogan above dashboard */
.visual-title {
  max-width: 520px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.visual-title::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 999px;
  vertical-align: middle;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(2, 132, 199, 0.11);
  animation: softPulse 2.5s ease-in-out infinite;
}

@media (max-width: 1120px) {
  .visual-title {
    max-width: 560px;
  }
}
