 :root {
  --bg: #070707;
  --bg-soft: #0d0d0f;
  --card: #121216;
  --card-hover: #17171c;
  --text: #f7f7f4;
  --muted: #a9a9b2;
  --line: rgba(255, 255, 255, 0.09);
  --gold: #f0c52d;
  --gold-light: #ffe36b;
  --purple: #8f63ff;
  --cyan: #4dd6d0;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(143, 99, 255, .11), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(240, 197, 45, .08), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.page-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}
.page-glow-one { background: var(--purple); top: 10%; left: -280px; }
.page-glow-two { background: var(--gold); bottom: 0; right: -320px; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, .76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.header.scrolled { border-bottom-color: var(--line); }
.nav { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.03em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #0b0b0b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 30px rgba(240, 197, 45, .2);
}
.nav-links { margin-left: auto; display: flex; gap: 28px; }
.nav-links a { color: #d5d5db; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--gold); }
.menu-button { display: none; background: none; border: 0; margin-left: auto; padding: 8px; }
.menu-button span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(240, 197, 45, .15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(240, 197, 45, .25); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 14px; border-radius: 12px; }
.button-secondary { background: transparent; color: #fff; border: 1px solid var(--line); box-shadow: none; }

.hero { padding: 90px 0 80px; min-height: calc(100vh - 78px); display: grid; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px var(--gold); }
.hero h1, .section h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.05em;
  line-height: 1.04;
}
.hero h1 { font-size: clamp(44px, 6vw, 78px); margin: 22px 0; }
.gradient-text {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), #f59f45);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text { color: var(--muted); font-size: 18px; max-width: 720px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-size: 18px; color: #fff; }
.hero-proof span { color: var(--muted); font-size: 13px; }

.hero-visual { position: relative; }
.dashboard-card {
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015)),
    #0c0c10;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.dashboard-card::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -20%;
  width: 300px;
  height: 300px;
  background: rgba(143,99,255,.18);
  filter: blur(70px);
  border-radius: 50%;
}
.dashboard-top { position: relative; display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.dashboard-top h2 { font-size: 22px; margin: 12px 0 0; }
.status { color: #7ce5a4; font-size: 12px; font-weight: 700; }
.status i { display: inline-block; width: 8px; height: 8px; background: #59db8a; border-radius: 50%; margin-right: 6px; box-shadow: 0 0 14px #59db8a; }
.mini-logo { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; color: #111; font-weight: 900; background: var(--gold); }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.metric-grid article { padding: 18px; border-radius: 18px; background: rgba(255,255,255,.045); border: 1px solid var(--line); }
.metric-grid span, .metric-grid small { display: block; color: var(--muted); font-size: 12px; }
.metric-grid strong { display: block; font-size: 28px; margin: 6px 0 2px; }
.metric-grid small { color: #7ce5a4; }
.automation-flow { margin: 24px 0; padding: 20px; border-radius: 20px; background: #0a0a0d; border: 1px solid var(--line); }
.flow-item { display: flex; gap: 12px; align-items: center; }
.flow-item strong, .flow-item small { display: block; }
.flow-item small { color: var(--muted); }
.flow-icon { display: grid; place-items: center; min-width: 38px; height: 38px; border-radius: 12px; background: rgba(255,255,255,.06); color: var(--gold); font-size: 12px; font-weight: 800; }
.flow-item.active .flow-icon { color: #111; background: var(--gold); }
.flow-line { height: 16px; width: 1px; background: var(--line); margin: 4px 0 4px 19px; }
.chart { height: 120px; display: flex; align-items: end; gap: 10px; padding-top: 20px; }
.chart span { flex: 1; border-radius: 8px 8px 2px 2px; background: linear-gradient(var(--gold-light), rgba(240,197,45,.15)); }
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 16px;
  background: rgba(18,18,22,.9);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card small { color: var(--muted); font-size: 11px; }
.floating-card-one { left: -60px; top: 22%; }
.floating-card-two { right: -44px; bottom: 10%; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.02); }
.trust-content { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.trust-content p { color: var(--muted); max-width: 450px; }
.trust-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.trust-tags span, .industry-cloud span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: #d7d7dc; font-size: 13px; background: rgba(255,255,255,.025); }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 46px; }
.section-heading h2, .solutions-copy h2, .contact-copy h2, .industries-card h2 { font-size: clamp(36px, 5vw, 58px); margin: 14px 0 0; }
.section-heading p, .solutions-copy > p, .contact-copy > p, .industries-card p { color: var(--muted); }
.section-heading.centered { display: block; max-width: 760px; text-align: center; margin-inline: auto; margin-bottom: 54px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 310px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(240,197,45,.35); background: var(--card-hover); }
.service-card.featured { grid-row: span 2; background: linear-gradient(160deg, rgba(240,197,45,.14), rgba(143,99,255,.08), rgba(255,255,255,.02)); }
.service-icon { display: inline-grid; place-items: center; min-width: 50px; height: 50px; padding-inline: 12px; border-radius: 14px; background: rgba(240,197,45,.1); color: var(--gold); font-weight: 900; font-size: 12px; }
.card-label { display: block; margin-top: 30px; color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.service-card h3 { font-size: 22px; margin: 20px 0 10px; }
.service-card p, .service-card li { color: var(--muted); font-size: 14px; }
.service-card ul { padding-left: 18px; margin-top: 22px; }
.service-card a { display: inline-block; margin-top: 18px; color: var(--gold); font-weight: 700; font-size: 14px; }

.prospect-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(143,99,255,.09), transparent 30%),
    linear-gradient(180deg, transparent, rgba(255,255,255,.02), transparent);
}
.prospect-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -12px 0 30px;
}
.prospect-fields span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d6d6dc;
  background: rgba(255,255,255,.025);
  font-size: 12px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
}
.pricing-card.featured {
  border-color: rgba(240,197,45,.38);
  background: linear-gradient(155deg, rgba(240,197,45,.13), rgba(143,99,255,.07), rgba(255,255,255,.02));
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.pricing-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pricing-name { color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.pricing-value { margin: 18px 0 8px; color: #fff; font-family: "Space Grotesk", sans-serif; font-size: 36px; font-weight: 700; letter-spacing: -.04em; }
.pricing-value small { color: var(--muted); font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: 0; }
.pricing-card p, .pricing-card li { color: var(--muted); font-size: 13px; }
.pricing-card ul { padding-left: 18px; margin: 16px 0 28px; }
.pricing-card li { margin-bottom: 7px; }
.pricing-action {
  width: 100%;
  min-height: 45px;
  margin-top: auto;
  border: 1px solid rgba(240,197,45,.35);
  border-radius: 13px;
  color: var(--gold);
  background: rgba(240,197,45,.06);
  font-weight: 800;
  cursor: pointer;
}
.pricing-card.featured .pricing-action { color: #111; background: var(--gold); }
.commercial-engine {
  display: grid;
  grid-template-columns: 1.2fr .8fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 18px;
  padding: 28px 30px;
  border: 1px solid rgba(143,99,255,.28);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(143,99,255,.12), rgba(240,197,45,.08));
}
.commercial-engine span { color: var(--gold); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.commercial-engine h3 { margin: 5px 0 2px; font-size: 24px; }
.commercial-engine p { margin: 0; color: var(--muted); font-size: 13px; }
.commercial-engine-price strong, .commercial-engine-price small { display: block; }
.commercial-engine-price strong { font-size: 25px; }
.commercial-engine-price small { color: var(--muted); font-size: 10px; }
.prospect-disclaimer { max-width: 880px; margin: 20px auto 0; color: #777780; text-align: center; font-size: 11px; }

.solutions-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent); }
.solutions-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.solution-tabs { display: flex; gap: 8px; margin: 32px 0 20px; flex-wrap: wrap; }
.solution-tab { border: 1px solid var(--line); background: transparent; color: var(--muted); padding: 10px 14px; border-radius: 999px; cursor: pointer; }
.solution-tab.active { color: #111; background: var(--gold); border-color: var(--gold); font-weight: 800; }
.tab-panel { display: none; padding: 24px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.025); }
.tab-panel.active { display: block; }
.tab-panel h3 { margin-top: 0; }
.tab-panel p { color: var(--muted); margin-bottom: 0; }
.solution-list { display: grid; gap: 14px; }
.solution-list article { display: flex; gap: 22px; padding: 26px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.solution-list article > span { color: var(--gold); font-size: 12px; font-weight: 900; padding-top: 5px; }
.solution-list h3 { margin: 0 0 5px; }
.solution-list p { color: var(--muted); margin: 0; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { padding: 28px; border-top: 1px solid var(--line); }
.process-grid span { color: var(--gold); font-weight: 800; }
.process-grid h3 { font-size: 20px; margin: 28px 0 8px; }
.process-grid p { color: var(--muted); font-size: 14px; }

.industries-card { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; padding: 56px; border-radius: 32px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(143,99,255,.12), rgba(240,197,45,.08), rgba(255,255,255,.02)); }
.industry-cloud { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.industry-cloud span:nth-child(odd) { transform: translateY(-8px); }

.contact-section { padding-top: 60px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-points { display: grid; gap: 12px; margin: 30px 0; }
.contact-points div { color: #dedee3; }
.contact-points span { color: var(--gold); margin-right: 9px; }
.whatsapp-link { display: inline-flex; padding-bottom: 3px; color: var(--gold); font-weight: 800; border-bottom: 1px solid var(--gold); }
.contact-note { display: block; color: var(--muted); margin-top: 10px; }
.contact-form { padding: 34px; border-radius: 26px; border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow); }
.contact-form label { display: block; color: #dedee3; font-size: 13px; font-weight: 700; margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, textarea, select {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  color: #fff;
  background: #0b0b0e;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: rgba(240,197,45,.65); box-shadow: 0 0 0 3px rgba(240,197,45,.08); }
textarea { resize: vertical; }
.contact-form .button { width: 100%; }
.form-message { color: #7ce5a4; text-align: center; min-height: 24px; }

.footer { padding: 70px 0 30px; border-top: 1px solid var(--line); background: #050505; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 60px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid p, .footer-grid a, .footer-grid span { color: var(--muted); font-size: 14px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line); color: #777780; font-size: 12px; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 40;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #07160c;
  font-weight: 900;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}

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

.ai-chat-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 42;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 8px 17px 8px 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 20px 45px rgba(0,0,0,.42);
  font-weight: 900;
  cursor: pointer;
}
.ai-chat-toggle-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--gold);
  background: #111;
  font-size: 11px;
  letter-spacing: .04em;
}

.ai-chat {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: min(390px, calc(100vw - 28px));
  height: min(610px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: #0d0d11;
  box-shadow: 0 34px 90px rgba(0,0,0,.62);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.ai-chat.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(240,197,45,.12), rgba(143,99,255,.08));
}
.ai-chat-identity { display: flex; align-items: center; gap: 11px; }
.ai-chat-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #111;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.ai-chat-identity strong, .ai-chat-identity small { display: block; }
.ai-chat-identity strong { font-size: 14px; }
.ai-chat-identity small { color: var(--muted); font-size: 11px; }
.ai-chat-identity small i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #59db8a;
  box-shadow: 0 0 10px #59db8a;
}
.ai-chat-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #d9d9df;
  background: rgba(255,255,255,.06);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}
.ai-chat-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  overflow-y: auto;
  padding: 18px;
  scrollbar-color: rgba(255,255,255,.16) transparent;
}
.chat-message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  color: #e9e9ed;
  background: #19191f;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.chat-message.assistant { align-self: flex-start; border-bottom-left-radius: 5px; }
.chat-message.user {
  align-self: flex-end;
  color: #111;
  background: var(--gold);
  border-bottom-right-radius: 5px;
  font-weight: 600;
}
.chat-message.pending { color: var(--muted); }
.ai-chat-suggestions {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 18px 13px;
}
.ai-chat-suggestions button {
  flex: none;
  padding: 8px 11px;
  border: 1px solid rgba(240,197,45,.3);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(240,197,45,.06);
  font-size: 11px;
  cursor: pointer;
}
.ai-chat-form {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  padding: 12px 14px 8px;
  border-top: 1px solid var(--line);
}
.ai-chat-form textarea {
  min-height: 45px;
  max-height: 110px;
  margin: 0;
  padding: 12px 13px;
  resize: none;
  font-size: 13px;
}
.ai-chat-form button {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 13px;
  color: #111;
  background: var(--gold);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}
.ai-chat-form button:disabled { opacity: .55; cursor: wait; }
.ai-chat-privacy {
  margin: 0;
  padding: 0 14px 10px;
  color: #71717b;
  text-align: center;
  font-size: 9px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-cta { display: none; }
  .hero-grid, .solutions-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-row: auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .industries-card { grid-template-columns: 1fr; gap: 24px; }
  .commercial-engine { grid-template-columns: 1fr 1fr; }
  .commercial-engine .button { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .menu-button { display: block; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #0c0c0f;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .hero { min-height: auto; padding: 54px 0 70px; }
  .hero h1 { font-size: clamp(39px, 13vw, 58px); }
  .hero-text { font-size: 16px; }
  .hero-proof { gap: 18px; }
  .floating-card { display: none; }
  .trust-content { flex-direction: column; align-items: flex-start; padding-block: 24px; }
  .trust-tags { justify-content: flex-start; }
  .section { padding: 82px 0; }
  .services-grid, .pricing-grid, .process-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .industries-card { padding: 30px; }
  .contact-form { padding: 22px; }
  .footer-grid { gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .commercial-engine { grid-template-columns: 1fr; padding: 24px; }
  .commercial-engine .button { grid-column: auto; }
  .whatsapp-float span { display: none; }
  .whatsapp-float::before { content: "WA"; }
  .ai-chat {
    right: 14px;
    bottom: 82px;
    height: min(620px, calc(100dvh - 102px));
  }
  .ai-chat-toggle { right: 14px; bottom: 14px; }
  .whatsapp-float { right: auto; left: 14px; bottom: 14px; }
}
