:root {
      --bg: #f7fbff;
      --text: #102033;
      --muted: #5f6f82;
      --primary: #155eef;
      --primary-dark: #0f3f9f;
      --line: rgba(21, 94, 239, 0.22);
      --card: rgba(255, 255, 255, 0.78);
      --border: rgba(21, 94, 239, 0.14);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Hiragino Sans",
        "Yu Gothic",
        "YuGothic",
        "Segoe UI",
        sans-serif;
      color: var(--text);
      background: #ffffff;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 20;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 56px;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(16, 32, 51, 0.06);
    }

    .logo {
      font-weight: 800;
      letter-spacing: 0.02em;
      color: var(--text);
    }

    .nav {
      display: flex;
      gap: 28px;
      font-size: 14px;
      color: var(--muted);
    }

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

    .nav a:hover {
      color: var(--primary-dark);
    }

    .hero {
      position: relative;
      min-height: 780px;
      overflow: hidden;
      padding: 152px 56px 88px;
      background:
        radial-gradient(circle at 80% 18%, rgba(21, 94, 239, 0.14), transparent 32%),
        radial-gradient(circle at 62% 72%, rgba(0, 187, 255, 0.10), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.42;
      background-image:
        linear-gradient(rgba(21, 94, 239, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 94, 239, 0.07) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(90deg, transparent, #000 14%, #000 84%, transparent);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
      align-items: center;
      gap: 52px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.03em;
      box-shadow: 0 10px 30px rgba(21, 94, 239, 0.08);
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 0 6px rgba(21, 94, 239, 0.12);
    }

    h1 {
      margin: 26px 0 22px;
      font-size: clamp(42px, 5.2vw, 72px);
      line-height: 1.08;
      letter-spacing: -0.055em;
      font-weight: 850;
    }

    .gradient-text {
      display: inline-block;
      background: linear-gradient(90deg, #102033, #155eef 58%, #00a3ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      max-width: 640px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 2;
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      font-size: 14px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

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

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, #155eef, #0f3f9f);
      box-shadow: 0 18px 36px rgba(21, 94, 239, 0.24);
    }

    .btn-secondary {
      color: var(--primary-dark);
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid var(--border);
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
      border: 1px solid rgba(21, 94, 239, 0.12);
      border-radius: 34px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56)),
        radial-gradient(circle at 50% 20%, rgba(21, 94, 239, 0.12), transparent 34%);
      box-shadow:
        0 28px 80px rgba(16, 32, 51, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      overflow: hidden;
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(21, 94, 239, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 94, 239, 0.06) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity: 0.7;
      pointer-events: none;
    }

    .network-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
    }

    .flow-line {
      fill: none;
      stroke: var(--line);
      stroke-width: 2;
      stroke-dasharray: 8 12;
      animation: dashFlow 3.8s linear infinite;
    }

    .flow-line.strong {
      stroke: rgba(21, 94, 239, 0.42);
      stroke-width: 3;
      stroke-dasharray: 10 14;
    }

    @keyframes dashFlow {
      to {
        stroke-dashoffset: -120;
      }
    }

    .node {
      position: absolute;
      z-index: 5;
      min-width: 148px;
      padding: 16px 18px;
      border-radius: 20px;
      border: 1px solid rgba(21, 94, 239, 0.16);
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 48px rgba(16, 32, 51, 0.10);
      animation: float 5.8s ease-in-out infinite;
    }

    .node small {
      display: block;
      color: var(--muted);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 6px;
      font-weight: 800;
    }

    .node strong {
      display: block;
      font-size: 17px;
      line-height: 1.28;
      color: var(--text);
    }

    .node .pulse {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #155eef;
      box-shadow: 0 0 0 rgba(21, 94, 239, 0.4);
      animation: pulse 2.4s ease-out infinite;
    }

    .node-cloud {
      left: 50%;
      top: 40px;
      transform: translateX(-50%);
      animation-delay: -1.1s;
    }

    .node-data {
      left: 34px;
      top: 126px;
      animation-delay: 0s;
    }

    .node-ai {
      right: 34px;
      top: 126px;
      animation-delay: -2.2s;
    }

    .node-governance {
      left: 42px;
      bottom: 150px;
      animation-delay: -2.8s;
    }

    .node-ops {
      right: 42px;
      bottom: 150px;
      animation-delay: -1.6s;
    }

    .node-migration {
      left: 50%;
      bottom: 88px;
      transform: translateX(-50%);
      animation-delay: -3.2s;
    }

    .center-orb {
      position: absolute;
      z-index: 4;
      left: 50%;
      top: 49%;
      width: 132px;
      height: 132px;
      transform: translate(-50%, -50%);
      border-radius: 999px;
      background:
        radial-gradient(circle at 35% 30%, #ffffff, rgba(255, 255, 255, 0.4) 28%, transparent 30%),
        linear-gradient(135deg, rgba(21, 94, 239, 0.96), rgba(0, 163, 255, 0.82));
      box-shadow:
        0 20px 60px rgba(21, 94, 239, 0.30),
        0 0 0 18px rgba(21, 94, 239, 0.06),
        0 0 0 38px rgba(21, 94, 239, 0.035);
      animation: orbBreath 4.6s ease-in-out infinite;
    }

    .center-orb span {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      font-size: 32px;
      letter-spacing: -0.02em;
      text-align: center;
    }

    .tag-row {
      position: absolute;
      z-index: 6;
      left: 32px;
      right: 32px;
      bottom: 24px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .tag {
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(21, 94, 239, 0.12);
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 800;
      backdrop-filter: blur(10px);
    }

    .particle {
      position: absolute;
      z-index: 3;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(21, 94, 239, 0.42);
      animation: particleMove 7s ease-in-out infinite;
    }

    .particle:nth-child(1) {
      left: 18%;
      top: 44%;
      animation-delay: 0s;
    }

    .particle:nth-child(2) {
      left: 70%;
      top: 38%;
      animation-delay: -2.2s;
    }

    .particle:nth-child(3) {
      left: 44%;
      top: 76%;
      animation-delay: -4s;
    }

    @keyframes float {
      0%, 100% {
        translate: 0 0;
      }
      50% {
        translate: 0 -12px;
      }
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(21, 94, 239, 0.42);
      }
      70% {
        box-shadow: 0 0 0 12px rgba(21, 94, 239, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(21, 94, 239, 0);
      }
    }

    @keyframes orbBreath {
      0%, 100% {
        scale: 1;
      }
      50% {
        scale: 1.045;
      }
    }

    @keyframes particleMove {
      0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
      }
      50% {
        transform: translate(22px, -18px);
        opacity: 0.86;
      }
    }

    @media (max-width: 960px) {
      .site-header {
        padding: 0 24px;
      }

      .nav {
        display: none;
      }

      .hero {
        padding: 120px 24px 64px;
      }

      .hero-inner {
        grid-template-columns: 1fr;
      }

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

      .node {
        min-width: 128px;
        padding: 13px 14px;
      }

      .node strong {
        font-size: 15px;
      }

      .node-data {
        left: 18px;
      }

      .node-ai {
        right: 18px;
      }

      .node-governance {
        left: 18px;
      }

      .node-ops {
        right: 18px;
      }
    }

    @media (max-width: 560px) {
      .hero-visual {
        min-height: 700px;
      }

      .center-orb {
        width: 112px;
        height: 112px;
        top: 47%;
      }

      .center-orb span {
        font-size: 26px;
      }

      .node {
        min-width: 132px;
      }

      .node-cloud {
        top: 30px;
      }

      .node-data {
        top: 126px;
      }

      .node-ai {
        top: 210px;
      }

      .node-governance {
        left: 18px;
        bottom: 228px;
      }

      .node-ops {
        right: 18px;
        bottom: 146px;
      }

      .node-migration {
        bottom: 86px;
      }

      .tag-row {
        bottom: 20px;
      }
    }


    .stance {
      position: relative;
      padding: 104px 56px;
      background:
        radial-gradient(circle at 18% 12%, rgba(21, 94, 239, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      overflow: hidden;
    }

    
    .stance-bg-words {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      user-select: none;
      overflow: hidden;
    }

    .stance-bg-words span {
      position: absolute;
      color: rgba(21, 94, 239, 0.075);
      font-size: clamp(56px, 8vw, 132px);
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.06em;
      white-space: nowrap;
    }

    .stance-bg-words span:nth-child(1) {
      top: 42px;
      left: 48px;
    }

    .stance-bg-words span:nth-child(2) {
      top: 42%;
      right: 32px;
      transform: translateY(-50%);
    }

    .stance-bg-words span:nth-child(3) {
      left: 50%;
      bottom: 42px;
      transform: translateX(-50%);
    }

    .stance-inner {
      position: relative;
      z-index: 1;
      max-width: 1180px;
      margin: 0 auto;
    }

    .section-kicker {
      color: var(--primary);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(34px, 4vw, 52px);
      line-height: 1.18;
      letter-spacing: -0.04em;
      font-weight: 850;
      color: var(--text);
    }

    .section-lead {
      max-width: 820px;
      margin: 24px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 2;
      font-weight: 500;
    }

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

    .value-card {
      position: relative;
      min-height: 300px;
      padding: 30px 28px;
      border-radius: 28px;
      border: 1px solid rgba(21, 94, 239, 0.12);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 22px 64px rgba(16, 32, 51, 0.08);
      overflow: hidden;
    }

    .value-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 88% 12%, rgba(21, 94, 239, 0.12), transparent 28%);
      pointer-events: none;
    }


    .value-number {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 14px;
      color: #ffffff;
      background: linear-gradient(135deg, #155eef, #0f3f9f);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 22px;
      box-shadow: 0 14px 30px rgba(21, 94, 239, 0.22);
    }

    .value-card h3 {
      position: relative;
      z-index: 1;
      margin: 0 0 16px;
      font-size: 22px;
      letter-spacing: -0.03em;
      color: var(--text);
    }

    .value-card p {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.9;
      font-weight: 500;
    }

    @media (max-width: 960px) {
      .stance {
        padding: 80px 24px;
      }

      .value-grid {
        grid-template-columns: 1fr;
      }

      .value-card {
        min-height: auto;
      }
    }

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

/* Shared page styles */
.page-main {
  padding-top: 72px;
}

.page-hero {
  position: relative;
  padding: 112px 56px 72px;
  background:
    radial-gradient(circle at 78% 18%, rgba(21, 94, 239, 0.12), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(21, 94, 239, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 94, 239, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 84%, transparent);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

.page-title {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.page-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  font-weight: 500;
}

/* Company page */
.company-page {
  position: relative;
  padding: 88px 56px 112px;
  background: #ffffff;
}

.company-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  margin-top: 44px;
  align-items: start;
}

.company-card,
.access-card {
  border: 1px solid rgba(21, 94, 239, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 64px rgba(16, 32, 51, 0.08);
  overflow: hidden;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  vertical-align: top;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table th {
  width: 150px;
  color: var(--primary-dark);
  font-weight: 800;
  background: rgba(21, 94, 239, 0.035);
}

.company-table td {
  color: var(--text);
  font-weight: 500;
}

.business-list {
  margin: 0;
  padding-left: 1.2em;
}

.business-list li + li {
  margin-top: 4px;
}

.access-card {
  padding: 30px 28px;
}

.access-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.access-address {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
}

.station-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.station-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #155eef, #0f3f9f);
  box-shadow: 0 16px 34px rgba(21, 94, 239, 0.22);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(21, 94, 239, 0.28);
}

.footer-cta {
  padding: 88px 56px;
  background:
    radial-gradient(circle at 82% 22%, rgba(21, 94, 239, 0.14), transparent 30%),
    linear-gradient(135deg, #102033, #0f3f9f);
  color: #ffffff;
}

.footer-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.footer-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.9;
}

.footer-cta .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
  padding: 28px 56px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(16, 32, 51, 0.06);
  background: #ffffff;
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .page-hero {
    padding: 96px 24px 56px;
  }

  .company-page {
    padding: 72px 24px 88px;
  }

  .company-layout {
    grid-template-columns: 1fr;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    padding-bottom: 8px;
  }

  .company-table td {
    padding-top: 10px;
  }

  .footer-cta {
    padding: 72px 24px;
  }

  .footer-cta-inner {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 24px;
  }
}

/* Contact page */
.contact-page {
  position: relative;
  padding: 88px 56px 112px;
  background: #ffffff;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.contact-card,
.contact-side-card {
  border: 1px solid rgba(21, 94, 239, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 64px rgba(16, 32, 51, 0.08);
}

.contact-card {
  padding: 32px;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.consent-row {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.form-row label span {
  color: var(--primary);
  font-size: 12px;
  margin-left: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(21, 94, 239, 0.16);
  border-radius: 16px;
  background: rgba(247, 251, 255, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 180px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(21, 94, 239, 0.5);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.08);
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.consent-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.form-submit {
  border: none;
  cursor: pointer;
  width: fit-content;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-side-card {
  padding: 30px 28px;
}

.contact-side-card h2 {
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.contact-side-card ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

.contact-side-card li + li {
  margin-top: 10px;
}

@media (max-width: 960px) {
  .contact-page {
    padding: 72px 24px 88px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 24px;
  }
}



/* Generic content pages */
.content-section {
  position: relative;
  padding: 88px 56px 112px;
  background: #ffffff;
}

.content-section-soft {
  background:
    radial-gradient(circle at 18% 12%, rgba(21, 94, 239, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.content-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid,
.feature-grid,
.simple-card-grid {
  display: grid;
  gap: 22px;
  margin-top: 52px;
}

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

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

.service-card,
.feature-card,
.simple-card {
  position: relative;
  border: 1px solid rgba(21, 94, 239, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 64px rgba(16, 32, 51, 0.08);
}

.service-card {
  padding: 30px 28px;
}

.feature-card,
.simple-card {
  padding: 28px;
}

.service-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #155eef, #0f3f9f);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.22);
}

.service-card h3,
.feature-card h3,
.simple-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text);
}

.service-card p,
.feature-card p,
.simple-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

.service-card ul {
  margin: 22px 0 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 600;
}

.service-card li + li {
  margin-top: 4px;
}

.nav a.is-current {
  color: var(--primary-dark);
  font-weight: 800;
}

.logo {
  text-decoration: none;
}

@media (max-width: 960px) {
  .content-section {
    padding: 72px 24px 88px;
  }

  .service-grid,
  .feature-grid,
  .simple-card-grid {
    grid-template-columns: 1fr;
  }
}


.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

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

.form-status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(21, 94, 239, 0.08);
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}


/* Mobile navigation */
.menu-toggle {
  display: none;
  border: 1px solid rgba(21, 94, 239, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 16px;
  cursor: pointer;
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(21, 94, 239, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 64px rgba(16, 32, 51, 0.14);
    backdrop-filter: blur(14px);
  }

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

  .nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .nav a:hover,
  .nav a.is-current {
    background: rgba(21, 94, 239, 0.08);
  }
}
