/* ====================================================================
   technology-overview.css — /technology.html 高端门面重设计
   ──────────────────────────────────────────────────────────────────
   结构：
     1. 全局变量
     2. Hero · 深色门面 + 3 大架构 chip
     3. Intro · 大字宣言
     4. Tech Feature · 三段图文交替（FlexCore / EdgeSync / SafeCore）
     5. Synergy · 三层协同 + 大数字
     6. Platforms · 四大平台支撑
     7. CTA · 深色行动召唤
     8. 响应式适配
==================================================================== */

/* ============= 1. 局部变量 ============= */
.tech-page {
  --tech-dark: #0e1a2b;
  --tech-dark-2: #1e3654;
  --tech-blue: #3375af;
  --tech-blue-soft: rgba(51,117,175,0.10);
  --tech-gold: #ffdb6a;
  --tech-gold-soft: rgba(255,219,106,0.15);
  --tech-line: rgba(255,255,255,0.10);
  --tech-text-mute: rgba(255,255,255,0.72);
}

/* ============= 2. Hero ============= */
.tech-hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(160deg, #0a1320 0%, #0e1a2b 50%, #16243b 100%);
  color: #fff;
  overflow: hidden;
}
.tech-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tech-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.85) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.85) 0%, transparent 75%);
}
.tech-hero__glow {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}
.tech-hero__glow--a {
  top: -240px;
  left: -180px;
  background: radial-gradient(circle, #3375af 0%, transparent 60%);
}
.tech-hero__glow--b {
  bottom: -260px;
  right: -200px;
  background: radial-gradient(circle, #ffdb6a 0%, transparent 60%);
  opacity: 0.28;
}

.tech-hero__inner {
  position: relative;
  z-index: 1;
}
.tech-hero__crumb {
  margin-bottom: 32px;
}
.tech-hero__crumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.tech-hero__crumb li::after {
  content: "›";
  margin-left: 8px;
  opacity: 0.4;
}
.tech-hero__crumb li:last-child::after { content: ""; }
.tech-hero__crumb a {
  color: rgba(255,255,255,0.80);
}
.tech-hero__crumb a:hover { color: var(--tech-gold); }

.tech-hero__eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--tech-gold);
  background: var(--tech-gold-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.tech-hero__title {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 1000px;
}
.tech-hero__title span {
  display: block;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.tech-hero__title-em {
  color: #fff !important;
  font-size: 60px !important;
  font-weight: 900 !important;
  margin-bottom: 0 !important;
  background: linear-gradient(120deg, #fff 0%, #ffdb6a 50%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tech-hero__sub {
  font-size: 17px;
  line-height: 1.85;
  color: var(--tech-text-mute);
  max-width: 880px;
  margin: 0 0 56px;
}
.tech-hero__sub strong {
  color: #fff;
  font-weight: 700;
}

.tech-hero__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin-bottom: 64px;
}
.tech-hero__chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--tech-line);
  border-radius: 16px;
  color: #fff;
  text-decoration: none !important;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.tech-hero__chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--tech-blue) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.tech-hero__chip:hover {
  transform: translateY(-4px);
  border-color: var(--tech-gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.tech-hero__chip:hover::before { opacity: 0.18; }
.tech-hero__chip > * { position: relative; z-index: 1; }
.tech-hero__chip-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--tech-gold);
  margin-bottom: 10px;
}
.tech-hero__chip-name {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.tech-hero__chip-name sup {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 700;
  color: var(--tech-gold);
}
.tech-hero__chip-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.tech-hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.tech-hero__scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--tech-gold), transparent);
  position: relative;
}
.tech-hero__scroll-line::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--tech-gold);
  border-radius: 50%;
  top: -2.5px;
  left: 0;
  animation: tech-scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes tech-scroll-pulse {
  0%, 100% { left: 0; opacity: 1; }
  50% { left: calc(100% - 6px); opacity: 0.4; }
}

