:root {
  --bg: #0b0d12;
  --surface: #11141b;
  --surface-soft: #171b24;
  --surface-soft-2: #1b202a;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #a4acbb;
  --primary: #ffffff;
  --dark-btn: #f5f7fb;
  --dark-text: #090b10;
  --accent: #7c8cff;
  --accent-2: #4ecdc4;
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.24);
  --shadow-strong: 0 20px 70px rgba(0, 0, 0, 0.35);
  --container: 1260px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  animation: floatOrb 14s ease-in-out infinite;
}

.orb-one {
  width: 380px;
  height: 380px;
  background: rgba(124, 140, 255, 0.22);
  top: -100px;
  left: -40px;
}

.orb-two {
  width: 320px;
  height: 320px;
  background: rgba(78, 205, 196, 0.16);
  right: 0;
  top: 140px;
  animation-delay: 2s;
}

.orb-three {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.06);
  bottom: -120px;
  left: 30%;
  animation-delay: 4s;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
  opacity: 0.2;
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 35%, rgba(0,0,0,0.35) 100%);
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-24px) translateX(16px); }
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(11, 13, 18, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dark-btn);
  color: var(--dark-text);
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.94rem;
}

.hero-section {
  padding: 76px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.eyebrow-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  font-weight: 700;
}

.eyebrow-muted {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 760px;
  margin-bottom: 22px;
}

.hero-copy h1 span {
  color: #9aa4b3;
}

