/* =============================================
   web_case_detail_9f4a70104d2c.css
   All selectors scoped under .imported-content
   ============================================= */

/* --- CSS Variables --- */
.imported-content {
  --primary: #136dec;
  --primary-light: #e0ecfd;
  --primary-dark: #0b4fbd;
  --dark-bg: #0f172a;
  --dark-bg-lighter: #1e293b;
  --grey-bg: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-700: #334155;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --accent-green: #10b981;
  --accent-amber: #f59e0b;
  --accent-red: #ef4444;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.16);
  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* --- Reset --- */
.imported-content {
  background: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.imported-content *,
.imported-content *::before,
.imported-content *::after {
  box-sizing: border-box;
}
.imported-content img {
  max-width: 100%;
}

/* --- Reveal animation --- */
.imported-content .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.imported-content .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Keyframes --- */
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes flowDotMove {
  0%   { left: 0; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: calc(100% - 6px); opacity: 0; }
}
@keyframes flowDotMoveV {
  0%   { top: 0; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: calc(100% - 6px); opacity: 0; }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(19,109,236,0.3), 0 0 20px #136dec; }
  50%      { box-shadow: 0 0 0 12px rgba(19,109,236,0.1), 0 0 40px #136dec; }
}

/* =============================================
   LAYOUT CONTAINERS
   ============================================= */
.imported-content .container-text {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}
.imported-content .container-layout {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   SHARED COMPONENTS
   ============================================= */

/* Section label / badge */
.imported-content .section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.imported-content .section-label--light {
  color: rgba(255,255,255,0.7);
}
.imported-content .section-label--light .badge-dot {
  background: var(--primary);
}
.imported-content .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}

/* Section title */
.imported-content .section-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 40px;
}
.imported-content .section-title--light {
  color: #fff;
}

/* Section illustration */
.imported-content .section-illust {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  display: block;
  object-fit: cover;
}

/* Quote card */
.imported-content .quote-card {
  background: var(--grey-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 32px 36px;
  margin: 36px 0;
  position: relative;
}
.imported-content .quote-card--dark {
  background: var(--dark-bg);
  border-left-color: var(--primary);
}
.imported-content .quote-mark {
  font-size: 60px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
  opacity: 0.2;
}
.imported-content .quote-card p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.imported-content .quote-card footer {
  font-size: 13px;
  color: var(--grey-500);
  font-weight: 500;
}
/* Dark quote override — must come AFTER base quote-card p */
.imported-content .quote-card.quote-card--dark .quote-mark {
  color: #ffffff;
  opacity: 0.15;
}
.imported-content .quote-card.quote-card--dark p {
  color: #f1f5f9;
}
.imported-content .quote-card.quote-card--dark footer {
  color: #94a3b8;
}

/* =============================================
   1. HERO
   ============================================= */
.imported-content .hero {
  background: var(--dark-bg);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.imported-content .hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(19,109,236,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.imported-content .hero__inner {
  position: relative;
  z-index: 1;
}
.imported-content .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(19,109,236,0.15);
  border: 1px solid rgba(19,109,236,0.3);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #93bbf5;
  margin-bottom: 40px;
}
.imported-content .hero__badge .badge-dot {
  width: 6px;
  height: 6px;
  background: #93bbf5;
}

/* Phone Mockup */
.imported-content .phone-mockup {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.imported-content .phone-outer {
  position: relative;
  width: 260px;
  height: 520px;
  background: #1a1a2e;
  border-radius: 36px;
  border: 3px solid #2a2a4a;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}
.imported-content .phone-side {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.imported-content .phone-side--left {
  left: -6px;
  padding-top: 100px;
}
.imported-content .phone-side--right {
  right: -6px;
  padding-top: 140px;
}
.imported-content .phone-btn {
  width: 4px;
  height: 28px;
  background: #2a2a4a;
  border-radius: 2px;
}
.imported-content .phone-btn--long {
  height: 50px;
}
.imported-content .phone-btn--power {
  height: 44px;
}
.imported-content .phone-screen {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.imported-content .phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.imported-content .phone-notch {
  width: 100px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  flex-shrink: 0;
}
.imported-content .phone-home-bar {
  width: 100px;
  height: 4px;
  background: var(--grey-300);
  border-radius: 2px;
  margin: auto auto 8px;
  flex-shrink: 0;
}

/* App Demo inside phone */
.imported-content .app-demo {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.imported-content .app-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-200);
}
.imported-content .app-logo-dot {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--primary);
  flex-shrink: 0;
}
.imported-content .app-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  flex: 1;
}
.imported-content .app-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}

/* App flow steps */
.imported-content .app-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 0;
}
.imported-content .flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  color: var(--grey-400);
}
.imported-content .flow-step--active {
  color: var(--primary);
}
.imported-content .flow-step--active .flow-icon {
  background: var(--primary);
  color: #fff;
}
.imported-content .flow-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--grey-400);
}
.imported-content .flow-arrow {
  font-size: 10px;
  color: var(--grey-300);
  margin: 0 2px;
}