/* ============= 3. Intro 大字宣言 ============= */
.tech-intro {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.tech-intro::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--tech-gold), transparent);
}
.tech-intro__inner {
  text-align: center;
  max-width: 960px;
}
.tech-intro__statement {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--tech-dark-2);
  letter-spacing: -0.005em;
  margin: 0;
}
.tech-intro__statement strong {
  font-weight: 800;
  color: var(--tech-dark);
  background: linear-gradient(180deg, transparent 65%, var(--tech-gold-soft) 65%);
}

/* ============= 4. Tech Feature 三段图文交替 ============= */
.tech-feature {
  padding: 100px 0;
  background: #fff;
  position: relative;
}
.tech-feature--alt {
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
}
.tech-feature__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-feature__inner--image-right {
  grid-template-columns: 1fr 1.05fr;
}

/* ---- Visual ---- */
.tech-feature__visual {
  position: relative;
}
.tech-feature__visual-frame {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ffffff;
  box-shadow:
    0 30px 60px rgba(13,31,90,0.14),
    0 0 0 1px rgba(51,117,175,0.12) inset;
  z-index: 2;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
a.tech-feature__visual-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 38px 72px rgba(13,31,90,0.18),
    0 0 0 1px var(--tech-blue) inset;
}
.tech-feature__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 18px;
  box-sizing: border-box;
  background: #ffffff;
}
.tech-feature__visual-frame img.is-svg-fallback {
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}
.tech-feature__visual-deco {
  position: absolute;
  width: 70%;
  height: 70%;
  border: 2px solid var(--tech-gold);
  border-radius: 24px;
  bottom: -28px;
  z-index: 1;
  opacity: 0.55;
}
.tech-feature__inner--image-left .tech-feature__visual-deco {
  right: -28px;
}
.tech-feature__inner--image-right .tech-feature__visual-deco {
  left: -28px;
}

/* ---- Text ---- */
.tech-feature__meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}
.tech-feature__num {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--tech-blue);
  opacity: 0.18;
}
.tech-feature__cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--tech-blue);
  background: var(--tech-blue-soft);
  padding: 5px 14px;
  border-radius: 999px;
}
.tech-feature__title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--tech-dark);
  margin: 0 0 8px;
}
.tech-feature__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.tech-feature__title a:hover { color: var(--tech-blue); }
.tech-feature__title sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--tech-blue);
  font-weight: 700;
}
.tech-feature__sub {
  font-size: 18px;
  font-weight: 600;
  color: var(--tech-blue);
  margin: 0 0 24px;
}
.tech-feature__lead {
  font-size: 16px;
  line-height: 1.85;
  color: #455974;
  margin: 0 0 28px;
}
.tech-feature__lead strong {
  color: var(--tech-dark);
  font-weight: 700;
}
.tech-feature__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.tech-feature__list li {
  position: relative;
  padding: 12px 16px 12px 38px;
  font-size: 14px;
  line-height: 1.65;
  color: #455974;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(51,117,175,0.18);
  box-shadow: 0 2px 8px rgba(13,31,90,0.04);
}
.tech-feature__list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: var(--tech-gold);
  border-radius: 3px;
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(255,219,106,0.18);
}
.tech-feature__list li strong {
  color: var(--tech-dark);
  font-weight: 800;
}
.tech-feature__cta .btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
}

/* ============= 5. Synergy + Stats ============= */
.tech-synergy {
  padding: 110px 0;
  background: #fff;
  position: relative;
}
.tech-synergy__head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 60px;
}
.tech-synergy__eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--tech-blue);
  background: var(--tech-blue-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tech-synergy__head h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--tech-dark);
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.tech-synergy__lead {
  font-size: 17px;
  line-height: 1.75;
  color: #455974;
  margin: 0;
}
.tech-synergy__lead strong {
  color: var(--tech-dark);
  font-weight: 700;
}

.tech-synergy__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0 80px;
  padding: 48px;
  background: linear-gradient(135deg, #f7faff 0%, #eef4fb 100%);
  border-radius: 24px;
  border: 1px solid rgba(51,117,175,0.12);
}
.tech-stat {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.tech-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(51,117,175,0.25), transparent);
}
.tech-stat__num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--tech-dark);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--tech-dark) 0%, var(--tech-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tech-stat__unit {
  font-size: 22px;
  font-weight: 700;
  color: var(--tech-blue);
  -webkit-text-fill-color: var(--tech-blue);
  margin-left: 4px;
}
.tech-stat__label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--tech-dark);
  margin-bottom: 4px;
}
.tech-stat__hint {
  display: block;
  font-size: 12px;
  color: #6c7a8c;
}

