/* =============================================================================
   INTIVARA & FSTAR PLATFORM PAGE - Quiet Luxury Design
   ============================================================================= */

/* Hero Section */
.platform-hero-v2 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, #fdfbfa 0%, #f8f4f2 100%);
  overflow: hidden;
}

.platform-hero-v2__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.platform-hero-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.platform-hero-v2__orb--1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(240, 49, 103, 0.15), rgba(240, 49, 103, 0.05));
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.platform-hero-v2__orb--2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(200, 160, 130, 0.2), rgba(200, 160, 130, 0.05));
  bottom: -50px;
  left: -50px;
  animation-delay: -7s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.platform-hero-v2__content {
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
}

.platform-hero-v2__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8a082;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.platform-hero-v2__title {
  font-family: var(--font-heading, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: #2d2d2d;
  line-height: 1.1;
  margin: 0 0 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.1s forwards;
}

.platform-hero-v2__title span {
  display: block;
  font-size: 0.5em;
  font-weight: 300;
  color: #666;
  margin-top: 8px;
}

.platform-hero-v2__subtitle {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Platform Cards Section */
.platform-cards-section {
  padding: 100px 0;
  background: #fff;
}

.platform-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .platform-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Platform Card */
.platform-card-v2 {
  position: relative;
  background: #fdfbfa;
  border-radius: 24px;
  padding: 48px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}

.platform-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.platform-card-v2__glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(240, 49, 103, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.platform-card-v2:hover .platform-card-v2__glow {
  opacity: 1;
}

.platform-card-v2--fstar .platform-card-v2__glow {
  background: radial-gradient(circle, rgba(200, 160, 130, 0.15) 0%, transparent 70%);
}

.platform-card-v2__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.platform-card-v2__logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #f03167 0%, #d62a5a 100%);
  box-shadow: 0 8px 24px rgba(240, 49, 103, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card-v2:hover .platform-card-v2__logo {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(240, 49, 103, 0.35);
}

.platform-card-v2--fstar .platform-card-v2__logo {
  background: linear-gradient(135deg, #c8a082 0%, #a88a6a 100%);
  box-shadow: 0 8px 24px rgba(200, 160, 130, 0.3);
}

.platform-card-v2--fstar:hover .platform-card-v2__logo {
  box-shadow: 0 12px 32px rgba(200, 160, 130, 0.4);
}

.platform-card-v2__name {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: #2d2d2d;
  margin: 0;
}

.platform-card-v2__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}

.platform-card-v2__description {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.platform-card-v2__role {
  background: rgba(240, 49, 103, 0.04);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  border-left: 3px solid #f03167;
}

.platform-card-v2--fstar .platform-card-v2__role {
  background: rgba(200, 160, 130, 0.08);
  border-left-color: #c8a082;
}

.platform-card-v2__role-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f03167;
  margin-bottom: 8px;
}

.platform-card-v2--fstar .platform-card-v2__role-label {
  color: #a88a6a;
}

.platform-card-v2__role-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

.platform-card-v2__features {
  margin-bottom: 32px;
}

.platform-card-v2__features-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 16px;
}

.platform-card-v2__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-card-v2__features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #555;
}

.platform-card-v2__features-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f03167;
  flex-shrink: 0;
}

.platform-card-v2--fstar .platform-card-v2__features-list li::before {
  background: #c8a082;
}

.platform-card-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #f03167;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.platform-card-v2__link:hover {
  gap: 12px;
}

.platform-card-v2--fstar .platform-card-v2__link {
  color: #a88a6a;
}

/* Collaboration Section */
.platform-collab {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f4f2 0%, #fdfbfa 100%);
}

.platform-collab__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.platform-collab__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8a082;
  margin-bottom: 16px;
  display: block;
}

.platform-collab__title {
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: #2d2d2d;
  margin: 0 0 16px;
}

.platform-collab__subtitle {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.platform-collab__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.platform-collab__item {
  text-align: center;
  padding: 40px 32px;
  background: #fff;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.platform-collab__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.platform-collab__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240, 49, 103, 0.1) 0%, rgba(200, 160, 130, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f03167;
}

.platform-collab__icon svg {
  width: 28px;
  height: 28px;
}

.platform-collab__item-title {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #2d2d2d;
  margin: 0 0 12px;
}

.platform-collab__item-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* CTA Section */
.platform-cta-v2 {
  padding: 100px 0;
  background: #fff;
}

.platform-cta-v2__card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 48px;
  background: linear-gradient(135deg, #fdf8f9 0%, #f8f0f2 100%);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.platform-cta-v2__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f03167, #c8a082);
}

.platform-cta-v2__title {
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #2d2d2d;
  margin: 0 0 16px;
}

.platform-cta-v2__text {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 32px;
}

.platform-cta-v2__btn {
  display: inline-block;
  padding: 16px 40px;
  background: #f03167;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(240, 49, 103, 0.25);
}

.platform-cta-v2__btn:hover {
  background: #d62a5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240, 49, 103, 0.35);
}

/* Animations */
[data-platform-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-platform-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .platform-card-v2 {
    padding: 32px 24px;
  }
  
  .platform-collab__item {
    padding: 32px 24px;
  }
  
  .platform-cta-v2__card {
    padding: 48px 24px;
  }
}
