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

    :root {
      --blue: #1369f2;
      --blue-dark: #0a3d9d;
      --blue-deep: #082b6f;
      --blue-soft: #eaf3ff;
      --cyan: #36cfff;
      --orange: #ff8a18;
      --orange-dark: #ff6410;
      --green: #19b971;
      --text: #14213d;
      --muted: #5f6f8c;
      --card: #ffffff;
      --line: #dce8ff;
      --shadow: 0 18px 45px rgba(18, 80, 170, 0.14);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      color: var(--text);
      background: #f6faff;
      line-height: 1.7;
    }

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

    ul {
      list-style: none;
    }

    .page {
      min-height: 100vh;
      overflow: hidden;
    }

    .container {
      width: 1200px;
      max-width: calc(100% - 32px);
      margin: 0 auto;
    }

    .top-line {
      height: 38px;
      background: #07398b;
      color: rgba(255, 255, 255, 0.88);
      font-size: 13px;
    }

    .top-line .container {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .header {
      height: 82px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 6px 24px rgba(10, 61, 157, 0.08);
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
    }

    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 230px;
    }

    .brand-logo {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--blue), #28b8ff);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 22px;
      box-shadow: 0 10px 22px rgba(19, 105, 242, 0.28);
    }

    .brand strong {
      display: block;
      font-size: 21px;
      line-height: 1.2;
      color: var(--blue-deep);
      letter-spacing: 0.5px;
    }

    .brand span {
      display: block;
      margin-top: 3px;
      font-size: 12px;
      color: var(--muted);
    }

    .tel-box {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--blue-dark);
      font-weight: 700;
      white-space: nowrap;
    }

    .tel-icon {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      box-shadow: 0 8px 18px rgba(255, 122, 24, 0.28);
    }

    .hero {
      position: relative;
      min-height: 660px;
      padding: 92px 0 84px;
      background:
        radial-gradient(circle at 14% 18%, rgba(61, 171, 255, 0.28), transparent 34%),
        radial-gradient(circle at 88% 14%, rgba(255, 180, 70, 0.20), transparent 30%),
        linear-gradient(120deg, #e9f4ff 0%, #f8fcff 45%, #e7f1ff 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: auto -120px -180px auto;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: rgba(19, 105, 242, 0.08);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(19, 105, 242, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 105, 242, 0.06) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(90deg, rgba(0,0,0,0.22), transparent 72%);
      pointer-events: none;
    }

    .hero-layout {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.03fr 0.97fr;
      align-items: center;
      gap: 54px;
    }
.hero-layout:after, .hero-layout:before{ display:none;}
.brand-panel:after, .brand-panel:before{ display:none;}

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(19, 105, 242, 0.18);
      box-shadow: 0 8px 20px rgba(19, 105, 242, 0.08);
      color: var(--blue-dark);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .badge i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 6px rgba(255, 138, 24, 0.14);
    }

    .hero h1 {
      font-size: 56px;
      line-height: 1.12;
      letter-spacing: -1.5px;
      color: #0d2758;
      margin-bottom: 22px;
    }

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

    .hero-desc {
      max-width: 620px;
      color: #435577;
      font-size: 18px;
      margin-bottom: 28px;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 34px;
    }

    .hero-tags span {
      padding: 8px 14px;
      border-radius: 10px;
      color: #18447d;
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid rgba(19, 105, 242, 0.12);
      font-size: 14px;
      box-shadow: 0 8px 18px rgba(19, 105, 242, 0.06);
    }

    .actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 150px;
      height: 50px;
      padding: 0 26px;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 700;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

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

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      box-shadow: 0 16px 32px rgba(255, 105, 18, 0.28);
    }

    .btn-secondary {
      color: var(--blue-dark);
      background: #fff;
      border: 1px solid rgba(19, 105, 242, 0.22);
      box-shadow: 0 14px 28px rgba(19, 105, 242, 0.10);
    }

    .visual {
      position: relative;
      min-height: 470px;
    }

    .circle-bg {
      position: absolute;
      right: 8%;
      top: 8%;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1f7cff, #49d8ff);
      box-shadow: 0 28px 70px rgba(19, 105, 242, 0.26);
    }

    .circle-bg::before,
    .circle-bg::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
    }

    .circle-bg::before {
      width: 210px;
      height: 210px;
      right: -72px;
      top: 42px;
    }

    .circle-bg::after {
      width: 130px;
      height: 130px;
      left: -46px;
      bottom: 38px;
    }

    .ip-card {
      position: absolute;
      right: 2%;
      top: 6%;
      width: 370px;
      padding: 28px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(14px);
    }

    .card-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .card-title strong {
      font-size: 20px;
      color: #0e2b60;
    }

    .seal {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: linear-gradient(135deg, #fff2df, #ffd3aa);
      display: grid;
      place-items: center;
      color: var(--orange-dark);
      font-size: 24px;
      font-weight: 800;
    }

    .ip-list {
      display: grid;
      gap: 13px;
    }

    .ip-row {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 18px;
      background: #f2f7ff;
      border: 1px solid #e1ecff;
    }

    .ip-row i {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #fff;
      font-style: normal;
      font-weight: 800;
      background: linear-gradient(135deg, var(--blue), var(--cyan));
    }

    .ip-row b {
      display: block;
      color: #102b5f;
      font-size: 16px;
      line-height: 1.25;
    }

    .ip-row span {
      color: var(--muted);
      font-size: 12px;
    }

    .float-card {
      position: absolute;
      z-index: 3;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 16px 34px rgba(15, 70, 155, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(12px);
      padding: 18px;
    }

    .float-card.service {
      left: 6%;
      bottom: 18%;
      width: 238px;
    }

    .float-card.honor {
      right: 0;
      bottom: 4%;
      width: 250px;
    }

    .float-card strong {
      display: block;
      color: #102e66;
      font-size: 16px;
      margin-bottom: 8px;
    }

    .float-card p {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .section {
      padding: 76px 0;
      background: #fff;
    }

    .section.alt {
      background: #f4f8ff;
    }

    .section-head {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 46px;
    }

    .section-head .sub {
      color: var(--blue);
      font-weight: 800;
      font-size: 15px;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .section-head h2 {
      font-size: 36px;
      line-height: 1.25;
      color: #102b5f;
      margin-bottom: 14px;
    }

    .section-head p {
      color: var(--muted);
      font-size: 16px;
    }

    .banner-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .banner-item {
      padding: 28px 22px;
      border-radius: 24px;
      text-align: center;
      background: #fff;
      border: 1px solid #edf3ff;
      box-shadow: 0 14px 34px rgba(17, 73, 158, 0.08);
    }

    .banner-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      margin: 0 auto 16px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 24px;
      font-weight: 800;
      background: linear-gradient(135deg, var(--blue), #38c8ff);
      box-shadow: 0 12px 24px rgba(19, 105, 242, 0.22);
    }

    .banner-item h3,
    .service-card h3,
    .why-item h3,
    .faq-item h3 {
      color: #102b5f;
    }

    .banner-item p,
    .service-card p,
    .why-item p,
    .faq-item p {
      color: var(--muted);
      font-size: 14px;
    }

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

    .service-card {
      position: relative;
      padding: 30px 26px;
      border-radius: 26px;
      background: #fff;
      border: 1px solid #edf3ff;
      box-shadow: 0 14px 34px rgba(17, 73, 158, 0.08);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 48px rgba(17, 73, 158, 0.14);
    }

    .service-card::after {
      content: "";
      position: absolute;
      right: -40px;
      top: -40px;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: rgba(19, 105, 242, 0.06);
    }

    .service-card h3 {
      position: relative;
      z-index: 1;
      font-size: 22px;
      margin-bottom: 10px;
    }

    .price {
      position: relative;
      z-index: 1;
      min-height: 42px;
      padding: 8px 12px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      color: #965006 !important;
      background: #fff3e4;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .price strong {
      color: var(--orange-dark);
      font-size: 22px;
      padding: 0 3px;
    }

    .features {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
    }

    .features li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      color: #465a7c;
      font-size: 14px;
    }

    .features li::before {
      content: "✓";
      flex: 0 0 auto;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--blue);
      font-size: 12px;
      margin-top: 2px;
    }

    .card-btn {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 44px;
      border-radius: 14px;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      box-shadow: 0 12px 24px rgba(255, 105, 18, 0.20);
    }

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

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

    .process-card {
      position: relative;
      padding: 26px 16px;
      text-align: center;
      border-radius: 24px;
      background: #fff;
      border: 1px solid #e7efff;
      box-shadow: 0 12px 30px rgba(17, 73, 158, 0.07);
    }

    .step {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      margin: 0 auto 14px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 800;
      background: linear-gradient(135deg, var(--blue), #39caff);
    }

    .process-card h3 {
      color: #102b5f;
      font-size: 16px;
      margin-bottom: 8px;
    }

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

    .process-note {
      margin-top: 28px;
      padding: 16px 22px;
      border-radius: 18px;
      text-align: center;
      color: #18447d;
      background: #eaf3ff;
      border: 1px solid #d8e7ff;
    }

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

    .why-item {
      padding: 26px 24px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid #edf3ff;
      box-shadow: 0 14px 34px rgba(17, 73, 158, 0.08);
    }

    .why-item h3 {
      font-size: 20px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .why-item h3::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 6px rgba(255, 138, 24, 0.13);
    }

    .faq-wrap {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      gap: 16px;
    }

    .faq-item {
      padding: 24px 26px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid #e7efff;
      box-shadow: 0 12px 30px rgba(17, 73, 158, 0.07);
    }

    .faq-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .brand-section {
      background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #0d58d8, #082b6f);
      color: #fff;
    }

    .brand-panel {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 42px;
      align-items: center;
    }

    .brand-copy h2 {
      font-size: 36px;
      line-height: 1.25;
      margin-bottom: 18px;
    }

    .brand-copy p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 16px;
      margin-bottom: 20px;
    }

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

    .brand-stat {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.13);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .brand-stat b {
      display: block;
      font-size: 28px;
      line-height: 1.2;
    }

    .brand-stat span {
      display: block;
      margin-top: 4px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
    }

    .cta {
      padding: 72px 0;
      color: #fff;
      background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #0c59d4, #082b6f);
    }

    .cta-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .cta h2 {
      font-size: 36px;
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .cta p {
      color: rgba(255, 255, 255, 0.82);
      font-size: 17px;
    }

    .cta .btn-secondary {
      border: none;
      color: var(--blue-dark);
    }

    .footer {
      padding: 42px 0;
      background: #061c48;
      color: rgba(255, 255, 255, 0.75);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 36px;
    }

    .footer h3 {
      color: #fff;
      font-size: 19px;
      margin-bottom: 12px;
    }

    .footer p,
    .footer li {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.72);
      margin-bottom: 8px;
    }

    @media (max-width: 1100px) {
      .nav {
        display: none;
      }

      .hero-layout,
      .brand-panel {
        grid-template-columns: 1fr;
      }

      .visual {
        min-height: 430px;
      }

      .banner-grid,
      .service-cards,
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

    @media (max-width: 680px) {
      .top-line,
      .tel-box {
        display: none;
      }

      .header {
        height: 72px;
      }

      .brand strong {
        font-size: 18px;
      }

      .hero {
        padding: 58px 0 62px;
      }

      .hero h1 {
        font-size: 35px;
      }

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

      .visual {
        min-height: 560px;
      }

      .circle-bg {
        right: -80px;
        width: 300px;
        height: 300px;
      }

      .ip-card {
        left: 0;
        right: auto;
        width: 100%;
      }

      .float-card.service,
      .float-card.honor {
        left: 0;
        right: auto;
        width: calc(100% - 36px);
      }

      .float-card.honor {
        bottom: 0;
      }

      .section {
        padding: 56px 0;
      }

      .section-head h2,
      .brand-copy h2,
      .cta h2 {
        font-size: 28px;
      }

      .banner-grid,
      .service-cards,
      .process-grid,
      .process-grid.six,
      .why-grid,
      .brand-stats,
      .footer-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .cta-box {
        display: grid;
      }
    }