/* App card */
.imported-content .app-card {
  background: var(--grey-bg);
  border-radius: var(--radius-sm);
  padding: 10px;
  border: 1px solid var(--grey-200);
}
.imported-content .app-card__label {
  font-size: 9px;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.imported-content .app-card__time {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.imported-content .app-card__doctor {
  display: flex;
  align-items: center;
  gap: 8px;
}
.imported-content .doctor-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  flex-shrink: 0;
}
.imported-content .doctor-info {
  flex: 1;
  min-width: 0;
}
.imported-content .doctor-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}
.imported-content .doctor-spec {
  font-size: 9px;
  color: var(--grey-400);
}
.imported-content .doctor-badge {
  font-size: 9px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 999px;
}
.imported-content .app-cta-btn {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: default;
}
.imported-content .app-delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--accent-green);
  padding: 6px 0;
}

/* Hero text */
.imported-content .hero__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 20px;
}
.imported-content .hero__title em {
  font-style: normal;
  color: var(--primary);
}
.imported-content .hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-400);
  margin: 0 auto 32px;
  max-width: 520px;
}
.imported-content .hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.imported-content .stat-inline {
  font-size: 14px;
  color: var(--grey-400);
}
.imported-content .stat-inline strong {
  color: #fff;
  font-weight: 700;
}
.imported-content .stat-divider {
  color: var(--grey-600);
  font-size: 14px;
}

/* =============================================
   2. STORY
   ============================================= */
.imported-content .story {
  background: #fff;
  padding: 100px 0;
}
.imported-content .story__body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
}
.imported-content .story__body p {
  margin: 0 0 24px;
}
.imported-content .story__dropcap {
  position: relative;
}
.imported-content .drop-cap {
  float: left;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
  color: var(--primary);
  margin-right: 8px;
  margin-top: 6px;
}

/* =============================================
   3. VISUAL BREAK
   ============================================= */
.imported-content .visual-break {
  background: var(--dark-bg);
  padding: 100px 0;
  text-align: center;
}
.imported-content .visual-break__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 60px;
}

/* Flow diagram */
.imported-content .flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 20px 0;
}
.imported-content .flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  min-width: 100px;
  transition: transform 0.3s, background 0.3s;
}
.imported-content .flow-node:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.imported-content .flow-node--accent {
  background: rgba(19,109,236,0.15);
  border-color: rgba(19,109,236,0.3);
}
.imported-content .flow-node__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}
.imported-content .flow-node--accent .flow-node__icon {
  background: var(--primary);
  color: #fff;
}
.imported-content .flow-node__label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.imported-content .flow-node__sub {
  font-size: 12px;
  color: var(--grey-400);
}

/* Flow connector */
.imported-content .flow-connector {
  display: flex;
  align-items: center;
  position: relative;
  width: 48px;
  height: 2px;
}
.imported-content .flow-connector__line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(19,109,236,0.2), rgba(19,109,236,0.5));
}
.imported-content .flow-connector__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation: flowDotMove 2s ease-in-out infinite;
}

