
    .otomo-drone-localization-module {
      --od-blue: #1f6fbf;
      --od-blue-dark: #174f8f;
      --od-blue-soft: #edf6ff;
      --od-blue-line: #cfe1f5;
      --od-green: #1fbf75;
      --od-text: #111827;
      --od-muted: #526173;
      --od-line: #dde5ee;
      --od-white: #ffffff;
      --od-bg: #ffffff;
      --od-card: #ffffff;
      --od-soft-card: #f9fbfe;
      --od-shadow: 0 14px 34px rgba(16, 24, 40, 0.06);
      --od-radius-xl: 26px;
      --od-radius-lg: 18px;
      --od-radius-md: 12px;
      --od-max: 1380px;
      font-family: Arial, Helvetica, sans-serif;
      background: var(--od-bg);
      color: var(--od-text);
      padding: 78px 20px;
      line-height: 1.65;
      overflow: hidden;
    }

    .otomo-drone-localization-module *,
    .otomo-drone-localization-module *::before,
    .otomo-drone-localization-module *::after {
      box-sizing: border-box;
      min-width: 0;
    }

    .od-wrap {
      max-width: var(--od-max);
      width: 100%;
      margin: 0 auto;
    }

    .od-hero {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      background: var(--od-white);
      border: 1px solid var(--od-line);
      box-shadow: var(--od-shadow);
      padding: 42px 42px;
      margin-bottom: 42px;
    }

    .od-hero::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 7px;
      height: 100%;
      background: var(--od-blue);
    }

    .od-hero::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      background: rgba(31, 111, 191, 0.06);
    }

    .od-hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.8fr);
      gap: 34px;
      align-items: center;
    }

    .od-hero-content {
      position: relative;
      z-index: 2;
      max-width: 980px;
    }

    .od-pill {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 7px 13px;
      border-radius: 999px;
      background: var(--od-blue-soft);
      color: var(--od-blue-dark);
      border: 1px solid var(--od-blue-line);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .od-pill::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--od-blue);
      flex: 0 0 auto;
    }

    .od-hero h2 {
      margin: 0 0 18px;
      color: var(--od-text);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.16;
      letter-spacing: -0.035em;
    }

    .od-hero p {
      max-width: 980px;
      margin: 0;
      color: var(--od-muted);
      font-size: 16px;
    }

    .od-hero-product {
      position: relative;
      z-index: 3;
      display: grid;
      gap: 14px;
    }

    .od-hero-product-card {
      display: grid;
      grid-template-columns: 128px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid var(--od-blue-line);
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 16px 34px rgba(16, 24, 40, 0.07);
      color: inherit;
      text-decoration: none;
      backdrop-filter: blur(8px);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .od-hero-product-card:hover {
      transform: translateY(-3px);
      border-color: rgba(31, 111, 191, 0.35);
      box-shadow: 0 18px 42px rgba(16, 24, 40, 0.10);
    }

    .od-hero-product-image {
      width: 128px;
      height: 128px;
      border-radius: 16px;
      background: #ffffff;
      border: 1px solid var(--od-line);
      overflow: hidden;
      display: grid;
      place-items: center;
    }

    .od-hero-product-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .od-hero-product-info h3 {
      margin: 0 0 8px;
      color: var(--od-text);
      font-size: 19px;
      line-height: 1.3;
    }

    .od-hero-product-info p {
      margin: 0;
      color: var(--od-muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .od-hero-product-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      color: var(--od-blue-dark);
      font-size: 14px;
      font-weight: 900;
    }

    .od-hero-product-link::after {
      content: "→";
      font-size: 16px;
      line-height: 1;
      transition: transform 0.2s ease;
    }

    .od-hero-product-card:hover .od-hero-product-link::after {
      transform: translateX(4px);
    }

    .od-hero-product-specs {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .od-hero-product-spec {
      display: flex;
      align-items: center;
      gap: 9px;
      min-height: 50px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid var(--od-blue-line);
      background: rgba(255, 255, 255, 0.76);
      color: var(--od-text);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.35;
      backdrop-filter: blur(8px);
    }

    .od-hero-product-spec::before {
      content: "✓";
      color: var(--od-green);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .od-section {
      margin-bottom: 42px;
    }

    .od-section:last-child {
      margin-bottom: 0;
    }

    .od-section-head {
      margin-bottom: 22px;
    }

    .od-section-title {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0;
      color: var(--od-blue-dark);
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.2;
      letter-spacing: -0.02em;
    }

    .od-section-title::before {
      content: "";
      width: 5px;
      height: 34px;
      border-radius: 999px;
      background: var(--od-blue);
      flex: 0 0 auto;
    }

    .od-tech-shell {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 22px;
      align-items: stretch;
    }

    .od-card {
      background: var(--od-card);
      border: 1px solid var(--od-line);
      border-radius: var(--od-radius-xl);
      box-shadow: var(--od-shadow);
    }

    .od-tech-feature {
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .od-tech-feature::after {
      content: "";
      position: absolute;
      right: -58px;
      bottom: -58px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: rgba(31, 111, 191, 0.045);
    }

    .od-tech-feature h3 {
      position: relative;
      z-index: 2;
      margin: 0 0 16px;
      color: var(--od-blue-dark);
      font-size: 25px;
      line-height: 1.25;
    }

    .od-tech-feature ul {
      position: relative;
      z-index: 2;
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 13px;
    }

    .od-tech-feature li {
      display: flex;
      gap: 11px;
      color: var(--od-text);
      font-size: 15px;
    }

    .od-tech-feature li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--od-blue);
      box-shadow: 0 0 0 5px var(--od-blue-soft);
      margin-top: 9px;
      flex: 0 0 auto;
    }

    .od-tech-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .od-metric-card {
      background: var(--od-white);
      border: 1px solid var(--od-line);
      border-radius: var(--od-radius-lg);
      padding: 24px;
      box-shadow: var(--od-shadow);
    }

    .od-metric-card .label {
      display: inline-block;
      color: var(--od-blue-dark);
      background: var(--od-blue-soft);
      border: 1px solid var(--od-blue-line);
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .od-metric-card .value {
      color: var(--od-text);
      font-size: 17px;
      font-weight: 700;
      line-height: 1.45;
    }

    .od-scenario-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .od-scenario-card {
      background: var(--od-white);
      border: 1px solid var(--od-line);
      border-radius: var(--od-radius-lg);
      padding: 24px;
      box-shadow: var(--od-shadow);
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .od-scenario-card:hover {
      transform: translateY(-4px);
      border-color: rgba(31, 111, 191, 0.32);
    }

    .od-scenario-icon {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--od-blue-soft);
      color: var(--od-blue-dark);
      font-weight: 800;
      margin-bottom: 16px;
      border: 1px solid var(--od-blue-line);
    }

    .od-scenario-card h3 {
      margin: 0 0 10px;
      color: var(--od-text);
      font-size: 20px;
      line-height: 1.3;
    }

    .od-scenario-card p {
      margin: 0;
      color: var(--od-muted);
      font-size: 14px;
    }

    .od-comparison-card {
      background: var(--od-white);
      border: 1px solid var(--od-line);
      border-radius: var(--od-radius-xl);
      padding: 28px;
      box-shadow: var(--od-shadow);
    }

    .od-comparison-title {
      color: var(--od-blue-dark);
      font-size: clamp(22px, 3vw, 30px);
      line-height: 1.24;
      margin: 0 0 22px;
      letter-spacing: -0.02em;
    }

    .od-table-wrap {
      width: 100%;
      max-width: 100%;
      overflow-x: auto;
      border: 1px solid var(--od-line);
      border-radius: 16px;
      background: var(--od-white);
    }

    .od-compare-table {
      width: 100%;
      min-width: 820px;
      border-collapse: collapse;
    }

    .od-compare-table th,
    .od-compare-table td {
      padding: 16px 18px;
      border-bottom: 1px solid var(--od-line);
      text-align: left;
      vertical-align: middle;
      font-size: 14px;
    }

    .od-compare-table tr:last-child td {
      border-bottom: 0;
    }

    .od-compare-table th {
      background: #eef5fd;
      color: var(--od-blue-dark);
      font-weight: 800;
      border-bottom: 1px solid var(--od-blue-line);
    }

    .od-compare-table td {
      color: var(--od-text);
      background: #ffffff;
    }

    .od-compare-table tr:nth-child(even) td {
      background: #fafcff;
    }

    .od-compare-table td:first-child {
      font-weight: 700;
      color: var(--od-blue-dark);
    }

    .od-global-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .od-global-card {
      background: var(--od-white);
      border: 1px solid var(--od-line);
      border-radius: var(--od-radius-lg);
      padding: 26px;
      box-shadow: var(--od-shadow);
      position: relative;
      overflow: hidden;
    }

    .od-global-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--od-blue);
      opacity: 0.75;
    }

    .od-global-card .country {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 72px;
      height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--od-blue-soft);
      color: var(--od-blue-dark);
      border: 1px solid var(--od-blue-line);
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .od-global-card p {
      margin: 0;
      color: var(--od-muted);
      font-size: 15px;
    }

    .od-support-shell {
      background: var(--od-white);
      border: 1px solid var(--od-line);
      border-radius: var(--od-radius-xl);
      padding: 28px;
      box-shadow: var(--od-shadow);
    }

    .od-support-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .od-support-card {
      background: var(--od-soft-card);
      border: 1px solid var(--od-line);
      border-radius: var(--od-radius-lg);
      padding: 22px;
      min-height: 138px;
    }

    .od-support-card .check {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 9px;
      background: rgba(31, 191, 117, 0.12);
      color: var(--od-green);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .od-support-card p {
      margin: 0;
      color: var(--od-text);
      font-size: 15px;
      line-height: 1.55;
    }

    @media (max-width: 1100px) {
      .od-hero-grid {
        grid-template-columns: 1fr;
      }

      .od-hero-product {
        max-width: 620px;
      }
    }

    @media (max-width: 980px) {
      .od-tech-shell,
      .od-scenario-grid,
      .od-global-grid,
      .od-support-grid {
        grid-template-columns: 1fr;
      }

      .od-tech-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .otomo-drone-localization-module {
        padding: 58px 14px;
      }

      .od-hero {
        padding: 30px 24px;
        border-radius: 24px;
      }

      .od-hero-product-card {
        grid-template-columns: 1fr;
      }

      .od-hero-product-image {
        width: 100%;
        height: 180px;
      }

      .od-hero-product-specs,
      .od-tech-metrics {
        grid-template-columns: 1fr;
      }

      .od-comparison-card,
      .od-support-shell {
        padding: 20px;
      }

      .od-compare-table {
        min-width: 760px;
      }

      .od-section-title {
        font-size: 22px;
      }
    }
  