/* ==========================================================================
   ASHJAN — CREATIVE DEVELOPER PORTFOLIO
   Font System: Kanit (300, 400, 600, 700, 800, 900)
   Theme: Minimal Ultra-Modern Dark with Metallic Accents & Overlapping Banner
   ========================================================================== */

:root {
  --bg-dark: #070709;
  --bg-card: #101015;
  --bg-card-hover: #171720;
  
  --text-main: #F4F4F6;
  --text-muted: #8E8E9A;
  --text-dark: #1A1815;
  
  --accent-orange: #FF5500;
  --accent-amber: #FF9900;
  
  --gold-metallic-light: #FDF9F0;
  --gold-metallic-mid: #D1C0A5;
  --gold-metallic-dark: #7A6950;
  --gold-border: #9E8563;

  --font-kanit: 'Kanit', sans-serif;
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-kanit);
  text-transform: uppercase;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-dark);
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

/* Background Grid Pattern */
.bg-grid-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px, 80px 80px;
  opacity: 0.6;
}

/* ==========================================================================
   HEADER NAVIGATION (75px Edges Gap)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 75px;
  background: linear-gradient(180deg, rgba(7, 7, 9, 0.9) 0%, rgba(7, 7, 9, 0) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-main);
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.05);
}

.brand-logo .dot {
  color: var(--accent-orange);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #A0A0B0;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: #00FF66;
  border-radius: 50%;
  box-shadow: 0 0 10px #00FF66;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 255, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-contact-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  font-family: var(--font-kanit);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-contact-btn:hover {
  background: var(--text-main);
  color: var(--bg-dark);
  border-color: var(--text-main);
}

/* ==========================================================================
   HERO BANNER SECTION (100vh STRICT HEIGHT)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  z-index: 1;
}

/* Background Glowing Aura Effect (Directly behind headshot image) */
.gradient-aura-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 36vw;
  height: 36vw;
  pointer-events: none;
  z-index: 0;
  filter: blur(45px);
  opacity: 0.85;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  animation: orbPulse 8s infinite alternate ease-in-out;
}

.orb-primary {
  width: 28vw;
  height: 28vw;
  top: 5%;
  left: 5%;
  background: radial-gradient(circle, #FF5500 0%, #FF8C00 65%, transparent 100%);
}

.orb-secondary {
  width: 24vw;
  height: 24vw;
  bottom: 5%;
  right: 5%;
  background: radial-gradient(circle, #FF3300 0%, #FFA500 70%, transparent 100%);
  animation-delay: -4s;
}

.orb-tertiary {
  width: 20vw;
  height: 20vw;
  top: 25%;
  left: 25%;
  background: radial-gradient(circle, #FF9900 0%, #FF2200 80%, transparent 100%);
  animation-delay: -2s;
}

@keyframes orbPulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

/* Uppercase Kanit Typography Layer (Font size: 11.5vw) */
.hero-typography-container {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

.typo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.row-top {
  margin-bottom: 8.5vw; /* Move HELLO bit more up */
}

.row-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-title {
  font-size: 11vw;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.01em;
  color: #FFFFFF; /* Pure White - NO Blue Gradient */
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.title-hello {
  letter-spacing: 0.02em;
}

/* Spacing for I'M and ASHJAN around headshot */
.title-im {
  margin-right: 1.5vw;
  transform: translateX(11.5vw); /* Moved I'M a bit more right */
}

/* Paper Coffee Cup Element right after I'M (Leaning Right & Compact) */
.cup-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.8vw;
  height: 8.5vw; /* Slightly smaller scale */
  margin-right: 1.5vw;
  transform: translateX(13vw) rotate(18deg); /* Moved cup a tiny bit right */
  pointer-events: auto;
  cursor: pointer;
  z-index: 5;
  transition: transform var(--transition-smooth);
}

.cup-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
  animation: cupFloat 4s ease-in-out infinite alternate;
  transition: transform var(--transition-fast);
}

.cup-container:hover {
  transform: translateX(13vw) rotate(22deg) scale(1.1);
}

@keyframes cupFloat {
  0% { transform: translateY(0) rotate(18deg); }
  100% { transform: translateY(-8px) rotate(14deg); }
}

.title-ashjan {
  margin-left: 27vw; /* Moved ASHJAN a tiny bit left */
}

/* Metallic 3D Diamond Arrow Icon right after I'M */
.arrow-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 9vw;
  height: 9vw;
  margin: 0 1.5vw;
  pointer-events: auto;
  cursor: pointer;
  z-index: 5;
  transition: transform var(--transition-smooth);
}

.arrow-img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 15px rgba(255, 85, 0, 0.5));
  transition: transform var(--transition-fast);
}

.arrow-container:hover {
  transform: scale(1.15) rotate(12deg);
}

.arrow-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 85, 0, 0.4);
  animation: ringPulse 2.5s infinite;
}

@keyframes ringPulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Headshot Avatar Image Width: 30vw (Overlapping Typography with high z-index: 10) */
.headshot-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  width: 30vw;
  max-width: 30vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  pointer-events: auto;
}

.headshot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95));
  transition: transform 0.4s ease-out;
  cursor: pointer;
}