/* =============================================
   4. DIAGNOSIS
   ============================================= */
.imported-content .diagnosis {
  background: var(--grey-bg);
  padding: 100px 0;
}

/* Sticky layout */
.imported-content .sticky-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.imported-content .sticky-layout__left {
  position: sticky;
  top: 100px;
}
.imported-content .sticky-layout__sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-500);
  margin-top: 16px;
}
.imported-content .sticky-layout__right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Diagnosis infographic */
.imported-content .diag-infographic {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.imported-content .diag-infographic__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-400);
  margin-bottom: 24px;
}

/* Before/After comparison */
.imported-content .diag-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
.imported-content .diag-side {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--grey-bg);
  border: 1px solid var(--grey-200);
}
.imported-content .diag-side--before {
  /* default styles from .diag-side */
}
.imported-content .diag-side--after {
  background: rgba(19,109,236,0.03);
  border-color: rgba(19,109,236,0.15);
}
.imported-content .diag-side__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--grey-400);
  margin-bottom: 16px;
}
.imported-content .diag-side__tag--primary {
  color: var(--primary);
}
.imported-content .diag-side__caption {
  font-size: 12px;
  color: var(--grey-400);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* Simple flow (before side) */
.imported-content .diag-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.imported-content .diag-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--grey-500);
}
.imported-content .diag-node i {
  font-size: 20px;
}
.imported-content .diag-node--grey i {
  color: var(--grey-400);
}
.imported-content .diag-simple__arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--grey-300);
  font-size: 14px;
}
.imported-content .diag-simple__line {
  width: 20px;
  height: 2px;
  background: var(--grey-300);
}

/* VS divider */
.imported-content .diag-vs {
  font-size: 14px;
  font-weight: 800;
  color: var(--grey-300);
  align-self: center;
  padding: 8px;
}

/* Auth hierarchy (after side) */
.imported-content .diag-zone {
  margin-bottom: 12px;
}
.imported-content .diag-zone__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 8px;
  opacity: 0.7;
}
.imported-content .diag-zone__divider {
  height: 1px;
  background: var(--grey-200);
  margin: 12px 0;
}
.imported-content .diag-auth {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.imported-content .diag-auth__node {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
}
.imported-content .diag-auth__node i {
  font-size: 10px;
}
.imported-content .diag-auth__node--1 {
  background: var(--primary);
  color: #fff;
}
.imported-content .diag-auth__node--2 {
  background: rgba(19,109,236,0.2);
  color: var(--primary-dark);
}
.imported-content .diag-auth__node--3 {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.imported-content .diag-auth__arrow {
  font-size: 11px;
  color: var(--grey-300);
  line-height: 1;
}
.imported-content .diag-auth__arrow--slash {
  color: var(--grey-300);
}

/* Diagnosis flow row (after side) */
.imported-content .diag-flow-row {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.imported-content .diag-flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  color: var(--grey-500);
  background: #fff;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-200);
}
.imported-content .diag-flow-node i {
  font-size: 12px;
  color: var(--grey-400);
}
.imported-content .diag-flow-node--accent {
  border-color: var(--primary);
  background: var(--primary-light);
}
.imported-content .diag-flow-node--accent i {
  color: var(--primary);
}
.imported-content .diag-flow-arr {
  font-size: 10px;
  color: var(--grey-300);
}

/* Diagnosis numbered items */
.imported-content .diagnosis-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--grey-200);
}
.imported-content .diagnosis-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
}
.imported-content .diagnosis-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* =============================================
   5. SOLUTION
   ============================================= */
.imported-content .solution {
  background: #fff;
  padding: 100px 0;
}
.imported-content .solution__lead {
  border: none;
  padding: 0;
  margin: 0 0 40px;
}
.imported-content .solution__lead .playfair {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-primary);
}
.imported-content .solution__body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
}
.imported-content .solution__body p {
  margin: 0 0 24px;
}

/* =============================================
   6. TECHNOLOGY
   ============================================= */
.imported-content .technology {
  background: #fff;
  padding: 100px 0;
}

