/* Devology landing styles */

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #eef2ff;
  --line: #e5e9f2;
  --text: #0f172a;
  --muted: #5b6475;
  --accent: #ff3c00;
  --accent-strong: #ff5b1f;
  --navy: #0b1024;
  --navy-2: #141a3a;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1180px;
  --font-heading: "Rubik", "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Manrope", "Rubik", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(900px 420px at 8% -10%, rgba(255, 60, 0, 0.12), transparent 60%),
    radial-gradient(900px 420px at 92% -20%, rgba(12, 20, 72, 0.16), transparent 60%),
    var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

main {
  position: relative;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
}

.nav-link:hover {
  color: var(--accent);
}

.close-menu-responsive-button:hover {
  color: var(--accent);
  border-color: rgba(255, 60, 0, 0.35);
  background: #fff5ef;
}

.close-menu-responsive-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}

.btn-nav {
  background: var(--accent);
  text-align: center;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(255, 60, 0, 0.25);
}

.btn-nav:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

/* Hero */
.hero-section {
  padding: 110px 0 90px;
  background: radial-gradient(620px 420px at 88% 10%, rgba(255, 60, 0, 0.2), transparent 60%),
    radial-gradient(700px 500px at 10% 0%, rgba(66, 103, 255, 0.25), transparent 65%),
    linear-gradient(135deg, #0b1024, #141a3a 70%);
  color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 40% 110%, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-grid--center {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-description {
  font-size: 18px;
  color: rgba(248, 250, 252, 0.82);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
}

button.btn-primary,
button.btn-outline {
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff6d39);
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 60, 0, 0.25);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.25);
}

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

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

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  font-size: 14px;
  color: rgba(248, 250, 252, 0.8);
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.quick-consult-form {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.quick-consult-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.quick-consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.quick-consult-grid input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(9, 13, 31, 0.45);
  color: #fff;
  padding: 11px 12px;
  font-size: 14px;
}

.quick-consult-grid input::placeholder {
  color: rgba(248, 250, 252, 0.8);
}

.quick-consult-grid button {
  border: none;
  border-radius: 10px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--accent), #ff6d39);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(255, 60, 0, 0.22);
}

.quick-consult-consent {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 12px;
  color: rgba(248, 250, 252, 0.88);
}

.quick-consult-consent input {
  margin-top: 2px;
}

.quick-consult-consent a {
  color: #fff;
  text-decoration: underline;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.hero-stat {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
}

.hero-stat strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.hero-stat span {
  font-size: 12px;
  color: rgba(248, 250, 252, 0.78);
}

.hero-aside {
  display: flex;
  justify-content: center;
}

.hero-panel {
  width: 100%;
  max-width: 420px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.hero-panel h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 14px;
}

.hero-panel .panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  margin-bottom: 12px;
}

.panel-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}

.panel-list li {
  display: flex;
  gap: 10px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 14px;
}

.panel-list li::before {
  content: "•";
  color: var(--accent);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(226, 232, 250, 0.34), rgba(245, 247, 251, 0.72));
}

.section--soft {
  background: var(--surface-alt);
}

.section--dark {
  background: linear-gradient(120deg, #0b1024, #171f42 70%);
  color: #f8fafc;
}

.section-header {
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-header.centered {
  text-align: center;
  align-items: center;
}

.section-header.centered .section-description {
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 60, 0, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-description {
  color: var(--muted);
  font-size: 17px;
  max-width: 760px;
}

.section--dark .section-description {
  color: rgba(248, 250, 252, 0.78);
}

.section-header + :where(.cards-grid, .steps-grid, .split-grid, .split-content, .logo-strip, .download-grid, .contact-form, .cta-band) {
  margin-top: 6px;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cards-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: block;
  position: relative;
}

.step-card.arrow-shape-border{
  clip-path: polygon(95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%, 0% 0%);
  border-radius: 0;
  border: none;
  background-color: #ff3c00;
  padding:2px;
}

.step-card.arrow-shape{
  border-radius: 0;
  padding-left: 36px;
  width: 100%;
  height:100%;
  clip-path: inherit;
}

.card.no-hover:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
}

.card:hover {
  transform: none;
  box-shadow: var(--shadow-soft);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 60, 0, 0.12);
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 16px;
}

.card-icon-container {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 10px;
}

.card-description {
  color: var(--muted);
  font-size: 15px;
}

.card-cta {
  color: var(--accent);
  font-size: 15px;
  text-align: end;
}

.card .list {
  margin-top: 12px;
}

.card--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.card--dark .card-description {
  color: rgba(248, 250, 252, 0.78);
}

/* Lists */
.list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 15px;
}

