/* ========== 5. HERO SECTION ========== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: auto;
  margin-top: 80px;
}

.hero-badge {
  border: 1px solid var(--burgundy);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  color: #314A51;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
  display: inline-block;
  width: 50vw;
}

.hero-title-large {
  font-family: var(--higuen);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.9;
  color: #314A51;
  margin-bottom: 5rem;
  margin-top: 5rem;
}

.hero-title-large span {
  display: block;
  font-style: italic;
  color: #6E3B49;
}

.hero-subtitle {
  color: #314A51;
  font-weight: 300;
  letter-spacing: 0.1em;
  max-width: 700px;
  line-height: 1.8;
  font-size: 1.05rem;
}
h3 {
    font-family: var(--playfair);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    font-style: italic;
}
/* ========================================
   INPAGE NAVIGATION
======================================== */
.inpage-nav {
    position: fixed;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    z-index: 100;
    display: none;
  }
  
  .inpage-nav.is-visible {
    display: block;
  }
  
  .inpage-nav-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(49, 74, 81, 0.1);
  }
  
  .inpage-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #314A51;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
  }
  
  .inpage-nav-link::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #314A51;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .inpage-nav-link.active::before {
    opacity: 1;
    background: #6E3B49;
  }
  
  .inp-num {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
  }
  
  @media (max-width: 1200px) {
    .inpage-nav {
      display: none !important;
    }
  }
  .marktanalyse {
    background-color: #f7f4f1;
    border-top: 4px solid var(--darkgreen);
    position: relative;
    overflow: hidden;
  }
  .strategie {
    background-color: var(--white);
  }
  .produkte {
    background-color: var(--mint);
    position: relative;
    overflow: hidden;
  }
  .section-hero {
    position: relative; height: 100vh; min-height: 560px;
    display: flex; align-items: flex-end; justify-content: center;
    overflow: hidden; background: var(--darkgreen);
  }
  .hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
  }
  .section-hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom,rgba(49,74,81,.10) 0%,rgba(49,74,81,.05) 40%,rgba(49,74,81,.65) 100%);
  }
  /* ========================================
     OPTIMIZATION ACCORDION
  ======================================== */
  .optim-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .oa-item {
    border: 1px solid rgba(49, 74, 81, 0.15);
    border-radius: 2px;
    overflow: hidden;
    background: white;
  }
  
  .oa-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 1rem;
  }
  
  .oa-trigger:hover {
    background: rgba(49, 74, 81, 0.02);
  }
  
  .oa-item.active .oa-trigger {
    background: rgba(49, 74, 81, 0.05);
  }
  
  .oa-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6E3B49;
    min-width: 3rem;
  }
  
  .oa-title {
    flex: 1;
    font-weight: 600;
    color: #2D2D2D;
  }
  
  .oa-arrow {
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #314A51;
  }
  
  .oa-item.active .oa-arrow {
    transform: rotate(180deg);
  }
  
  .oa-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .oa-item.active .oa-body {
    max-height: 500px;
    padding: 0 2rem 2rem;
  }
  
  .oa-states {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .oa-state {
    padding: 1.5rem;
    border-radius: 2px;
    background: white;
  }
  
  .oa-ist {
    border-left: 3px solid #E74C3C;
  }
  
  .oa-soll {
    border-left: 3px solid #27AE60;
  }
  
  .oa-state-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.7;
  }
  
  .oa-state p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2D2D2D;
  }
  
  .oa-divider {
    font-size: 1.5rem;
    color: #314A51;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .oa-states {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .oa-divider {
      display: none;
    }
  
    .oa-trigger {
      padding: 1.25rem 1.5rem;
      gap: 1rem;
    }
  
    .oa-num {
      font-size: 1.25rem;
    }
  
    .oa-title {
      font-size: 0.95rem;
    }
  }
  
  /* ========================================
     SWOT CARDS
  ======================================== */
  .swot-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .swot-card {
    padding: 2rem;
    background: white;
    border-radius: 2px;
    border-left: 4px solid #314A51;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .swot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .swot-card:nth-child(1) {
    border-left-color: #27AE60;
  }
  
  .swot-card:nth-child(2) {
    border-left-color: #E74C3C;
  }
  
  .swot-card:nth-child(3) {
    border-left-color: #3498DB;
  }
  
  .swot-card:nth-child(4) {
    border-left-color: #F39C12;
  }
  
  .swot-card-letter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.08;
    pointer-events: none;
  }
  
  .swot-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2D2D2D;
  }
  
  .swot-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .swot-card li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    padding-left: 0;
    margin-bottom: 0.5rem;
  }
  
  /* ========================================
     KONKURRENZ ANALYSE
  ======================================== */
  .konkurrenz-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
  }
  
  .konkurrenz-side {
    padding: 2rem;
    background: white;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  
  .konkurrenz-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2D2D2D;
  }
  
  .konkurrenz-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .konkurrenz-side li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 2;
    color: #555;
  }
  
  .konkurrenz-side i {
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
  }
  
  .fa-check {
    color: #27AE60;
  }
  
  .fa-xmark {
    color: #E74C3C;
  }
  
  .konkurrenz-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #6E3B49;
    height: 100%;
  }
  
  .positioning-insight-new {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(110, 59, 73, 0.08);
    border-left: 3px solid #6E3B49;
    border-radius: 2px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
  }
  
  .positioning-insight-new em {
    font-style: italic;
    color: #6E3B49;
  }
  
  @media (max-width: 768px) {
    .konkurrenz-split {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .konkurrenz-divider {
      display: none;
    }
  }
  
  /* ========================================
     DATA GRID / ZIELGRUPPEN
  ======================================== */
  .data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .data-item {
    padding: 2rem;
    background: white;
    border-radius: 2px;
    text-align: center;
  }
  
  .data-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(49, 74, 81, 0.1);
    margin-bottom: 1rem;
  }
  
  .data-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2D2D2D;
  }
  
  .data-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }
  
  /* ========================================
     PERSONAS
  ======================================== */
  .personas-section {
    margin-top: 3rem;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.persona-card {
    transition: all 0.3s ease;    
    display: flex;
    flex-direction: column;
    height: auto;
}

.persona-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.persona-avatar {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.persona-avatar img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.persona-card h3 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.persona-content {
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: white;

}
.persona-role {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
}

.persona-stat {
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--bg-dark);
    padding-left: 1rem;
    color:#000;
}

.persona-stat span {
    display: block;
    opacity: 0.6;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.persona-stat p {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}
  
  /* ========================================
     STRATEGY TABS
  ======================================== */
  .strat-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .strat-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6E3B49;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  
  .strat-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2D2D2D;
  }
  
  .strat-lead {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .strat-tabs {
    position: relative;
  }
  
  .strat-rule {
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #E0E0E0;
    z-index: 0;
  }
  
  .strat-rule-fill {
    height: 100%;
    background: #6E3B49;
    width: 25%;
    transition: width 0.4s ease;
  }
  
  .strat-nav {
    display: flex;
    gap: 0;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
  }
  
  .strat-btn {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .strat-btn:hover {
    background: rgba(49, 74, 81, 0.05);
  }
  
  .strat-btn.active {
    background: rgba(110, 59, 73, 0.08);
  }
  
  .btn-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6E3B49;
    margin-bottom: 0.5rem;
  }
  
  .btn-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 0.25rem;
  }
  
  .btn-sub {
    display: block;
    font-size: 0.8rem;
    color: #999;
  }
  
  .strat-select-wrap {
    display: none;
    margin-bottom: 2rem;
  }
  
  .strat-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .strat-panels {
    position: relative;
    margin-top: 2rem;
  }
  
  .strat-panel {
    display: none;
    animation: fadeIn 0.4s ease;
  }
  
  .strat-panel.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .p-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #6E3B49;
    margin-bottom: 1rem;
    letter-spacing: 1px;
  }
  
  .p-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2D2D2D;
  }
  
  .p-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .p-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .p-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(49, 74, 81, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #314A51;
  }
  
  .p-strip {
    padding: 1.5rem;
    background: rgba(49, 74, 81, 0.05);
    border-left: 3px solid #6E3B49;
    border-radius: 2px;
    margin-bottom: 2rem;
  }
  
  .p-strip-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6E3B49;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  
  .p-strip-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
  }
  
  .p-status {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .ps-cell {
    padding: 1.5rem;
    background: white;
    border: 1px solid rgba(49, 74, 81, 0.1);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .ps-l {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6E3B49;
    text-transform: uppercase;
  }
  
  .ps-v {
    font-size: 0.95rem;
    color: #2D2D2D;
  }
  
  .p-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .p-stat {
    text-align: center;
  }
  
  .stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #6E3B49;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 0.25rem;
  }
  
  .stat-sub {
    display: block;
    font-size: 0.85rem;
    color: #999;
  }
  
  /* ========================================
     ANALYTICS GRID
  ======================================== */
  .analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .analytics-card {
    background: white;
    padding: 2rem;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .analytics-card h3 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .seo-circle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .seo-circle {
    width: 180px;
    height: 180px;
  }
  
  .seo-progress-circle {
    animation: fillSEOScore 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-play-state: paused;
  }
  
  @keyframes fillSEOScore {
    from {
      stroke-dashoffset: 565.48;
    }
    to {
      stroke-dashoffset: 141.37;
    }
  }
  
  .seo-text {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-left: 3px solid #6E3B49;
    margin-top: 2rem;
    border-radius: 2px;
    font-size: 0.95rem;
    line-height: 1.8;
  }
  
  .ads-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .ads-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .ads-value {
    font-weight: 600;
  }
  
  .progress-bar {
    background: #f0f0f0;
    height: 12px;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }
  
  .ads-bar {
    height: 100%;
    width: 0%;
    border-radius: 8px;
  }
  
  .google-bar {
    background: #6E3B49;
    animation: fillGoogleBar 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
    animation-play-state: paused;
  }
  
  .linkedin-bar {
    background: #6E3B49;
    animation: fillLinkedinBar 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
    animation-play-state: paused;
  }
  
  .meta-bar {
    background: #6E3B49;
    animation: fillMetaBar 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
    animation-play-state: paused;
  }
  
  @keyframes fillGoogleBar {
    from {
      width: 0%;
    }
    to {
      width: 75%;
    }
  }
  
  @keyframes fillLinkedinBar {
    from {
      width: 0%;
    }
    to {
      width: 100%;
    }
  }
  
  @keyframes fillMetaBar {
    from {
      width: 0%;
    }
    to {
      width: 30%;
    }
  }
  
  .ads-meta {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
  }
  
  /* ========================================
     KPI BARS
  ======================================== */
  .p-kpis {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .kpi-row {
    display: grid;
    grid-template-columns: 150px 1fr 180px;
    gap: 1.5rem;
    align-items: center;
  }
  
  .kpi-platform {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .kpi-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
  }
  
  .kpi-dot.g {
    background: #4285F4;
  }
  
  .kpi-dot.l {
    background: #0A66C2;
  }
  
  .kpi-dot.m {
    background: #1877F2;
  }
  
  .kpi-name {
    font-weight: 600;
    color: #2D2D2D;
  }
  
  .kpi-track {
    background: #f0f0f0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .kpi-fill {
    height: 100%;
    background: #6E3B49;
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  
  .kpi-right {
    display: flex;
    flex-direction: column;
    text-align: right;
  }
  
  .kpi-val {
    font-weight: 700;
    color: #2D2D2D;
    font-size: 0.95rem;
  }
  
  .kpi-sub-txt {
    font-size: 0.8rem;
    color: #999;
  }
  
  /* ========================================
     BUDGET
  ======================================== */
  .p-budget {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(49, 74, 81, 0.05);
    border-radius: 2px;
  }
  
  .budget-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .budget-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #6E3B49;
  }
  
  .budget-lbl {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .budget-bar {
    display: flex;
    height: 12px;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  
  .bb-g {
    flex: 60%;
    background: #4285F4;
  }
  
  .bb-l {
    flex: 25%;
    background: #0A66C2;
  }
  
  .bb-m {
    flex: 15%;
    background: #1877F2;
  }
  
  .budget-labels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  .bl {
    font-weight: 600;
  }
  
  /* ========================================
     INSTAGRAM CAROUSEL
  ======================================== */
  .insta-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .ic-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .ic-arrow:hover {
    background: #f5f5f5;
    border-color: #999;
  }
  
  .insta-carousel {
    flex: 1;
    overflow: hidden;
  }
  
  .ic-rail {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  
  .insta-post-card {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .ipc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .ipc-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  
  .ipc-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .ipc-meta strong {
    font-size: 0.9rem;
  }
  
  .ipc-meta span {
    font-size: 0.75rem;
    color: #999;
  }
  
  .ipc-dots {
    cursor: pointer;
    font-size: 1.2rem;
    color: #ccc;
  }
  
  .ipc-media-wrap {
    position: relative;
    width: 100%;
    background: #f0f0f0;
  }
  
  .ipc-media {
    width: 100%;
    display: block;
  }
  
  .ipc-reel-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .ipc-actions {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .ipc-actions-left {
    display: flex;
    gap: 1rem;
  }
  
  .ipc-actions i {
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
  }
  
  .ipc-actions i:hover {
    color: #E1306C;
  }
  
  .ipc-likes {
    padding: 0 1rem;
    font-size: 0.9rem;
    padding-top: 0.5rem;
  }
  
  .ipc-caption {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .ipc-hashtags {
    color: #0095F6;
  }
  
  .ipc-timestamp {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
  }
  
  /* ========================================
     LINKEDIN MACBOOK
  ======================================== */
  .li-macbook-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
  }
  
  .li-macbook-wrap {
    position: relative;
  }
  
  .li-macbook {
    background: linear-gradient(to bottom, #888, #aaa);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .li-macbook-lid {
    background: #f5f5f5;
    padding: 0;
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
  }
  
  .li-macbook-screen {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-bottom: none;
  }
  
  .li-browser-chrome {
    background: #f5f5f5;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
  }
  
  .li-browser-dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .li-browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
  }
  
  .li-browser-url {
    flex: 1;
    color: #666;
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .li-screen-inner {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
  }
  
  .li-screen-post {
    background: white;
  }
  
  .li-sp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
  }
  
  .li-sp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  
  .li-sp-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .li-sp-meta strong {
    font-size: 0.9rem;
  }
  
  .li-sp-meta span {
    font-size: 0.75rem;
    color: #666;
  }
  
  .li-sp-follow {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #0A66C2;
    color: #0A66C2;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
  }
  
  .li-sp-body {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .li-sp-tags {
    color: #0A66C2;
    font-size: 0.9rem;
  }
  
  .li-img-slider-wrap {
    position: relative;
    margin: 1rem 0;
  }
  
  .li-img-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 0.5rem;
  }
  
  .li-slide {
    flex-shrink: 0;
    width: 100%;
    scroll-snap-align: start;
  }
  
  .li-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }
  
  .li-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
  }
  
  .li-slide-btn:hover {
    background: rgba(0, 0, 0, 0.7);
  }
  
  .li-slide-prev {
    left: 0.5rem;
  }
  
  .li-slide-next {
    right: 0.5rem;
  }
  
  .li-slide-counter {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .li-sp-reactions {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    padding: 1rem 0;
    color: #666;
  }
  
  .li-sp-emojis {
    font-size: 1.2rem;
  }
  
  .li-sp-divider {
    height: 1px;
    background: #eee;
    margin: 1rem 0;
  }
  
  .li-sp-actions {
    display: flex;
    justify-content: space-around;
  }
  
  .li-sp-btn {
    flex: 1;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  
  .li-sp-btn:hover {
    color: #0A66C2;
  }
  
  .li-macbook-notch {
    width: 200px;
    height: 24px;
    background: #222;
    margin: 0 auto;
    border-radius: 0 0 16px 16px;
  }
  
  .li-macbook-base {
    background: linear-gradient(to bottom, #888, #777);
    padding: 0 2rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .li-macbook-hinge {
    height: 4px;
    background: linear-gradient(to bottom, #666, #555);
    border-radius: 2px;
  }
  
  .li-macbook-keyboard {
    height: 20px;
    background: linear-gradient(to bottom, #555, #444);
    border-radius: 4px 4px 0 0;
  }
  
  .li-macbook-trackpad {
    height: 12px;
    background: linear-gradient(to bottom, #333, #222);
    border-radius: 2px;
    margin-bottom: 0.5rem;
  }
  
  .li-macbook-shadow {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    filter: blur(8px);
  }
  
  .li-macbook-info {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  .li-mi-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
  }
  
  .li-mi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }
  
  .li-mi-profile strong {
    display: block;
    font-size: 1rem;
  }
  
  .li-mi-profile span {
    display: block;
    font-size: 0.85rem;
    color: #666;
  }
  
  .li-mi-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .li-mi-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .li-mi-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A66C2;
  }
  
  .li-mi-stat span:last-child {
    font-size: 0.8rem;
    color: #666;
  }
  
  .li-mi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .li-mi-tags span {
    font-size: 0.8rem;
    color: #0A66C2;
  }
  
  .li-mi-note {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .li-mi-note i {
    flex-shrink: 0;
    color: #0A66C2;
    margin-top: 0.2rem;
  }
  
  @media (max-width: 1024px) {
    .li-macbook-layout {
      grid-template-columns: 1fr;
    }
  
    .li-macbook {
      max-width: 600px;
    }
  }
  
  @media (max-width: 768px) {
    .strat-nav {
      display: none;
    }
  
    .strat-select-wrap {
      display: block;
    }
  
    .li-macbook-layout {
      grid-template-columns: 1fr;
    }
  
    .ic-arrow {
      display: none;
    }
  
    .insta-post-card {
      max-width: 100%;
    }
  }
  /* ========================================
   SEA - INSTAGRAM STORY SHOWCASE
======================================== */

.sea-story-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

/* TEXT COLUMN - Left */
.sea-text-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sea-text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sea-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: #999;
  display: block;
}

.sea-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  color: #2D2D2D;
  margin: 0;
}

.sea-title-highlight {
  color: #6E3B49;
}

.sea-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
  max-width: 500px;
}

.sea-cta-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.sea-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #2D2D2D;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.sea-cta-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sea-cta-link:hover i {
  background: #6E3B49;
  border-color: #6E3B49;
  color: white;
}

.sea-meta-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.sea-meta-item {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.sea-meta-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 0.5rem;
}

.sea-meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2D2D2D;
  margin: 0;
}

/* PHONE COLUMN - Right */
.sea-phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sea-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
}

/* Phone Device */
.phone-device {
  position: relative;
  background: #0c0c0c;
  border-radius: 3.5rem;
  padding: 12px;
  box-shadow: 
    0 50px 100px -20px rgba(0, 0, 0, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  border: 1px solid #222;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 28px;
  background: #0c0c0c;
  border-radius: 0 0 24px 24px;
  z-index: 50;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: black;
  border-radius: 2.8rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Story Background */
.story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

/* Story Content Overlay */
.story-content-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
  padding-top: 32px;
  color: white;
}

/* Progress Bar */
.story-progress-wrapper {
  width: 100%;
  margin-bottom: 16px;
}

.story-progress-bars {
  display: flex;
  gap: 4px;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.story-bar {
  flex: 1;
  height: 100%;
  background: transparent;
  border-radius: 999px;
}

.story-bar.active {
  background: white;
  box-shadow: 0 0 10px white;
  animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* Story Header */
.story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.story-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  object-fit: cover;
}

.story-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.story-user-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-user-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.story-actions {
  display: flex;
  gap: 12px;
  font-size: 1.2rem;
  cursor: pointer;
}

.story-actions i {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: opacity 0.2s;
}

.story-actions i:hover {
  opacity: 0.7;
}

/* Story Center */
.story-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.story-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1;
  margin: 0;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}

.story-subtitle {
  opacity: 0.8;
}

/* Play Button */
.story-play-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}

.play-btn-wrapper {
  position: relative;
}

.play-btn-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.play-btn {
  position: relative;
  width: 56px;
  height: 56px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  color: black;
  font-size: 1.2rem;
  z-index: 10;
}

.play-btn:hover {
  transform: scale(1.1);
}

.play-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Story Bottom */
.story-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}

.story-message-input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 16px;
  color: white;
  font-size: 0.8rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  outline: none;
}

.story-message-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

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

.story-action-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.2s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 4px;
}

.story-action-btn:active {
  transform: scale(1.4);
}

.story-action-btn.liked {
  color: #E1306C;
  animation: heartbeatAnim 0.6s ease-out;
}

@keyframes heartbeatAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* Screen Glare */
.screen-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    transparent,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.12)
  );
  pointer-events: none;
  z-index: 40;
  border-radius: 2.8rem;
}