.headshot-wrapper:hover .headshot-img {
  transform: scale(1.02) translateY(-4px);
}

/* ==========================================================================
   HERO BOTTOM BAR (Bottom gap: 45px, Edges gap: 75px)
   ========================================================================== */
.hero-bottom-bar {
  position: absolute;
  bottom: 45px; /* Moved lower */
  left: 75px;
  right: 75px;
  width: calc(100% - 150px);
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  z-index: 20;
}

.bottom-left-content {
  max-width: 520px;
  transform: translateY(10px); /* Shift paragraph even lower */
}

.hero-paragraph {
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: var(--text-main);
  border-left: 3px solid var(--accent-orange);
  padding-left: 1.25rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

.bottom-right-content {
  display: flex;
  justify-content: flex-end;
}

/* Glossy Metallic Pill Button (Image 2 Replica) */
.glossy-pill-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.1rem 2.8rem;
  border-radius: 9999px;
  border: 2px solid var(--gold-border);
  outline: none;
  cursor: pointer;

  background: linear-gradient(
    180deg, 
    #FFFFFF 0%, 
    #F4EEDF 15%, 
    #D1C2A5 50%, 
    #9C896C 85%, 
    #5E503C 100%
  );

  box-shadow: 
    inset 0 2px 2px rgba(255, 255, 255, 0.95),
    inset 0 -3px 6px rgba(0, 0, 0, 0.6),
    0 10px 25px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(209, 194, 165, 0.2);

  transition: all var(--transition-fast);
  overflow: hidden;
}

.glossy-pill-btn::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 6%;
  right: 6%;
  height: 45%;
  border-radius: 9999px 9999px 50% 50%;
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(255, 255, 255, 0.3) 60%, 
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.glossy-pill-btn::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.glossy-pill-btn .btn-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-kanit);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #1A1611;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.glossy-pill-btn .btn-icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1A1611;
  color: #F4EEDF;
  transition: transform var(--transition-fast);
}

.glossy-pill-btn .btn-icon svg {
  width: 16px;
  height: 16px;
}

.glossy-pill-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -3px 6px rgba(0, 0, 0, 0.7),
    0 15px 35px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 136, 0, 0.5);
  border-color: #FF8C00;
}

.glossy-pill-btn:hover .btn-icon {
  transform: translateX(4px);
  background: var(--accent-orange);
  color: #FFF;
}

.glossy-pill-btn:active {
  transform: translateY(1px) scale(0.98);
}

/* ==========================================================================
   CAMPAIGNS SLIDER SECTION (INFINITE AUTO SLIDING ROWS)
   ========================================================================== */
.campaigns-section {
  position: relative;
  width: 100%;
  padding: 6rem 0 8rem 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  z-index: 10;
}

.campaigns-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 75px;
}

.campaigns-subtitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
}

.campaigns-title {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #FFFFFF;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

/* Sliders Container & Tracks */
.sliders-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.slider-row {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.slider-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}

.slider-track:hover {
  animation-play-state: paused;
}

/* Row 1: Right to Left */
.track-right-to-left {
  animation: slideRightToLeft 30s linear infinite;
}

/* Row 2: Left to Right */
.track-left-to-right {
  animation: slideLeftToRight 30s linear infinite;
}

@keyframes slideRightToLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slideLeftToRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Slide Card & Image Styling */
.slide-card {
  position: relative;
  width: 440px;
  height: 290px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-card);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.85),
    0 0 20px rgba(255, 85, 0, 0.1);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  cursor: pointer;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-card:hover {
  transform: translateY(-16px) scale(1.08);
  z-index: 30;
  border-color: var(--accent-orange);
  box-shadow: 
    0 35px 75px rgba(0, 0, 0, 0.98),
    0 0 45px rgba(255, 85, 0, 0.5),
    inset 0 0 15px rgba(255, 140, 0, 0.2);
}

.slide-card:hover img {
  transform: scale(1.12);
}
.marquee-ticker {
  width: 100%;
  padding: 1.25rem 0;
  background: #0C0C10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  z-index: 20;
  position: relative;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  gap: 3rem;
  animation: marqueeScroll 20s linear infinite;
}

.ticker-item {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.minimal-section {
  padding: 6rem 75px;
  position: relative;
  z-index: 10;
}

.section-container {
  max-width: 1600px;
  margin: 0 auto;
}

.section-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 2px;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 85, 0, 0.15);
}

.card-image-box {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.card-badge {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-main);
  z-index: 2;
}

.card-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.6s ease;
}

