/* ==========================================================================
   DESIGN SYSTEM & CUSTOM VARIABLES (Option A: Pastel Pink & Warm Sunset)
   ========================================================================== */
:root {
  /* OKLCH Color Tokens for vibrant, clean pastels */
  --bg-primary: oklch(0.97 0.015 350); /* Ultra-light pastel pink/white */
  --bg-secondary: oklch(0.94 0.03 350); /* Light warm peach-pink */
  --accent-pink: oklch(0.72 0.16 350); /* Soft vibrant pink */
  --accent-coral: oklch(0.75 0.15 25); /* Warm sunset coral */
  --accent-gold: oklch(0.85 0.12 75); /* Soft sunny gold */
  
  --text-dark: oklch(0.25 0.03 350); /* Deep charcoal/obsidian with a pink undertone */
  --text-muted: oklch(0.5 0.03 350); /* Mid-tone charcoal */
  
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px 0 rgba(255, 115, 140, 0.06);
  --inset-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Reusable Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

strong {
  color: var(--text-dark);
}

/* Glassmorphism Classes */
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  box-shadow: var(--glass-shadow), var(--inset-shadow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-bounce);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-coral));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 115, 140, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(255, 115, 140, 0.35);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Badge tags */
.badge-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: linear-gradient(135deg, rgba(255, 117, 143, 0.1), rgba(255, 140, 107, 0.1));
  color: var(--accent-pink);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  border: 1px solid rgba(255, 117, 143, 0.2);
  margin-bottom: 1.5rem;
}

/* Section Header Styling */
.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-dark);
  position: relative;
}

/* ==========================================================================
   HEADER & FLOATING NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  padding: 0.6rem 1.5rem 0.6rem 2.2rem;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(255, 115, 140, 0.04);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent-pink);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-pink);
}

.nav-btn {
  padding: 0.6rem 1.6rem;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle .bar {
  height: 2px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  z-index: 10;
  opacity: 0.85;
}

.scroll-indicator:hover {
  color: var(--accent-pink);
  opacity: 1;
}

.scroll-chevron {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: bounceScroll 2s infinite;
}

@keyframes bounceScroll {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(5px) rotate(45deg);
  }
  60% {
    transform: translateY(2px) rotate(45deg);
  }
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 220, 225, 0.8) 0%, rgba(255, 240, 243, 0) 70%);
  z-index: -1;
  filter: blur(60px);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--text-dark) 50%, var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-pink);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

/* Quick Stats Widget */
.stats-widget {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.2rem 2rem;
  margin-bottom: 2.5rem;
  width: max-content;
  box-shadow: var(--glass-shadow);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background-color: rgba(255, 115, 140, 0.15);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-media {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  border-radius: 36px;
  padding: 0.8rem 0.8rem 0; /* Zero padding at the bottom for cutout alignment */
  background: linear-gradient(135deg, oklch(0.96 0.04 350), oklch(0.92 0.06 40)); /* Soft pastel pink to warm sunset orange gradient */
  box-shadow: 0 20px 50px rgba(255, 115, 140, 0.1);
  transform: rotate(1.5deg);
  transition: var(--transition-bounce);
  overflow: hidden; /* Contain the image scaling on hover */
}

.hero-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Don't crop cutout, fit inside frame */
  object-position: bottom; /* Sit cutout at the bottom edge */
  border-radius: 28px 28px 0 0; /* Match card roundings at top only */
}

.hero-badge-overlay {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   ABOUT & PILLARS SECTION
   ========================================================================== */
.about-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-text p {
  margin-bottom: 1.5rem;
}

.pillars-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pillar-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(255, 115, 140, 0.03);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pillar-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: 0.9rem;
}

/* About highlight card */
.about-specials {
  display: flex;
  flex-direction: column;
}

.special-card-highlight {
  position: relative;
  background: linear-gradient(135deg, var(--text-dark), oklch(0.2 0.02 330));
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.special-card-highlight::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 117, 143, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.special-card-highlight h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.special-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.special-list li strong {
  color: var(--accent-pink);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.3rem;
}

.special-list li p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ==========================================================================
   BRAND COLLABS & CASE STUDIES
   ========================================================================== */
.collabs-section {
  padding: 4rem 0;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  text-align: center;
}

.logo-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 1.2rem 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-muted);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
  transition: var(--transition-smooth);
}

.logo-item:hover {
  transform: translateY(-2px);
  color: var(--accent-pink);
  border-color: rgba(255, 115, 140, 0.3);
}

.case-study-card {
  display: grid;
  background: var(--white);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(255, 115, 140, 0.05);
  border: 1px solid rgba(255, 115, 140, 0.05);
  margin-bottom: 4rem;
  min-width: 0;
  width: 100%;
}