/* Phone Bezel */
.phone-bezel {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 4px;
  background: #222;
  border-radius: 2px;
}

/* Phone Shadow */
.phone-shadow-effect {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2), transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 1024px) {
  .sea-story-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .sea-story-layout {
    gap: 2rem;
  }

  .sea-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
  }

  .sea-meta-boxes {
    grid-template-columns: 1fr;
  }

  .phone-device {
    max-width: 320px;
  }

  .story-title {
    font-size: 2.5rem;
  }
}/* ========================================
   INSTAGRAM CAROUSEL - INTERACTIVE
======================================== */

.insta-carousel-wrap {
  position: relative;
  background: #f8f9fa;
  aspect-ratio: 1.1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 3rem;
}

.insta-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ic-rail {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.ic-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  position: relative;
}

.ic-slide img,
.ic-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Double-tap Heart Animation */
.ic-heart-animation {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 30;
  animation: heartPulse 0.8s ease-out forwards;
}

.ic-heart-animation i {
  font-size: 100px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes heartPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Navigation Arrows */
.ic-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.ic-arrow:hover:not(:disabled) {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.ic-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.ic-prev {
  left: 12px;
}

.ic-next {
  right: 12px;
}

@media (min-width: 768px) {
  .ic-arrow {
    display: flex;
  }
}

/* Badge */
.insta-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 10;
}

/* ========================================
   INSTAGRAM POST CARD (Full)
======================================== */

.insta-post-wrapper {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.insta-post-card-full {
  max-width: 100%;
}

/* Header */
.ipc-header-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.ipc-profile-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ipc-avatar-gradient {
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 10%, #d52e7f 45%, #9b36b7 60%, #515bd4 90%);
}

.ipc-avatar-border {
  padding: 2px;
  background: white;
  border-radius: 50%;
}

.ipc-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.ipc-username-info {
  display: flex;
  flex-direction: column;
}

.ipc-username {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.ipc-username:hover {
  opacity: 0.7;
}

.ipc-verified {
  width: 14px;
  height: 14px;
  color: #0a66c2;
}

.ipc-location {
  font-size: 12px;
  color: #00000099;
}

.ipc-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #00000099;
  padding: 4px 8px;
  transition: color 0.2s;
}

.ipc-menu-btn:hover {
  color: #000;
}

/* Actions Bar */
.insta-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
}

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

.insta-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #000;
  padding: 4px;
  transition: all 0.2s;
  opacity: 0.7;
}

.insta-action-btn:hover {
  opacity: 1;
}

.insta-action-btn.liked {
  color: #e4405f;
}

.insta-action-btn.liked i {
  font-weight: bold;
}

.insta-action-btn.saved {
  opacity: 1;
}

/* Pagination Dots */
.insta-dots-container {
  display: flex;
  gap: 4px;
  align-items: center;
}

