:root {
  --page-max-width: 1280px;
  --nav-text: #0f172a;
  --muted: #475569;
  --line: #dbe3ef;
  --surface: #f5f6f8;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--nav-text);
  display: block;
}

.cta-page,
.cta-page * {
  box-sizing: border-box;
}

.cta-page {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
}

.site-header {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  position: relative;
  height: 103px;
  min-height: 103px;
  display: block;
  padding: 0;
  z-index: 120;
  box-shadow: 0 14px 24px -24px rgba(15, 23, 42, 0.5);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  bottom: -10px;
  height: 18px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(148, 163, 184, 0.35) 0%, rgba(148, 163, 184, 0) 72%);
  filter: blur(6px);
  transform: translateX(-50%);
}

.logo-home-link {
  display: inline-block;
  position: absolute;
  left: 53px;
  top: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  width: 207px;
  height: 76px;
  object-fit: cover;
}

.site-nav {
  display: block;
}

.nav-link {
  position: absolute;
  top: 42px;
  width: 112px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  text-decoration: none;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
}

.site-nav .nav-link:nth-child(1) {
  left: 390px;
}

.site-nav .nav-link:nth-child(2) {
  left: 522px;
}

.site-nav .nav-link:nth-child(3) {
  left: 654px;
}

.site-nav .nav-link:nth-child(4) {
  left: 786px;
}