/* Tech infographic wrapper */
.imported-content .tech-infographic {
  margin-bottom: 60px;
}
.imported-content .tech-infographic__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Tech layer */
.imported-content .tech-layer {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.imported-content .tech-layer__num {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  padding-top: 20px;
}
.imported-content .tech-layer__panel {
  background: var(--grey-bg);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.3s;
}
.imported-content .tech-layer__panel:hover {
  box-shadow: var(--shadow-md);
}
.imported-content .tech-layer__panel--accent {
  background: rgba(19,109,236,0.04);
  border-color: rgba(19,109,236,0.15);
}
.imported-content .tech-layer__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.imported-content .tech-layer__icon-wrap--accent {
  background: var(--primary);
  color: #fff;
}
.imported-content .tech-layer__info {
  margin-bottom: 16px;
}
.imported-content .tech-layer__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.imported-content .tech-layer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.imported-content .tech-chip {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--grey-100);
  color: var(--grey-600);
  border: 1px solid var(--grey-200);
}
.imported-content .tech-chip--accent {
  background: rgba(19,109,236,0.1);
  color: var(--primary);
  border-color: rgba(19,109,236,0.2);
}

/* Tech layer bar (voice layer) */
.imported-content .tech-layer__bar {
  height: 6px;
  background: var(--grey-200);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 12px;
}
.imported-content .tech-layer__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #5b9cf5);
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Tech vertical connector */
.imported-content .tech-layer__connector-v {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--primary), rgba(19,109,236,0.2));
  margin: 0 0 0 72px;
  border-radius: 1px;
  position: relative;
}
.imported-content .tech-layer__connector-v::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
}

/* Permission rows */
.imported-content .tech-layer__permission {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.imported-content .tech-perm-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.imported-content .tech-perm-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-600);
  min-width: 80px;
  text-align: right;
}
.imported-content .tech-perm-all,
.imported-content .tech-perm-mid,
.imported-content .tech-perm-low {
  height: 8px;
  border-radius: 4px;
  flex: 1;
  font-size: 0;
}
.imported-content .tech-perm-all {
  background: linear-gradient(90deg, var(--primary), #5b9cf5);
}
.imported-content .tech-perm-mid {
  background: linear-gradient(90deg, var(--primary), rgba(19,109,236,0.4));
  max-width: 66%;
}
.imported-content .tech-perm-low {
  background: linear-gradient(90deg, var(--primary), rgba(19,109,236,0.2));
  max-width: 33%;
}

/* Delivery track */
.imported-content .tech-layer__delivery {
  margin-top: 16px;
}
.imported-content .tech-delivery-track {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 0;
}
.imported-content .tech-delivery-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--grey-400);
  position: relative;
  flex-shrink: 0;
}
.imported-content .tech-delivery-step i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: var(--grey-100);
  color: var(--grey-400);
}
.imported-content .tech-delivery-step--done i {
  background: var(--accent-green);
  color: #fff;
}
.imported-content .tech-delivery-step--done span {
  color: var(--accent-green);
  font-weight: 600;
}
.imported-content .tech-delivery-step--active i {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(19,109,236,0.2);
}
.imported-content .tech-delivery-step--active span {
  color: var(--primary);
  font-weight: 600;
}
.imported-content .tech-delivery-step--pending i {
  background: var(--grey-100);
  color: var(--grey-300);
}
.imported-content .tech-delivery-line {
  flex: 1;
  height: 2px;
  background: var(--accent-green);
  min-width: 20px;
}
.imported-content .tech-delivery-line--grey {
  background: var(--grey-200);
}

/* Tech grid (2x2 cards) */
.imported-content .tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.imported-content .tech-card {
  background: var(--grey-bg);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.imported-content .tech-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.imported-content .tech-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.imported-content .tech-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.imported-content .tech-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}
.imported-content .tech-card__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* =============================================
   7. PROCESS
   ============================================= */
.imported-content .process {
  background: var(--dark-bg);
  padding: 100px 0;
}

