    :root {
      --dark: #111827;
      --orange: #c65b1c;
      --orange-light: #f6b17a;
      --white: #ffffff;
      --muted: #6b7280;
      --soft: #f9fafb;
      --border: #e5e7eb;
      --shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
      --gradient: linear-gradient(45deg, #c65b1c, #f6b17a);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--white);
      color: var(--dark);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .top-banner {
      background: var(--gradient);
      color: var(--white);
      text-align: center;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 600;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: #111827;
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      background: #111827;
      padding: 0 24px;
      border-radius: 0 0 24px 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -0.04em;
      font-size: 28px;
      color: var(--white);
    }

    .brand-logo {
      width: 150px;
      height: auto;
      display: block;
      border-radius: 14px;
      object-fit: contain;
      background: var(--white);
      padding: 4px;
      box-shadow: 0 12px 28px rgba(198, 91, 28, 0.28);
    }



.brand {
  display: flex;
  align-items: center;
}

.nav {
  min-height: 96px;
}

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      color: #d1d5db;
      font-weight: 700;
      font-size: 15px;
    }

    .nav-links a:hover {
      color: var(--orange);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 20px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      cursor: pointer;
      transition: 0.2s ease;
      font-size: 15px;
    }

    .btn-primary {
      background: var(--gradient);
      color: var(--white);
      box-shadow: 0 16px 35px rgba(198, 91, 28, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 44px rgba(198, 91, 28, 0.36);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--dark);
      border-color: var(--border);
    }

    .btn-secondary:hover {
      border-color: var(--orange-light);
      color: var(--orange);
    }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(246, 177, 122, 0.18), transparent 38%),
    linear-gradient(rgba(255, 247, 240, 0.65), rgba(255, 247, 240, 0.65)),
    url("assets/office.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0 80px;
}

    .hero-grid {
      display: grid;
      grid-template-columns: 1.04fr 0.96fr;
      gap: 56px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(198, 91, 28, 0.08);
      color: var(--orange);
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 22px;
    }

    .eyebrow-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--gradient);
    }

    h1 {
      font-size: clamp(44px, 6vw, 76px);
      line-height: 0.96;
      letter-spacing: -0.07em;
      margin-bottom: 24px;
    }

    .hero p {
      font-size: 19px;
      color: #4b5563;
      max-width: 640px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 34px;
    }

    .trust-row {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
      color: #4b5563;
      font-weight: 700;
      font-size: 14px;
    }

    .trust-row span {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--dark);
      color: var(--white);
      display: inline-grid;
      place-items: center;
      font-size: 12px;
    }

    .hero-card {
      background: var(--dark);
      color: var(--white);
      border-radius: 34px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -80px;
      top: -80px;
      background: var(--gradient);
      border-radius: 999px;
      opacity: 0.9;
    }

    .dashboard {
      position: relative;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 26px;
      padding: 22px;
      backdrop-filter: blur(14px);
    }

    .dashboard-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 22px;
    }

    .window-dots {
      display: flex;
      gap: 7px;
    }

    .window-dots i {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
    }

    .status-pill {
      background: rgba(246, 177, 122, 0.18);
      color: #ffd9bd;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 16px;
    }

    .metric {
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 18px;
    }

    .metric strong {
      display: block;
      font-size: 28px;
      letter-spacing: -0.04em;
      margin-bottom: 4px;
    }

    .metric span {
      color: #d1d5db;
      font-size: 13px;
      font-weight: 700;
    }

    .flow-box {
      background: #ffffff;
      color: var(--dark);
      border-radius: 24px;
      padding: 18px;
      margin-top: 16px;
    }

    .flow-line {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }

    .flow-line:last-child {
      border-bottom: 0;
    }

    .flow-icon {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(198, 91, 28, 0.12);
      display: grid;
      place-items: center;
      color: var(--orange);
      font-weight: 900;
    }

    .flow-line b {
      display: block;
      font-size: 14px;
    }

    .flow-line small {
      color: var(--muted);
      font-weight: 700;
    }

    section {
      padding: 90px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 42px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-kicker {
      color: var(--orange);
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
      margin-bottom: 12px;
    }

    h2 {
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      margin-bottom: 16px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 18px;
    }

    .services {
      background: var(--white);
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
      transition: 0.2s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(198, 91, 28, 0.24);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      background: var(--gradient);
      color: var(--white);
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 20px;
      margin-bottom: 20px;
      overflow: hidden;
    }

    .icon img {
      width: 34px;
      height: 34px;
      object-fit: contain;
      display: block;
    }

    .icon.logo-icon {
      background: #ffffff;
      border: 1px solid var(--border);
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    }

    h3 {
      font-size: 23px;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }

    .card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .tag-list {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .tag {
      background: #f3f4f6;
      color: #374151;
      padding: 7px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
    }

    .dark-section {
      background: var(--dark);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .dark-section::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -180px;
      top: -220px;
      background: var(--gradient);
      border-radius: 999px;
      opacity: 0.32;
    }

    .dark-section .container {
      position: relative;
    }

    .dark-section .section-head p {
      color: #d1d5db;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .product-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 30px;
      padding: 30px;
      backdrop-filter: blur(12px);
    }

    .product-card p {
      color: #d1d5db;
      margin-bottom: 22px;
    }

    .product-link {
      color: #ffd9bd;
      font-weight: 900;
    }

    .migration-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 36px;
      align-items: center;
      background: var(--soft);
      border: 1px solid var(--border);
      border-radius: 36px;
      padding: 34px;
    }

    .migration-panel {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 24px;
      box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
    }

    .migration-step {
      display: flex;
      gap: 14px;
      padding: 15px 0;
      border-bottom: 1px solid var(--border);
    }

    .migration-step:last-child {
      border-bottom: 0;
    }

    .step-number {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--dark);
      color: var(--white);
      display: grid;
      place-items: center;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .article-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .article-section-title {
      max-width: 760px;
      margin: 44px 0 24px;
    }

    .article-section-title h3 {
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 10px;
    }

    .article-section-title p {
      color: var(--muted);
      font-size: 17px;
    }

    .article-group {
      margin-bottom: 70px;
    }

    .article-card {
      border: 1px solid var(--border);
      border-radius: 28px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    }

    .article-image {
      height: 170px;
      background: var(--gradient);
      position: relative;
    }

    .article-image::after {
      content: "";
      position: absolute;
      inset: 20px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.42);
      background: rgba(255,255,255,0.12);
    }

    .article-body {
      padding: 24px;
    }

    .article-body small {
      color: var(--orange);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .article-body h3 {
      margin-top: 8px;
    }

    .article-body p {
      color: var(--muted);
      margin-bottom: 18px;
    }



    .work-management-section {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background:
        radial-gradient(circle at top left, rgba(246, 177, 122, 0.22), transparent 38%),
        linear-gradient(rgba(17, 24, 39, 0.74), rgba(17, 24, 39, 0.74)),
        url("assets/tech-bg.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
/*      background-attachment: fixed;*/
    }

    .work-management-section .section-head p {
      color: #d1d5db;
    }

    .work-management-section .section-kicker {
      color: #ffd9bd;
    }

    .service-page-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .service-page-card {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 30px;
      padding: 30px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
      transition: 0.2s ease;
    }

    .service-page-card:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(246, 177, 122, 0.62);
    }

    .service-label {
      display: inline-flex;
      margin-bottom: 16px;
      color: #ffd9bd;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .service-page-card h3 {
      color: var(--white);
    }

    .service-page-card p {
      color: #d1d5db;
      margin-bottom: 22px;
    }

    .service-page-link {
      color: #ffd9bd;
      font-weight: 900;
    }

    .technical-articles-section {
      background: var(--white);
    }
    .contact {
      background: linear-gradient(180deg, #fff7f0 0%, #ffffff 100%);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 34px;
      align-items: start;
    }

    .contact-info {
      background: var(--dark);
      color: var(--white);
      border-radius: 34px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .contact-info p {
      color: #d1d5db;
      margin-bottom: 24px;
    }

    .contact-item {
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .contact-item:last-child {
      border-bottom: 0;
    }

    .contact-item b {
      display: block;
      margin-bottom: 4px;
    }

    .contact-item span {
      color: #d1d5db;
    }

    form {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 34px;
      padding: 34px;
      box-shadow: var(--shadow);
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    label {
      display: block;
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 8px;
      color: #374151;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      background: #ffffff;
      border-radius: 16px;
      padding: 14px 15px;
      font: inherit;
      color: var(--dark);
      outline: none;
      margin-bottom: 16px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 4px rgba(198, 91, 28, 0.1);
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    footer {
      background: var(--dark);
      color: var(--white);
      padding: 54px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, 1fr);
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .footer-brand p,
    footer a {
      color: #d1d5db;
    }

    footer h4 {
      margin-bottom: 14px;
      font-size: 16px;
    }

    footer a {
      display: block;
      margin-bottom: 10px;
    }

    footer a:hover {
      color: #ffd9bd;
    }

    .copyright {
      padding-top: 22px;
      color: #9ca3af;
      font-size: 14px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .migration-wrap,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .card-grid,
      .product-grid,
      .article-grid,
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .hero {
        padding-top: 60px;
      }

      .card-grid,
      .product-grid,
      .article-grid,
      .footer-grid,
      .form-row,
      .metric-grid {
        grid-template-columns: 1fr;
      }

      .nav {
        height: 68px;
      }

      .brand {
        font-size: 24px;
      }

      .hero-card,
      .migration-wrap,
      form,
      .contact-info {
        border-radius: 26px;
        padding: 22px;
      }
    }

    .technical-articles-section .article-card {
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
    }

    .technical-articles-section .product-link {
      color: var(--orange);
    }

    .technical-articles-section .article-body {
      padding: 28px;
    }

    @media (max-width: 980px) {
      .service-page-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .service-page-grid {
        grid-template-columns: 1fr;
      }
    }
.footer-brand .brand-logo {
  width: 260px;
}


/* ── Mobile-friendly contact section ── */
.contact-grid {
  align-items: stretch;
}

.contact-info,
.contact-grid form,
.contact-channel-card,
.channel-details {
  min-width: 0;
}

.channel-value {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 980px) {
  .contact {
    padding: 70px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .contact-info,
  .contact-grid form {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .contact {
    padding: 56px 0;
  }

  .contact .container {
    width: min(100% - 24px, 1180px);
  }

  .contact-info,
  .contact-grid form {
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 16px 36px rgba(17, 24, 39, 0.10);
  }

  .contact-info h2 {
    font-size: clamp(30px, 9vw, 40px);
    letter-spacing: -0.045em;
  }

  .contact-info p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .contact-channels {
    gap: 12px;
    margin: 22px 0 24px;
  }

  .contact-channel-card {
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
  }

  .channel-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .channel-icon-wrap svg {
    width: 22px;
    height: 22px;
  }

  .channel-label {
    font-size: 0.68rem;
  }

  .channel-value {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .channel-arrow {
    display: none;
  }

  .contact-item {
    padding: 14px 0;
  }

  .contact-item span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  input,
  select,
  textarea {
    border-radius: 14px;
    padding: 13px 14px;
    margin-bottom: 14px;
    font-size: 16px;
  }

  textarea {
    min-height: 150px;
  }

  form .btn,
  .contact-grid form button {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .contact-info,
  .contact-grid form {
    padding: 18px;
    border-radius: 20px;
  }

  .contact-channel-card {
    align-items: flex-start;
  }

  .channel-icon-wrap {
    width: 40px;
    height: 40px;
  }
}


/* ── Keep contact-info and form visually balanced on desktop ── */
@media (min-width: 981px) {
  .contact-grid {
    align-items: stretch;
  }

  .contact-info,
  .contact-grid form {
    height: 100%;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-channels {
    margin-bottom: 0;
  }
}
.form-status {
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}