.hero-description {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--dark-btn);
  color: var(--dark-text);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: var(--border);
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.hero-info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.hero-info-card span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.window {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.window-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.traffic-lights {
  display: flex;
  gap: 8px;
}

.traffic-lights span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.traffic-lights .red { background: #ff5f57; }
.traffic-lights .yellow { background: #febc2e; }
.traffic-lights .green { background: #28c840; }

.window-address {
  flex: 1;
  min-height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.window-body {
  padding: 22px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  min-height: 560px;
  background:
    radial-gradient(circle at top right, rgba(124,140,255,0.08), transparent 25%),
    linear-gradient(180deg, #11141b 0%, #0f131a 100%);
}

.window-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-module {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.line,
.mock-window-line,
.mock-window-title,
.mock-window-bar {
  background: linear-gradient(90deg, #2f3742, #444e5c);
  border-radius: 999px;
}

.line {
  width: 100%;
  height: 10px;
}

.line.lg {
  width: 74%;
  height: 14px;
}

.line.md {
  width: 86%;
}

.line.sm {
  width: 62%;
}

.dots-row {
  display: flex;
  gap: 8px;
}

.dots-row span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #67707f;
}

.small-pill {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  color: #0b0d12;
  font-size: 0.8rem;
  font-weight: 800;
}

.window-main {
  position: relative;
  border-radius: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 22px;
  overflow: hidden;
}

.floating-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.floating-chip-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: #d7dde8;
  font-size: 0.84rem;
  font-weight: 700;
}

.window-chat-card {
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.window-chat-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.chat-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: white;
  color: #0b0d12;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.95rem;
}

.chat-identity h3 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.chat-identity p {
  color: var(--muted);
  font-size: 0.88rem;
}

.window-chat-messages {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-message {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.55;
  font-size: 0.95rem;
}

.bot-preview {
  background: rgba(255,255,255,0.08);
}

.user-preview {
  background: white;
  color: #0b0d12;
  margin-left: auto;
  font-weight: 600;
}

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

.mini-case-card {
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 14px;
}

.mini-case-card strong {
  display: block;
  margin-bottom: 6px;
}

.mini-case-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-bottom-note {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 20px;
  color: var(--muted);
}

.trust-strip {
  padding: 8px 0 34px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.trust-strip-inner span {
  min-height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  color: var(--muted);
  font-weight: 700;
}

.content-section {
  padding: 58px 0;
}

.pricing-section,
.showcase-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

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

.center-heading {
  text-align: center;
  margin-inline: auto;
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.services-grid,
.showcase-grid,
.faq-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.showcase-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 26px;
}

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

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

.service-card,
.showcase-card,
.pricing-card,
.quote-builder-card,
.live-chat-card,
.moving-card,
.faq-card,
.process-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.showcase-card:hover,
.pricing-card:hover,
.quote-builder-card:hover,
.moving-card:hover,
.faq-card:hover,
.process-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.service-card,
.faq-card,
.process-card {
  border-radius: 24px;
  padding: 24px;
}

.service-number,
.process-step {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-card h3,
.faq-card h3,
.process-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.faq-card p,
.process-card p,
.showcase-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.showcase-card {
  overflow: hidden;
  border-radius: 24px;
}

.showcase-visual {
  height: 230px;
  padding: 18px;
}

.showcase-blue {
  background: linear-gradient(135deg, rgba(124,140,255,0.22), rgba(255,255,255,0.04));
}

.showcase-green {
  background: linear-gradient(135deg, rgba(78,205,196,0.18), rgba(255,255,255,0.04));
}

.showcase-violet {
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(124,140,255,0.08));
}

.mock-app-window {
  width: 100%;
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: 20px;
  background: rgba(9, 12, 18, 0.34);
  border: 1px solid rgba(255,255,255,0.1);
}

.mock-window-bar {
  width: 40px;
  height: 10px;
  position: relative;
}

.mock-window-bar span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.mock-window-bar span:nth-child(1) { background: #ff5f57; }
.mock-window-bar span:nth-child(2) { background: #febc2e; }
.mock-window-bar span:nth-child(3) { background: #28c840; }

.mock-window-title {
  width: 70%;
  height: 16px;
}

.mock-window-line {
  width: 100%;
  height: 10px;
}

.mock-window-line.short {
  width: 64%;
}

.mock-window-pill {
  margin-top: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  color: #0b0d12;
  font-size: 0.8rem;
  font-weight: 800;
}

.showcase-copy {
  padding: 22px;
}

.showcase-copy h3 {
  margin-bottom: 10px;
}

.moving-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 18px 0;
}

.moving-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollCards 28s linear infinite;
  padding: 0 18px;
}

.moving-card {
  min-width: 250px;
  border-radius: 22px;
  padding: 22px;
}

.moving-card span {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.moving-card p {
  color: var(--muted);
  line-height: 1.6;
}

@keyframes scrollCards {
  0% { transform: translateX(0); }
  100% { transform: translateX(-35%); }
}

.skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-row span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.pricing-card,
.quote-builder-card {
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.pricing-card {
  padding: 28px;
}

.pricing-badge,
.quote-badge {
  display: inline-flex;
  min-height: 34px;
  padding: 0 14px;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-badge {
  background: white;
  color: #0b0d12;
}

.quote-badge {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.pricing-card h3,
.quote-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price-row strong {
  font-size: 3rem;
  letter-spacing: -0.04em;
}

.price-row span,
.pricing-copy,
.quote-header p,
.quote-summary {
  color: var(--muted);
}

.pricing-copy,
.quote-header p {
  line-height: 1.75;
}

.pricing-list {
  list-style: none;
  margin: 20px 0 24px;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  line-height: 1.55;
}

.pricing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 800;
}

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

.quote-builder-card {
  padding: 28px;
}

.quote-grid,
.addon-grid {
  display: grid;
  gap: 16px;
}

.quote-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 18px 0;
}

.addon-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field select,
.field textarea,
.live-chat-input-row input {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  font-size: 0.95rem;
}

.field select option {
  color: black;
}

.full-field {
  margin-bottom: 18px;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  font-weight: 600;
  cursor: pointer;
}

.addon-item input {
  accent-color: white;
}

.quote-result-box {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 18px;
}

.quote-result-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.quote-result-line strong {
  font-size: 1.16rem;
}

.small-line strong {
  font-size: 1rem;
}

.quote-summary {
  line-height: 1.7;
}

.quote-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.quote-actions .btn {
  flex: 1;
}

.live-chat-card {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.live-chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.live-chat-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: white;
  color: #0b0d12;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.live-chat-title h3 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.live-chat-title p {
  color: var(--muted);
  font-size: 0.88rem;
}

.reset-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.live-chat-messages {
  height: 440px;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #12161e 0%, #0f131a 100%);
}

.live-chat-messages::-webkit-scrollbar {
  width: 8px;
}

.live-chat-messages::-webkit-scrollbar-thumb {
  background: #3e4652;
  border-radius: 999px;
}

.message {
  max-width: 82%;
  padding: 13px 15px;
  border-radius: 18px;
  line-height: 1.55;
  font-size: 0.95rem;
  white-space: pre-wrap;
}

.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
}

.user {
  align-self: flex-end;
  background: white;
  color: #0b0d12;
}

.live-chat-input-row {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.live-chat-input-row button {
  min-width: 120px;
  border: none;
  border-radius: 16px;
  background: white;
  color: #0b0d12;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  padding: 48px 0 56px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer-inner h3 {
  margin-bottom: 8px;
}

.footer-inner p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Floating widget */
.floating-chat-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  min-height: 62px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(224,228,236,0.96));
  color: #0b0d12;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
}

.floating-chat-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #0b0d12;
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.floating-chat-panel {
  position: fixed;
  right: 24px;
  bottom: 98px;
  width: min(420px, calc(100vw - 24px));
  max-width: 420px;
  z-index: 210;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(17, 20, 27, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(18px);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-panel-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

.floating-panel-title {
  flex: 1;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
}

.close-floating-chat {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.floating-panel-inner {
  display: flex;
  flex-direction: column;
}

.floating-live-chat-top {
  padding: 16px 18px;
}

.floating-messages {
  height: 380px;
}

.floating-input-row {
  padding: 14px 16px 16px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .pricing-layout,
  .services-grid,
  .showcase-grid,
  .process-grid,
  .faq-grid,
  .hero-info-grid,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-sidebar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .mini-use-cases {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .quote-grid,
  .addon-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .quote-actions,
  .hero-actions,
  .footer-inner {
    flex-direction: column;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .quote-actions .btn,
  .btn,
  .header-cta {
    width: 100%;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .floating-chat-btn {
    right: 14px;
    bottom: 14px;
    min-height: 58px;
    padding: 0 16px;
  }

  .floating-chat-panel {
    right: 10px;
    bottom: 84px;
    width: calc(100vw - 20px);
    max-width: none;
  }
}