.list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.section--dark .list li {
  color: rgba(248, 250, 252, 0.78);
}

.list.bolded li {
  font-size: 20px;
  font-weight: 800;
}

.checklist-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 4px;
  border: 1.5px solid rgba(15, 23, 42, 0.45);
  border-radius: 2px;
  background: transparent;
  flex: 0 0 11px;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 60, 0, 0.12);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
  font-size: 15px;
}

.reveal-table-from-right {
  opacity: 1;
  transform: none;
}

.reveal-table-from-right.table-reveal-init {
  opacity: 0;
  transform: translate3d(56px, 0, 0);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.reveal-table-from-right.table-reveal-init.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.plan-merge-grid {
  align-items: start;
}

.plan-key-points {
  gap: 14px;
}

.plan-key-points li {
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
}

.plan-key-points li::before {
  font-size: 18px;
  margin-top: 2px;
}

.plan-audience-card {
  height: auto;
  align-self: start;
  margin-top: -34px;
}

.plan-audience-card .list {
  margin-top: 14px;
}

.process-subheader {
  max-width: 860px;
  margin: 0 auto 20px;
  text-align: center;
  display: grid;
  gap: 8px;
}

.process-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #24324a;
}

.process-description {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.steps-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.steps-flow .step-card {
  height: 100%;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
}

.flow-arrow svg {
  width: 88px;
  height: 44px;
  display: block;
}

.process-benefits-grid {
  margin-top: 24px;
}

.process-divider {
  width: min(760px, 100%);
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, rgba(255, 60, 0, 0), rgba(255, 60, 0, 0.45) 18%, rgba(255, 60, 0, 0.45) 82%, rgba(255, 60, 0, 0));
  position: relative;
}

.process-divider::after {
  content: none;
}

.process-benefits-stack {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
  gap: 12px;
}

.process-benefits-stack .card {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-areas:
    "icon title"
    "icon desc";
  column-gap: 14px;
  row-gap: 2px;
  align-items: start;
  padding: 16px 18px;
}

.process-benefits-stack .card-icon-container {
  grid-area: icon;
  margin-top: 1px;
}

.process-benefits-stack .card-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
  margin-bottom: 0;
}

.process-benefits-stack .card-title {
  grid-area: title;
  margin: 1px 0 0;
  font-size: 20px;
}

.process-benefits-stack .card-description {
  grid-area: desc;
  font-size: 14px;
  line-height: 1.5;
  max-width: 64ch;
}

.process-benefits-stack .card-cta {
  display: none;
}

.decision-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.decision-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 760px;
}

.decision-table th,
.decision-table td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  font-size: 14px;
  color: var(--text);
  vertical-align: top;
  line-height: 1.55;
}

.decision-table th + th,
.decision-table td + td {
  border-left: 1px solid #e7edf7;
}

.decision-table th {
  background: #f7f9fc;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: #2f3d56;
  font-weight: 700;
}

.decision-table td:first-child {
  width: clamp(170px, 24%, 270px);
  background: #f7f9fc;
  color: #24324a;
  font-weight: 600;
}

.decision-table tbody tr:nth-child(even) td {
  background: #fcfdff;
}

