* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Microsoft YaHei", Arial, sans-serif;
    }

    :root {
      --navy: #0f1f33;
      --deep: #08111f;
      --blue: #1f5d8c;
      --gold: #c89a3c;
      --light-gold: #f0c777;
      --text: #1f2937;
      --muted: #657083;
      --bg: #f6f8fb;
      --white: #ffffff;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      color: var(--text);
      background: var(--bg);
      line-height: 1.65;
      overflow-x: hidden;
    }

    header {
      height: 78px;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 7.5%;
      background: linear-gradient(135deg, rgba(8,17,31,0.96), rgba(18,48,76,0.94), rgba(201,154,60,0.82));
      border-bottom: 1px solid rgba(255,255,255,0.16);
      box-shadow: 0 10px 35px rgba(0,0,0,0.20);
      backdrop-filter: blur(12px);
      transition: 0.3s ease;
    }

    header.scrolled {
      height: 66px;
      box-shadow: 0 12px 34px rgba(0,0,0,0.28);
    }

    .logo {
      color: #fff;
      font-size: 24px;
      font-weight: 800;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--gold), #fff0b9);
      color: var(--deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      box-shadow: 0 0 22px rgba(240,199,119,0.5);
    }

    .logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  padding: 4px;
}

    .logo span {
      color: var(--light-gold);
    }

    nav a {
      margin-left: 30px;
      text-decoration: none;
      color: rgba(255,255,255,0.9);
      font-size: 15px;
      position: relative;
      padding: 8px 0;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--light-gold);
      transition: 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      padding: 120px 7.5% 80px;
      color: white;
      overflow: hidden;
      background:
        linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.42)),
        url("./background.avif") center/cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.25));
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 740px;
      height: 740px;
      right: -180px;
      top: 80px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,154,60,0.28), rgba(31,93,140,0.13), transparent 66%);
      filter: blur(4px);
      animation: pulseGlow 5s ease-in-out infinite alternate;
    }

    @keyframes pulseGlow {
      from { transform: scale(0.96); opacity: 0.72; }
      to { transform: scale(1.05); opacity: 1; }
    }

    #particleCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0.68;
    }

    .hero-content {
      width: min(760px, 100%);
      position: relative;
      z-index: 2;
      animation: fadeUp 1.05s ease forwards;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 16px;
      border: 1px solid rgba(240,199,119,0.45);
      background: rgba(255,255,255,0.08);
      border-radius: 999px;
      color: #f8ddb0;
      font-size: 14px;
      margin-bottom: 22px;
      backdrop-filter: blur(10px);
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--light-gold);
      box-shadow: 0 0 18px var(--light-gold);
    }

    .hero h1 {
      font-size: clamp(42px, 6vw, 66px);
      line-height: 1.12;
      letter-spacing: -1px;
      margin-bottom: 24px;
      text-shadow: 0 12px 32px rgba(0,0,0,0.35);
    }

    .hero h1 span {
      color: var(--light-gold);
    }

    .hero p {
      max-width: 680px;
      color: rgba(255,255,255,0.86);
      font-size: 18px;
      margin-bottom: 34px;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 30px;
      border-radius: 5px;
      background: linear-gradient(135deg, var(--gold), #e4bb67);
      color: #101827;
      text-decoration: none;
      font-weight: 800;
      position: relative;
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(201,154,60,0.24);
      transition: 0.3s ease;
    }

    .btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -90%;
      width: 48%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
      transform: skewX(-24deg);
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 36px rgba(201,154,60,0.34);
    }

    .btn:hover::after {
      animation: shine 0.85s ease;
    }

    @keyframes shine {
      from { left: -90%; }
      to { left: 130%; }
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 26px;
      border-radius: 5px;
      border: 1px solid rgba(255,255,255,0.34);
      color: rgba(255,255,255,0.92);
      text-decoration: none;
      font-weight: 700;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
      transition: 0.3s ease;
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.16);
      transform: translateY(-3px);
    }

    .hero-panel {
      position: absolute;
      right: 7.5%;
      bottom: 76px;
      z-index: 2;
      width: min(420px, 86vw);
      padding: 22px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
      backdrop-filter: blur(16px);
      box-shadow: 0 20px 52px rgba(0,0,0,0.24);
      animation: floatPanel 4s ease-in-out infinite alternate;
    }

    @keyframes floatPanel {
      from { transform: translateY(0); }
      to { transform: translateY(-10px); }
    }

    .hero-panel strong {
      display: block;
      color: var(--light-gold);
      font-size: 18px;
      margin-bottom: 10px;
    }

    .hero-panel p {
      font-size: 14px;
      color: rgba(255,255,255,0.78);
      margin: 0;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .tag-row span {
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      color: rgba(255,255,255,0.84);
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.16);
    }

    section {
      padding: 90px 7.5%;
      position: relative;
    }

    .section-title {
      text-align: center;
      margin-bottom: 54px;
    }

    .section-title .small {
      display: inline-block;
      color: var(--gold);
      font-weight: 800;
      letter-spacing: 2px;
      font-size: 13px;
      margin-bottom: 9px;
      text-transform: uppercase;
    }

    .section-title h2 {
      font-size: clamp(30px, 4vw, 42px);
      color: #121b2a;
      margin-bottom: 12px;
    }

    .section-title p {
      color: var(--muted);
      max-width: 720px;
      margin: 0 auto;
    }

    .about {
      background: white;
      overflow: hidden;
    }

    .about-wrap {
      display: grid;
      grid-template-columns: 1.04fr 0.96fr;
      gap: 46px;
      align-items: center;
    }

    .about-text h2 {
      font-size: clamp(30px, 3.6vw, 42px);
      color: #101827;
      margin-bottom: 18px;
      line-height: 1.25;
    }

    .about-text p {
      color: #536173;
      margin-bottom: 16px;
    }

    .about-note {
      margin-top: 22px;
      padding: 18px 20px;
      border-left: 4px solid var(--gold);
      background: linear-gradient(90deg, rgba(201,154,60,0.12), rgba(31,93,140,0.06));
      border-radius: 0 12px 12px 0;
      color: #374151;
    }

    .about-visual {
      position: relative;
      min-height: 430px;
      border-radius: 18px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(8,17,31,0.12), rgba(8,17,31,0.42)),
        url("./photo_5.avif") center/cover no-repeat;
      box-shadow: 0 24px 56px rgba(9,22,39,0.16);
    }

    .about-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 42px 42px;
    }

    .visual-card {
      position: absolute;
      left: 28px;
      bottom: 28px;
      right: 28px;
      padding: 22px;
      border-radius: 16px;
      background: rgba(8,17,31,0.78);
      color: white;
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(12px);
    }

    .visual-card h3 {
      color: var(--light-gold);
      margin-bottom: 8px;
      font-size: 21px;
    }

    .visual-card p {
      color: rgba(255,255,255,0.78);
      font-size: 14px;
    }

    .feature-strip {
      margin-top: 34px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid #edf0f4;
      border-bottom: 1px solid #edf0f4;
    }

    .feature-item {
      padding: 26px 20px;
      border-left: 1px solid #edf0f4;
    }

    .feature-item:first-child {
      border-left: none;
    }

    .feature-item strong {
      display: block;
      color: var(--gold);
      font-size: 28px;
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .feature-item span {
      color: #536173;
      font-size: 14px;
    }

    .services {
      background:
        radial-gradient(circle at 12% 14%, rgba(31,93,140,0.10), transparent 30%),
        radial-gradient(circle at 88% 28%, rgba(201,154,60,0.11), transparent 32%),
        #f6f8fb;
      overflow: hidden;
    }

    .services::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.42;
      background-image:
        linear-gradient(rgba(15,31,51,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15,31,51,0.05) 1px, transparent 1px);
      background-size: 64px 64px;
      pointer-events: none;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      position: relative;
      z-index: 1;
    }

    .service-card {
      min-height: 300px;
      padding: 30px 25px;
      background: rgba(255,255,255,0.88);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.9);
      box-shadow: 0 16px 42px rgba(15,31,51,0.08);
      position: relative;
      overflow: hidden;
      transition: 0.35s ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(31,93,140,0.08), transparent 45%, rgba(201,154,60,0.10));
      opacity: 0;
      transition: 0.35s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 24px 56px rgba(15,31,51,0.13);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .icon {
      width: 70px;
      height: 70px;
      border-radius: 22px;
      background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.22), transparent 34%),
        linear-gradient(145deg, #143d5d 0%, #0e2b45 60%, #071c31 100%);
      color: var(--light-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      box-shadow:
        0 18px 36px rgba(15,31,51,0.20),
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 -14px 28px rgba(0,0,0,0.18);
      border: 1px solid rgba(255,255,255,0.20);
      position: relative;
      z-index: 1;
      overflow: hidden;
      transition: 0.3s ease;
    }

    .icon::after {
      content: "";
      position: absolute;
      right: -14px;
      bottom: -14px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(201,154,62,0.24);
      filter: blur(2px);
    }

    .icon svg {
      width: 50px;
      height: 50px;
      position: relative;
      z-index: 1;
    }

    .icon .icon-glow {
      fill: rgba(201,154,62,0.12);
    }

    .icon .icon-main {
      fill: none;
      stroke: #f5d78f;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .icon .icon-accent {
      fill: rgba(255,221,147,0.22);
      stroke: #ffffff;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card:hover .icon {
      transform: translateY(-4px) scale(1.03);
      box-shadow:
        0 24px 46px rgba(15,31,51,0.24),
        inset 0 1px 0 rgba(255,255,255,0.22),
        inset 0 -14px 28px rgba(0,0,0,0.18);
    }

    .service-card h3 {
      font-size: 21px;
      margin-bottom: 12px;
      color: #111827;
      position: relative;
      z-index: 1;
    }

    .service-card p {
      font-size: 14px;
      color: #5b6678;
      position: relative;
      z-index: 1;
    }

    .service-card ul {
      list-style: none;
      margin-top: 18px;
      position: relative;
      z-index: 1;
    }

    .service-card li {
      color: #536173;
      font-size: 13px;
      margin-bottom: 7px;
      padding-left: 16px;
      position: relative;
    }

    .service-card li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      position: absolute;
      left: 0;
      top: 9px;
    }

    .process {
      background: white;
    }

    .process-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 56px;
      align-items: center;
    }

    .process-visual-card {
      position: relative;
      min-height: 520px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 58px rgba(15,31,51,0.14);
      background: #0f1f33;
    }

    .process-visual-card img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      display: block;
      filter: saturate(0.9) contrast(1.04);
      transform: scale(1.02);
      transition: 0.45s ease;
    }

    .process-visual-card:hover img {
      transform: scale(1.06);
    }

    .process-visual-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(8,17,31,0.10), rgba(8,17,31,0.82));
    }

    .process-badge {
      position: absolute;
      left: 26px;
      top: 26px;
      z-index: 2;
      padding: 9px 16px;
      border-radius: 999px;
      color: white;
      background: rgba(15,31,51,0.70);
      border: 1px solid rgba(255,255,255,0.22);
      backdrop-filter: blur(8px);
      font-size: 13px;
      letter-spacing: 1px;
    }

    .process-card-content {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 28px;
      z-index: 2;
      color: white;
    }

    .process-card-content h3 {
      font-size: 32px;
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .process-card-content p {
      color: rgba(255,255,255,0.78);
      font-size: 15px;
      max-width: 520px;
    }

    .process-keywords {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 22px;
    }

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

    .process-keyword-card {
      padding: 14px 14px 12px;
      border-radius: 14px;
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
    }

    .process-keyword-card strong {
      display: block;
      color: #ffffff;
      font-size: 14px;
      margin-bottom: 6px;
      font-weight: 700;
    }

    .process-keyword-card small {
      display: block;
      color: rgba(255,255,255,0.76);
      font-size: 12px;
      line-height: 1.5;
    }

    .process-copy .small {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--gold);
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 800;
    }

    .process-copy h2 {
      font-size: 38px;
      line-height: 1.24;
      color: #111827;
      margin-bottom: 16px;
    }

    .process-copy > p {
      color: #5b6472;
      margin-bottom: 28px;
      max-width: 680px;
    }

    .timeline {
      display: grid;
      gap: 14px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 18px;
      align-items: start;
      padding: 20px 22px;
      border-radius: 16px;
      background: #f8fafc;
      border: 1px solid #edf0f4;
      transition: 0.28s ease;
    }

    .timeline-item:hover {
      transform: translateX(4px);
      background: white;
      box-shadow: 0 16px 34px rgba(15,31,51,0.08);
    }

    .step-num {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue), var(--navy));
      color: var(--light-gold);
      font-weight: 900;
      font-size: 13px;
      box-shadow: 0 10px 20px rgba(15,31,51,0.12);
    }

    .timeline-item h3 {
      margin-bottom: 6px;
      font-size: 18px;
      color: #111827;
    }

    .timeline-item p {
      color: #657083;
      font-size: 14px;
    }

    .projects {
      background: #f6f8fb;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .project-card {
      min-height: 360px;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      color: white;
      box-shadow: 0 18px 46px rgba(15,31,51,0.12);
      cursor: pointer;
    }

    .project-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(8,17,31,0.05), rgba(8,17,31,0.85));
      z-index: 1;
    }

    .project-card img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
      transition: 0.45s ease;
    }

    .project-card:hover img {
      transform: scale(1.08);
    }

    .project-info {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      z-index: 2;
      padding: 28px;
    }

    .project-info .label {
      display: inline-block;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(201,154,60,0.92);
      color: #0c1320;
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .project-info h3 {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .project-info p {
      color: rgba(255,255,255,0.8);
      font-size: 14px;
    }

    .trust {
      background: white;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .trust-card {
      padding: 32px 28px;
      border-radius: 18px;
      background: linear-gradient(180deg, #fff, #f9fbfd);
      border: 1px solid #edf0f4;
      transition: 0.32s ease;
    }

    .trust-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 42px rgba(15,31,51,0.08);
    }

    .trust-card strong {
      display: block;
      color: var(--gold);
      font-size: 30px;
      margin-bottom: 12px;
    }

    .trust-card h3 {
      font-size: 21px;
      margin-bottom: 10px;
    }

    .trust-card p {
      color: #657083;
      font-size: 14px;
    }

    .contact {
      color: white;
      background:
        linear-gradient(135deg, rgba(8,17,31,0.98), rgba(20,67,102,0.95), rgba(201,154,60,0.82)),
        url("https://images.unsplash.com/photo-1518709268805-4e9042af2176?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
      overflow: hidden;
    }

    .contact::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,0.16), transparent 18%),
        radial-gradient(circle at 82% 76%, rgba(240,199,119,0.18), transparent 24%);
      pointer-events: none;
    }

    .contact-wrap {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 0.95fr;
      gap: 42px;
      align-items: center;
    }

    .contact h2 {
      font-size: clamp(34px, 4.5vw, 52px);
      line-height: 1.18;
      margin-bottom: 20px;
    }

    .contact p {
      color: rgba(255,255,255,0.82);
      margin-bottom: 18px;
    }

    .contact-card {
      padding: 34px;
      border-radius: 22px;
      background: rgba(255,255,255,0.13);
      border: 1px solid rgba(255,255,255,0.19);
      backdrop-filter: blur(16px);
      box-shadow: 0 24px 58px rgba(0,0,0,0.22);
    }

    .contact-row {
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .contact-row:last-child {
      border-bottom: none;
    }

    .contact-row span {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,0.62);
      margin-bottom: 4px;
    }

    .contact-row strong {
      font-size: 18px;
      color: white;
    }

    footer {
      color: rgba(255,255,255,0.68);
      text-align: center;
      padding: 26px 7.5%;
      background: linear-gradient(135deg, #060b13, #0f1f33, #172b42);
      border-top: 1px solid rgba(255,255,255,0.08);
      font-size: 14px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(44px);
      transition: 0.85s ease;
    }

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

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(38px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 1100px) {
      .service-grid,
      .project-grid,
      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-panel {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 38px;
      }

      .hero {
        display: block;
      }
    }

    @media (max-width: 850px) {
      header {
        padding: 0 5%;
      }

      nav {
        display: none;
      }

      section {
        padding: 72px 5%;
      }

      .hero {
        padding: 116px 5% 70px;
      }

      .about-wrap,
      .process-wrap,
      .contact-wrap {
        grid-template-columns: 1fr;
      }

      .process-intro {
        position: relative;
        top: auto;
      }

      .service-grid,
      .project-grid,
      .trust-grid,
      .feature-strip {
        grid-template-columns: 1fr;
      }

      .feature-item {
        border-left: none;
        border-top: 1px solid #edf0f4;
      }

      .feature-item:first-child {
        border-top: none;
      }
    }