.insta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.2s;
}

.insta-dot.active {
  background: #0a66c2;
  width: 8px;
}

/* Likes and Caption */
.insta-likes-section {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}

.insta-caption-section {
  padding: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.insta-caption-text {
  margin: 0;
  color: #000;
}

.insta-caption-username {
  font-weight: 600;
  margin-right: 4px;
}

.insta-caption-hashtags {
  color: #0a66c2;
}

.insta-timestamp {
  margin-top: 8px;
  font-size: 11px;
  color: #00000066;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Comment Input */
.insta-comment-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #f0f0f0;
}

.insta-comment-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.insta-comment-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: inherit;
  color: #000;
}

.insta-comment-input::placeholder {
  color: #00000099;
}

.insta-comment-btn {
  background: none;
  border: none;
  color: #0a66c2;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.5;
  padding: 0 4px;
}

.insta-comment-btn.active {
  opacity: 1;
}

/* Device Info */
.ic-device-info {
  text-align: center;
  margin-top: 24px;
  font-size: 10px;
  color: #00000066;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
/* ========================================
   LINKEDIN IMAGE SLIDER
======================================== */

.li-img-slider-wrap {
  position: relative;
  background: #f8f9fa;
  overflow: hidden;
  aspect-ratio: 1;
}

.li-img-slider {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.li-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.li-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Buttons */
.li-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #00000099;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.li-slide-btn:hover:not(:disabled) {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.li-slide-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.li-slide-prev {
  left: 12px;
}

.li-slide-next {
  right: 12px;
}

/* Dots */
.li-slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  pointer-events: auto;
}

.li-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.li-slide-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.li-slide-dot.active {
  background: #0a66c2;
  width: 8px;
  height: 8px;
}

/* Counter */
.li-slide-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 10;
}
/* ========================================
   INSTAGRAM CAROUSEL - INTERACTIVE
======================================== */

.insta-carousel-wrap {
  position: relative;
  background: #f8f9fa;
  aspect-ratio: 1.1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 3rem;
}

.insta-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ic-rail {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.ic-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  position: relative;
}

.ic-slide img,
.ic-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Double-tap Heart Animation */
.ic-heart-animation {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 30;
  animation: heartPulse 0.8s ease-out forwards;
}

.ic-heart-animation i {
  font-size: 100px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes heartPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Navigation Arrows */
.ic-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.ic-arrow:hover:not(:disabled) {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.ic-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.ic-prev {
  left: 12px;
}

.ic-next {
  right: 12px;
}

@media (min-width: 768px) {
  .ic-arrow {
    display: flex;
  }
}

/* Badge */
.insta-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 10;
}

/* ========================================
   INSTAGRAM POST CARD (Full)
======================================== */

.insta-post-wrapper {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.insta-post-card-full {
  max-width: 100%;
}

/* Header */
.ipc-header-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.ipc-profile-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ipc-avatar-gradient {
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 10%, #d52e7f 45%, #9b36b7 60%, #515bd4 90%);
}

.ipc-avatar-border {
  padding: 2px;
  background: white;
  border-radius: 50%;
}

.ipc-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.ipc-username-info {
  display: flex;
  flex-direction: column;
}

.ipc-username {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.ipc-username:hover {
  opacity: 0.7;
}

.ipc-verified {
  width: 14px;
  height: 14px;
  color: #0a66c2;
}

.ipc-location {
  font-size: 12px;
  color: #00000099;
}

.ipc-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #00000099;
  padding: 4px 8px;
  transition: color 0.2s;
}

.ipc-menu-btn:hover {
  color: #000;
}

/* Actions Bar */
.insta-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
}

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

.insta-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #000;
  padding: 4px;
  transition: all 0.2s;
  opacity: 0.7;
}

.insta-action-btn:hover {
  opacity: 1;
}

.insta-action-btn.liked {
  color: #e4405f;
}

.insta-action-btn.liked i {
  font-weight: bold;
}

.insta-action-btn.saved {
  opacity: 1;
}

/* Pagination Dots */
.insta-dots-container {
  display: flex;
  gap: 4px;
  align-items: center;
}

.insta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.2s;
}

.insta-dot.active {
  background: #0a66c2;
  width: 8px;
}

/* Likes and Caption */
.insta-likes-section {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}

.insta-caption-section {
  padding: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.insta-caption-text {
  margin: 0;
  color: #000;
}

.insta-caption-username {
  font-weight: 600;
  margin-right: 4px;
}

.insta-caption-hashtags {
  color: #0a66c2;
}

.insta-timestamp {
  margin-top: 8px;
  font-size: 11px;
  color: #00000066;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Comment Input */
.insta-comment-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #f0f0f0;
}

.insta-comment-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.insta-comment-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: inherit;
  color: #000;
}

.insta-comment-input::placeholder {
  color: #00000099;
}

.insta-comment-btn {
  background: none;
  border: none;
  color: #0a66c2;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.5;
  padding: 0 4px;
}

.insta-comment-btn.active {
  opacity: 1;
}