/* Vertical timeline */
.imported-content .timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 20px;
}
.imported-content .timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(19,109,236,0.1));
}
.imported-content .timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.imported-content .timeline-item:last-child {
  padding-bottom: 0;
}
.imported-content .timeline-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 3px solid var(--primary);
  z-index: 1;
}
.imported-content .timeline-dot--glow {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(19,109,236,0.25), 0 0 20px rgba(19,109,236,0.4);
  animation: glow-pulse 2s ease-in-out infinite;
}
.imported-content .timeline-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
}
.imported-content .timeline-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.imported-content .timeline-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(19,109,236,0.15);
  padding: 3px 10px;
  border-radius: 999px;
}
.imported-content .timeline-tag--accent {
  background: var(--primary);
  color: #fff;
}
.imported-content .timeline-period {
  font-size: 13px;
  color: var(--grey-400);
}
.imported-content .timeline-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.imported-content .timeline-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.imported-content .timeline-checklist li {
  font-size: 14px;
  color: var(--grey-400);
  display: flex;
  align-items: center;
  gap: 10px;
}
.imported-content .timeline-checklist li i {
  color: var(--accent-green);
  font-size: 12px;
  flex-shrink: 0;
}

/* =============================================
   8. RESULT
   ============================================= */
.imported-content .result {
  background: var(--grey-bg);
  padding: 100px 0;
}

/* Before/After comparison columns */
.imported-content .comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 60px;
}
.imported-content .comparison__before,
.imported-content .comparison__after {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
}
.imported-content .comparison__after {
  border-color: rgba(19,109,236,0.2);
  background: rgba(19,109,236,0.02);
}
.imported-content .comparison__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--grey-100);
  color: var(--grey-500);
  margin-bottom: 20px;
}
.imported-content .comparison__tag--primary {
  background: var(--primary);
  color: #fff;
}
.imported-content .comparison__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.imported-content .comparison__list li {
  font-size: 15px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.imported-content .comparison__before .comparison__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
}
.imported-content .comparison__after .comparison__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.imported-content .comparison__arrow {
  align-self: center;
  font-size: 24px;
  color: var(--primary);
}

/* Result story */
.imported-content .result-story {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  margin-bottom: 40px;
}
.imported-content .result-story__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px;
  line-height: 1.4;
}
.imported-content .result-story p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0 0 16px;
}
.imported-content .result-story p:last-child {
  margin-bottom: 0;
}

/* Photo placeholder */
/* App Screenshots (Store Banner Style) */
.imported-content .app-screenshots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 48px;
}
.imported-content .store-banner-item {
  flex: 0 0 auto;
  width: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}
.imported-content .store-banner-item:nth-child(2) {
  transform: scale(1.08);
  z-index: 2;
}
.imported-content .store-banner-item:first-child {
  transform: rotate(-3deg) translateY(12px);
}
.imported-content .store-banner-item:last-child {
  transform: rotate(3deg) translateY(12px);
}
.imported-content .store-banner-item img {
  width: 100%;
  display: block;
}

/* =============================================
   9. CTA
   ============================================= */
.imported-content .cta {
  background: var(--dark-bg);
  padding: 100px 0;
}
.imported-content .cta__illust {
  margin-bottom: 48px;
}
.imported-content .cta-box {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
}
.imported-content .cta-box__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.imported-content .cta-box__glow--1 {
  width: 300px;
  height: 300px;
  background: rgba(19,109,236,0.2);
  top: -100px;
  left: -60px;
}
.imported-content .cta-box__glow--2 {
  width: 250px;
  height: 250px;
  background: rgba(91,156,245,0.15);
  bottom: -80px;
  right: -40px;
}
.imported-content .cta-box__content {
  position: relative;
  z-index: 1;
}
.imported-content .cta-box__title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin: 16px 0 36px;
}
.imported-content .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(19,109,236,0.3);
}
.imported-content .cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(19,109,236,0.4);
}
.imported-content .cta-btn i {
  transition: transform 0.3s;
}
.imported-content .cta-btn:hover i {
  transform: translateX(4px);
}

/* =============================================
   RESPONSIVE: 1024px
   ============================================= */