.tech-synergy__bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-synergy__bullet {
  padding: 28px 28px 30px;
  background: #fff;
  border: 1px solid rgba(51,117,175,0.15);
  border-radius: 16px;
  border-left: 4px solid var(--tech-gold);
  transition: all 0.28s ease;
}
.tech-synergy__bullet:hover {
  border-left-color: var(--tech-blue);
  box-shadow: 0 12px 28px rgba(13,31,90,0.10);
  transform: translateY(-4px);
}
.tech-synergy__bullet-k {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--tech-blue);
  margin-bottom: 12px;
}
.tech-synergy__bullet p {
  font-size: 14px;
  line-height: 1.75;
  color: #455974;
  margin: 0;
}
.tech-synergy__bullet p strong {
  color: var(--tech-dark);
  font-weight: 700;
}

/* ============= 6. Platforms ============= */
.tech-platforms {
  padding: 100px 0;
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
}
.tech-platforms__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}
.tech-platforms__head h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--tech-dark);
  letter-spacing: -0.015em;
  margin: 18px 0 16px;
}
.tech-platforms__lead {
  font-size: 16px;
  line-height: 1.7;
  color: #455974;
  margin: 0;
}
.tech-platforms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tech-platform {
  position: relative;
  display: block;
  padding: 32px 28px 64px;
  background: #fff;
  border: 1px solid rgba(51,117,175,0.15);
  border-radius: 20px;
  text-decoration: none !important;
  color: var(--tech-dark) !important;
  transition: all 0.28s ease;
  overflow: hidden;
}
.tech-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--tech-dark) 0%, var(--tech-blue) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 0;
}
.tech-platform > * { position: relative; z-index: 1; }
.tech-platform:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(13,31,90,0.20);
  color: #fff !important;
}
.tech-platform:hover::before { opacity: 1; }
.tech-platform__tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--tech-blue);
  background: var(--tech-blue-soft);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  transition: all 0.28s ease;
}
.tech-platform:hover .tech-platform__tag {
  background: var(--tech-gold);
  color: var(--tech-dark);
}
.tech-platform h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.1;
}
.tech-platform h3 sup {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--tech-gold);
}
.tech-platform__sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--tech-blue);
  margin: 0 0 10px;
  transition: color 0.28s ease;
}
.tech-platform:hover .tech-platform__sub {
  color: var(--tech-gold);
}
.tech-platform__desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #6c7a8c;
  margin: 0;
  transition: color 0.28s ease;
}
.tech-platform:hover .tech-platform__desc {
  color: rgba(255,255,255,0.85);
}
.tech-platform__arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 22px;
  font-weight: 700;
  color: var(--tech-blue);
  transition: all 0.28s ease;
}
.tech-platform:hover .tech-platform__arrow {
  color: var(--tech-gold);
  transform: translateX(4px);
}

/* CTA 视觉由 components.css 统一接管，本块已清理 */