.decision-table tbody tr:nth-child(even) td:first-child {
  background: #f3f7fd;
}

.decision-table tbody tr:hover td {
  background: #f8fbff;
}

.decision-table tbody tr:hover td:first-child {
  background: #edf3fb;
}

.decision-table tr:last-child td {
  border-bottom: none;
}

.decision-table-wrap--compare {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.decision-table--compare {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 920px;
}

.decision-table--compare th,
.decision-table--compare td {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  vertical-align: top !important;
  padding: 16px 18px;
}

.decision-table--compare th {
  background: #f7f9fc;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: #1f2a44;
  font-weight: 700;
}

.decision-table--compare thead th {
  vertical-align: top !important;
}

.decision-table--compare td:first-child {
  width: 24%;
  background: #f7f9fc;
  font-weight: 600;
  color: #24324a;
}

.decision-table--compare th:nth-child(2) {
  border-top: 3px solid rgba(255, 60, 0, 0.7);
}

.decision-table--compare th:nth-child(3) {
  border-top: 3px solid rgba(26, 39, 84, 0.75);
}

.decision-table--compare th:nth-child(2),
.decision-table--compare td:nth-child(2),
.decision-table--compare th:nth-child(3),
.decision-table--compare td:nth-child(3) {
  border-left: 1px solid #e7edf7;
}

.decision-table--compare thead th:nth-child(2),
.decision-table--compare thead th:nth-child(3) {
  border-left: 0;
}

.decision-table--compare tr:last-child td {
  border-bottom: none;
}

.decision-table--compare tbody td:nth-child(2) {
  background: #fff;
}

.decision-table--compare tbody td:nth-child(3) {
  background: #fcfdff;
}

.decision-table--compare tbody tr:hover td {
  background: #f9fbff;
}

.decision-table--compare tbody tr:hover td:first-child {
  background: #f2f6fc;
}

.decision-col-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

.decision-col-label--vmware {
  color: var(--accent);
}

.decision-col-label--xcpng {
  color: #1a2754;
}

.decision-col-sub {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #6a758b;
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.cta-band h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(248, 250, 252, 0.8);
}

/* Contact */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
}

.contact-form p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 60, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 60, 0, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
}

.form-checkbox strong {
  color: var(--text);
  margin-right: 4px;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

.form-submit button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(255, 60, 0, 0.25);
}

.form-submit button:hover {
  background: var(--accent-strong);
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(248, 250, 252, 0.8);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  color: rgba(248, 250, 252, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.footer-link-button {
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  color: rgba(248, 250, 252, 0.7);
  text-decoration: underline;
  cursor: pointer;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

/* Logo strip */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: center;
}

.logo-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  box-shadow: var(--shadow-soft);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.4px;
}

/* Illustrations */
.illustration-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-illustration {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.logo-strip--partners .logo-tile {
  padding: 14px 18px;
  min-height: 76px;
}

.logo-strip--partners {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  max-width: 980px;
  margin: 0 auto;
}

.logo-strip--partners img {
  max-height: 44px;
  height: 36px;
  width: 136px;
  object-fit: contain;
}

/* Download section */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.download-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
}

.download-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 60, 0, 0.12);
  color: var(--accent);
  font-size: 18px;
}

.download-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
}

.download-card p {
  color: var(--muted);
  font-size: 15px;
}

.download-form {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin: 0 auto;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  width: min(760px, 100%);
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
  z-index: 1;
}

.modal-header {
  margin-bottom: 18px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 6px;
}

.modal-header p {
  color: var(--muted);
  font-size: 14px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

body.modal-open {
  overflow: hidden;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 140;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(11, 16, 36, 0.96);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
  padding: 20px;
}

.cookie-title {
  font-family: var(--font-heading);
  font-size: 21px;
  margin-bottom: 10px;
}

.cookie-text {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.84);
  margin-bottom: 10px;
}

