:root {
  --orange: #ff8a00;
  --black: #111111;
  --white: #ffffff;
  --light: #f7f7f7;
  --gray: #666666;
  --line: #ececec;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(236, 236, 236, 0.9);
  backdrop-filter: blur(18px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-links a,
.language-switcher a {
  border-radius: 999px;
  color: #343434;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 13px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.language-switcher a:hover,
.language-switcher a.active {
  background: #fff3e4;
  color: #c96b00;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 19px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(255, 138, 0, 0.25);
}

.btn-primary:hover {
  background: #ed7f00;
}

.btn-secondary {
  color: var(--black);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: #ffd19a;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
  border-radius: 99px;
}

main {
  overflow: hidden;
}

.hero {
  padding: 82px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #c96b00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 999px;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-accent-word {
  display: inline-block;
  color: var(--black);
  font-weight: 950;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  color: var(--gray);
  font-size: 20px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 138, 0, 0.18), transparent 31%),
    linear-gradient(145deg, #ffffff 0%, #f7f7f7 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px;
}

.dashboard-card {
  position: absolute;
  border: 1px solid rgba(236, 236, 236, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.dashboard-card.main {
  inset: 26px 26px auto;
  padding: 24px;
}

.dashboard-card.side {
  right: 26px;
  bottom: 30px;
  width: 58%;
  padding: 22px;
}

.dashboard-card.note {
  left: 26px;
  bottom: 80px;
  width: 42%;
  padding: 20px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.metric {
  min-height: 92px;
  border-radius: 16px;
  background: var(--light);
  padding: 16px;
}

.metric strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.metric span,
.dashboard-card p {
  color: var(--gray);
  font-size: 14px;
}

.bar {
  height: 10px;
  margin-top: 12px;
  border-radius: 999px;
  background: #eeeeee;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
}

.section {
  padding: 78px 0;
}

.section.light {
  background: var(--light);
}

.section.rounded-band {
  width: min(1180px, calc(100% - 28px));
  margin: 38px auto;
  border-radius: 34px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 560px;
  color: var(--gray);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #ffd19a;
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.08);
}

.service-card {
  position: relative;
  cursor: pointer;
  outline: none;
}

.service-card:focus-visible,
.service-card.open {
  border-color: #ffbf6b;
  box-shadow: 0 22px 54px rgba(255, 138, 0, 0.15);
}

.service-click-label {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #c96b00;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card:hover .service-click-label,
.service-card:focus-visible .service-click-label,
.service-card.open .service-click-label {
  opacity: 1;
  transform: translateY(0);
}

.service-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.2s ease, margin-top 0.2s ease;
}

.service-card.open .service-details {
  max-height: 320px;
  margin-top: 18px;
  opacity: 1;
}

.service-details p {
  margin-bottom: 12px;
}

.service-details ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #444444;
  font-size: 14px;
  font-weight: 800;
}

.service-details li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.service-toggle {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #fff3e4;
  color: #c96b00;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-card.open .service-toggle {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  text-align: center;
}

.client-card.has-logo {
  min-height: 188px;
}

.client-logo {
  width: min(100%, 210px);
  height: 108px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.client-card strong {
  font-size: 20px;
}

.icon-dot {
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: #fff3e4;
  position: relative;
}

.icon-dot::after {
  position: absolute;
  inset: 11px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.card p,
.legal-copy p,
.legal-copy li {
  color: var(--gray);
}

.feature-list,
.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.process-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 16px 18px;
  font-weight: 800;
}

.feature-list li::before,
.process-list li::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

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

.process-list li {
  align-items: flex-start;
  flex-direction: column;
}

.process-list span {
  color: var(--orange);
  font-size: 14px;
}

.cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  background: var(--black);
  padding: 58px;
}

.cta h2,
.cta p {
  max-width: 760px;
}

.cta p {
  color: rgba(255, 255, 255, 0.72);
}

.cta .btn-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.page-hero {
  padding: 78px 0 42px;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.company-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow);
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}

.info-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-list span {
  color: var(--gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--black);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.12);
}

.legal-copy {
  max-width: 860px;
}

.legal-copy section {
  margin-bottom: 34px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 58px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 26px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  color: var(--white);
  font-size: 32px;
  font-weight: 900;
}

.footer-links,
.footer-info {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .mobile-toggle {
    display: inline-block;
  }

  .nav {
    min-height: 72px;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 12px;
  }

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

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid,
  .grid.two,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 420px;
  }

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

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

  .section-head {
    display: block;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 22px, 520px);
  }

  .logo img {
    height: 48px;
  }

  .language-switcher a {
    padding: 7px 9px;
  }

  h1 {
    font-size: 43px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-visual {
    min-height: 380px;
    padding: 16px;
  }

  .dashboard-card.main {
    inset: 16px 16px auto;
  }

  .dashboard-card.side {
    right: 16px;
    bottom: 18px;
    width: calc(100% - 32px);
  }

  .dashboard-card.note {
    display: none;
  }

  .metric-row,
  .grid.clients,
  .grid.services,
  .process-list,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section.rounded-band {
    width: calc(100% - 14px);
    border-radius: 26px;
  }

  .cta {
    padding: 34px 24px;
  }

  .info-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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