* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #07151d;
  --bg-soft: #0b1d28;
  --bg-elevated: #102932;
  --text: #ecf8f2;
  --text-second: #b7d8d2;
  --text-muted: #92b1ad;
  --text-faint: #ccd9d7;
  --primary: #9aefac;
  --primary-deep: #1cb45a;
  --primary-2: #73d1ff;
  --accent: #ffd470;
  --line: rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.08);
  --dark: #071d23;
  --dark-2: #10251e;
  --card: #102b31;
  --card-2: #15333b;
  --danger: #edb172;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
  --radius-large: 34px;
  --radius-medium: 22px;
  --radius-small: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.72;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -14%;
  z-index: -2;
  background-image: radial-gradient(circle, rgba(142,255,191,0.12) 0%, transparent 38%), radial-gradient(circle at 88% 10%, rgba(87,181,255,0.13) 0%, transparent 30%);
  filter: blur(50px);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 21, 29, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrapper {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #479169);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.36);
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  color: #07301d;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-width: 1.2;
  fill: none;
}

.brand-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--text-second);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--text);
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  background: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  padding: 104px 0 96px;
  background:
    radial-gradient(circle at 80% 20%, rgba(24, 92, 78, 0.34) 0%, transparent 30%),
    linear-gradient(120deg, rgba(21,41,47,0.98), rgba(8,28,34,0.96));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(420px, 480px);
  align-items: center;
  gap: 50px;
}

.hero-copy h1 {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(3.16rem, 5.4vw, 5rem);
  line-height: 0.97;
  letter-spacing: -0.075em;
  margin-top: 24px;
  max-width: 660px;
}

.hero-text {
  color: var(--text-second);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  max-width: 660px;
  margin-top: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-second);
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
}

.centered-eyebrow {
  justify-content: center;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #3de0a2);
  color: #052615;
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-large {
  min-height: 52px;
  padding: 0 30px;
}

.btn-medium {
  min-height: 44px;
  padding: 0 24px;
}

.btn-small {
  min-height: 36px;
  padding: 0 18px;
}

.btn-full {
  width: 100%;
  min-height: 48px;
}

.hero-proof {
  margin-top: 60px;
  display: flex;
  gap: 54px;
  align-items: center;
}

.hero-proof .stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  display: block;
}

.hero-proof .stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-panel {
  position: relative;
}

.hero-panel .dashboard-frame {
  background: linear-gradient(180deg, rgba(20,52,56,0.96), rgba(14,34,38,0.98));
  border-radius: var(--radius-large);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.hero-panel .dashboard-frame:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  left: -160px;
  top: -110px;
  border: 1px solid rgba(255,255,255,0.28);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-top h3 {
  margin-top: 8px;
  font-size: 1.48rem;
  line-height: 1.1;
}

.panel-kicker {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.19em;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-second);
}

.live-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(154,239,172,0.78);
  animation: pulse 2s ease infinite;
}

.dashboard-content {
  margin-top: 24px;
}

.system-card {
  background: linear-gradient(135deg, rgba(24,80,71,0.72), rgba(15,42,38,0.9));
  border-radius: var(--radius-small);
  border: 1px solid var(--line);
  padding: 20px;
}

.highlighted-card {
  background: linear-gradient(135deg, rgba(33,100,69,0.8), rgba(24,56,49,0.75));
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-second);
}

.status-good {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
}

.flow-metrics {
  display: flex;
  align-items: end;
  margin-top: 24px;
}

.flow-metrics .metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.flow-metrics .metric-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 10px;
}

.flow-metrics > div:first-child {
  margin-right: 46px;
}

.agent-list {
  margin-top: 22px;
}

.agent-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}

.agent-row:first-child {
  border-top: none;
}

.agent-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  display: grid;
  place-items: center;
}

.large {
  width: 54px;
  height: 54px;
}

.agent-icon svg,
.icon-box svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-width: 2;
  fill: none;
}