.cookie-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.btn-cookie-muted,
.btn-cookie-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 14px;
  cursor: pointer;
}

.btn-cookie-muted {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-cookie-link {
  border: none;
  background: transparent;
  color: #c7d2fe;
  text-decoration: underline;
  padding: 11px 6px;
}

.cookie-settings {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(248, 250, 252, 0.9);
  margin-top: 8px;
}

.cookie-option input {
  width: 16px;
  height: 16px;
}

.cookie-settings-actions {
  margin-top: 12px;
}

/* Utilities */
.text-muted {
  color: var(--muted);
}

.menu-btn-responsive {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  cursor: pointer;
}

.menu-responsive {
  display: none;
}

.floating-consult-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 60, 0, 0.3);
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.faq-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.faq-index-link {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.faq-index-link span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.faq-index-link small {
  font-size: 11px;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-category {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.faq-category-head {
  margin-bottom: 12px;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 60, 0, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 9px;
  margin-bottom: 9px;
}

.faq-category h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
}

.faq-category-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0 14px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 0;
  position: relative;
  padding-right: 20px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  padding: 10px 0 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: none;
  }

  .hero-title {
    font-size: 42px;
  }

  .quick-consult-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .cards-grid.cols-3,
  .steps-grid,
  .steps-flow,
  .split-grid,
  .split-content,
  .faq-layout,
  .faq-index {
    grid-template-columns: 1fr;
  }

  .process-subheader {
    text-align: left;
    margin: 0 0 18px;
  }

  .plan-audience-card {
    margin-top: 0;
  }

  .flow-arrow {
    justify-content: flex-start;
    padding-left: 10px;
  }

  .flow-arrow svg {
    width: 92px;
    height: 50px;
    transform: rotate(90deg);
  }

  .logo-strip--partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

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

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

  .modal-dialog {
    padding: 22px;
  }

  .main-nav {
    display: none;
  }

  .menu-btn-responsive {
    display: block;
  }

  .menu-responsive a {
    display: block;
    color: var(--text);
    margin: 1rem 0;
  }

  .menu-responsive {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    padding: 1.5rem 1.25rem;
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 50px rgba(15, 23, 42, 0.18);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    transition: transform 0.3s ease;
    will-change: transform;
    pointer-events: none;
    z-index: 120;
  }

  .menu-responsive.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .decision-table {
    min-width: 640px;
  }

  .decision-table--compare {
    min-width: 700px;
  }

  .decision-table th,
  .decision-table td {
    padding: 12px;
    font-size: 13px;
  }

  .decision-col-label {
    font-size: 14px;
  }

  .plan-key-points li {
    font-size: 20px;
  }

  .flow-arrow {
    display: none;
  }

  .process-benefits-stack .card {
    display: block;
    padding: 20px;
  }

  .process-benefits-stack .card-title {
    margin: 0 0 8px;
    font-size: 24px;
  }

  .process-benefits-stack .card-icon {
    margin-bottom: 10px;
  }

  .process-benefits-stack .card-description {
    font-size: 15px;
  }

  .section-header.centered {
    text-align: left;
    align-items: flex-start;
  }

  .section-header.centered .section-description {
    margin: 0;
  }

  .hero-section {
    padding: 80px 0 60px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    font-size: 14px;
    color: rgba(248, 250, 252, 0.8);
  }

  .hero-links a {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }
  .card-icon-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .card-title {
    width: 100%;
    text-align: center;
  }

  .step-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .download-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .floating-consult-cta {
    left: 12px;
    right: 12px;
    bottom: 76px;
    text-align: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-card {
    padding: 16px;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cookie-muted,
  .btn-cookie-link {
    width: 100%;
  }
}

.list-index-start {
  margin-top: 20px;
  font-size: 16px;
}

.split-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.button-box-center {
  display:flex;
  justify-content: center;
}

/* FAQ chatbox v2 */
.floating-consult-cta {
  left: 18px;
  right: auto;
}

.faq-chatbox {
  position: fixed;
  right: 18px;
  left: auto;
  bottom: 18px;
  z-index: 131;
}

.faq-chatbox-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(11, 16, 36, 0.18);
  background: linear-gradient(135deg, #101838 0%, #1b2550 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(11, 16, 36, 0.28);
}

.faq-chatbox-toggle i {
  color: #ffd8ca;
}

.faq-chatbox-panel {
  position: absolute;
  right: 0;
  left: auto;
  bottom: 62px;
  width: min(620px, calc(100vw - 24px));
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.faq-chatbox-panel[hidden] {
  display: none !important;
}

.faq-chatbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-chatbox-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-chatbox-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  background: rgba(255, 60, 0, 0.12);
  color: var(--accent);
}

.faq-chatbox-meta {
  display: grid;
  gap: 2px;
}

.faq-chatbox-title {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.2;
}

.faq-chatbox-status {
  font-size: 12px;
  color: #2f876f;
}

.faq-chatbox-close {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
}

.faq-chatbox-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-chatbox-top-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 11px;
  cursor: pointer;
}

.faq-chatbox-top-btn:hover {
  border-color: rgba(255, 60, 0, 0.32);
  color: var(--accent);
  background: rgba(255, 60, 0, 0.06);
}

.faq-chatbox-thread {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8faff;
  padding: 12px;
  height: 292px;
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 10px;
}

.faq-chatbox-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 9px 10px;
  width: fit-content;
}