/* Device Info */
.ic-device-info {
  text-align: center;
  margin-top: 24px;
  font-size: 10px;
  color: #00000066;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
/* ========================================
   LINKEDIN POST COMPONENT
======================================== */

.li-post-container {
  max-width: 552px;
  margin: 0 auto;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #000000e6;
}

/* Header */
.li-post-header {
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.li-post-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.li-post-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.li-post-following-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #057642;
  color: white;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.li-post-meta {
  flex: 1;
  min-width: 0;
}

.li-post-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.li-post-name {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.li-post-name:hover {
  color: #0a66c2;
  text-decoration: underline;
}

.li-post-badge {
  font-size: 13px;
  color: #00000099;
}

.li-post-role {
  font-size: 12px;
  color: #00000099;
  margin: 2px 0 4px;
  line-height: 1.4;
}

.li-post-time {
  font-size: 12px;
  color: #00000099;
  display: flex;
  align-items: center;
  gap: 4px;
}

.li-separator {
  color: #00000099;
}

.li-post-menu {
  padding: 4px 8px;
  background: transparent;
  border: none;
  color: #00000099;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s;
  border-radius: 50%;
}

.li-post-menu:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Post Content */
.li-post-content {
  padding: 0 12px 8px;
  font-size: 14px;
  line-height: 1.5;
}

.li-post-text {
  margin: 0;
  color: #000000e6;
}

.li-hashtag {
  color: #0a66c2;
  font-weight: 600;
}

.li-show-more-btn {
  background: none;
  border: none;
  color: #00000099;
  font-weight: 600;
  cursor: pointer;
  margin-left: 2px;
  transition: color 0.2s;
}

.li-show-more-btn:hover {
  color: #0a66c2;
  text-decoration: underline;
}

.li-post-text-full {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #000000e6;
}

.li-post-text-full p {
  margin: 8px 0;
}

/* Carousel */
.li-carousel-wrapper {
  position: relative;
  background: #f8f9fa;
  aspect-ratio: 1;
  overflow: hidden;
}

.li-carousel-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 10;
}

.li-carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.li-carousel-rail {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.li-carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.li-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Buttons */
.li-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #00000099;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.li-carousel-btn:hover:not(:disabled) {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.li-carousel-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.li-carousel-prev {
  left: 12px;
}

.li-carousel-next {
  right: 12px;
}

/* Dot Indicators */
.li-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  pointer-events: none;
}

.li-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.li-carousel-dot.active {
  background: #0a66c2;
  width: 8px;
  height: 8px;
}

/* Engagement Stats */
.li-engagement-stats {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.li-stats-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.li-reaction-icon {
  width: 20px;
  height: 20px;
  background: #0a66c2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  margin-right: 4px;
}

.li-stat-text {
  color: #00000099;
  cursor: pointer;
  transition: color 0.2s;
}

.li-stat-text:hover {
  color: #0a66c2;
  text-decoration: underline;
}

/* Action Buttons */
.li-action-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.li-action-btn {
  padding: 8px 12px;
  background: transparent;
  border: none;
  color: #00000099;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
  border-radius: 4px;
}

.li-action-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.li-action-btn.liked {
  color: #0a66c2;
}

.li-action-btn i {
  font-size: 16px;
}

.li-hidden-mobile {
  display: none;
}

/* Info Badge */
.li-info-badge {
  max-width: 552px;
  margin: 16px auto 0;
  text-align: center;
}

.li-info-badge p {
  font-size: 12px;
  color: #00000066;
  margin: 0;
  line-height: 1.4;
}

/* Responsive */
@media (min-width: 640px) {
  .li-hidden-mobile {
    display: flex;
  }

  .li-action-buttons {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .li-action-buttons {
    grid-template-columns: repeat(3, 1fr);
  }

  .li-carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .li-carousel-prev {
    left: 8px;
  }

  .li-carousel-next {
    right: 8px;
  }
}/* ========================================
   INSTAGRAM CAROUSEL - INTERACTIVE
======================================== */

.insta-carousel-wrap {
  position: relative;
  background: #f8f9fa;
  aspect-ratio: 1.1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 3rem;
}

.insta-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ic-rail {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.ic-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  position: relative;
}

.ic-slide img,
.ic-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Double-tap Heart Animation */
.ic-heart-animation {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 30;
  animation: heartPulse 0.8s ease-out forwards;
}

.ic-heart-animation i {
  font-size: 100px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes heartPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Navigation Arrows */
.ic-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.ic-arrow:hover:not(:disabled) {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.ic-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.ic-prev {
  left: 12px;
}

.ic-next {
  right: 12px;
}

@media (min-width: 768px) {
  .ic-arrow {
    display: flex;
  }
}

/* Badge */
.insta-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 10;
}

/* ========================================
   INSTAGRAM POST CARD (Full)
======================================== */

.insta-post-wrapper {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.insta-post-card-full {
  max-width: 100%;
}

/* Header */
.ipc-header-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.ipc-profile-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ipc-avatar-gradient {
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 10%, #d52e7f 45%, #9b36b7 60%, #515bd4 90%);
}

.ipc-avatar-border {
  padding: 2px;
  background: white;
  border-radius: 50%;
}

.ipc-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.ipc-username-info {
  display: flex;
  flex-direction: column;
}

.ipc-username {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.ipc-username:hover {
  opacity: 0.7;
}

.ipc-verified {
  width: 14px;
  height: 14px;
  color: #0a66c2;
}

.ipc-location {
  font-size: 12px;
  color: #00000099;
}

.ipc-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #00000099;
  padding: 4px 8px;
  transition: color 0.2s;
}

.ipc-menu-btn:hover {
  color: #000;
}

/* Actions Bar */
.insta-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
}

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

.insta-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #000;
  padding: 4px;
  transition: all 0.2s;
  opacity: 0.7;
}

.insta-action-btn:hover {
  opacity: 1;
}

.insta-action-btn.liked {
  color: #e4405f;
}

.insta-action-btn.liked i {
  font-weight: bold;
}

.insta-action-btn.saved {
  opacity: 1;
}

/* Pagination Dots */
.insta-dots-container {
  display: flex;
  gap: 4px;
  align-items: center;
}

.insta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.2s;
}

.insta-dot.active {
  background: #0a66c2;
  width: 8px;
}

/* Likes and Caption */
.insta-likes-section {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}

.insta-caption-section {
  padding: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.insta-caption-text {
  margin: 0;
  color: #000;
}

.insta-caption-username {
  font-weight: 600;
  margin-right: 4px;
}

.insta-caption-hashtags {
  color: #0a66c2;
}

.insta-timestamp {
  margin-top: 8px;
  font-size: 11px;
  color: #00000066;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Comment Input */
.insta-comment-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #f0f0f0;
}

.insta-comment-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.insta-comment-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: inherit;
  color: #000;
}

.insta-comment-input::placeholder {
  color: #00000099;
}

.insta-comment-btn {
  background: none;
  border: none;
  color: #0a66c2;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.5;
  padding: 0 4px;
}

.insta-comment-btn.active {
  opacity: 1;
}

/* Device Info */
.ic-device-info {
  text-align: center;
  margin-top: 24px;
  font-size: 10px;
  color: #00000066;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
/* ========================================
   INSTAGRAM POST CONTAINER (neu)
======================================== */

.ig-post-container {
  max-width: 552px;
  margin: 0 auto;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #000000e6;
}

.ig-post-header {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ig-post-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.ig-post-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.ig-post-meta {
  flex: 1;
  min-width: 0;
}

.ig-post-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ig-post-name {
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.ig-post-name:hover {
  color: #e4405f;
  text-decoration: underline;
}

.ig-post-role {
  font-size: 12px;
  color: #00000099;
  margin: 2px 0 0;
}

.ig-post-menu {
  padding: 4px 8px;
  background: transparent;
  border: none;
  color: #00000099;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}

.ig-post-menu:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Carousel */
.ig-carousel-wrapper {
  position: relative;
  background: #f8f9fa;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ig-carousel-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  z-index: 10;
}

.ig-carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ig-carousel-rail {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.ig-carousel-slide {
  min-width: 100%;
  height: 100%;
  background: #f8f9fa;
}

.ig-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  color: #00000099;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.ig-carousel-btn:hover:not(:disabled) {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.ig-carousel-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.ig-carousel-prev {
  left: 12px;
}

.ig-carousel-next {
  right: 12px;
}

.ig-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.ig-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.ig-carousel-dot.active {
  background: #e4405f;
  width: 8px;
  height: 8px;
}

/* Actions */
.ig-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
}

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

.ig-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #000;
  padding: 4px;
  opacity: 0.7;
}

.ig-action-btn:hover {
  opacity: 1;
}

.ig-action-btn.liked {
  color: #e4405f;
}

.ig-action-btn.saved {
  opacity: 1;
}

.ig-carousel-dots-inline {
  display: flex;
  gap: 4px;
}

/* Likes & Caption */
.ig-likes-section {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}

.ig-caption-section {
  padding: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.ig-caption {
  margin: 0;
  color: #000;
}

.ig-username {
  font-weight: 600;
  margin-right: 4px;
}

.ig-timestamp {
  margin-top: 8px;
  font-size: 11px;
  color: #00000066;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Comment Box */
.ig-comment-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #f0f0f0;
}

.ig-comment-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.ig-comment-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: inherit;
  color: #000;
}

.ig-comment-input::placeholder {
  color: #00000099;
}

.ig-comment-btn {
  background: none;
  border: none;
  color: #e4405f;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.5;
}

.ig-comment-btn.active {
  opacity: 1;
}

/* ========================================
   STRATEGIE SECTION - RESPONSIVE & FEINSCHLIFF
======================================== */

/* Override alte Strategie Styles */
.strat-header {
  text-align: center;
  margin-bottom: 3rem;
}

.strat-eyebrow {
  display: block;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.strat-headline {
  font-family: var(--higuen);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-style: italic;
}

.strat-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.strat-btn {
  padding: 1.5rem 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.strat-btn:hover {
  background: rgba(49, 74, 81, 0.04);
}

.strat-btn.active {
  background: rgba(110, 59, 73, 0.08);
}

.btn-num {
  display: block;
  font-family: var(--playfair);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.btn-title {
  display: block;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.btn-sub {
  display: block;
  font-size: clamp(0.75rem, 2vw, 0.8rem);
  color: var(--text-tertiary);
}

.strat-select-wrap {
  display: none;
  margin-bottom: 2rem;
}

.strat-select {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(49, 74, 81, 0.15);
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  background: white;
  color: var(--text-primary);
}

.p-title {
  font-family: var(--higuen);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
  font-style: italic;
}

.p-title em {
  color: var(--burgundy);
}

.p-body {
  font-size: clamp(0.95rem, 2vw, 1rem);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.p-eyebrow {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.p-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.p-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(49, 74, 81, 0.08);
  border: 1px solid rgba(49, 74, 81, 0.12);
  border-radius: 20px;
  font-size: clamp(0.8rem, 1.5vw, 0.85rem);
  color: var(--text-primary);
  transition: all 0.2s;
}

.p-tag:hover {
  background: rgba(49, 74, 81, 0.12);
}

.p-strip {
  padding: 1.5rem;
  background: rgba(110, 59, 73, 0.06);
  border-left: 3px solid var(--burgundy);
  border-radius: 4px;
  margin-bottom: 2rem;
}

.p-strip-label {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 700;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.p-strip-content {
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  line-height: 1.6;
  color: var(--text-primary);
}

.p-status {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ps-cell {
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(49, 74, 81, 0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s;
}

.ps-cell:hover {
  border-color: rgba(110, 59, 73, 0.2);
  box-shadow: 0 2px 8px rgba(110, 59, 73, 0.08);
}

.ps-l {
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  font-weight: 700;
  color: var(--burgundy);
  text-transform: uppercase;
}

.ps-v {
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  color: var(--text-primary);
  font-weight: 500;
}

.p-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.p-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  transition: all 0.2s;
}

.p-stat:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-num {
  font-family: var(--playfair);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-sub {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--text-tertiary);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.analytics-card {
  background: white;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 4px;
  border: 1px solid rgba(49, 74, 81, 0.1);
  transition: all 0.2s;
}

.analytics-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.analytics-card h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--text-primary);
}

.info-box {
  background: rgba(110, 59, 73, 0.04);
  padding: clamp(1.25rem, 3vw, 1.5rem);
  border-left: 3px solid var(--burgundy);
  margin-top: 1.5rem;
  border-radius: 4px;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.ads-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ads-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  transition: all 0.2s;
}

.ads-item:hover {
  background: white;
}

.ads-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 600;
}

.ads-value {
  font-weight: 700;
  color: var(--burgundy);
}

.progress-bar {
  background: rgba(49, 74, 81, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.ads-bar {
  height: 100%;
  width: 0%;
  border-radius: 4px;
}

.google-bar {
  background: var(--burgundy);
  animation: fillGoogleBar 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
  animation-play-state: paused;
}

.linkedin-bar {
  background: var(--burgundy);
  animation: fillLinkedinBar 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
  animation-play-state: paused;
}

.meta-bar {
  background: var(--burgundy);
  animation: fillMetaBar 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
  animation-play-state: paused;
}

.ads-meta {
  font-size: clamp(0.7rem, 1.5vw, 0.75rem);
  color: var(--text-tertiary);
  margin: 0;
}

.p-kpis {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.kpi-row {
  display: grid;
  grid-template-columns: minmax(140px, 150px) 1fr minmax(150px, 180px);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  transition: all 0.2s;
}

.kpi-row:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.kpi-platform {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.kpi-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: clamp(0.9rem, 2vw, 0.95rem);
}

.kpi-fill {
  background: var(--burgundy);
}

.kpi-val {
  font-weight: 700;
  color: var(--text-primary);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.kpi-sub-txt {
  font-size: clamp(0.75rem, 1.5vw, 0.8rem);
  color: var(--text-tertiary);
}

.p-budget {
  margin-top: 2rem;
  padding: clamp(1.25rem, 3vw, 1.5rem);
  background: rgba(110, 59, 73, 0.06);
  border: 1px solid rgba(110, 59, 73, 0.12);
  border-radius: 4px;
}

.budget-num {
  font-family: var(--playfair);
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--burgundy);
}

.budget-lbl {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

.budget-labels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  font-size: clamp(0.8rem, 1.5vw, 0.85rem);
}

.bl {
  font-weight: 600;
  color: var(--text-primary);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .strat-nav {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .kpi-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .kpi-right {
    text-align: left;
  }
}

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

  .strat-select-wrap {
    display: block;
    position: relative;
    margin: 0 0 1.25rem;
    padding: 0.9rem 0.9rem 0.75rem;
    border: 1px solid rgba(181, 161, 158, 0.28);
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    backdrop-filter: blur(4px);
  }

  .strat-select-label {
    display: block;
    margin-bottom: 0.45rem;
    font-family: var(--tenor);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(181, 161, 158, 0.88);
  }

  .strat-select-wrap::after {
    content: '\25BE';
    position: absolute;
    right: 1.15rem;
    bottom: 1.02rem;
    color: rgba(181, 161, 158, 0.85);
    font-size: 0.72rem;
    pointer-events: none;
  }

  .strat-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.88rem 2.2rem 0.88rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(181, 161, 158, 0.28);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: var(--work);
    font-size: 0.93rem;
    font-weight: 600;
  }

  .strat-select:focus {
    outline: none;
    border-color: rgba(181, 161, 158, 0.55);
    box-shadow: 0 0 0 2px rgba(181, 161, 158, 0.14);
  }

  .p-status {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .p-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .kpi-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .budget-labels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .strat-headline {
    margin-bottom: 0.75rem;
  }

  .p-title {
    line-height: 1.1;
  }

  .p-body {
    margin-bottom: 1.5rem;
  }

  .ps-cell {
    padding: 1rem;
  }

  .analytics-card {
    padding: 1.25rem;
  }

  .info-box {
    padding: 1rem;
  }

  .stat-num {
    font-size: 1.75rem;
  }
}

.komthur-section {
  --text-dim: #A0A0A0;
  color: #F5F5F5;
  padding: 80px 24px;
  font-family: 'Work Sans', sans-serif;
}

/* Typography */
.font-tenor { font-family: 'Tenor Sans', sans-serif; }
.italic-mint { font-family: 'Playfair Display', serif; font-style: italic; color: var(--mint); }
.display-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(32px, 5vw, 60px); margin: 0; line-height: 0.9; }

/* Header Layout */
.editorial-header {
  max-width: 1200px;
  margin: 0 auto 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 40px;
}

.subtitle-wrapper { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.mint-divider { width: 32px; height: 1px; background: var(--mint); }
.eyebrow { font-family: 'Tenor Sans'; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5em; color: var(--text-dim); }

/* Button Style */
.cta-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}
.cta-button:hover { background: var(--mint); color: #000; }
.cta-text { font-family: 'Tenor Sans'; font-size: 10px; font-weight: bold; text-transform: uppercase; letter-spacing: 0.1em; }
.icon-arrow { width: 14px; height: 14px; transition: transform 0.3s; }
.cta-button:hover .icon-arrow { transform: translate(2px, -2px); }

/* MacBook Mockup */
.showcase-container { max-width: 1200px; margin: 0 auto; }
.macbook-frame { max-width: 1000px; margin: 0 auto; position: relative; }

.macbook-screen {
  background: #000;
  border-radius: 12px;
  padding: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,1), inset 0 0 0 1px rgba(255,255,255,0.1);
}

.macbook-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 18px;
  background: #000;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10;
}

.canva-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.canva-iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}

.macbook-base { position: relative; width: 108%; margin-left: -4%; margin-top: -2px; }
.base-top { height: 14px; background: #2a2a2a; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
.base-indent { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 15%; height: 8px; background: rgba(0,0,0,0.3); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }

/* Info Footer */
.info-footer {
  max-width: 1200px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 48px;
}

@media (min-width: 768px) { .info-footer { grid-template-columns: 1fr 1fr; } }

.info-title { font-family: 'Playfair Display'; font-style: italic; color: var(--mint); margin: 0 0 16px; font-size: 20px; }
.info-text { font-size: 14px; color: var(--text-dim); line-height: 1.6; max-width: 420px; }
.info-credits { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; text-align: right; }
.credit-label { font-family: 'Tenor Sans'; font-size: 10px; text-transform: uppercase; color: rgba(255,255,255,0.2); letter-spacing: 0.2em; }
.credit-name { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }
/* ========================================
   STRATEGIE SECTION - FARBEN KORREKTUR
   Dunkler Hintergrund mit weißem Text
======================================== */

.strategie {
  background: var(--darkgreen) !important;
  color: white !important;
}

.strategie .strat-headline {
  color: white;
  font-style: italic;
}

.strategie .strat-eyebrow {
  color: #B5A19E;
}

.strategie .btn-num {
  color: #B5A19E;
}

.strategie .btn-title {
  color: white;
}

.strategie .p-title {
  color: white;
}

.strategie .p-title em {
  color: #B5A19E;
}

.strategie .p-body {
  color: #B5A19E;
  opacity: 0.95;
}

.strategie .stat-num {
  color: #B5A19E;
}

.strategie .stat-label {
  color: white;
}

.strategie .analytics-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(181, 161, 158, 0.2);
  color: white;
}

.strategie .analytics-card h3 {
  color: white;
}

.strategie .info-box {
  background: rgba(181, 161, 158, 0.1);
  border-left-color: #B5A19E;
  color: #B5A19E;
}

.strategie .ads-header {
  color: white;
}

.strategie .ads-value {
  color: #B5A19E;
}

/* ========================================
   LINKEDIN POST - LUXURY DESIGN
======================================== */

.li-post-container {
  max-width: 552px;
  margin: 0 auto 3rem;
  background: white;
  border: 1px solid rgba(110, 59, 73, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #000000e6;
  transition: all 0.3s ease;
}

.li-post-container:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(110, 59, 73, 0.25);
}

.li-post-container.var-bold {
  border-left: 4px solid #6E3B49;
}

.li-post-container.var-bold .li-post-header {
  background: rgba(110, 59, 73, 0.04);
}

.li-post-header {
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.li-post-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(110, 59, 73, 0.1);
}

.li-post-name {
  font-size: 13px;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 2px;
}

.li-post-role {
  font-size: 12px;
  color: #6E3B49;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.li-post-time {
  font-size: 12px;
  color: rgba(45, 45, 45, 0.6);
}

.li-post-content {
  padding: 20px;
}

.li-post-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.li-post-text em {
  color: #6E3B49;
  font-weight: 600;
}

/* Carousel */
.li-carousel-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(49, 74, 81, 0.05), rgba(110, 59, 73, 0.05));
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 6px;
}

.li-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.li-carousel-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 10;
}

.li-engagement-stats {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
  margin-bottom: 12px;
}

.li-action-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.li-action-btn {
  padding: 10px;
  background: transparent;
  border: none;
  color: #6E3B49;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.li-action-btn:hover {
  background: rgba(110, 59, 73, 0.08);
  color: #8B5A62;
}

/* ========================================
   INSTAGRAM POST - LUXURY DESIGN
======================================== */

.ig-post-container {
  max-width: 552px;
  margin: 0 auto 3rem;
  background: white;
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #000000e6;
  transition: all 0.3s ease;
}

.ig-post-container:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(110, 59, 73, 0.15);
}

.ig-post-container.var-frame {
  border: 2px solid #6E3B49;
}

.ig-post-container.var-frame .ig-post-header {
  background: rgba(110, 59, 73, 0.04);
}

.ig-post-header {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.ig-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.ig-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d52e7f, #9b36b7, #515bd4);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}

.ig-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ig-username {
  font-size: 13px;
  font-weight: 700;
  color: #2D2D2D;
}

.ig-location {
  font-size: 12px;
  color: #6E3B49;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Image/Carousel */
.ig-carousel-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(49, 74, 81, 0.05), rgba(110, 59, 73, 0.05));
  aspect-ratio: 1;
  overflow: hidden;
}

.ig-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-carousel-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  z-index: 10;
}

/* Actions */
.ig-action-row {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

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

.ig-action-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #2D2D2D;
  padding: 4px;
  transition: all 0.2s ease;
  opacity: 0.7;
}

.ig-action-icon:hover {
  color: #6E3B49;
  transform: scale(1.1);
  opacity: 1;
}

.ig-action-icon.liked {
  color: #E1306C;
  opacity: 1;
}

/* Likes & Caption */
.ig-likes-row {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #2D2D2D;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.ig-caption-row {
  padding: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}

.ig-caption-username {
  font-weight: 700;
  color: #2D2D2D;
  margin-right: 4px;
}

.ig-caption-hashtags {
  color: #6E3B49;
  font-weight: 600;
}

.ig-timestamp {
  font-size: 11px;
  color: rgba(45, 45, 45, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: block;
}

@media (max-width: 768px) {
  .li-post-container,
  .ig-post-container {
    max-width: 100%;
    margin: 0 0 2rem;
  }
}

/* ========================================
   ZUSATZSTYLES (zusammengefuehrt)
   Quelle: komthur-redesign.css
======================================== */

/* ========================================
   KOMTHUR REDESIGN - Editorial & Variativ
   Nutzt ECHTE Variablen aus main.css
   Mobile First • Responsive • Editorial
======================================== */

/* ========================================
   INSIGHT CARDS - Elegante Editorialität
======================================== */

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 2.5rem);
  margin: clamp(2rem, 5vw, 3rem) 0;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.insight-card {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 6px;
  border: 1px solid var(--divider-light);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  position: relative;
  overflow: hidden;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--burgundy);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.insight-card:hover::before {
  transform: scaleY(1);
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(110, 59, 73, 0.2);
}

.insight-number {
  font-family: var(--playfair);
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 900;
  color: rgba(110, 59, 73, 0.08);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.insight-title {
  font-family: var(--work);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}

.insight-text {
  font-family: var(--work);
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  line-height: 1.6;
  color: var(--off-black);
  margin: 0;
  flex-grow: 1;
  opacity: 0.85;
}

.insight-text strong {
  color: var(--black);
  font-weight: 600;
}

.insight-goal {
  display: inline-block;
  font-family: var(--tenor);
  font-size: clamp(0.75rem, 1.5vw, 0.8rem);
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  background: rgba(110, 59, 73, 0.06);
  border-radius: 3px;
  align-self: flex-start;
  margin-top: 0.5rem;
  border-left: 2px solid var(--burgundy);
}

/* ========================================
   SECTION HEADERS - Variativ & Editorial
======================================== */

.section-header {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-header h3 {
  font-family: var(--higuen);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 2vw, 1rem);
  color: var(--black);
  line-height: 1.1;
  font-style: normal;
  letter-spacing: 0.02em;
}

.section-header h3 .highlight-burgundy {
  color: var(--burgundy);
  font-family: var(--playfair);
  font-style: italic;
}

.section-header h3 .highlight-mint {
  color: var(--mint);
  font-family: var(--playfair);
  font-style: italic;
}

.section-intro {
  font-family: var(--work);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: var(--off-black);
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
}

.section-intro-dark {
  color: var(--off-black);
  opacity: 0.85;
}

/* ========================================
   SWOT ANALYSE - 4 unterschiedliche Styles
======================================== */

.swot-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.swot-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--divider-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--easing-decelerate);
  position: relative;
  overflow: hidden;
}

.swot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: currentColor;
  opacity: 1;
}

/* Stärken - Grün */
.swot-card:nth-child(1) {
  border-left: 4px solid #27AE60;
  --swot-color: #27AE60;
}

.swot-card:nth-child(1):hover {
  border-left-color: #27AE60;
  background: rgba(39, 174, 96, 0.02);
}

/* Schwächen - Rot */
.swot-card:nth-child(2) {
  border-left: 4px solid #E74C3C;
  --swot-color: #E74C3C;
}

.swot-card:nth-child(2):hover {
  border-left-color: #E74C3C;
  background: rgba(231, 76, 60, 0.02);
}

/* Chancen - Blau */
.swot-card:nth-child(3) {
  border-left: 4px solid #3498DB;
  --swot-color: #3498DB;
}

.swot-card:nth-child(3):hover {
  border-left-color: #3498DB;
  background: rgba(52, 152, 219, 0.02);
}

/* Bedrohungen - Orange */
.swot-card:nth-child(4) {
  border-left: 4px solid #F39C12;
  --swot-color: #F39C12;
}

.swot-card:nth-child(4):hover {
  border-left-color: #F39C12;
  background: rgba(243, 156, 18, 0.02);
}

.swot-card-letter {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--playfair);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  opacity: 0.06;
  pointer-events: none;
}

.swot-card h4 {
  font-family: var(--work);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  color: var(--black);
}

.swot-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.65rem);
}