@media (max-width: 1024px) {
  .imported-content .sticky-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .imported-content .sticky-layout__left {
    position: static;
  }
  .imported-content .hero__title {
    font-size: 34px;
  }
  .imported-content .visual-break__title {
    font-size: 28px;
  }
  .imported-content .cta-box__title {
    font-size: 32px;
  }
}

/* =============================================
   RESPONSIVE: 768px
   ============================================= */
@media (max-width: 768px) {
  .imported-content .hero {
    padding: 72px 0 60px;
  }
  .imported-content .hero__title {
    font-size: 26px;
  }
  .imported-content .hero__sub {
    font-size: 15px;
  }
  .imported-content .hero__stats {
    flex-direction: column;
    gap: 8px;
  }
  .imported-content .stat-divider {
    display: none;
  }

  /* Phone mockup responsive */
  .imported-content .phone-outer {
    width: 220px;
    height: 440px;
    border-radius: 30px;
  }
  .imported-content .phone-screen {
    border-radius: 22px;
  }
  .imported-content .phone-notch {
    width: 80px;
    height: 20px;
    border-radius: 0 0 12px 12px;
  }

  /* Section padding */
  .imported-content .story,
  .imported-content .diagnosis,
  .imported-content .solution,
  .imported-content .technology,
  .imported-content .process,
  .imported-content .result,
  .imported-content .cta,
  .imported-content .visual-break {
    padding: 64px 0;
  }

  /* Section titles */
  .imported-content .section-title,
  .imported-content .section-title--light {
    font-size: 26px;
  }

  /* Flow diagram vertical */
  .imported-content .flow-diagram {
    flex-direction: column;
    gap: 8px;
  }
  .imported-content .flow-connector {
    width: 2px;
    height: 24px;
    flex-direction: column;
  }
  .imported-content .flow-connector__line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(19,109,236,0.2), rgba(19,109,236,0.5));
  }
  .imported-content .flow-connector__dot {
    animation: flowDotMoveV 2s ease-in-out infinite;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  /* Diagnosis compare */
  .imported-content .diag-compare {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .imported-content .diag-vs {
    text-align: center;
  }
  .imported-content .diag-infographic {
    padding: 20px;
  }
  .imported-content .diag-flow-row {
    gap: 2px;
  }
  .imported-content .diag-flow-node {
    padding: 4px 6px;
    font-size: 9px;
  }

  /* Tech grid single column */
  .imported-content .tech-grid {
    grid-template-columns: 1fr;
  }
  .imported-content .tech-layer {
    grid-template-columns: 1fr;
  }
  .imported-content .tech-layer__num {
    padding-top: 0;
  }
  .imported-content .tech-layer__connector-v {
    margin-left: 24px;
  }
  .imported-content .tech-card {
    padding: 24px;
  }
  .imported-content .tech-delivery-track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  /* Comparison single column */
  .imported-content .comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .imported-content .comparison__arrow {
    text-align: center;
    transform: rotate(90deg);
  }

  /* Timeline */
  .imported-content .timeline {
    padding-left: 32px;
  }
  .imported-content .timeline-dot {
    left: -32px;
    width: 14px;
    height: 14px;
  }
  .imported-content .timeline-card {
    padding: 20px;
  }
  .imported-content .timeline-card h3 {
    font-size: 17px;
  }

  /* Diagnosis items */
  .imported-content .diagnosis-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .imported-content .diagnosis-num {
    font-size: 24px;
  }

  /* Quote / Solution */
  .imported-content .quote-card {
    padding: 24px;
  }
  .imported-content .solution__lead .playfair {
    font-size: 22px;
  }
  .imported-content .drop-cap {
    font-size: 52px;
  }

  /* CTA */
  .imported-content .cta-box {
    padding: 40px 24px;
  }
  .imported-content .cta-box__title {
    font-size: 26px;
  }
  .imported-content .cta-btn {
    font-size: 15px;
    padding: 14px 28px;
  }

  /* Result story */
  .imported-content .result-story {
    padding: 32px 24px;
  }
}