.grad-1 { background: linear-gradient(135deg, #FF4500 0%, #1A0033 100%); }
.grad-2 { background: linear-gradient(135deg, #FF8C00 0%, #100020 100%); }
.grad-3 { background: linear-gradient(135deg, #FF0055 0%, #200020 100%); }

.project-card:hover .card-bg-gradient {
  transform: scale(1.1);
}

.card-content-overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
  color: #FFFFFF;
}

.card-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.card-footer-info {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.3);
}

.card-tags {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.card-link-btn {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-orange);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.card-link-btn:hover {
  color: #FFF;
}

/* Bio & Skills */
.bio-section {
  background: #0B0B0F;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.bio-heading {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.bio-text-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.bio-paragraph {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text-main);
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  padding-left: 1.25rem;
}

.bio-paragraph.highlight-cta {
  font-weight: 800;
  color: var(--accent-orange);
  border-left-color: var(--accent-orange);
  letter-spacing: 1px;
}

.stats-row {
  display: flex;
  gap: 3rem;
}

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

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-top: 0.4rem;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.skill-pill {
  padding: 0.8rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.skill-pill:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFF;
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  padding: 2.5rem 75px;
  background: #050507;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-main);
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  gap: 2rem;
}

.footer-social {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

.footer-social:hover {
  color: var(--accent-orange);
}

/* Contact Modal */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.contact-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: #0E0E14;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 40px rgba(255, 85, 0, 0.2);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.modal-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #14141E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-kanit);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-orange);
}

.modal-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.form-success-msg {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid #00FF66;
  border-radius: 10px;
  color: #00FF66;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .site-header {
    padding: 1.25rem 30px;
  }
  .hero-bottom-bar {
    left: 30px;
    right: 30px;
    bottom: 40px;
    width: calc(100% - 60px);
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }
  .headshot-wrapper {
    width: 45vw;
    max-width: 45vw;
  }
  .gradient-aura-wrapper {
    width: 50vw;
    height: 50vw;
  }
}

/* ==========================================================================
   LIGHTBOX FULL-SCREEN IMAGE MODAL
   ========================================================================== */
.lightbox-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 5, 8, 0.94);
  backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-box {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal-overlay.active .lightbox-content-box {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.95),
    0 0 45px rgba(255, 85, 0, 0.3);
}

.lightbox-caption {
  margin-top: 1.25rem;
  font-family: var(--font-kanit);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-orange);
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--transition-fast);
  z-index: 2010;
}

.lightbox-close-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFF;
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--transition-fast);
  z-index: 2010;
}

.lightbox-prev-btn {
  left: 2rem;
}

.lightbox-next-btn {
  right: 2rem;
}

/* ==========================================================================
   VIDEO SHOWCASE SECTION (6 MULTI-FRAME CARDS MATCHING REFERENCE IMAGE)
   ========================================================================== */
.video-showcase-section {
  position: relative;
  width: 100%;
  padding: 6rem 75px 8rem 75px;
  background: #08080C;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.showcase-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 4.5rem auto;
}

.showcase-subtitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
}

.showcase-title {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #FFFFFF;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

/* 6-Card Grid */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 3rem;
  max-width: 1600px;
  margin: 0 auto;
}

/* Individual Showcase Card */
.showcase-card {
  position: relative;
  background: #121218;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.85),
    0 0 25px rgba(255, 85, 0, 0.08);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 85, 0, 0.5);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.95),
    0 0 35px rgba(255, 85, 0, 0.25);
}

/* Top Tags Bar */
.card-tags-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.tag-pill {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  text-transform: none;
}

/* 3-Frame Vertical Trio Layout */
.frames-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 15.5;
  border-radius: 16px;
  overflow: hidden;
  background: #060609;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover .showcase-video {
  transform: scale(1.05);
}

/* Hover Play Overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  cursor: pointer;
}

.video-frame:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-orange);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 3px;
  box-shadow: 0 0 20px rgba(255, 85, 0, 0.8);
  transform: scale(0.8);
  transition: transform var(--transition-fast);
}

.video-frame:hover .play-icon {
  transform: scale(1.1);
}

/* Card Footer Bar */
.showcase-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
}