.swot-card li {
  font-family: var(--work);
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  line-height: 1.5;
  color: var(--off-black);
  padding-left: 0;
  opacity: 0.85;
}

/* ========================================
   KONKURRENZ ANALYSE - Responsive Split
======================================== */

.konkurrenz-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: start;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}

.konkurrenz-side {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--darkgreen);
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: opacity 0.3s ease;
}

.konkurrenz-side:hover {
  opacity: 0.92;
  box-shadow: none;
}

.konkurrenz-name {
  display: block;
  font-family: var(--playfair);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: white;
}

.konkurrenz-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.konkurrenz-side li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--work);
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  padding: 0.25rem 0;
}

.konkurrenz-side i {
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
}

.konkurrenz-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--higuen);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--burgundy);
  height: 100%;
}

.positioning-insight-new {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(110, 59, 73, 0.08);
  border-left: 3px solid var(--burgundy);
  border-radius: 6px;
  font-family: var(--work);
  font-size: clamp(0.95rem, 1.8vw, 1rem);
  line-height: 1.8;
  color: var(--off-black);
  opacity: 0.9;
}

.positioning-insight-new em {
  color: var(--burgundy);
  font-weight: 600;
  font-style: italic;
}

/* ========================================
   DATA GRID - Editorial Card Variations
======================================== */

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.data-item {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border-radius: 6px;
  text-align: left;
  border: 1px solid var(--divider-light);
  transition: all 0.3s var(--easing-decelerate);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.data-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--mint));
  opacity: 0;
  transition: opacity 0.3s var(--easing-decelerate);
}

.data-item:hover {
  border-color: rgba(110, 59, 73, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.data-item:hover::before {
  opacity: 1;
}

.data-number {
  font-family: var(--playfair);
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  font-weight: 900;
  color: rgba(110, 59, 73, 0.08);
  line-height: 1;
}

.data-item h3 {
  font-family: var(--work);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  margin: 0;
  color: var(--black);
}

.data-item p {
  font-family: var(--work);
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  line-height: 1.6;
  color: var(--off-black);
  margin: 0;
  opacity: 0.85;
}

/* ========================================
   SHOWCASE SECTIONS - Bessere Struktur
======================================== */

.showcase-subsection {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--divider-light);
}

.showcase-subsection:first-of-type {
  border-top: none;
  padding-top: 0;
}

.showcase-sub-header {
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.showcase-eyebrow {
  display: block;
  font-family: var(--tenor);
  font-size: clamp(0.7rem, 1.5vw, 0.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.showcase-sub-title {
  font-family: var(--higuen);
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--black);
  margin: 0;
  letter-spacing: 0.02em;
}

.showcase-sub-title em {
  color: var(--burgundy);
  font-style: italic;
  font-family: var(--playfair);
}

/* ========================================
   WEBSITE SHOWCASE FRAME
======================================== */

.website-showcase-frame {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--divider-light);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--easing-decelerate);
}

.website-showcase-frame:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(110, 59, 73, 0.2);
}

.wsf-bar {
  background: #f8f8f8;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--divider-light);
  gap: 1rem;
}

.wsf-dots {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.wsf-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.wsf-url {
  flex: 1;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--mint);
  opacity: 0.7;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wsf-embed {
  width: 100%;
}

.wsf-caption {
  padding: clamp(1.25rem, 2vw, 1.5rem);
  text-align: center;
  border-top: 1px solid var(--divider-light);
  background: rgba(255, 255, 255, 0.5);
}

.wsf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--tenor);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 600;
  color: var(--burgundy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s var(--easing-decelerate);
}