.agent-name {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.agent-detail {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.pill {
  margin-left: auto;
  padding: 7px 11px;
  border-radius: 99px;
  font-size: 0.66rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.pill.success {
  background: rgba(154,239,172,0.14);
  border-color: rgba(154,239,172,0.54);
  color: var(--primary);
}

.pill.warning {
  background: rgba(255,212,112,0.12);
  border-color: rgba(255,212,112,0.56);
  color: var(--accent);
}

.pill.spin {
  background: rgba(115,209,255,0.12);
  border-color: rgba(115,209,255,0.58);
  color: var(--primary-2);
}

.automation-bar {
  margin-top: 20px;
}

.bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-second);
  font-size: 0.74rem;
}

.progress-track {
  height: 9px;
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  margin-top: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.progress-fill.alt {
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
}

.logo-bar {
  background: #09211d;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.logo-grid {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section {
  padding: 94px 0;
}

.section-head {
  margin-bottom: 40px;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered .section-lede {
  max-width: 710px;
  margin: auto;
}

.section-head h2 {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--text);
  margin-top: 18px;
}

.section-lede {
  margin-top: 14px;
  color: var(--text-second);
  font-size: 1.03rem;
  line-height: 1.86;
  max-width: 700px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 24px;
}

.service-card,
.agent-card,
.price-card {
  border-radius: var(--radius-medium);
  padding: 34px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(25,52,56,0.46), rgba(20,34,35,0.88));
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.service-card.highlight {
  background: linear-gradient(120deg, rgba(38,127,91,0.86), rgba(18,46,51,0.96));
  border-color: rgba(154,239,172,0.35);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
}

.icon-box svg {
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.10rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-second);
  font-size: 0.88rem;
  line-height: 1.76;
}

.text-link {
  margin-top: auto;
  padding-top: 26px;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
}

.text-link span {
  margin-left: 6px;
}

.platform {
  background: linear-gradient(180deg, rgba(10,36,37,0.45), rgba(9,32,37,0.95));
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(460px, 1fr);
  gap: 42px;
  align-items: center;
}

.desktop-panel {
  background: linear-gradient(120deg, rgba(15,38,41,0.9), rgba(17,57,54,0.78));
  border-radius: var(--radius-large);
  border: 1px solid var(--line);
  padding: 34px;
}

.panel-heading h2 {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(1.84rem, 3vw, 2.6rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
  margin-top: 10px;
}

.map-card {
  margin-top: 34px;
  padding: 28px;
  border-radius: var(--radius-medium);
  background: rgba(10, 27, 26, 0.62);
  border: 1px solid var(--line-soft);
}

.map-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.map-node {
  padding: 9px 18px;
  border-radius: 99px;
  color: var(--text-second);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
}

.map-node.active {
  color: #062b1b;
  background: var(--primary);
  border-color: transparent;
}

.connector {
  color: var(--text-muted);
}

.map-stack {
  margin-top: 30px;
}

.stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-second);
  font-size: 0.84rem;
  padding: 10px 0;
}

.stack-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-2);
}

.platform-copy h2 {
  margin-top: 20px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.88rem);
  line-height: 1.10;
  letter-spacing: -0.05em;
}

.platform-copy p {
  margin-top: 20px;
  color: var(--text-second);
}

.check-list {
  list-style: none;
  margin-top: 28px;
  margin-bottom: 34px;
}

.check-list li {
  color: var(--text-second);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  font-size: 0.88rem;
}

.agent-card {
  min-height: 300px;
}

.agent-card.highlighted-agent {
  background: linear-gradient(135deg, rgba(33,116,72,0.78), rgba(21,61,58,0.84));
  border-color: rgba(154,239,172,0.45);
}

.agent-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agent-icon.large {
  color: var(--primary);
  border-color: var(--line);
}

.agent-card h3 {
  margin-top: 46px;
  font-size: 1.20rem;
  line-height: 1.18;
}

.agent-card p {
  font-size: 0.88rem;
  color: var(--text-second);
  margin-top: 14px;
}

.agent-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.agent-stats span {
  border-radius: 99px;
  padding: 6px 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.04);
  color: var(--text-second);
  font-size: 0.70rem;
}