.case-study-card:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .case-study-card {
    height: 680px; /* Uniform clean height on desktop to prevent portrait stretch */
  }
  .case-study-card.image-left {
    grid-template-columns: 0.95fr 1.05fr;
  }
  .case-study-card.image-right {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.case-study-media {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9; /* Clean landscape ratio on mobile, stretches on desktop */
}

@media (min-width: 1025px) {
  .case-study-media {
    aspect-ratio: auto;
    height: 100%;
  }
}

.case-study-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.case-study-media:hover .case-study-img {
  transform: scale(1.03);
}

.media-overlay-play {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.case-study-media:hover .media-overlay-play {
  background: rgba(0, 0, 0, 0.35);
  opacity: 1;
}

.play-btn-circle {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 115, 140, 0.3);
  transition: var(--transition-bounce);
}

.case-study-media:hover .play-btn-circle {
  transform: scale(1.1);
  background: var(--accent-pink);
  box-shadow: 0 10px 25px rgba(255, 115, 140, 0.5);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 10px stroke transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--text-dark);
  margin-left: 6px;
  transition: var(--transition-smooth);
}

.case-study-media:hover .play-triangle {
  border-left-color: var(--white);
}

.media-overlay-play p {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-study-info {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.case-study-tag {
  color: var(--accent-pink);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.case-study-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  overflow-wrap: break-word;
  word-break: break-word;
}

.case-study-desc {
  margin-bottom: 2rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.case-study-metrics {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.metric-box {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-pink);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.metric-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.case-study-quote {
  font-style: italic;
  font-size: 0.95rem;
  border-left: 3px solid var(--accent-pink);
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.case-study-quote strong {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
}

.other-collabs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mini-collab-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 115, 140, 0.05);
}

.mini-collab-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.mini-collab-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.mini-collab-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-pink);
  border: 1px solid rgba(255, 115, 140, 0.15);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
}

/* ==========================================================================
   INSTAGRAM GRID SECTION
   ========================================================================== */
.grid-section {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.grid-instruction-text {
  text-align: center;
  font-size: 0.95rem;
  margin-top: -2.5rem;
  margin-bottom: 3rem;
  color: var(--text-muted);
  font-weight: 500;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.grid-item {
  display: block;
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  background-color: var(--white);
  border: 1px solid rgba(255, 115, 140, 0.03);
}

.grid-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-smooth);
}

.grid-item-hover {
  position: absolute;
  inset: 0;
  background: rgba(255, 117, 143, 0.85); /* Semitransparent pink overlay */
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--white);
  transition: var(--transition-smooth);
  padding: 2rem;
}

.grid-item:hover .grid-item-hover {
  opacity: 1;
}

.grid-item:hover .grid-item-img {
  transform: scale(1.05);
}

.hover-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hover-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

/* ==========================================================================
   MEDIA KIT & ANALYTICS
   ========================================================================== */
.analytics-section {
  padding: 8rem 0;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.analytics-text-panel h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.analytics-text-panel p {
  margin-bottom: 2.5rem;
}

.demographics-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.demo-bullet-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.demo-bullet-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-pink);
  line-height: 1;
  min-width: 80px;
}

.demo-bullet-lbl {
  font-size: 1rem;
  font-weight: 600;
}

.analytics-charts-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.chart-container {
  padding: 2.5rem;
}

.chart-container h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* Donut Chart styles */
.pie-chart-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}

.donut {
  transform: rotate(-90deg);
}

.donut-segment {
  stroke-linecap: round;
  transition: var(--transition-smooth);
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.color-dot.female {
  background-color: var(--accent-pink);
}

.color-dot.male {
  background-color: #ffdce3;
}

/* Bar Chart styles */
.bar-chart-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.bar-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.bar-track {
  width: 100%;
  height: 24px;
  background-color: oklch(0.92 0.015 350);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255, 115, 140, 0.05);
}

.bar-fill {
  height: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pinhwa-fill {
  background: linear-gradient(to right, var(--accent-pink), var(--accent-coral));
  box-shadow: 0 4px 10px rgba(255, 117, 143, 0.2);
}

.average-fill {
  background: var(--text-muted);
}

.chart-note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-bounce);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 115, 140, 0.25);
  box-shadow: 0 15px 40px rgba(255, 115, 140, 0.08);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.service-subtitle {
  color: var(--accent-pink);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.service-body {
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 115, 140, 0.1);
}

.service-features li {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--accent-pink);
  font-weight: bold;
}