.wsf-link:hover {
  gap: 0.75rem;
  color: var(--black);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
======================================== */

@media (max-width: 1024px) {
  .personas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .konkurrenz-split {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .konkurrenz-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .personas-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .insight-card {
    padding: clamp(1rem, 2vw, 1.5rem);
    gap: 0.5rem;
  }

  .swot-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .data-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .konkurrenz-split {
    padding: clamp(1rem, 2vw, 1.5rem);
  }

  .konkurrenz-side {
    padding: clamp(1rem, 2vw, 1.25rem);
  }

  .section-header h3 {
    margin-bottom: 0.5rem;
  }

  .showcase-subsection {
    margin-bottom: clamp(2rem, 3vw, 3rem);
    padding-top: clamp(1.5rem, 2vw, 2rem);
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: clamp(1.5rem, 2vw, 2rem);
  }

  .section-header h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
  }

  .insight-card {
    padding: clamp(1rem, 2vw, 1.25rem);
    gap: 0.5rem;
  }

  .insight-number {
    font-size: 1.75rem;
    margin-bottom: 0.125rem;
  }

  .swot-grid-new {
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .swot-card {
    padding: clamp(1rem, 2vw, 1.25rem);
  }

  .data-grid {
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }

  .data-item {
    padding: clamp(1rem, 2vw, 1.25rem);
    text-align: left;
  }

  .konkurrenz-split {
    gap: clamp(0.75rem, 1.5vw, 1rem);
    padding: clamp(1rem, 1.5vw, 1.25rem);
  }

  .konkurrenz-side {
    padding: clamp(1rem, 1.5vw, 1.25rem);
  }

  .showcase-subsection {
    margin-bottom: clamp(1.5rem, 2vw, 2rem);
    padding-top: clamp(1rem, 1.5vw, 1.5rem);
  }

  .wsf-bar {
    flex-direction: column;
    gap: 0.5rem;
  }

  .wsf-url {
    margin: 0;
  }
}

/* ========================================
   PERSONAS - RESPONSIVE ONLY (NO CHANGES)
   Strategie Section - RESPONSIVE ONLY (NO CHANGES)
======================================== */

/* Diese Sections bleiben unverändert!
   Nur responsive Breakpoints in bestehenden Dateien */


/* ========================================
   ZUSATZSTYLES (zusammengefuehrt)
   Quelle: komthur-luxury-posts.css
======================================== */

/* ========================================
   LUXURY POSTS - LinkedIn & Instagram
   Mit Fülle, Variationen & Wow-Effekt
   Editorial • Elegant • Luxuriös
======================================== */

/* ========================================
   LINKEDIN POST - VARIATION 1: Expert Carousel
======================================== */

.li-post-container {
  max-width: 552px;
  margin: 0 auto 4rem;
  background: white;
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #000000e6;
  transition: all 0.3s ease;
}

.li-post-container:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(110, 59, 73, 0.15);
}

/* Header mit Avatar & Meta */
.li-post-header {
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.li-post-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(110, 59, 73, 0.1);
}

.li-post-meta {
  flex: 1;
}

.li-post-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
  font-family: var(--work);
}

.li-post-role {
  font-size: 12px;
  color: var(--mint);
  margin-bottom: 4px;
  font-family: var(--tenor);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.li-post-time {
  font-size: 12px;
  color: rgba(45, 45, 45, 0.6);
  font-family: var(--tenor);
}

/* Post Content */
.li-post-content {
  padding: 20px;
}

.li-post-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--off-black);
  margin-bottom: 16px;
  font-family: var(--work);
}

.li-post-text em {
  color: var(--burgundy);
  font-weight: 600;
  font-style: italic;
}

.li-post-text strong {
  color: var(--black);
  font-weight: 700;
}

/* Carousel Section */
.li-carousel-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(49, 74, 81, 0.05), rgba(110, 59, 73, 0.05));
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 6px;
}

.li-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.li-carousel-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--tenor);
  letter-spacing: 0.05em;
  z-index: 10;
}

.li-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  z-index: 20;
  transition: all 0.2s ease;
}

.li-carousel-nav:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.li-carousel-prev { left: 12px; }
.li-carousel-next { right: 12px; }

/* Stats */
.li-engagement-stats {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
  margin-bottom: 12px;
}

.li-stat-text {
  color: rgba(45, 45, 45, 0.7);
  font-family: var(--tenor);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Action Buttons */
.li-action-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.li-action-btn {
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--mint);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--tenor);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.li-action-btn:hover {
  background: rgba(49, 74, 81, 0.08);
  color: var(--burgundy);
}

/* ========================================
   INSTAGRAM POST - VARIATION 2: Story-Style
======================================== */

.ig-post-wrapper {
  max-width: 552px;
  margin: 0 auto 4rem;
  background: white;
  border: 1px solid rgba(45, 45, 45, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ig-post-wrapper:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(110, 59, 73, 0.15);
}

/* Header */
.ig-post-header {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.ig-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.ig-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d52e7f, #9b36b7, #515bd4);
  padding: 2px;
}

.ig-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}

.ig-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ig-username {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  font-family: var(--work);
}

.ig-location {
  font-size: 12px;
  color: var(--mint);
  font-family: var(--tenor);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.ig-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: rgba(45, 45, 45, 0.6);
  padding: 4px 8px;
}

/* Image/Carousel */
.ig-media-wrapper {
  position: relative;
  background: linear-gradient(135deg, rgba(49, 74, 81, 0.05), rgba(110, 59, 73, 0.05));
  aspect-ratio: 1;
  overflow: hidden;
}

.ig-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-carousel-indicator {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--tenor);
  letter-spacing: 0.05em;
  z-index: 10;
}

/* Actions */
.ig-action-row {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

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

.ig-action-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--black);
  padding: 4px;
  transition: all 0.2s ease;
}

.ig-action-icon:hover {
  color: var(--burgundy);
  transform: scale(1.1);
}

.ig-action-icon.liked {
  color: #E1306C;
}

/* Likes & Caption */
.ig-likes-row {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  font-family: var(--work);
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.ig-caption-row {
  padding: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--off-black);
  font-family: var(--work);
}

.ig-caption-username {
  font-weight: 700;
  color: var(--black);
  margin-right: 4px;
}

.ig-caption-text {
  color: var(--off-black);
}

.ig-caption-hashtags {
  color: var(--burgundy);
  font-weight: 600;
}

.ig-timestamp {
  font-size: 11px;
  color: rgba(45, 45, 45, 0.5);
  font-family: var(--tenor);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  display: block;
}

/* ========================================
   VARIATIONS: Card Styles für 4x Posts
======================================== */

/* Variation A: Minimalist */
.li-post-container.var-minimal {
  border: 1px solid rgba(49, 74, 81, 0.15);
  background: linear-gradient(135deg, white 0%, rgba(49, 74, 81, 0.02) 100%);
}

.li-post-container.var-minimal .li-post-header {
  border-bottom: none;
  padding: 16px;
}

/* Variation B: Bold Accent */
.li-post-container.var-bold {
  border-left: 4px solid var(--burgundy);
}

.li-post-container.var-bold .li-post-header {
  background: rgba(110, 59, 73, 0.04);
}

/* Variation C: Gradient Edge */
.li-post-container.var-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--mint), var(--darkgreen));
  pointer-events: none;
}

/* Variation D: Shadow Play */
.li-post-container.var-shadow {
  box-shadow: 
    0 4px 12px rgba(110, 59, 73, 0.08),
    0 0 24px rgba(110, 59, 73, 0.04);
}

/* ========================================
   INSTAGRAM VARIATIONS
======================================== */

/* Variation A: Color Frame */
.ig-post-wrapper.var-frame {
  border: 2px solid;
  border-color: var(--burgundy);
}

.ig-post-wrapper.var-frame .ig-post-header {
  background: rgba(110, 59, 73, 0.04);
}

/* Variation B: Shadow Story */
.ig-post-wrapper.var-story {
  box-shadow: 
    0 6px 16px rgba(110, 59, 73, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Variation C: Dark Mode */
.ig-post-wrapper.var-dark {
  background: rgba(45, 45, 45, 0.95);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}

.ig-post-wrapper.var-dark .ig-username {
  color: white;
}

.ig-post-wrapper.var-dark .ig-caption-text {
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 768px) {
  .li-post-container,
  .ig-post-wrapper {
    max-width: 100%;
    margin: 0 0 2rem;
  }

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

  .li-post-header,
  .ig-post-header {
    padding: 12px;
  }

  .li-post-content,
  .ig-caption-row {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .li-post-container,
  .ig-post-wrapper {
    border-radius: 6px;
    margin: 0 0 1.5rem;
  }

  .li-carousel-nav {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .li-carousel-prev { left: 8px; }
  .li-carousel-next { right: 8px; }

  .li-action-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .ig-actions-left {
    gap: 12px;
  }

  .ig-action-icon {
    font-size: 16px;
  }
}


/* ========================================
   ZUSATZSTYLES (zusammengefuehrt)
   Quelle: komthur-strategie-fix.css
======================================== */

/* ========================================
   STRATEGIE SECTION - FARBKORREKTUR
   Dunkler Hintergrund mit weißem Text
======================================== */

.strategie {
  background: var(--darkgreen) !important;
  color: white !important;
}

.strategie .strat-header {
  color: white;
}

.strategie .strat-eyebrow {
  color: var(--mauve);
  border-color: rgba(181, 161, 158, 0.3);
}

.strategie .strat-headline {
  color: white;
  font-style: italic;
}

.strategie .strat-lead {
  color: var(--mauve);
  opacity: 0.9;
}

.strategie .strat-nav {
  background: transparent;
  border-bottom: 1px solid rgba(181, 161, 158, 0.2);
}

.strategie .strat-btn {
  color: var(--mauve);
  border: none;
}

.strategie .strat-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.strategie .strat-btn.active {
  background: rgba(181, 161, 158, 0.15);
  color: white;
}

.strategie .btn-num {
  color: var(--mauve);
}

.strategie .btn-title {
  color: white;
}

.strategie .btn-sub {
  color: var(--mauve);
  opacity: 0.8;
}

.strategie .strat-rule-fill {
  background: var(--mauve);
}

.strategie .p-eyebrow {
  color: var(--mauve);
  border-color: rgba(181, 161, 158, 0.3);
}

.strategie .p-title {
  color: white;
}

.strategie .p-title em {
  color: var(--mauve);
}

.strategie .p-body {
  color: var(--mauve);
  opacity: 0.95;
}

.strategie .p-tag {
  background: rgba(181, 161, 158, 0.12);
  color: white;
  border-color: rgba(181, 161, 158, 0.2);
}

.strategie .p-tag:hover {
  background: rgba(181, 161, 158, 0.2);
  border-color: rgba(181, 161, 158, 0.3);
}

.strategie .p-strip {
  background: rgba(181, 161, 158, 0.1);
  border-left-color: var(--mauve);
}

.strategie .p-strip-label {
  color: var(--mauve);
}

.strategie .p-strip-content {
  color: white;
}

.strategie .ps-cell {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(181, 161, 158, 0.2);
  color: white;
}

.strategie .ps-cell:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(181, 161, 158, 0.3);
}

.strategie .ps-l {
  color: var(--mauve);
}

.strategie .ps-v {
  color: white;
}

.strategie .p-stat {
  background: rgba(255, 255, 255, 0.06);
}

.strategie .p-stat:hover {
  background: rgba(255, 255, 255, 0.1);
}

.strategie .stat-num {
  color: var(--mauve);
}

.strategie .stat-label {
  color: white;
}

.strategie .stat-sub {
  color: var(--mauve);
  opacity: 0.8;
}

.strategie .analytics-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(181, 161, 158, 0.2);
  color: white;
}

.strategie .analytics-card:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(181, 161, 158, 0.15);
}

.strategie .analytics-card h3 {
  color: white;
}

.strategie .seo-text {
  color: var(--mauve);
  opacity: 0.9;
}

.strategie .info-box {
  background: rgba(181, 161, 158, 0.1);
  border-left-color: var(--mauve);
  color: var(--mauve);
}

.strategie .info-box em {
  color: white;
}

.strategie .ads-header {
  color: white;
}

.strategie .ads-value {
  color: var(--mauve);
}

.strategie .ads-item {
  background: rgba(255, 255, 255, 0.06);
}

.strategie .ads-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.strategie .ads-meta {
  color: var(--mauve);
  opacity: 0.8;
}

.strategie .progress-bar {
  background: rgba(255, 255, 255, 0.1);
}

.strategie .kpi-row {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.strategie .kpi-row:hover {
  background: rgba(255, 255, 255, 0.1);
}

.strategie .kpi-name {
  color: white;
}

.strategie .kpi-val {
  color: white;
}

.strategie .kpi-sub-txt {
  color: var(--mauve);
  opacity: 0.8;
}

.strategie .p-budget {
  background: rgba(181, 161, 158, 0.1);
  border-color: rgba(181, 161, 158, 0.2);
}

.strategie .budget-num {
  color: var(--mauve);
}

.strategie .budget-lbl {
  color: var(--mauve);
  opacity: 0.8;
}

.strategie .bl {
  color: white;
}

.strategie .strat-select {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(181, 161, 158, 0.2);
}

.strategie .strat-select:hover {
  border-color: rgba(181, 161, 158, 0.4);
}

.strategie .strat-select option {
  background: var(--darkgreen);
  color: white;
}

/* ========================================
   DECORATIVE — Orbit, Sprig, Corner Reveal
======================================== */

/* Orbit decoration top-right of marktanalyse */
.mk-orbit-deco {
  position: absolute;
  top: clamp(3rem, 6vw, 5rem);
  right: clamp(1rem, 4vw, 4rem);
  opacity: 0.75;
  pointer-events: none;
  animation: mk-orbit-spin 40s linear infinite;
  transform-origin: center;
}

@keyframes mk-orbit-spin {
  to { transform: rotate(360deg); }
}

/* Sprig horizontal divider between sub-sections */
.mk-sprig-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: 0;
}

.mk-sprig-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(49,74,81,0.2));
}