.workflow {
  background: linear-gradient(135deg, rgba(18,44,42,0.8), rgba(9,31,34,1));
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(540px, 1fr);
  gap: 54px;
  align-items: center;
}

.workflow h2 {
  margin-top: 20px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.98rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.workflow .section-lede {
  margin-top: 20px;
}

.timeline {
  position: relative;
}

.timeline-row {
  display: flex;
  gap: 26px;
  padding: 26px;
  border-radius: var(--radius-medium);
  border: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.03);
  margin-bottom: 16px;
}

.timeline-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #062c20;
  font-weight: 900;
  font-size: 0.78rem;
}

.timeline-row h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-row p {
  color: var(--text-second);
  font-size: 0.84rem;
  line-height: 1.78;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.price-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.price-card.featured-plan {
  border-color: rgba(154,239,172,0.65);
  background: linear-gradient(180deg, rgba(36,117,82,0.55), rgba(21,43,40,0.93));
  transform: translateY(-12px);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 99px;
  padding: 7px 13px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  background: var(--accent);
  color: #302107;
}

.price-card-head {
  padding-top: 20px;
}

.plan-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.plan-subtitle {
  display: block;
  margin-top: 6px;
  font-size: 0.70rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price {
  margin-top: 36px;
  font-size: 2.56rem;
  font-weight: 800;
  line-height: 1;
}

.price .currency {
  font-size: 1rem;
  vertical-align: top;
}

.price-unit {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.feature-list {
  margin-top: 30px;
  list-style: none;
  flex: 1;
}

.feature-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--text-second);
  font-size: 0.82rem;
}

.feature-list li:first-child {
  border-top: none;
}

.feature-list li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 10px;
}

.price-card .btn {
  margin-top: 20px;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #052b1d;
  padding: 56px 0;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band .eyebrow {
  color: #092118;
}

.cta-band h2 {
  margin-top: 14px;
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.76rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.cta-band .btn-primary {
  background: #07151d;
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: center;
}

.contact .section-lede {
  margin-top: 20px;
}

.contact-details {
  margin-top: 36px;
}

.contact-details > div {
  margin-top: 16px;
}

.detail-label {
  display: block;
  font-size: 0.70rem;
  font-weight: 900;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-value {
  display: block;
  margin-top: 6px;
  color: var(--text);
}

.contact-form {
  border-radius: var(--radius-large);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(23,56,54,0.82), rgba(12,34,35,0.88));
  padding: 28px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--text-second);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  color: var(--text);
  padding: 13px 14px;
  font-family: inherit;
  font-size: 0.84rem;
  outline: none;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(154,239,172,0.15);
}

.submit-button {
  width: 100%;
  margin-top: 8px;
}

.footer {
  background: #05151a;
  padding-top: 84px;
  padding-bottom: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(150px, 0.9fr) minmax(150px, 0.9fr) minmax(150px, 0.9fr);
  gap: 40px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.78rem;
  max-width: 260px;
  line-height: 1.84;
}

.footer-grid a {
  display: block;
  color: var(--text-second);
  font-size: 0.78rem;
  margin-top: 12px;
}

.footer-title {
  display: block;
  color: var(--text);
  font-weight: 800;
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-muted);
  font-size: 0.72rem;
  display: flex;
  justify-content: space-between;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px transparent; }
}

@media (max-width: 980px) {
  .container {
    width: min(1180px, calc(100% - 38px));
  }

  .hero-grid,
  .platform-grid,
  .workflow-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 88px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 9vw, 4.5rem);
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 34px;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured-plan {
    transform: none;
  }

  .cta-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 19px;
    right: 19px;
    top: 84px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(10,36,39,0.98);
    border-radius: 12px;
    border: 1px solid var(--line);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding: 58px 0 64px;
  }

  .hero-copy h1 {
    font-size: 2.72rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-card,
  .agent-card,
  .price-card,
  .desktop-panel,
  .contact-form {
    padding: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .logo-grid {
    justify-content: center;
    gap: 24px;
  }
}