.nav-solutions-trigger {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-solutions-trigger::after {
  content: "▾";
  margin-left: 6px;
  font-size: 13px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-solutions-trigger.is-open::after {
  transform: rotate(180deg);
}

.nav-solutions-trigger:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
  border-radius: 4px;
}

.solutions-mega-menu {
  position: absolute;
  left: 50%;
  top: 88px;
  transform: translateX(-50%) translateY(8px);
  width: min(1180px, calc(100vw - 32px));
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 140;
}

.solutions-mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.solutions-mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.solutions-mega-title {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.solutions-mega-list {
  display: grid;
  gap: 14px;
}

.solutions-mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(30, 41, 59, 0.76);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s ease;
}

.solutions-mega-link .material-symbols-outlined {
  color: rgba(236, 91, 19, 0.78);
  font-size: 20px;
}

.solutions-mega-link:hover {
  color: #ec5b13;
}

.solutions-mega-link-industry:hover {
  color: #2563eb;
}

.solutions-mega-link-industry .material-symbols-outlined {
  color: #2563eb;
}

.solutions-platform-list {
  display: grid;
  gap: 14px;
}

.solutions-platform-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.solutions-platform-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.solutions-platform-icon .material-symbols-outlined {
  font-size: 20px;
}

.solutions-platform-icon-teal { background: #ccfbf1; color: #0f766e; }
.solutions-platform-icon-red { background: #fee2e2; color: #b91c1c; }
.solutions-platform-icon-orange { background: #ffedd5; color: #c2410c; }
.solutions-platform-icon-green { background: #dcfce7; color: #15803d; }
.solutions-platform-icon-blue { background: #dbeafe; color: #1d4ed8; }

.solutions-platform-name {
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.solutions-platform-meta {
  margin: 3px 0 0;
  color: rgba(30, 41, 59, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
}

.header-actions {
  position: absolute;
  left: 970px;
  top: 32px;
  width: 247px;
  height: 40px;
}

.language-switch {
  position: absolute;
  left: 0;
  top: 4px;
  width: 89px;
  height: 32px;
  background: #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
}

.lang-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  width: 41px;
  height: 24px;
  padding: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lang-button.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-cta {
  position: absolute;
  left: 109px;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 40px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.cta-content {
  width: min(100%, 1120px);
  margin: 10px auto 0;
  padding: 28px 24px 0;
}

.intro-section h1 {
  margin: 0;
  max-width: 820px;
  color: #232833;
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  font-weight: 700;
}

.intro-section p {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.intro-section a {
  color: #2f3743;
}

.ai-assistant-banner {
  margin-top: 34px;
  background: #dce4ef;
  border: 1px solid #c6d5ea;
  border-radius: 22px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.ai-assistant-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
}

.ai-assistant-icon-wrap .material-symbols-outlined {
  color: #2f7de5;
  font-size: 26px;
}

.ai-assistant-copy h2 {
  margin: 0;
  color: #172033;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.ai-assistant-copy p {
  margin: 6px 0 0;
  max-width: 760px;
  color: #4a5569;
  font-size: 14px;
  line-height: 1.5;
}

.ai-assistant-button {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #3b8ef5 0%, #2f79df 100%);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  padding: 16px 26px;
  cursor: pointer;
  white-space: nowrap;
}

.ai-assistant-button:hover {
  filter: brightness(0.98);
}

.form-section {
  margin-top: 42px;
}

.form-section h2 {
  margin: 0 0 22px;
  color: #121826;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

label span {
  display: inline-block;
  margin-bottom: 8px;
  color: #161c28;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d7dbe3;
  border-radius: 8px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #1f2937;
  padding: 12px 14px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: #9eb6e4;
}

.full-field {
  display: block;
  margin-top: 18px;
}

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

.form-block {
  margin-top: 20px;
}

.form-block h3 {
  margin: 0 0 12px;
  color: #161c28;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  border: 1px solid #cdd3de;
  border-radius: 999px;
  background: #ffffff;
  color: #5b6472;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  padding: 7px 14px;
  cursor: pointer;
}

.chip-active {
  border-color: #8db3ff;
  color: #2563eb;
  background: #f3f7ff;
}

.upload-box {
  border: 1.5px dashed #aeb6c3;
  border-radius: 8px;
  min-height: 144px;
  background: #fbfcfd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  cursor: pointer;
}

.upload-box input {
  display: none;
}

.upload-icon {
  color: #7a8698;
  font-size: 20px;
}

.upload-title {
  color: #2563eb;
  font-size: 13px;
  line-height: 16px;
}

.upload-caption {
  color: #6b7280;
  font-size: 12px;
  line-height: 16px;
}

.submit-btn {
  margin-top: 20px;
  border: 0;
  border-radius: 6px;
  background: #2563eb;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
}

.submit-btn:hover {
  background: #1d4ed8;
}

.ai-discussion-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.ai-discussion-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ai-discussion-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
}

.ai-discussion-panel {
  position: relative;
  width: min(920px, calc(100vw - 28px));
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  margin: 18px auto;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #dbe3ef;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.3);
  padding: 22px;
}

.ai-discussion-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ai-discussion-head h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.ai-discussion-head p {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.ai-close-btn {
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eef2f7;
  color: #344054;
  cursor: pointer;
}

.ai-discussion-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ai-discussion-grid label span,
.ai-context-field span,
.ai-output-field span {
  display: block;
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}

.ai-discussion-grid select,
.ai-context-field textarea,
.ai-output-field textarea {
  width: 100%;
  border: 1px solid #d7dbe3;
  border-radius: 8px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #1f2937;
  padding: 10px 12px;
  outline: none;
}

.ai-help-section {
  margin-top: 14px;
}

.ai-help-title {
  color: #1f2937;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ai-help-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-help-chip {
  border: 1px solid #cdd3de;
  border-radius: 999px;
  background: #ffffff;
  color: #4b5563;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  padding: 7px 11px;
  cursor: pointer;
}

.ai-help-chip.is-selected {
  border-color: #8db3ff;
  background: #f3f7ff;
  color: #2563eb;
}

.ai-context-field {
  display: block;
  margin-top: 14px;
}

.ai-output-field {
  display: block;
  margin-top: 14px;
}

.ai-output-field textarea {
  background: #f8fafc;
}

.ai-action-row {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ai-generate-btn,
.ai-secondary-btn {
  border: 0;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  padding: 10px 14px;
  cursor: pointer;
}

.ai-generate-btn {
  background: #2563eb;
  color: #ffffff;
}

.ai-secondary-btn {
  background: #eef2f7;
  color: #334155;
}

.footer {
  width: 100%;
  background: #ffffff;
  padding: 58px 0 26px;
  margin-top: 56px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: #d5dbe5;
}

.footer-inner {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-simple {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 38px;
}

.footer-brand-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 760px;
  min-width: 0;
}

.footer-brand-top {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.footer-logo {
  width: 207px;
  height: 76px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand-name {
  color: #0f172a;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
}

.footer-brand-tag {
  color: #475569;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.footer-brand-description {
  color: #64748b;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  max-width: 740px;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.footer-heading {
  color: #0f172a;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-link,
.footer-contact-item,
.footer-social-link {
  color: #64748b;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  text-decoration: none;
}

.footer-contact-group {
  min-width: 210px;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-social-icon {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover,
.footer-link:hover {
  color: #0f172a;
}

.footer-bottom-bar {
  border-top: 1px solid #cbd5e1;
  margin-top: 14px;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copyright {
  color: #64748b;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.footer-policy-links {
  min-height: 20px;
}

.float-btn {
  position: fixed;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  text-decoration: none;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
  z-index: 180;
}

.float-btn.to-top {
  bottom: 74px;
  background: #3b82f6;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.float-btn.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.float-btn.wa {
  bottom: 22px;
  background: #22c55e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .site-header {
    position: static;
    display: flex;
    max-width: none;
    height: auto;
    padding: 16px 24px 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-home-link {
    position: static;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 1;
  }

  .nav-link {
    position: static;
    width: auto;
    height: auto;
    display: inline-flex;
  }

  .header-actions {
    position: static;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .language-switch {
    position: static;
  }

  .header-cta {
    position: static;
    left: auto;
    top: auto;
  }

  .cta-content {
    margin-top: 18px;
    padding-top: 22px;
  }

  .intro-section h1 {
    font-size: 42px;
  }

  .intro-section p {
    font-size: 18px;
  }

  .form-section h2 {
    font-size: 31px;
  }

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

  .ai-assistant-banner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .ai-assistant-button {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    font-size: 15px;
  }

  .ai-discussion-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .solutions-mega-menu {
    width: calc(100vw - 20px);
    max-height: 70vh;
    overflow-y: auto;
    padding: 18px;
  }

  .solutions-mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }

  .site-logo {
    width: 170px;
    height: auto;
  }

  .cta-content {
    padding: 16px 16px 0;
  }

  .intro-section h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .intro-section p {
    font-size: 16px;
  }

  .form-section h2 {
    font-size: 28px;
  }

  label span {
    font-size: 16px;
  }

  .form-block h3 {
    font-size: 19px;
  }

  .ai-assistant-copy h2 {
    font-size: 17px;
  }

  .ai-assistant-copy p {
    font-size: 14px;
  }

  .ai-assistant-icon-wrap {
    width: 42px;
    height: 42px;
  }

  .ai-assistant-icon-wrap .material-symbols-outlined {
    font-size: 22px;
  }

  .ai-discussion-panel {
    padding: 16px;
  }

  .chip {
    font-size: 12px;
    padding: 7px 12px;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