.mk-sprig-r {
  background: linear-gradient(90deg, rgba(49,74,81,0.2), transparent);
}

.mk-sprig-divider svg {
  flex-shrink: 0;
}

/* Corner Reveal — on positioning-insight-new and insight-box */
.positioning-insight-new {
  position: relative;
}

.insight-box--corner {
  position: relative;
}

.pin-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pin-c {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--burgundy);
  border-style: solid;
  border-width: 0;
  transition: border-width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pin-tl { top: -1px; left: -1px; border-top-width: 1.5px; border-left-width: 1.5px; }
.pin-tr { top: -1px; right: -1px; border-top-width: 1.5px; border-right-width: 1.5px; }
.pin-bl { bottom: -1px; left: -1px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.pin-br { bottom: -1px; right: -1px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

/* Always visible on page load — corner lines shown by default */
.positioning-insight-new .pin-c,
.insight-box--corner .pin-c {
  border-width: 0;
  transition: border-width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.positioning-insight-new:hover .pin-tl,
.positioning-insight-new:hover .pin-bl,
.insight-box--corner:hover .pin-tl,
.insight-box--corner:hover .pin-bl {
  border-top-width: 1.5px;
  border-left-width: 1.5px;
  border-bottom-width: 1.5px;
}

.positioning-insight-new:hover .pin-tr,
.positioning-insight-new:hover .pin-br,
.insight-box--corner:hover .pin-tr,
.insight-box--corner:hover .pin-br {
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  border-bottom-width: 1.5px;
}

/* Reset to single-side corners */
.positioning-insight-new:hover .pin-tl { border-bottom-width: 0; border-left-width: 1.5px; border-top-width: 1.5px; }
.positioning-insight-new:hover .pin-tr { border-bottom-width: 0; border-right-width: 1.5px; border-top-width: 1.5px; }
.positioning-insight-new:hover .pin-bl { border-top-width: 0; border-left-width: 1.5px; border-bottom-width: 1.5px; }
.positioning-insight-new:hover .pin-br { border-top-width: 0; border-right-width: 1.5px; border-bottom-width: 1.5px; }

.insight-box--corner:hover .pin-tl { border-bottom-width: 0; border-left-width: 1.5px; border-top-width: 1.5px; }
.insight-box--corner:hover .pin-tr { border-bottom-width: 0; border-right-width: 1.5px; border-top-width: 1.5px; }
.insight-box--corner:hover .pin-bl { border-top-width: 0; border-left-width: 1.5px; border-bottom-width: 1.5px; }
.insight-box--corner:hover .pin-br { border-top-width: 0; border-right-width: 1.5px; border-bottom-width: 1.5px; }

/* Ghost bloom decoration in produkte section */
.sec03-bloom-deco {
  position: absolute;
  top: clamp(2rem, 5vw, 4rem);
  right: clamp(-2rem, -2vw, -1rem);
  opacity: 0.04;
  pointer-events: none;
  animation: mk-orbit-spin 60s linear infinite;
}

@media (max-width: 768px) {
  .mk-orbit-deco {
    display: none;
  }
  .sec03-bloom-deco {
    width: 160px;
    height: 160px;
  }
  .sec03-bloom-deco svg {
    width: 160px;
    height: 160px;
  }
}

/* ========================================
   SWOT — 2×2 Marketing Matrix (Consulting)
======================================== */

.swot-matrix {
  margin-top: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.swot-matrix__axes {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  padding: 0 0 0 0;
}

.swot-ax-corner {
  /* empty corner cell */
}

.swot-ax {
  font-family: var(--tenor);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.6rem 0.5rem;
  text-align: center;
  color: var(--darkgreen);
  opacity: 0.55;
}

.swot-ax--h {
  border-bottom: 2px solid rgba(49,74,81,0.2);
}

.swot-ax--h.swot-ax--neg {
  color: var(--burgundy);
  border-bottom-color: rgba(110,59,73,0.2);
}

.swot-ax--v {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tenor);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--darkgreen);
  opacity: 0.5;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 0.5rem 0;
  border-right: 2px solid rgba(49,74,81,0.15);
  margin-right: 0;
}

.swot-matrix__row {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr;
  gap: 0;
}

/* The 2px gap between quandrants = the cross line */
.swot-matrix__row + .swot-matrix__row {
  border-top: 2px solid rgba(49,74,81,0.12);
}

.swot-q {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.swot-matrix__row .swot-q:first-of-type {
  border-right: 2px solid rgba(49,74,81,0.12);
}

.swot-q--s {
  background: rgba(49, 74, 81, 0.05);
}
.swot-q--w {
  background: rgba(110, 59, 73, 0.04);
}
.swot-q--o {
  background: rgba(86, 104, 106, 0.06);
}
.swot-q--t {
  background: rgba(181, 161, 158, 0.1);
}

.swot-q--s:hover { background: rgba(49, 74, 81, 0.09); }
.swot-q--w:hover { background: rgba(110, 59, 73, 0.08); }
.swot-q--o:hover { background: rgba(86, 104, 106, 0.11); }
.swot-q--t:hover { background: rgba(181, 161, 158, 0.16); }

/* Decorative large letter per quadrant */
.sq-letter {
  position: absolute;
  bottom: -1.25rem;
  right: 0.75rem;
  font-family: var(--playfair);
  font-size: clamp(5rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s ease;
}

.swot-q--s .sq-letter { color: var(--darkgreen); }
.swot-q--w .sq-letter { color: var(--burgundy); }
.swot-q--o .sq-letter { color: var(--mint); }
.swot-q--t .sq-letter { color: var(--mauve); }

.swot-q:hover .sq-letter { opacity: 0.13; }

.sq-title {
  font-family: var(--work);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem);
  color: var(--black);
}

.swot-q--s .sq-title { color: var(--darkgreen); }
.swot-q--w .sq-title { color: var(--burgundy); }

.sq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sq-list li {
  font-family: var(--work);
  font-size: clamp(0.82rem, 1.6vw, 0.9rem);
  color: var(--off-black);
  line-height: 1.45;
  padding-left: 1.1rem;
  position: relative;
  opacity: 0.85;
}

.sq-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}

.swot-q--s .sq-list li::before { background: var(--darkgreen); opacity: 0.6; }
.swot-q--w .sq-list li::before { background: var(--burgundy); opacity: 0.5; }
.swot-q--o .sq-list li::before { background: var(--mint); opacity: 0.7; }
.swot-q--t .sq-list li::before { background: var(--mauve); opacity: 0.8; }

/* ========================================
   AUSGANGSLAGE — Editorial Numbered List
======================================== */

.al-list {
  margin-top: 2.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.al-row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 0 clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-bottom: 1px solid rgba(49, 74, 81, 0.12);
  position: relative;
  transition: background 0.25s ease;
  cursor: default;
}

.al-row:first-child {
  border-top: 1px solid rgba(49, 74, 81, 0.12);
}

.al-row::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--burgundy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.al-row:hover::after {
  transform: scaleY(1);
}

.al-num {
  font-family: var(--playfair);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: rgba(110, 59, 73, 0.13);
  line-height: 1;
  padding-top: 0.2rem;
  user-select: none;
}

.al-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.al-title {
  font-family: var(--work);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}

.al-ist {
  font-family: var(--work);
  font-size: clamp(0.85rem, 1.6vw, 0.92rem);
  line-height: 1.55;
  color: var(--off-black);
  margin: 0;
  opacity: 0.72;
}

.al-ziel {
  font-family: var(--tenor);
  font-size: clamp(0.7rem, 1.3vw, 0.78rem);
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(110, 59, 73, 0.06);
  border: 1px solid rgba(110, 59, 73, 0.18);
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  white-space: nowrap;
  align-self: start;
  margin-top: 0.2rem;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.al-row:hover .al-ziel {
  background: rgba(110, 59, 73, 0.1);
  border-color: rgba(110, 59, 73, 0.3);
}

/* ========================================
   SWOT — Asymmetric Editorial Grid
======================================== */

/* ========================================
   ZIELGRUPPE — Bento Asymmetric Grid
======================================== */

.zg-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.zg-1 { grid-column: 1; grid-row: 1 / 3; }
.zg-2 { grid-column: 2 / 4; grid-row: 1; }
.zg-3 { grid-column: 2; grid-row: 2; }
.zg-4 { grid-column: 3; grid-row: 2; }

.zg-item {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(49, 74, 81, 0.1);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.zg-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  border-color: rgba(110, 59, 73, 0.2);
}

.zg-1 {
  background: rgba(49, 74, 81, 0.04);
  border-color: rgba(49, 74, 81, 0.12);
}

.zg-2 {
  background: rgba(110, 59, 73, 0.04);
  border-color: rgba(110, 59, 73, 0.12);
}

.zg-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--mint));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.zg-item:hover::before {
  transform: scaleX(1);
}

.zg-num {
  display: block;
  font-family: var(--playfair);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  color: rgba(110, 59, 73, 0.1);
  line-height: 1;
  user-select: none;
}

.zg-title {
  font-family: var(--work);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  margin: 0;
  color: var(--black);
  line-height: 1.25;
}

.zg-text {
  font-family: var(--work);
  font-size: clamp(0.87rem, 1.7vw, 0.93rem);
  line-height: 1.6;
  color: var(--off-black);
  margin: 0;
  opacity: 0.82;
  flex-grow: 1;
}

/* ========================================
   RESPONSIVE — neue Layouts
======================================== */

@media (max-width: 1024px) {
  .zg-bento {
    grid-template-columns: 1fr 1fr;
  }
  .zg-1 { grid-column: 1 / 3; grid-row: 1; }
  .zg-2 { grid-column: 1; grid-row: 2; }
  .zg-3 { grid-column: 2; grid-row: 2; }
  .zg-4 { grid-column: 1 / 3; grid-row: 3; }
}

@media (max-width: 768px) {
  .al-row {
    grid-template-columns: 3rem 1fr;
    grid-template-rows: auto auto;
    gap: 0 1.25rem;
  }
  .al-ziel {
    grid-column: 2;
    margin-top: 0.75rem;
    white-space: normal;
  }
  .al-num {
    font-size: 1.75rem;
  }

  /* SWOT Matrix mobile: stack rows, hide axis labels */
  .swot-matrix__axes {
    display: none;
  }
  .swot-matrix__row {
    grid-template-columns: 1fr 1fr;
  }
  .swot-matrix__row .swot-ax--v {
    display: none;
  }
  .swot-matrix__row + .swot-matrix__row {
    border-top: 2px solid rgba(49,74,81,0.12);
  }

  .zg-bento {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .zg-1,
  .zg-2,
  .zg-3,
  .zg-4 {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .al-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.25rem 0;
  }
  .al-num {
    font-size: 1.5rem;
  }
  .al-ziel {
    grid-column: 1;
    align-self: start;
    display: inline-block;
  }
  /* SWOT full stack on mobile */
  .swot-matrix__row {
    grid-template-columns: 1fr;
  }
  .swot-matrix__row .swot-q:first-of-type {
    border-right: none;
    border-bottom: 2px solid rgba(49,74,81,0.12);
  }
  .sq-letter {
    font-size: 4.5rem;
  }
}

/* ========================================
   SECTION 03 — WEB & SOCIAL MEDIA
   Produkt-Blöcke: editorial, nummeriert
======================================== */

/* Sektion Intro-Header */
.produkte.wave-mint {
  background-color: var(--mint);
  position: relative;
}



.sec03-intro {
  text-align: center;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sec03-overline {
  display: block;
  font-family: var(--tenor);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--mauve);
  margin-bottom: 1rem;
}

.sec03-title {
  font-family: var(--higuen);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.sec03-title em {
  font-family: var(--playfair);
  font-style: italic;
  color: var(--mauve);
}

.sec03-lead {
  font-family: var(--tenor);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* Produkt-Block: eigenständige Einheit */
.product-block {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.product-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Block-Header: Nummer + Meta nebeneinander */
.product-block__header {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Grosse, blasse Ordnungsnummer */
.pb-num {
  font-family: var(--playfair);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 900;
  color: rgba(181,161,158,0.12);
  line-height: 0.85;
  flex-shrink: 0;
  min-width: clamp(3rem, 5vw, 4rem);
  user-select: none;
  transition: color 0.35s ease;
}

.product-block:hover .pb-num {
  color: rgba(181,161,158,0.22);
}

.pb-meta {
  flex: 1;
}

/* Kleine Kategorie-Bezeichnung */
.pb-eyebrow {
  display: block;
  font-family: var(--tenor);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--mauve);
  margin-bottom: 0.5rem;
}

/* Produkt-Titel */
.pb-title {
  font-family: var(--higuen);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: white;
  margin: 0 0 0.75rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.pb-title em {
  font-family: var(--playfair);
  font-style: italic;
  color: var(--mauve);
}

/* Kurzbeschreibung */
.pb-desc {
  font-family: var(--work);
  font-size: clamp(0.88rem, 1.8vw, 0.98rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0;
}

/* Footer mit Link */
.product-block__footer {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.pb-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--tenor);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mauve);
  text-decoration: none;
  border: 1px solid rgba(181,161,158,0.25);
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  transition: gap 0.3s ease, color 0.3s ease,
    background 0.3s ease, border-color 0.3s ease;
}

.pb-cta:hover {
  gap: 0.85rem;
  color: white;
  background: rgba(86, 104, 106, 0.18);
  border-color: rgba(86, 104, 106, 0.4);
}

/* Zentrierte Produkt-Blöcke (LinkedIn, Instagram) */
.product-block--centered .pb-card-wrap {
  display: flex;
  justify-content: center;
}

.product-block--centered .li-post-container,
.product-block--centered .ig-post-container {
  margin: 0;
  max-width: 552px;
  width: 100%;
}

/* ─── PHONE-FIX: realistisches Device, sauber zentriert ─── */
.sea-phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.sea-phone-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(230px, 34vw, 320px);
  max-width: 100%;
  overflow: visible;
}

.phone-device {
  position: relative;
  background: linear-gradient(160deg, #0e0f12 0%, #060608 100%);
  border-radius: 3.35rem;
  padding: 11px;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  box-shadow:
    0 38px 80px -22px rgba(0,0,0,0.58),
    0 14px 28px -18px rgba(0,0,0,0.72),
    inset 0 1px 1px rgba(255,255,255,0.14),
    inset 0 -1px 1px rgba(255,255,255,0.04);
  border: 1px solid #1a1b1f;
  overflow: hidden;
}

.phone-device::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), transparent 35%, transparent 65%, rgba(255,255,255,0.03));
  pointer-events: none;
  z-index: 3;
}

.phone-device::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(3.35rem - 2px);
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 3;
}

.phone-shadow-effect {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 78%;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.34), transparent 70%);
  filter: blur(13px);
  border-radius: 50%;
  z-index: -1;
}

