/* ===== Group Marketing Page ===== */

.marketing-page {
  background: #000;
}

/* Hero */
.marketing-hero {
  padding: 4rem 0 4rem;
  text-align: center;
}

.marketing-hero-title {
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.marketing-hero-sub {
  color: var(--text-secondary);

  font-weight: 300;
  line-height: 1.7;
  max-width: 640px;
}

/* Feature Sections */
.marketing-feature {
  padding: 3.5rem 0;
}

.marketing-copy {
  padding-right: 1rem;
}

.marketing-feature-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 2rem;
  background: #000;
  overflow: hidden;
}

.marketing-feature-panel .marketing-copy {
  padding: 0 2.5rem 0 0;
}

.marketing-feature-panel--reverse {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px ;
  padding: 2rem;
}

.marketing-feature-panel--reverse .marketing-copy {
  padding: 0 0 0 2.5rem;
}

.visual-panel--omnichannel,
.visual-panel--datadriven {
  height: 100%;
  min-height: 440px;
  border: none;
  border-radius: 0;
  background: #000;
}

.marketing-feature-panel--reverse .visual-panel--datadriven .visual-panel-bg {
  object-position: left center;
}

.marketing-feature-panel:not(.marketing-feature-panel--reverse) .visual-panel--datadriven .visual-panel-bg {
  object-position: right center;
}

.visual-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  pointer-events: none;
}

.visual-overlay-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: min(310px, 88%);
  z-index: 2;
}

.visual-overlay-box {
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.visual-overlay-box--title {
  padding: 0.9rem 1.1rem;
}

.visual-overlay-box--title h3 {

  font-weight: 500;
  margin: 0;
  color: var(--text-primary);
}

.visual-overlay-box--list {
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.visual-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.visual-checklist li {
  display: flex;
  align-items: center;
  gap: 0.65rem;

  color: rgba(255, 255, 255, 0.88);
}

.visual-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
}

.marketing-title {
  font-size: clamp(1.25rem, 2.6vw, 2.6rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.marketing-desc {
  color: var(--text-secondary);

  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.marketing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.marketing-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;

  color: #fff;
  font-weight: 300;
  line-height: 1.6;
}

.marketing-list li strong {
  color: #fff;
  font-weight: 500;
}

.list-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: url('../image/acquistitionIcon.png') center / contain no-repeat;
}

.marketing-list--acquisition .list-icon {
  background: url('../image/acquisitionIcon.png') center / contain no-repeat;
}

.marketing-list--brand .list-icon {
  background: url('../image/marketingIcon.png') center / contain no-repeat;
}

/* Visual Panels */
.visual-panel {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #0a0a10;
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.visual-glow-blue {
  width: 280px;
  height: 280px;
  background: rgba(0, 82, 255, 0.35);
  top: 20%;
  right: 10%;
}

.visual-glow-cyan {
  width: 300px;
  height: 300px;
  background: rgba(0, 180, 255, 0.25);
  bottom: 10%;
  left: 15%;
}

.visual-glow-purple {
  width: 280px;
  height: 280px;
  background: rgba(120, 80, 255, 0.3);
  top: 30%;
  left: 30%;
}

/* Swirl shapes */
.shape-swirl-1,
.shape-swirl-2 {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 82, 255, 0.3);
}

.shape-swirl-1 {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 20%;
  transform: rotate(-20deg);
  box-shadow: inset 0 0 40px rgba(0, 82, 255, 0.15);
}

.shape-swirl-2 {
  width: 140px;
  height: 140px;
  bottom: 20%;
  right: 25%;
  border-color: rgba(255, 255, 255, 0.08);
}

.visual-swirl::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(0, 82, 255, 0.2) 0%, transparent 55%);
}

/* Bar chart visual */
.bar-group {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 180px;
}

.bar {
  width: 28px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue-primary) 100%);
  opacity: 0.85;
}

.bar-1 { height: 60px; }
.bar-2 { height: 100px; }
.bar-3 { height: 150px; box-shadow: 0 0 30px rgba(0, 82, 255, 0.5); }
.bar-4 { height: 90px; }
.bar-5 { height: 120px; }

.visual-bars::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 200, 255, 0.4), transparent);
}

/* Ring visual */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}

.ring-1 {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(120, 80, 255, 0.5);
}

.ring-2 {
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(0, 82, 255, 0.4);
}

.ring-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(0, 82, 255, 0.1);
}

/* Glass overlay card on visuals */
.visual-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  z-index: 2;
}

.visual-overlay h3 {

  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.visual-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 0.75rem;
}

.visual-overlay li {
  font-size: 0.68rem;
  color: var(--text-muted);
  padding-left: 0.85rem;
  position: relative;
}

.visual-overlay li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 5px;
  height: 5px;
  background: var(--blue-primary);
  border-radius: 1px;
}

/* Technical Advantages */
.tech-advantages-section {
  padding: 3.5rem 0 5rem;
}

.marketing-feature-panel--full {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 2.5rem 2.5rem;
}

.tech-advantages-brand {
  padding-right: 2rem;
}

.tech-title {
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-list li {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);

  font-weight: 300;
  line-height: 1.65;
}

.tech-list li:first-child {
  padding-top: 0;
}

.tech-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.marketing-footer {
  padding-top: 3rem;
}

@media (max-width: 991.98px) {
  .marketing-copy {
    padding-right: 0;
  }

  .marketing-feature-panel,
  .marketing-feature-panel--reverse,
  .marketing-feature-panel--full {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 2rem 1.25rem;
  }

  .tech-advantages-brand {
    padding-right: 0;
    margin-bottom: 1.5rem;
  }

  .marketing-feature-panel .marketing-copy,
  .marketing-feature-panel--reverse .marketing-copy {
    padding: 0 0 1.5rem;
  }

  .visual-panel--omnichannel,
  .visual-panel--datadriven {
    min-height: 320px;
    border-radius: 12px;
  }

  .visual-panel {
    height: 320px;
    margin-top: 0.5rem;
  }

  .visual-overlay ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .marketing-hero {
    padding-top: 3rem;
  }

  .visual-panel {
    height: 280px;
  }
}