/* ============= 8. 响应式 ============= */
@media (max-width: 1024px) {
  .tech-hero__title { font-size: 44px; }
  .tech-hero__title-em { font-size: 44px !important; }
  .tech-hero__title span { font-size: 22px; }
  .tech-hero__chips { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .tech-hero__chip-name { font-size: 22px; }
  .tech-feature__inner,
  .tech-feature__inner--image-right { grid-template-columns: 1fr; gap: 48px; }
  .tech-feature__inner--image-right .tech-feature__visual { order: -1; }
  .tech-feature__title { font-size: 44px; }
  .tech-feature__num { font-size: 52px; }
  .tech-intro__statement { font-size: 24px; }
  .tech-synergy__head h2 { font-size: 32px; }
  .tech-synergy__stats { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 36px; }
  .tech-stat:nth-child(2n)::after { display: none; }
  .tech-synergy__bullets { grid-template-columns: 1fr; }
  .tech-platforms__grid { grid-template-columns: repeat(2, 1fr); }
  .tech-cta__inner { grid-template-columns: 1fr; gap: 32px; }
  .tech-cta__actions { flex-direction: row; flex-wrap: wrap; align-items: stretch; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .tech-hero { padding: 70px 0 50px; }
  .tech-hero__title { font-size: 32px; }
  .tech-hero__title-em { font-size: 32px !important; }
  .tech-hero__title span { font-size: 18px; }
  .tech-hero__chips { grid-template-columns: 1fr; }
  .tech-hero__sub { font-size: 15px; }
  .tech-intro { padding: 60px 0; }
  .tech-intro__statement { font-size: 19px; }
  .tech-feature { padding: 60px 0; }
  .tech-feature__title { font-size: 36px; }
  .tech-feature__num { font-size: 44px; }
  .tech-feature__sub { font-size: 16px; }
  .tech-feature__lead { font-size: 15px; }
  .tech-feature__visual-deco { display: none; }
  .tech-synergy { padding: 60px 0; }
  .tech-synergy__head h2 { font-size: 26px; }
  .tech-synergy__stats { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .tech-stat::after { display: none !important; }
  .tech-stat__num { font-size: 44px; }
  .tech-platforms { padding: 60px 0; }
  .tech-platforms__head h2 { font-size: 26px; }
  .tech-platforms__grid { grid-template-columns: 1fr; }
    .tech-cta__txt h2 { font-size: 24px; }
}

/* ============ i-Connect 总览：6 大方向单排（覆盖 i-function 的 5 列默认）============ */
.if-overview--6 .if-overview__grid {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1280px) {
  .if-overview--6 .if-overview__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .if-overview--6 .if-overview__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .if-overview--6 .if-overview__grid { grid-template-columns: 1fr; }
}

/* ============ About-Article 含示意图的 2 列布局（图左 + 文右）============ */
.about-article--with-figure {
  max-width: 1180px;
}
.about-article--with-figure .about-article__head {
  text-align: left;
  margin-bottom: var(--sp-8);
}
.about-article__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: 72px;
  row-gap: var(--sp-6);
  align-items: start;
}
.about-article__figure {
  margin: 0;
  position: sticky;
  top: 96px;
  padding: var(--sp-3);
}
.about-article__figure img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(13, 31, 90, 0.08));
}
.about-article__figcap {
  margin-top: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--c-text-2);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.about-article--with-figure .about-article__body { padding-top: 4px; }
.about-article--with-figure .about-article__body ul {
  list-style: none;
  padding: 0;
  margin: var(--sp-5) 0;
}
.about-article--with-figure .about-article__body ul li {
  position: relative;
  padding: 4px 0 4px 26px;
  margin-bottom: 10px;
  line-height: 1.75;
}
.about-article--with-figure .about-article__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 1px;
}
@media (max-width: 900px) {
  .about-article__layout {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: var(--sp-8);
  }
  .about-article__figure { position: static; padding: 0; }
  .about-article--with-figure .about-article__head { text-align: center; }
}

/* ============ i-Connect 落地页：简洁 2 列布局 ============ */
.if-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.if-detail-media {
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.if-detail-media img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.if-detail-info { padding: var(--sp-2) 0; }
.if-detail-info__category {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-primary);
  background: rgba(51,117,175,0.10);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
}
.if-detail-info__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.if-detail-info__role {
  font-size: var(--fs-lg);
  color: var(--c-text-2);
  margin: 0 0 var(--sp-5);
  line-height: 1.5;
}
.if-detail-info__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.if-detail-info__specs li {
  position: relative;
  padding-left: 20px;
  font-size: var(--fs-md);
  color: var(--c-text);
  line-height: 1.6;
}
.if-detail-info__specs li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--c-primary);
  font-weight: 700;
}
.if-detail-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
@media (max-width: 768px) {
  .if-detail-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .if-detail-info__title { font-size: 28px; }
  .if-detail-media { padding: var(--sp-4); }
}