.sea-story-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

/* Farb-Overrides für dunklen Kontext (produkte-Sektion) */
.product-block--story .sea-eyebrow {
  color: var(--mauve);
}
.product-block--story .sea-title {
  color: white;
}
.product-block--story .sea-description {
  color: rgba(255,255,255,0.55);
}
.product-block--story .sea-cta-link {
  color: var(--mauve);
}
.product-block--story .sea-meta-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.product-block--story .sea-meta-label {
  color: rgba(255,255,255,0.4);
}
.product-block--story .sea-meta-value {
  color: white;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .sea-story-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    justify-items: center;
  }

  .sea-phone-col {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .produkte .product-block {
    max-width: min(96%, 640px);
  }

  .produkte .product-block:nth-of-type(odd) {
    margin-left: 0;
    margin-right: auto;
  }

  .produkte .product-block:nth-of-type(even) {
    margin-left: auto;
    margin-right: 0;
  }

  .produkte .product-block .product-block__header,
  .produkte .product-block .pb-card-wrap,
  .produkte .product-block .showcase-container,
  .produkte .product-block .sea-story-layout {
    max-width: 100%;
  }

  .sec03-intro {
    margin-bottom: 2.1rem;
    padding-bottom: 1.35rem;
  }

  .product-block {
    padding: 1.6rem 0 1.9rem;
  }

  .product-block__header {
    gap: 0.7rem;
    margin-bottom: 1.1rem;
  }

  .pb-num {
    font-size: 2.15rem;
    min-width: 2rem;
  }

  .pb-desc {
    line-height: 1.55;
  }

  .phone-device {
    width: clamp(210px, 60vw, 280px);
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .produkte .product-block,
  .produkte .product-block:nth-of-type(odd),
  .produkte .product-block:nth-of-type(even) {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .product-block__header {
    flex-direction: column;
    gap: 0.4rem;
  }

  .pb-num {
    font-size: 1.8rem;
  }

  .sea-story-layout {
    gap: 1.35rem;
  }

  .phone-device {
    width: clamp(205px, 76vw, 255px);
    border-radius: 2.8rem;
  }
}

/* ========================================
   H2 / H3 — Playfair Display Bold global
======================================== */
.marktanalyse h2,
.strategie h2,
.produkte h2,
.sec03-title,
.strat-headline {
  font-family: var(--playfair) !important;
  font-weight: 700 !important;
}

.section-header h3 {
  font-family: var(--playfair) !important;
  font-weight: 700 !important;
  font-style: normal !important;
}

.sec03-title {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 768px) {
  .sec03-title {
    font-size: clamp(1.35rem, 8.2vw, 2rem);
    line-height: 1.2;
    max-width: 100%;
  }

}

.section-header--entry {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(49, 74, 81, 0.14);
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.4));
  backdrop-filter: blur(2px);
}

.section-kicker {
  display: inline-block;
  font-family: var(--tenor);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.55rem;
}

@media (max-width: 768px) {
  .section-header--entry {
    padding: 1.05rem 1rem;
    margin-bottom: 1rem;
  }
}

/* ========================================
   INSTAGRAM STORY — mobile: text hidden,
   phone centered
======================================== */
@media (max-width: 1024px) {
  .sea-text-col {
    display: none;
  }
  .sea-story-layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .sea-phone-col {
    justify-content: center;
  }
}

/* ========================================
   DESKTOP DECO — beside LinkedIn & IG posts
======================================== */
.pb-card-wrap--with-deco {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  justify-content: center;
}

.pb-deco-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  width: 198px;
  padding: 1.1rem 0.8rem 1.1rem 1.15rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}

.pb-deco-aside::before {
  content: '';
  position: absolute;
  top: 0.25rem;
  bottom: 0.25rem;
  left: -1px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(181,161,158,0.9), transparent);
}

.pb-deco-stat {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  border-left: none;
  padding-left: 0.25rem;
}

.pb-deco-stat__num {
  font-family: var(--playfair);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.pb-deco-stat__label {
  font-family: var(--tenor);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.pb-deco-tag {
  font-family: var(--tenor);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 0.32rem 0.62rem;
  border: 1px solid rgba(181,161,158,0.32);
  display: inline-block;
  width: fit-content;
}

.pb-deco-line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(181,161,158,0.45), rgba(255,255,255,0.08));
  margin: 0.3rem 0;
}

.pb-deco-platform-icon {
  font-size: 2.2rem;
  color: rgba(181,161,158,0.3);
  padding-left: 0.2rem;
}

@media (max-width: 1100px) {
  .pb-card-wrap--with-deco {
    flex-direction: column;
    align-items: center;
  }
  .pb-deco-aside {
    display: none;
  }
}

@media (max-width: 768px) {
  .pb-card-wrap--with-deco {
    width: 100%;
    gap: 0.9rem;
  }

  .pb-deco-aside {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 560px;
    padding: 0.7rem 0.75rem;
    border: 1px solid rgba(181, 161, 158, 0.24);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .pb-deco-aside::before {
    display: none;
  }

  .pb-deco-stat {
    min-width: 84px;
    padding-left: 0;
    gap: 0.12rem;
  }

  .pb-deco-stat__num {
    font-size: 1.2rem;
  }

  .pb-deco-stat__label {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }

  .pb-deco-line {
    width: 1px;
    min-width: 1px;
    height: 28px;
    margin: 0;
    background: rgba(181, 161, 158, 0.28);
  }

  .pb-deco-tag {
    font-size: 0.56rem;
    letter-spacing: 0.11em;
    white-space: nowrap;
  }

  .pb-deco-platform-icon {
    font-size: 1rem;
    margin-left: auto;
    padding-left: 0;
    color: rgba(181, 161, 158, 0.55);
  }
}

/* ========================================
   SCROLL REVEAL — staggered fade-up
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* ========== FOOTER INFO ========== */
.project-detail {
    padding-bottom: 8em;
}
.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;

}

.footer-info-item {
    color: var(--text-primary-light);
}

.footer-info-item .uppercase-label {
    opacity: 0.7;
    margin-bottom: 0.75rem;
    display: block;
}

.footer-info-item h3 {
    color: var(--text-primary-light);
    margin-bottom: 0.25rem;
}

.footer-info-item p {
    color: var(--text-primary-light);
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}