:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --bg-tint: #eff7f3;
  --text: #1b2430;
  --muted: #5f6975;
  --line: #dfe4e8;
  --line-strong: #c8ced4;
  --accent: #f04e23;
  --accent-dark: #cf3a16;
  --accent-soft: #fff0eb;
  --veeam: #17a653;
  --shadow: 0 22px 70px rgba(27, 36, 48, 0.10);
  --radius: 8px;
  --max: 1260px;
  font-family: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 92px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(168px, 15vw, 208px);
  height: auto;
}

.brand-logo text {
  font-family: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 40px;
  letter-spacing: -1.4px;
  dominant-baseline: alphabetic;
}

.brand-logo-excel {
  fill: #2b3744;
  font-weight: 800;
}

.brand-logo-cloud-word {
  fill: #6a7682;
  font-weight: 500;
}

.brand-logo-cloud {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
}

.brand-small .brand-logo {
  width: 118px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  color: #1d2631;
  font-size: 14px;
  font-weight: 600;
}

.nav a:not(.nav-cta) {
  padding: 10px 0;
}

.nav a:not(.nav-cta):hover {
  color: var(--accent);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #f04b10);
  box-shadow: 0 14px 28px rgba(230, 51, 18, 0.22);
}

.btn-secondary {
  background: #fff;
  border-color: #aeb7bf;
  color: #1b2430;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ico-arrow {
  width: 18px;
  height: 18px;
  margin-left: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.btn:hover .ico-arrow,
.nav-cta:hover .ico-arrow {
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 104px) clamp(20px, 5vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.18fr);
  gap: clamp(22px, 4vw, 70px);
  align-items: center;
  min-height: 640px;
  padding-top: clamp(42px, 5vw, 66px);
  padding-bottom: clamp(30px, 4vw, 48px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 92px 0 auto;
  height: 520px;
  z-index: -1;
  background: radial-gradient(circle at 78% 26%, rgba(230, 51, 18, 0.08), transparent 30%), linear-gradient(180deg, #fbfcfd, #fff 72%);
}

.hero h1,
.section-heading h2,
.veeam-copy h2,
.contact-copy h2 {
  margin: 0;
  color: #17212d;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(44px, 6vw, 76px);
}

.hero p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #34404d;
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-media {
  min-width: 0;
}

.hero-illustration {
  width: 100%;
  height: auto;
}

.hero-label {
  font-family: "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  fill: var(--muted);
}

.hero-flow {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 2 9;
  animation: flowDash 1.1s linear infinite;
}

.hero-flow-head {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes flowDash {
  to { stroke-dashoffset: -11; }
}

.trial-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 1fr));
  align-items: center;
  gap: 0;
  max-width: calc(var(--max) - 112px);
  margin: 0 auto;
  padding: 28px 34px;
  background: linear-gradient(180deg, #fff, #fafbfc);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trial-copy,
.trial-metric {
  min-height: 88px;
  display: flex;
  align-items: center;
}

.trial-copy {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 30px;
}

.trial-copy strong {
  font-size: 22px;
  line-height: 1.2;
}

.trial-copy span,
.trial-metric span {
  color: var(--muted);
  font-size: 14px;
}

.trial-metric {
  justify-content: center;
  gap: 10px;
  border-left: 1px solid var(--line);
}

.metric-value {
  color: var(--accent) !important;
  font-size: clamp(30px, 3.4vw, 46px) !important;
  font-weight: 800;
  line-height: 1;
}

.trial-ico {
  flex: none;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trial-metric span {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.veeam-copy h2,
.contact-copy h2 {
  font-size: clamp(31px, 4vw, 44px);
}

.section-heading p,
.veeam-copy p,
.contact-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.service-card {
  min-height: 336px;
  padding: clamp(28px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 20px 55px rgba(27, 36, 48, 0.07);
}

.service-card h3 {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 30px;
  line-height: 1.1;
}

.service-card p {
  margin: 0 0 24px;
  color: #34404d;
  font-weight: 650;
}

.service-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: #34404d;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.service-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  color: var(--accent);
  border-radius: 50%;
  isolation: isolate;
}

.service-link::before {
  content: "";
  position: absolute;
  left: -72px;
  right: -72px;
  top: 50%;
  z-index: 0;
  border-top: 2px dotted #9eaab5;
  transform: translateY(-50%);
}

.service-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(27, 36, 48, 0.12);
}

.service-link svg {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
}

.veeam-band {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 760px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  justify-content: center;
  padding: clamp(58px, 8vw, 86px) clamp(20px, 5vw, 56px);
  background: linear-gradient(105deg, #ecf9f3, #f8fbf9 58%, #fff);
}

.veeam-mark {
  justify-self: end;
  width: min(260px, 72vw);
}

.veeam-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(23, 166, 83, 0.20));
}

.trust-ico {
  flex: none;
  width: 26px;
  height: 26px;
  margin-bottom: 8px;
  fill: none;
  stroke: var(--veeam);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.trust-row span {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  color: #2b3846;
  border-left: 2px solid var(--veeam);
  font-size: 15px;
  font-weight: 650;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 25px;
  height: 1px;
  border-top: 2px dashed rgba(230, 51, 18, 0.35);
}

.process-grid article {
  position: relative;
  text-align: center;
}

.process-grid .step-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(240, 78, 35, 0.28);
}

.process-grid .step-ico {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 16px;
  fill: none;
  stroke: var(--text);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.process-grid p {
  max-width: 230px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.clients-band {
  padding: 70px clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, #f7f8f9, #fff);
}

.client-placeholders {
  display: grid;
  grid-template-columns: repeat(6, minmax(80px, 1fr));
  gap: 18px;
  max-width: 1050px;
  margin: 0 auto;
}

.client-placeholders span {
  height: 76px;
  background:
    linear-gradient(135deg, transparent 44%, rgba(160, 168, 176, 0.32) 45% 55%, transparent 56%),
    radial-gradient(circle, rgba(160, 168, 176, 0.34), rgba(160, 168, 176, 0.12) 44%, transparent 45%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  opacity: 0.75;
}

.faq {
  padding-top: 74px;
}

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

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  color: #202b38;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  padding: clamp(64px, 9vw, 104px) clamp(20px, 5vw, 56px);
  background: linear-gradient(180deg, #f8fafb, #fff);
}

.contact-copy {
  max-width: 440px;
  justify-self: end;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: #2a3745;
  font-weight: 650;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-ico {
  flex: none;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-form {
  max-width: 770px;
  width: 100%;
  padding: clamp(24px, 4vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: #283442;
  font-size: 13px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  color: #17212d;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  font: 500 15px/1.35 "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(230, 51, 18, 0.16);
  border-color: var(--accent);
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 600;
}

.privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-submit {
  width: 100%;
}

.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0f6934;
  background: #eaf8ef;
  border: 1px solid #bfe6ce;
}

.form-status.is-error {
  color: #9f230d;
  background: var(--accent-soft);
  border: 1px solid #f5c1b3;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer p {
  justify-self: end;
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 78px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 14px 12px !important;
  }

  .nav-cta {
    margin-top: 8px;
  }
}

@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    order: 2;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-illustration {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .trial-strip,
  .service-grid,
  .veeam-band,
  .process-grid,
  .faq-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trial-strip {
    max-width: calc(100% - 40px);
  }

  .trial-copy,
  .trial-metric {
    min-height: auto;
    justify-content: flex-start;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trial-copy {
    border-top: 0;
  }

  .service-link,
  .process-grid::before {
    display: none;
  }

  .veeam-band {
    justify-items: center;
    text-align: center;
  }

  .veeam-mark {
    justify-self: center;
  }

  .veeam-copy {
    max-width: 640px;
  }

  .trust-row span {
    align-items: center;
    padding: 14px 0 0;
    border-top: 2px solid var(--veeam);
    border-left: 0;
  }

  .contact-copy {
    justify-self: start;
  }

  .site-footer {
    justify-items: center;
    text-align: center;
  }

  .site-footer .brand,
  .site-footer p {
    justify-self: center;
  }

  .trust-row,
  .client-placeholders,
  .field-pair {
    grid-template-columns: 1fr;
  }

  .process {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .process-grid {
    gap: 22px;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 4px 16px;
    text-align: left;
    align-items: start;
  }

  .process-grid .step-num {
    grid-row: 1 / span 3;
    margin: 0;
  }

  .process-grid .step-ico {
    display: none;
  }

  .process-grid h3 {
    margin: 0;
  }

  .process-grid p {
    max-width: none;
    margin: 0;
  }

  .clients-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .client-placeholders {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .client-placeholders span {
    height: 56px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand-sub {
    display: none;
  }

  .brand-logo {
    width: 174px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-illustration {
    max-height: none;
    object-fit: contain;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trial-strip {
    padding: 18px 22px;
  }

  .service-card {
    min-height: 0;
  }

  .process {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .process-grid {
    gap: 22px;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 4px 16px;
    text-align: left;
    align-items: start;
  }

  .process-grid .step-num {
    grid-row: 1 / span 3;
    margin: 0;
  }

  .process-grid .step-ico {
    display: none;
  }

  .process-grid h3 {
    margin: 0;
  }

  .process-grid p {
    max-width: none;
    margin: 0;
  }

  .clients-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .client-placeholders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .client-placeholders span {
    height: 56px;
  }
}

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