.faq-chatbox-typing[hidden] {
  display: none !important;
}

.faq-chatbox-typing span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #94a3b8;
  animation: faqDotPulse 0.9s ease-in-out infinite;
}

.faq-chatbox-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.faq-chatbox-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes faqDotPulse {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.chat-msg {
  font-size: 13px;
  border-radius: 12px;
  padding: 10px 11px;
  line-height: 1.5;
  max-width: 94%;
}

.chat-msg--assistant {
  justify-self: start;
  border: 1px solid var(--line);
  background: #fff;
  color: #384155;
}

.chat-msg--user {
  justify-self: end;
  border: 1px solid rgba(255, 60, 0, 0.25);
  background: rgba(255, 60, 0, 0.08);
  color: #4c2430;
}

.faq-chatbox-quick {
  display: grid;
  gap: 9px;
  max-height: 252px;
  overflow-y: auto;
}

.faq-quick-btn {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: 10px 11px;
  font-size: 13px;
  cursor: pointer;
  line-height: 1.4;
}

.faq-quick-btn:hover {
  border-color: rgba(255, 60, 0, 0.35);
  background: rgba(255, 60, 0, 0.04);
}

.faq-quick-btn--ghost {
  background: #f8faff;
  color: #475569;
}

.faq-chatbox-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.faq-chatbox-actions .btn-primary,
.faq-chatbox-actions .btn-outline {
  width: 100%;
  min-height: 40px;
  padding: 9px;
  border-radius: 10px;
  font-size: 13px;
}

.faq-chatbox-outline {
  color: var(--text) !important;
  border-color: var(--line) !important;
  background: #fff !important;
}

.faq-chatbox-outline:hover {
  background: #f6f8ff !important;
}

@media (max-width: 640px) {
  .floating-consult-cta {
    left: 12px;
    right: auto;
    width: auto;
    max-width: calc(100vw - 128px);
    padding: 10px 13px;
    bottom: 76px;
  }

  .faq-chatbox {
    left: auto;
    right: 12px;
    bottom: 132px;
  }

  .faq-chatbox-toggle {
    width: auto;
    justify-content: center;
  }

  .faq-chatbox-panel {
    right: 0;
    left: auto;
    width: min(96vw, 560px);
    bottom: 58px;
  }

  .faq-chatbox-thread {
    height: 220px;
  }

  .faq-chatbox-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .faq-chatbox-typing span {
    animation: none !important;
  }
}