.price-indicator {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Featured Service Card */
.featured-service {
  background: var(--white);
  border-color: rgba(255, 115, 140, 0.2);
  box-shadow: 0 15px 40px rgba(255, 115, 140, 0.06);
}

.featured-service::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-coral));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.popular-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-coral));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 8rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.contact-info-panel h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-info-panel > p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contact-link-item .icon {
  font-size: 1.6rem;
  background: var(--bg-secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.contact-link-item div strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.contact-link-item div p {
  margin: 0;
  line-height: 1.2;
}

.contact-link-item div p a {
  color: var(--accent-pink);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-link-item div p a:hover {
  text-decoration: underline;
}

/* Glassmorphism Form */
.contact-form-panel {
  padding: 3.5rem;
}

.contact-form-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 4px rgba(255, 115, 140, 0.1);
}

.form-success-message {
  text-align: center;
  padding: 2rem 0;
  transition: var(--transition-smooth);
}

.form-success-message h4 {
  font-size: 1.6rem;
  color: var(--accent-pink);
  margin-bottom: 0.5rem;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 115, 140, 0.1);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer p {
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  color: var(--accent-pink);
}

/* ==========================================================================
   NATIVE LIGHTBOX DIALOG OVERLAY
   ========================================================================== */
.dialog-glass {
  border: none;
  margin: auto;
  padding: 0;
  background: transparent;
  width: 90%;
  max-width: 880px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  outline: none;
}

.dialog-glass::backdrop {
  background: rgba(255, 220, 225, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dialog-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  position: relative;
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: var(--white);
  border: 1px solid var(--glass-border);
  font-size: 1.8rem;
  line-height: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-bounce);
}

.dialog-close:hover {
  transform: scale(1.08) rotate(90deg);
  background-color: var(--accent-pink);
  color: var(--white);
  border-color: var(--accent-pink);
}

.dialog-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.dialog-media {
  aspect-ratio: 1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-details {
  padding: 3.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dialog-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 115, 140, 0.1);
  margin-bottom: 2rem;
}

.dialog-avatar {
  font-size: 1.8rem;
  background: var(--bg-secondary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dialog-username {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.dialog-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dialog-body {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.dialog-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 115, 140, 0.1);
  padding-top: 1.8rem;
  margin-top: 2rem;
  text-align: center;
}

.dialog-metric-item {
  display: flex;
  flex-direction: column;
}

.dialog-metric-item strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-pink);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.dialog-metric-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-container,
  .about-grid,
  .analytics-grid,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .collabs-section .case-study-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .case-study-info {
    padding: 3rem 2.25rem;
  }
  
  .hero-media {
    order: -1;
  }
  
  .hero-frame {
    max-width: 360px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .case-study-card {
    border-radius: 24px;
    margin-bottom: 2.5rem;
  }

  .case-study-info {
    padding: 2rem 1.25rem;
  }

  .case-study-tag {
    font-size: 0.78rem;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
  }

  .case-study-title {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .case-study-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .case-study-metrics {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .metric-val {
    font-size: 1.75rem;
  }

  .metric-lbl {
    font-size: 0.8rem;
  }
  
  .nav-links {
    display: none; /* Let's keep SMM grid mobile nav drawer simple or static */
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .stats-widget {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%;
  }
  
  .stat-divider {
    display: none;
  }
  
  .stat-item {
    min-width: 100px;
    align-items: center;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .scroll-indicator {
    display: none;
  }

  .collabs-section {
    padding: 3rem 0 1.5rem 0;
  }

  .logos-grid {
    margin-bottom: 2.5rem;
    gap: 1rem;
  }

  .grid-section {
    padding: 3.5rem 0;
  }
  
  .instagram-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .dialog-grid {
    grid-template-columns: 1fr;
  }
  
  .dialog-details {
    padding: 2rem;
  }
}

/* Progressive Enhancement: Scroll-Driven Section Reveal (if supported) */
@supports (animation-range: entry exit) {
  @keyframes reveal-up {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .about-section,
  .collabs-section,
  .grid-section,
  .brands-section,
  .analytics-section,
  .services-section,
  .contact-section {
    view-timeline-name: --section-reveal;
    view-timeline-axis: block;
    animation-name: reveal-up;
    animation-fill-mode: both;
    animation-timeline: --section-reveal;
    animation-range: entry 10% cover 30%;
  }
}

/* ==========================================================================
   BRANDS I'VE WORKED WITH SECTION
   ========================================================================== */
.brands-section {
  padding: 4rem 0 8rem 0;
  background-color: var(--bg-primary);
  text-align: center;
}

.brands-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-logo-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 1.5rem 1rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.brand-logo-card img {
  height: 64px;
  width: auto;
  max-width: 85%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: var(--transition-smooth);
}

.brand-logo-card:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}
.brand-logo-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  box-shadow: 0 12px 30px rgba(255, 115, 140, 0.1);
}

@media (max-width: 768px) {
  .brands-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  
  .brand-logo-card {
    min-height: 100px;
    padding: 1rem;
  }

  .brand-logo-card img {
    height: 52px;
  }
}