.card-footer-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.icon-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.grad-avatar-1 { background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%); }
.grad-avatar-2 { background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%); }
.grad-avatar-3 { background: linear-gradient(135deg, #FF8008 0%, #FFC837 100%); }
.grad-avatar-4 { background: linear-gradient(135deg, #F857A6 0%, #FF5858 100%); }
.grad-avatar-5 { background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%); }
.grad-avatar-6 { background: linear-gradient(135deg, #11998E 0%, #38EF7D 100%); }
.grad-avatar-7 { background: linear-gradient(135deg, #F2994A 0%, #F2C94C 100%); }
.grad-avatar-8 { background: linear-gradient(135deg, #E0C3FC 0%, #8EC5FC 100%); }
.grad-avatar-9 { background: linear-gradient(135deg, #FF758C 0%, #FF7EB3 100%); }

.footer-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.card-footer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.card-footer-desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: #9A9AB0;
  text-transform: none;
  line-height: 1.25;
}

/* Try Action Button */
.try-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-family: var(--font-kanit);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.5rem 1.4rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

.try-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 85, 0, 0.4);
}

/* ==========================================================================
   FULL-SCREEN VIDEO LIGHTBOX MODAL WITH INTERACTIVE SEEK BAR
   ========================================================================== */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(4, 4, 8, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 72vh;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.95),
    0 0 50px rgba(255, 85, 0, 0.3);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.video-close-btn {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFF;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all var(--transition-fast);
  z-index: 2110;
}

.video-close-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #FFF;
  transform: scale(1.1);
}

/* Controls Bar */
.video-controls-bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(18, 18, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.v-control-btn {
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.v-control-btn:hover {
  color: var(--accent-orange);
  transform: scale(1.15);
}

.v-time-display {
  font-family: var(--font-kanit);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  min-width: 38px;
}

/* Progress Slider & Fill */
.v-progress-container {
  position: relative;
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.v-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF8C00, #FF5500);
  border-radius: 4px;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 85, 0, 0.8);
}

.v-progress-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
  margin: 0;
}

.video-modal-title {
  font-family: var(--font-kanit);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-orange);
}

/* ==========================================================================
   VALUE PROPOSITION / BENEFITS SECTION
   ========================================================================== */
.benefits-section {
  width: 100%;
  background: #06060A;
  padding: 7.5rem 75px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 5rem auto;
}

.benefits-badge {
  display: inline-block;
  font-family: var(--font-kanit);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #FF8C00;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.35);
  padding: 0.45rem 1.2rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.15);
}

.benefits-title {
  font-family: var(--font-kanit);
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.gradient-text-orange {
  background: linear-gradient(135deg, #FF9900 0%, #FF5500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(255, 140, 0, 0.4));
}

.benefits-subline {
  font-family: var(--font-kanit);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

/* Featured Why Choose AI Video Frame */
.benefits-video-wrapper {
  max-width: 380px;
  margin: 0 auto 4.5rem auto;
  cursor: pointer;
  perspective: 1000px;
  position: relative;
}

.benefits-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #121218;
  border: 1px solid rgba(255, 140, 0, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 140, 0, 0.25);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.benefits-video-wrapper:hover .benefits-video-frame {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 140, 0, 0.7);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.95), 0 0 55px rgba(255, 140, 0, 0.4);
}

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

.benefits-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
  gap: 0.6rem;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.benefits-video-wrapper:hover .benefits-video-overlay {
  opacity: 1;
}

.benefits-play-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.9);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 3px;
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.8);
  transition: transform var(--transition-fast);
}

.benefits-video-wrapper:hover .benefits-play-icon {
  transform: scale(1.15);
}

.benefits-play-text {
  font-family: var(--font-kanit);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

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

/* Centered & Colorful Card Styling */
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 28px;
  padding: 3rem 2.2rem;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
  position: relative;
  overflow: hidden;
}

/* Card 1: Amber Glow */
.card-amber {
  background: linear-gradient(145deg, rgba(255, 140, 0, 0.08) 0%, rgba(18, 18, 26, 0.95) 100%);
  border: 1px solid rgba(255, 140, 0, 0.2);
}
.card-amber:hover {
  border-color: rgba(255, 140, 0, 0.6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 140, 0, 0.25);
  transform: translateY(-8px);
}
.title-amber {
  background: linear-gradient(135deg, #FFC837 0%, #FF8008 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card 2: Emerald Glow */
.card-emerald {
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.08) 0%, rgba(18, 18, 26, 0.95) 100%);
  border: 1px solid rgba(0, 255, 136, 0.2);
}
.card-emerald:hover {
  border-color: rgba(0, 255, 136, 0.6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 255, 136, 0.25);
  transform: translateY(-8px);
}
.title-emerald {
  background: linear-gradient(135deg, #38EF7D 0%, #11998E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card 3: Magenta Glow */
.card-magenta {
  background: linear-gradient(145deg, rgba(248, 87, 166, 0.08) 0%, rgba(18, 18, 26, 0.95) 100%);
  border: 1px solid rgba(248, 87, 166, 0.2);
}
.card-magenta:hover {
  border-color: rgba(248, 87, 166, 0.6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(248, 87, 166, 0.25);
  transform: translateY(-8px);
}
.title-magenta {
  background: linear-gradient(135deg, #FF5858 0%, #F857A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card 4: Cyan Glow */
.card-cyan {
  background: linear-gradient(145deg, rgba(0, 198, 255, 0.08) 0%, rgba(18, 18, 26, 0.95) 100%);
  border: 1px solid rgba(0, 198, 255, 0.2);
}
.card-cyan:hover {
  border-color: rgba(0, 198, 255, 0.6);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 198, 255, 0.25);
  transform: translateY(-8px);
}
.title-cyan {
  background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.grad-icon-1 { background: linear-gradient(135deg, #FF8008 0%, #FFC837 100%); }
.grad-icon-2 { background: linear-gradient(135deg, #11998E 0%, #38EF7D 100%); }
.grad-icon-3 { background: linear-gradient(135deg, #FF512F 0%, #DD2476 100%); }
.grad-icon-4 { background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%); }

.benefit-card-title {
  font-family: var(--font-kanit);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
}

.benefit-card-desc {
  font-family: var(--font-kanit);
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 480px;
}

/* ==========================================================================
   REFINED DARK MINIMALIST FOOTER (FULL WIDTH BALANCED ARCHITECTURE)
   ========================================================================== */
.site-footer {
  width: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 140, 0, 0.06) 0%, #040407 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6.5rem 60px 3rem 60px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* Left Side: Headline, Manifesto & Contact Panel */
.footer-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.footer-headline {
  font-family: var(--font-kanit);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.footer-spark {
  color: var(--accent-orange);
  display: inline-block;
  filter: drop-shadow(0 0 16px rgba(255, 140, 0, 0.9));
  margin-left: 0.3rem;
}

.footer-manifesto-group {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.footer-subtext {
  font-family: var(--font-kanit);
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.footer-subtext.highlight-text {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 0.3px;
  border-left: 3px solid var(--accent-orange);
  padding-left: 1rem;
  margin-top: 0.2rem;
}

.footer-contact-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 680px;
  margin-bottom: 2.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.95rem 1.2rem;
  border-radius: 18px;
  background: rgba(18, 18, 26, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.footer-contact-item:hover {
  background: rgba(255, 140, 0, 0.12);
  border-color: rgba(255, 140, 0, 0.4);
  transform: translateY(-3px);
}

.contact-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 0, 0.3);
  background: rgba(255, 140, 0, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.footer-contact-item:hover .contact-icon-circle {
  background: var(--accent-orange);
  color: #000;
}

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-family: var(--font-kanit);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.contact-text {
  font-family: var(--font-kanit);
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

.footer-status-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 140, 0, 0.08);
  border: 1px solid rgba(255, 140, 0, 0.35);
  border-radius: 9999px;
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  transition: transform var(--transition-normal), background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.footer-status-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 140, 0, 0.2);
  border-color: var(--accent-orange);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.35);
}

.btn-status-text {
  font-family: var(--font-kanit);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.btn-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  transition: transform var(--transition-fast);
}

.footer-status-btn:hover .btn-arrow-circle {
  transform: translateX(3px);
}

/* Right Side: Laptop Style Banner Mockup (Flushed Far Right) */
.footer-col-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.footer-laptop-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
  width: 100%;
  max-width: 520px;
}

.laptop-banner-tagline {
  font-family: var(--font-kanit);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.2px;
  line-height: 1.4;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.14) 0%, rgba(18, 18, 26, 0.85) 100%);
  border: 1px solid rgba(255, 140, 0, 0.35);
  padding: 1rem 1.4rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 140, 0, 0.2);
  width: 100%;
}

.tagline-spark {
  color: var(--accent-orange);
  margin-right: 0.4rem;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.8));
}

.laptop-mockup-wrapper {
  width: 100%;
  max-width: 520px;
  perspective: 1000px;
}

.laptop-screen {
  background: #09090E;
  border: 1.5px solid rgba(255, 140, 0, 0.35);
  border-radius: 18px 18px 0 0;
  padding: 1rem;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.95), 0 0 50px rgba(255, 140, 0, 0.25);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.laptop-mockup-wrapper:hover .laptop-screen {
  border-color: rgba(255, 140, 0, 0.7);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 1), 0 0 65px rgba(255, 140, 0, 0.4);
}

.laptop-screen-header {
  display: flex;
  gap: 7px;
  margin-bottom: 1rem;
}

.screen-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.screen-dot.red { background: #FF5F56; }
.screen-dot.yellow { background: #FFBD2E; }
.screen-dot.green { background: #27C93F; }

.laptop-screen-content {
  flex: 1;
  background: radial-gradient(circle at center, #141422 0%, #06060A 100%);
  border-radius: 12px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-badge {
  display: inline-block;
  font-family: var(--font-kanit);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-orange);
  background: rgba(255, 140, 0, 0.15);
  border: 1px solid rgba(255, 140, 0, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.2rem;
}

.screen-hero-title {
  font-family: var(--font-kanit);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  line-height: 1.25;
  text-transform: uppercase;
}

.screen-sub-text {
  font-family: var(--font-kanit);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.screen-accent-bar {
  width: 55px;
  height: 3px;
  background: linear-gradient(90deg, #FF8C00, #FF5500);
  border-radius: 2px;
  margin-top: 0.4rem;
}

.laptop-base {
  height: 14px;
  background: linear-gradient(180deg, #1C1C28 0%, #0D0D14 100%);
  border-radius: 0 0 18px 18px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.85);
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 0 0 4px 4px;
}

/* Full Width Copyright Bar Below Footer Grid */
.footer-bottom-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.2rem;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-text {
  font-family: var(--font-kanit);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  font-family: var(--font-kanit);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-orange);
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN (TABLETS & MOBILE DEVICES)
   ========================================================================== */

/* 1. Large Tablets & Laptops (1024px to 1280px) */
@media (max-width: 1280px) {
  .site-header {
    padding: 1.5rem 40px;
  }
  .hero-bottom-bar {
    left: 40px;
    right: 40px;
    width: calc(100% - 80px);
  }
  .campaigns-header,
  .showcase-header {
    padding: 0 40px;
  }
  .video-showcase-section {
    padding: 5rem 40px 6rem 40px;
  }
  .showcase-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.2rem;
  }
}

/* 2. Tablets & Small Laptops (768px to 1024px) */
@media (max-width: 1024px) {
  .site-header {
    padding: 1.25rem 30px;
  }
  .status-badge {
    padding: 0.35rem 0.85rem;
  }
  .status-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  
  /* Hero Section Tablet Overhaul (Clean Stacked & Aligned Flow) */
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding-top: 110px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    gap: 1.2rem;
  }

  .gradient-aura-wrapper {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75vw;
    height: 75vw;
    pointer-events: none;
    z-index: 0;
  }

  .hero-typography-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    z-index: 2;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .row-top {
    margin-bottom: 0.2rem !important;
  }

  .row-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.4rem;
  }

  .hero-title {
    font-size: clamp(3rem, 9vw, 5.5rem);
    letter-spacing: -0.01em;
  }

  .title-im {
    margin-right: 0 !important;
    transform: none !important;
  }

  .cup-container {
    width: clamp(40px, 7vw, 65px);
    height: clamp(50px, 8.5vw, 78px);
    margin: 0 0.2rem !important;
    transform: rotate(18deg) !important;
  }

  .title-ashjan {
    margin-left: 0 !important;
    transform: none !important;
  }

  .headshot-wrapper {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    width: 260px;
    max-width: 65vw;
    margin: -0.8rem auto 0.5rem auto;
    z-index: 3;
    pointer-events: auto;
    opacity: 1;
    display: flex;
    justify-content: center;
  }

  .headshot-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.9));
  }

  .hero-bottom-bar {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: 4;
    width: 100%;
    margin-top: 0;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .bottom-left-content {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .hero-paragraph {
    border-left: none;
    border-top: 3px solid var(--accent-orange);
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.6;
    background: rgba(12, 12, 18, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 18px;
    padding: 1.2rem 1.6rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  }

  .bottom-right-content {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .glossy-pill-btn {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 320px;
  }

  /* Showcase Section Tablet */
  .video-showcase-section {
    padding: 5rem 30px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  /* Benefits Section Tablet */
  .benefits-section {
    padding: 5rem 30px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Footer Tablet */
  .site-footer {
    padding: 5rem 30px 3rem 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .footer-col-left {
    align-items: center;
    text-align: center;
  }
  .footer-subtext {
    text-align: center;
  }
  .footer-contact-panel {
    max-width: 100%;
  }
  .footer-laptop-container {
    align-items: center;
    max-width: 100%;
  }
  .laptop-banner-tagline {
    text-align: center;
  }
  .footer-col-right {
    justify-content: center;
  }
}

/* 3. Mobile Devices (Up to 768px) */
@media (max-width: 768px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
  }

  .site-header {
    padding: 0.85rem 14px;
  }
  .header-inner {
    gap: 0.4rem;
  }
  .brand-logo {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }
  .status-badge {
    padding: 0.25rem 0.5rem;
  }
  .status-text {
    display: none;
  }
  .site-nav {
    gap: 0.5rem;
  }
  .nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.5px;
  }
  .nav-contact-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.72rem;
    min-height: 40px;
  }

  /* Hero Section Mobile Overhaul (Clean Stacked Flow) */
  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 85px;
    padding-bottom: 35px;
    gap: 0.9rem;
    overflow: hidden;
  }

  .hero-typography-container {
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    gap: 0.1rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9.5vw, 3.6rem);
    letter-spacing: -0.02em;
  }

  .cup-container {
    width: clamp(28px, 7.5vw, 44px);
    height: clamp(36px, 9vw, 54px);
    margin: 0 0.1rem !important;
  }

  .headshot-wrapper {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    width: 200px;
    max-width: 65vw;
    margin: -0.8rem auto 0.4rem auto;
    z-index: 3;
    pointer-events: auto;
    opacity: 1;
    display: flex;
    justify-content: center;
  }

  .gradient-aura-wrapper {
    width: 85vw;
    height: 85vw;
  }

  .hero-bottom-bar {
    padding: 0 14px;
    gap: 1rem;
  }

  .hero-paragraph {
    font-size: clamp(0.78rem, 3.2vw, 0.85rem);
    line-height: 1.5;
    padding: 0.9rem 1.1rem;
    border-top: 2px solid var(--accent-orange);
    border-radius: 14px;
    background: rgba(12, 12, 18, 0.95);
    border: 1px solid rgba(255, 140, 0, 0.2);
  }

  .glossy-pill-btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.88rem;
    min-height: 48px;
    width: 100%;
    max-width: 290px;
  }

  /* Campaigns Section Mobile */
  .campaigns-section {
    padding: 3.5rem 0 4.5rem 0;
  }
  .campaigns-header {
    padding: 0 16px;
    margin-bottom: 2rem;
  }
  .campaigns-title {
    font-size: clamp(1.6rem, 7vw, 2.6rem);
  }
  .sliders-container {
    gap: 1.2rem;
  }
  .slide-card {
    width: 260px;
    height: 175px;
    border-radius: 16px;
  }
  .slide-card img {
    border-radius: 16px;
  }

  /* Video Showcase Section Mobile */
  .video-showcase-section {
    padding: 3.5rem 14px 4.5rem 14px;
  }
  .showcase-header {
    margin-bottom: 2rem;
  }
  .showcase-title {
    font-size: clamp(1.6rem, 7vw, 2.6rem);
  }
  .showcase-card {
    padding: 0.85rem;
    border-radius: 18px;
  }
  .card-tags-bar {
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }
  .tag-pill {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
  .frames-trio {
    gap: 0.35rem;
    margin-bottom: 0.85rem;
  }
  .video-frame {
    border-radius: 10px;
  }
  .showcase-video {
    border-radius: 10px;
  }
  .play-overlay .play-icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
  .icon-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    border-radius: 9px;
  }
  .card-footer-title {
    font-size: 0.88rem;
  }
  .card-footer-desc {
    font-size: 0.75rem;
  }

  /* Benefits Section Mobile */
  .benefits-section {
    padding: 3.5rem 14px 4.5rem 14px;
  }
  .benefits-header {
    margin-bottom: 2rem;
  }
  .benefits-video-wrapper {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .benefits-video-frame {
    border-radius: 16px;
  }
  .benefit-card {
    padding: 1.5rem 1.1rem;
    border-radius: 18px;
  }
  .benefit-icon-box {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    border-radius: 12px;
    margin-bottom: 0.9rem;
  }
  .benefit-card-title {
    font-size: 1.08rem;
  }
  .benefit-card-desc {
    font-size: 0.84rem;
  }

  /* Laptop Mockup Mobile Polish */
  .laptop-mockup-wrapper {
    max-width: 100%;
  }
  .laptop-screen-content {
    padding: 1rem 0.8rem;
  }
  .screen-hero-title {
    font-size: clamp(0.75rem, 3.5vw, 1.1rem);
  }
  .screen-sub-text {
    font-size: clamp(0.65rem, 2.5vw, 0.85rem);
  }

  /* Footer Mobile */
  .site-footer {
    padding: 3.5rem 14px 2.5rem 14px;
  }
  .footer-headline {
    font-size: clamp(1.7rem, 6.5vw, 2.5rem);
  }
  .footer-contact-panel {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .footer-contact-item {
    padding: 0.85rem 1rem;
    min-height: 50px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Modals Mobile */
  .contact-modal-overlay {
    padding: 12px;
  }
  .modal-card {
    padding: 1.6rem 1.1rem;
    max-width: 96vw;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 20px;
  }
  .modal-title {
    font-size: 1.45rem;
  }

  /* Video Lightbox Player Mobile */
  .video-modal-container {
    max-width: 96vw;
    gap: 0.85rem;
  }
  .video-wrapper {
    max-height: 65vh;
    border-radius: 16px;
  }
  .video-close-btn {
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    z-index: 1000;
  }
  .video-controls-bar {
    padding: 0.55rem 0.85rem;
    gap: 0.5rem;
  }
  .v-progress-container {
    height: 18px;
    display: flex;
    align-items: center;
  }
  .v-progress-slider {
    height: 18px;
  }
  .v-time-display {
    font-size: 0.72rem;
    min-width: 30px;
  }
}

/* 4. Ultra Small Mobile Screens (< 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 8.8vw, 2.6rem);
  }
  .cup-container {
    height: 36px;
  }
  .slide-card {
    width: 230px;
    height: 155px;
    border-radius: 14px;
  }
  .showcase-card {
    padding: 0.75rem;
  }
  .frames-trio {
    gap: 0.25rem;
  }
  .tag-pill {
    font-size: 0.6rem;
    padding: 0.18rem 0.45rem;
  }
}

/* ==========================================================================
   3D POP-UP COVERFLOW CAROUSEL SECTION (INTERACTIVE STACK)
   ========================================================================== */
.coverflow-section {
  position: relative;
  width: 100%;
  padding: 7rem 0 8rem 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  z-index: 10;
}

.coverflow-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.coverflow-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.coverflow-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.25);
  border-radius: 9999px;
}

.coverflow-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.coverflow-subline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* 3D Stage & Navigation */
.coverflow-wrapper {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4.5rem 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.coverflow-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 16, 22, 0.95);
  border: 2px solid var(--accent-orange);
  color: #FFF;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 85, 0, 0.45);
  transition: all var(--transition-fast);
  user-select: none;
}

.coverflow-prev { left: 10px; }
.coverflow-next { right: 10px; }

.coverflow-nav-btn:hover {
  background: var(--accent-orange);
  color: #FFF;
  border-color: #FF8C00;
  transform: translateY(-50%) scale(1.18);
  box-shadow: 0 0 40px rgba(255, 85, 0, 0.95), 0 15px 35px rgba(0, 0, 0, 0.95);
}

.coverflow-track-viewport {
  width: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 620px;
}

.coverflow-track {
  position: relative;
  width: 100%;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* Card styling matching user drawing sequence - Much bigger prominence */
.coverflow-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 470px;
  margin-left: -175px;
  margin-top: -235px;
  border-radius: 26px;
  cursor: pointer;
  transform-style: preserve-3d;
  background: rgba(16, 16, 22, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.45s ease, 
              border-color 0.45s ease,
              opacity 0.45s ease;
  overflow: hidden;
  user-select: none;
  will-change: transform, opacity;
}

.card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-media {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFF;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-content {
  padding: 1rem 1.25rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.card-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

.card-action-btn {
  margin-top: 0.8rem;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.9) 0%, rgba(255, 153, 0, 0.9) 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.55rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-kanit);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
  transition: all var(--transition-fast);
}

.card-action-btn .btn-arrow {
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

/* Single Center Spotlight Card Pop */
.coverflow-card.active-card {
  border-color: var(--accent-orange) !important;
  background: rgba(22, 22, 34, 0.98) !important;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.98), 
              0 0 50px rgba(255, 85, 0, 0.85), 
              inset 0 0 25px rgba(255, 140, 0, 0.5) !important;
}

.coverflow-card:not(.active-card):hover {
  border-color: rgba(255, 140, 0, 0.6);
  opacity: 0.92 !important;
}

.coverflow-card.active-card .card-media img {
  transform: scale(1.12);
}

.coverflow-card:hover .card-action-btn,
.coverflow-card.active-card .card-action-btn {
  background: linear-gradient(135deg, #FF5500 0%, #FF8C00 100%);
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.7);
}

.coverflow-card:hover .card-action-btn .btn-arrow,
.coverflow-card.active-card .card-action-btn .btn-arrow {
  transform: translateX(4px);
}

/* Responsive adjustments for 3D Coverflow */
@media (max-width: 1024px) {
  .coverflow-wrapper {
    padding: 3rem 16px;
  }
}

@media (max-width: 768px) {
  .coverflow-section {
    padding: 3rem 0 4rem 0;
  }
  .coverflow-wrapper {
    padding: 2rem 0;
    max-width: 100vw;
    overflow: hidden;
  }
  .coverflow-track-viewport {
    min-height: 480px;
  }
  .coverflow-track {
    height: 440px;
  }
  .coverflow-card {
    width: 270px;
    height: 380px;
    margin-left: -135px;
    margin-top: -190px;
    border-radius: 20px;
  }
  .card-media {
    height: 220px;
  }
  .card-title {
    font-size: 1.05rem;
  }
  .card-sub {
    font-size: 0.76rem;
  }
  .coverflow-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    z-index: 160;
  }
  .coverflow-prev { left: 8px; }
  .coverflow-next { right: 8px; }
}

@media (max-width: 480px) {
  .coverflow-track-viewport {
    min-height: 440px;
  }
  .coverflow-track {
    height: 400px;
  }
  .coverflow-card {
    width: 245px;
    height: 350px;
    margin-left: -122.5px;
    margin-top: -175px;
    border-radius: 18px;
  }
  .card-media {
    height: 195px;
  }
  .card-tag {
    font-size: 0.58rem;
    padding: 0.2rem 0.5rem;
  }
  .card-content {
    padding: 0.75rem 0.85rem 0.85rem 0.85rem;
  }
  .card-title {
    font-size: 0.92rem;
  }
  .card-sub {
    font-size: 0.7rem;
  }
  .card-action-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.68rem;
    margin-top: 0.4rem;
  }
  .coverflow-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
  .coverflow-prev { left: 4px; }
  .coverflow-next { right: 4px; }
}

/* ==========================================================================
   PACKAGES & PRICING SECTION
   ========================================================================== */
.pricing-section {
  position: relative;
  width: 100%;
  padding: 100px 75px 80px 75px;
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-subtitle {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-orange);
  display: inline-block;
  margin-bottom: 12px;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--text-main);
}

/* 3 Pricing Cards Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 25px;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 42px 32px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Featured Middle Card (BRAND PACK) */
.pricing-card.featured-card {
  background: linear-gradient(180deg, #181624 0%, #101017 100%);
  border: 2px solid var(--accent-orange);
  box-shadow: 0 0 35px rgba(255, 85, 0, 0.25);
  transform: scale(1.03);
  z-index: 3;
}

.pricing-card.featured-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 0 50px rgba(255, 85, 0, 0.4);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
  color: #070709;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 85, 0, 0.4);
  white-space: nowrap;
}

.pricing-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-header {
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.price-period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}

.plan-features {
  list-style: none;
  margin-bottom: 35px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.95rem;
  font-weight: 500;
  color: #D1D1D8;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
}

.feature-check {
  color: var(--accent-orange);
  font-weight: 900;
  font-size: 1.1rem;
}

.pricing-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  margin-top: auto;
}

.featured-cta-btn {
  background: linear-gradient(135deg, var(--gold-metallic-light), var(--gold-metallic-mid));
  color: var(--text-dark);
}

/* Footnote */
.pricing-footnote {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 80px;
  text-transform: none;
  line-height: 1.6;
}

.pricing-recommend-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.pricing-recommend-link:hover {
  color: var(--accent-amber);
  opacity: 0.9;
}

/* Three-Step Horizontal Process Block (HOW IT WORKS) */
.process-block {
  margin-top: 30px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 45px;
  color: var(--text-main);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 85, 0, 0.3);
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 0.95rem;
  color: #B0B0BD;
  line-height: 1.5;
  text-transform: none;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .pricing-section {
    padding: 70px 40px 60px 40px;
  }
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .pricing-card.featured-card {
    transform: none;
  }
  .pricing-card.featured-card:hover {
    transform: translateY(-6px);
  }
  .pricing-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 50px 20px 40px 20px;
  }
  .pricing-card {
    padding: 30px 22px;
  }
  .plan-price {
    font-size: 2.1rem;
  }
}
