/* ==========================================================================
   YAANRUP — RUPAYAN MONDAL | CREATIVE DESIGNER & WEB EXPERIENCES
   Design System & Vanilla CSS — Inspired by ohhmydesign.com
   Featuring Vastago Grotesk Bold Typography & Dynamic Day/Night UI
   ========================================================================== */

/* Vastago Grotesk Display Stack */
@font-face {
  font-family: 'Vastago Grotesk';
  src: local('Vastago Grotesk Bold'), local('VastagoGrotesk-Bold'), local('Vastago Grotesk');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors */
  --color-bg-top: #4FA8F3;
  --color-bg-mid: #7AC5FA;
  --color-bg-bottom: #94D3FC;
  --color-orange: #FF5522;
  --color-orange-hover: #E64819;
  --color-orange-glow: rgba(255, 85, 34, 0.45);

  --color-dark: #0F1218;
  --color-dark-card: #131720;
  --color-dark-card-hover: #181D28;
  --color-light-card: #FFFFFF;
  --color-light-card-hover: #F8FAFC;

  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #F8FAFC;
  --color-text-light-muted: #94A3B8;

  --color-accent-blue: #2563EB;
  --color-accent-green: #10B981;
  --color-accent-yellow: #EAB308;

  --border-dashed: 1px dashed rgba(15, 23, 42, 0.3);
  --border-dashed-light: 1px dashed rgba(255, 255, 255, 0.25);
  --border-solid-light: 1px solid rgba(255, 255, 255, 0.15);
  --border-solid-dark: 1px solid rgba(15, 23, 42, 0.1);

  /* Typography - Vastago Grotesk Bold as Primary */
  --font-main: 'Vastago Grotesk', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: 'Caveat', cursive;
  --font-mono: 'Space Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-orange: 0 8px 30px rgba(255, 85, 34, 0.35);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(180deg, var(--color-bg-top) 0%, var(--color-bg-mid) 45%, var(--color-bg-bottom) 100%);
  color: var(--color-text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   ANIMATED FLUFFY BACKGROUND CLOUDS
   ========================================================================== */
.clouds-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  color: #FFFFFF;
  will-change: transform, filter;
  transition: opacity 0.5s ease;
}

/* Realistic Multi-Layer Cloud Depth with Soft Background Blur */
.cloud-1 {
  top: 5%;
  left: -8%;
  width: 500px;
  opacity: 0.72;
  filter: blur(8px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  transform: scale(1.35);
  animation: cloudDriftRight 75s ease-in-out infinite alternate;
}

.cloud-2 {
  top: 18%;
  right: -6%;
  width: 580px;
  opacity: 0.88;
  filter: blur(3px) drop-shadow(0 18px 36px rgba(0, 0, 0, 0.07));
  transform: scale(1.15);
  animation: cloudDriftLeft 65s ease-in-out infinite alternate;
}

.cloud-3 {
  top: 40%;
  left: 3%;
  width: 440px;
  opacity: 0.95;
  filter: blur(0.6px) drop-shadow(0 25px 50px rgba(0, 0, 0, 0.12));
  transform: scale(1);
  animation: cloudDriftRight 50s ease-in-out infinite alternate;
}

.cloud-4 {
  top: 56%;
  right: 8%;
  width: 520px;
  opacity: 0.65;
  filter: blur(9px) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.06));
  transform: scale(1.4);
  animation: cloudDriftLeft 80s ease-in-out infinite alternate;
}

.cloud-5 {
  top: 73%;
  left: 12%;
  width: 480px;
  opacity: 0.82;
  filter: blur(4px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  transform: scale(1.2);
  animation: cloudDriftRight 60s ease-in-out infinite alternate;
}

.cloud-6 {
  top: 84%;
  right: 15%;
  width: 540px;
  opacity: 0.92;
  filter: blur(1.5px) drop-shadow(0 24px 48px rgba(0, 0, 0, 0.1));
  transform: scale(1.08);
  animation: cloudDriftLeft 55s ease-in-out infinite alternate;
}

@keyframes cloudDriftRight {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(90px, -18px) scale(1.03);
  }
  100% {
    transform: translate(-30px, 10px) scale(1);
  }
}

@keyframes cloudDriftLeft {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-100px, 20px) scale(1.04);
  }
  100% {
    transform: translate(40px, -12px) scale(1);
  }
}

/* ==========================================================================
   TOP SCALE RULER BAR across Screen Width
   ========================================================================== */
.top-ruler-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-text-main);
  user-select: none;
}

.ruler-ticks-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  overflow: hidden;
}

.ruler-logo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--color-dark);
}

.ruler-logo-icon {
  color: var(--color-orange);
}

.ruler-scroll-pill {
  background: var(--color-dark);
  color: #FFFFFF;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
}

.ruler-scale-ticks {
  display: flex;
  align-items: center;
  gap: 36px;
  opacity: 0.55;
  font-size: 10px;
}

.ruler-scale-ticks span {
  position: relative;
}

.ruler-scale-ticks span::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 1px;
  height: 4px;
  background: currentColor;
}

.ruler-live-clock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.green-dot {
  background: var(--color-accent-green);
  box-shadow: 0 0 8px var(--color-accent-green);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

/* ==========================================================================
   FLOATING NAVIGATION BAR
   ========================================================================== */
.navbar-header {
  position: sticky;
  top: 50px;
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 900;
}

.nav-pill-left {
  background: #FFFFFF;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.nav-pill-center {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 5px 6px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.nav-link {
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  background: rgba(15, 23, 42, 0.06);
}

.nav-link.active {
  color: var(--color-orange);
}

.nav-contact-btn {
  background: var(--color-dark);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  transition: var(--transition-fast);
}

.nav-contact-btn:hover {
  background: var(--color-orange);
  transform: translateY(-1px);
}

.nav-pill-right {
  background: #FFFFFF;
  color: var(--color-text-main);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.nav-pill-right:hover {
  color: var(--color-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   SECTION 1: HERO SECTION
   ========================================================================== */
.page-main-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 24px;
  position: relative;
  z-index: 10;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0 40px 0;
  position: relative;
}

/* Figma Selection Badge Top */
.hero-figma-badge {
  position: relative;
  border: 1px dashed rgba(15, 23, 42, 0.4);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
}

.badge-highlight {
  color: var(--color-orange);
  font-weight: 700;
}

.figma-handle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FFFFFF;
  border: 1.5px solid var(--color-accent-blue);
  z-index: 2;
}

.handle-tl {
  top: -3px;
  left: -3px;
}

.handle-tr {
  top: -3px;
  right: -3px;
}

.handle-bl {
  bottom: -3px;
  left: -3px;
}

.handle-br {
  bottom: -3px;
  right: -3px;
}

/* Giant Patterned Headline with Halftone Texture & Vastago Grotesk */
.hero-headline-wrapper {
  margin: 10px 0 32px 0;
  position: relative;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(3.8rem, 8.5vw, 6.5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-dark);

  /* Halftone SVG Pattern overlay inside text */
  background-image:
    radial-gradient(circle, rgba(255, 85, 34, 0.18) 1.5px, transparent 1.5px),
    linear-gradient(135deg, var(--color-dark) 0%, #1E293B 100%);
  background-size: 10px 10px, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform var(--transition-smooth);
}

.hero-title:hover {
  transform: scale(1.01);
}

/* Figma Statement Box Below Headline */
.hero-statement-box {
  position: relative;
  max-width: 680px;
  border: 1px dashed rgba(15, 23, 42, 0.35);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  padding: 24px 32px;
  border-radius: 8px;
  margin-bottom: 36px;
  text-align: left;
}

.statement-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.box-tag-blue {
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-accent-blue);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.box-tag-orange {
  color: var(--color-orange);
  font-weight: 700;
}

.statement-box-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-main);
  font-weight: 500;
}

/* Hero CTA Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-primary-orange {
  background: var(--color-orange);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-orange);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-primary-orange:hover {
  background: var(--color-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 85, 34, 0.5);
}

.btn-secondary-pill {
  background: #FFFFFF;
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.btn-secondary-pill:hover {
  background: var(--color-text-main);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Hero Footer Meta */
.hero-footer-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  padding-top: 24px;
}

.font-mono {
  font-family: var(--font-mono);
}

.meta-line {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 1px;
}

.meta-line-sub {
  font-size: 10px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.hero-meta-right {
  text-align: right;
}

/* ==========================================================================
   GENERAL SECTION STYLING & SCRIPT TITLES
   ========================================================================== */
.section-container {
  margin-top: 100px;
  padding-top: 40px;
}

.section-header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-script-title {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--color-orange);
  font-weight: 700;
  transform: rotate(-4deg);
  margin-bottom: 4px;
}

.section-main-title {
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-dark);
  text-transform: uppercase;
}

.text-orange {
  color: var(--color-orange);
}

/* ==========================================================================
   SECTION 2: ABOUT / "WHAT'S UP" (BENTO GRID)
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
}

.bento-card {
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-light {
  background: var(--color-light-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.card-dark {
  background: var(--color-dark-card);
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  /* Subtle dot grid */
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.card-top-tag {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card-dark .card-top-tag {
  color: var(--color-text-light-muted);
}

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

/* Bento Card 1: Large Statement */
.bento-card-large {
  grid-column: span 8;
  grid-row: span 2;
  padding: 36px 40px;
}

.quote-mark-icon {
  font-family: var(--font-script);
  font-size: 72px;
  color: var(--color-orange);
  line-height: 0.5;
  margin-top: 10px;
}

.bento-statement-title {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0;
  color: var(--color-dark);
}

.bento-statement-p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 95%;
  margin-bottom: 24px;
}

.bento-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 20px;
  font-size: 11px;
}

.status-badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Bento Card 2: Metrics */
.bento-card-metrics {
  grid-column: span 4;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

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

.metric-value {
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  font-size: 11px;
  color: var(--color-text-light-muted);
  margin-top: 4px;
}

.metric-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Bento Card 3: Capabilities */
.bento-card-capabilities {
  grid-column: span 5;
  grid-row: span 1;
}

.capabilities-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  align-content: flex-start;
}

.cap-pill {
  background: rgba(15, 23, 42, 0.05);
  color: var(--color-text-main);
  padding: 8px 15px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.cap-pill:hover {
  background: var(--color-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cap-icon {
  color: var(--color-orange);
}

.cap-pill:hover .cap-icon {
  color: #FFFFFF;
}

/* Bento Card 4: Interactive Frame */
.bento-card-frame {
  grid-column: span 4;
  grid-row: span 1;
  padding: 24px;
}

.interactive-preview-ui {
  margin-top: 12px;
}

.preview-tag-orange {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-orange);
  font-weight: 700;
}

.preview-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  margin: 6px 0 14px 0;
}

.preview-btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-orange);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  transition: var(--transition-fast);
}

.preview-btn-orange:hover {
  background: #FFFFFF;
  color: var(--color-dark);
}

.frame-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--color-text-light-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  margin-top: 10px;
}

.frame-size-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Bento Card 5: Tools & Specialization */
.bento-card-tools {
  grid-column: span 3;
  grid-row: span 1;
}

.tools-title {
  font-size: 18px;
  font-weight: 800;
  margin: 8px 0 12px 0;
}

.tools-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
}

.tools-pill-group span {
  background: rgba(15, 23, 42, 0.06);
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.equalizer-bars-group {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 24px;
  margin-top: 16px;
}

.bar {
  flex: 1;
  background: var(--color-orange);
  border-radius: 2px;
  animation: bounceBar 1.5s ease-in-out infinite alternate;
}

.bar-1 {
  height: 60%;
  animation-delay: 0.1s;
}

.bar-2 {
  height: 100%;
  animation-delay: 0.3s;
}

.bar-3 {
  height: 40%;
  animation-delay: 0.2s;
}

.bar-4 {
  height: 80%;
  animation-delay: 0.4s;
}

.bar-5 {
  height: 50%;
  animation-delay: 0.15s;
}

@keyframes bounceBar {
  0% {
    transform: scaleY(0.4);
  }

  100% {
    transform: scaleY(1);
  }
}

/* Bento Card 6: Client Review Card */
.bento-card-review {
  grid-column: span 12;
  grid-row: span 1;
  border: var(--border-dashed);
}

.review-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  color: #FACC15;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-quote-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-main);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
}

.author-role {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   SECTION 3: PROCESS / Slack Chat ("NO FORMS. NO HOOPS.")
   ========================================================================== */
.subtitle-pill-tag {
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.chat-process-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chat-top-header {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
}

.chat-channel-name {
  font-weight: 700;
  font-size: 13px;
}

.chat-online-badge {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-light-muted);
}

.chat-body {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-step-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  position: relative;
}

.chat-step-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.chat-step-divider span {
  position: relative;
  background: var(--color-dark-card);
  padding: 0 16px;
  font-size: 10px;
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 1px;
}

.chat-message {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.msg-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.avatar-user {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.avatar-yaanrup {
  background: var(--color-orange);
  color: #FFFFFF;
}

.msg-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msg-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.msg-author {
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
}

.msg-time {
  font-size: 11px;
  color: var(--color-text-light-muted);
}

.msg-bubble {
  color: #E2E8F0;
  font-size: 15px;
  line-height: 1.5;
}

.msg-attachment-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: #FFFFFF;
}

.att-icon {
  font-size: 16px;
}

/* ==========================================================================
   SECTION 4: SERVICES / WHAT I MAKE (BENTO GRID WITH SOFTWARE TOOLS)
   ========================================================================== */
.services-editorial-list {
  display: flex;
  flex-direction: column;
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.service-list-row {
  display: grid;
  grid-template-columns: 220px 160px 1fr 280px;
  align-items: center;
  gap: 32px;
  padding: 36px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  background: transparent;
}

.service-list-row:hover {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 0 25px rgba(255, 85, 34, 0.1);
  border-color: transparent;
  transform: scale(1.01);
  z-index: 2;
}

.service-row-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-row-num {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.service-list-row:hover .service-row-num {
  color: var(--color-orange);
}

.service-row-title {
  font-size: 28px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.03em;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.service-list-row:hover .service-row-title {
  color: var(--color-orange);
}

.service-row-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.service-tag-pill {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.02em;
}

.service-row-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row-desc p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.service-row-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tool-badge-pill {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #334155;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.service-list-row:hover .tool-badge-pill {
  background: #FFFFFF;
  border-color: #CBD5E1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.service-row-media {
  width: 280px;
  height: 165px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1E293B;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  background: #090E17;
}

.service-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-list-row:hover .service-row-media {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35), 0 0 28px rgba(255, 85, 34, 0.35);
  border-color: var(--color-orange);
}

.service-list-row:hover .service-media-img {
  transform: scale(1.06);
}

/* Responsive Table Layout for Tablet and Mobile */
@media (max-width: 1024px) {
  .service-list-row {
    grid-template-columns: 200px 140px 1fr 180px;
    gap: 20px;
    padding: 28px 16px;
  }
  .service-row-title {
    font-size: 22px;
  }
  .service-row-media {
    width: 180px;
    height: 110px;
  }
}

@media (max-width: 768px) {
  .service-list-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 16px;
  }
  .service-row-left {
    width: 100%;
    justify-content: flex-start;
  }
  .service-row-title {
    font-size: 24px;
  }
  .service-row-tags {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .service-row-media {
    width: 100%;
    height: 190px;
    margin-top: 8px;
  }
}

/* ==========================================================================
   SECTION 5: COMPARISON ("SAME BRIEF. DIFFERENT STUDIO.")
   ========================================================================== */
.comparison-figma-window {
  max-width: 980px;
  margin: 0 auto;
  background: #11141D;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.figma-window-titlebar {
  background: #181C28;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-size: 12px;
}

.titlebar-dots {
  display: flex;
  gap: 6px;
}

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

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

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

.comparison-content-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 40px;
  gap: 24px;
}

.comparison-card {
  background: #151924;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.card-locked {
  opacity: 0.65;
}

.card-selected {
  border: 2px solid var(--color-orange);
  background: #181E2C;
  box-shadow: 0 0 30px rgba(255, 85, 34, 0.15);
}

.comp-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 16px;
}

.comp-col-title {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: capitalize;
}

.tag-locked {
  background: rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  margin-left: auto;
}

.selected-top-tags {
  position: absolute;
  top: -14px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pick-this-badge {
  background: var(--color-orange);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(255, 85, 34, 0.4);
}

.tag-editing {
  background: #2563EB;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.selected-bottom-tag {
  position: absolute;
  bottom: -11px;
  right: 20px;
  background: var(--color-orange);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.comp-avatar-orange {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  color: #E2E8F0;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.icon-cross {
  color: #EF4444;
  font-weight: 800;
}

.icon-check {
  color: var(--color-orange);
  font-weight: 800;
}

.comparison-vs-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 50%;
}

.comparison-footer-banner {
  background: rgba(255, 85, 34, 0.1);
  border-top: 1px solid rgba(255, 85, 34, 0.25);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
}

.btn-banner-work {
  background: var(--color-orange);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-banner-work:hover {
  background: #FFFFFF;
  color: var(--color-dark);
}

/* ==========================================================================
   SECTION 5: FEATURED WORKS
   ========================================================================== */
.tooltip-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-dark);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-top: 12px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.tooltip-arrow {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-dark);
}

/* Floating Preview Image Container */
.work-preview-float {
  position: fixed;
  width: 380px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: scale(0.8) translate(-50%, -100%);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid #FFFFFF;
  background: #0F172A;
  will-change: transform, opacity, left, top;
}

.work-preview-float.visible {
  opacity: 1;
  transform: scale(1) translate(-50%, -120%);
}

.work-preview-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.15s ease;
}

/* Works Table */
.works-list-table {
  max-width: 980px;
  margin: 40px auto 0 auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.work-item-row {
  display: grid;
  grid-template-columns: 70px 1fr auto 90px 60px;
  align-items: center;
  padding: 24px 32px;
  text-decoration: none;
  color: var(--color-text-main);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  transition: var(--transition-fast);
}

.work-item-row:last-child {
  border-bottom: none;
}

.work-item-row:hover {
  background: #FFFFFF;
  transform: translateX(6px);
}

.work-col-num {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 700;
}

.work-col-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-dark);
}

.work-col-tags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-orange {
  color: var(--color-orange);
  font-size: 11px;
  font-weight: 700;
}

.tag-pill {
  background: rgba(15, 23, 42, 0.06);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.work-col-year {
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
}

.work-col-action {
  text-align: right;
}

.action-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #FFFFFF;
  font-weight: 700;
  transition: var(--transition-fast);
}

.work-item-row:hover .action-icon-circle {
  background: var(--color-orange);
  transform: rotate(45deg);
}

/* ==========================================================================
   SECTION 6: TESTIMONIALS / "LOVED BY CLIENTS" (STACKED CARDS DECK)
   ========================================================================== */
.testimonials-deck-wrapper {
  max-width: 660px;
  margin: 20px auto 0 auto;
  position: relative;
  min-height: 380px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFEAD4;
  border: 1px solid #FED7AA;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 40px rgba(124, 45, 18, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  cursor: pointer;
}

.test-card-active {
  z-index: 30;
  transform: translateY(0) scale(1);
  opacity: 1;
}

.test-card-second {
  z-index: 20;
  transform: translateY(18px) scale(0.96) rotate(2deg);
  opacity: 0.85;
  background: #FFF3E6;
}

.test-card-third {
  z-index: 10;
  transform: translateY(36px) scale(0.92) rotate(-2deg);
  opacity: 0.65;
  background: #FFFFFF;
}

.test-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.test-tag {
  color: #C2410C;
  font-weight: 700;
  font-size: 12px;
}

.test-stars {
  color: var(--color-orange);
  font-size: 20px;
  letter-spacing: 2px;
}

.test-quote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  color: #431407;
  margin-bottom: 28px;
}

.test-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(194, 65, 12, 0.15);
  padding-top: 20px;
}

.test-author-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.test-name {
  font-weight: 800;
  font-size: 16px;
  color: #431407;
}

.test-title {
  font-size: 11px;
  color: #9A3412;
}

.test-like-btn {
  background: rgba(255, 85, 34, 0.12);
  border: 1px solid rgba(255, 85, 34, 0.3);
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.test-like-btn:hover,
.test-like-btn.liked {
  background: var(--color-orange);
  color: #FFFFFF;
  transform: scale(1.08);
}

.test-controls {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
}

.btn-deck-shuffle {
  background: var(--color-dark);
  color: #FFFFFF;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.btn-deck-shuffle:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}

/* ==========================================================================
   SECTION 7: PRICING ("PICK YOUR PLAN.")
   ========================================================================== */
.pricing-card-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-card-single {
  background: var(--color-dark-card);
  color: #FFFFFF;
  border: 2px solid var(--color-orange);
  border-radius: 24px;
  padding: 44px;
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25), 0 0 40px rgba(255, 85, 34, 0.15);
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.pricing-card-top {
  text-align: center;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 28px;
}

.pricing-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 85, 34, 0.15);
  color: var(--color-orange);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-plan-title {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 14px;
}

.pricing-plan-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light-muted);
  max-width: 560px;
  margin: 0 auto;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
  font-size: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E2E8F0;
}

.feat-check {
  color: var(--color-orange);
  font-weight: 800;
  font-size: 18px;
}

.pricing-cta-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pricing-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.btn-pricing-book {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-pricing-short {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-pricing-short:hover {
  background: #FFFFFF;
  color: var(--color-dark);
}

.pricing-email-row {
  font-size: 13px;
  color: var(--color-text-light-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-email-link {
  color: var(--color-orange);
  font-weight: 700;
  text-decoration: none;
}

.pricing-email-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   SECTION 8: CTA / DYNAMIC DAY & NIGHT ("SO ARE WE." / "IDEAS DON'T SLEEP.")
   EXACT REFERENCE DESIGN
   ========================================================================== */
.cta-section {
  text-align: center;
  max-width: 680px;
  margin: 120px auto 40px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cursive title "got an idea?" above headline */
.cta-section .section-script-title {
  margin-bottom: 8px;
}

/* Dynamic Headline: SO ARE WE. or IDEAS DON'T SLEEP. */
.cta-dynamic-title {
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

/* Folded Beige Sticky Note Badge (Reference Exact) */
.cta-sticky-note {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #FEEED8;
  border: 1px solid #FCD34D;
  color: #451A03;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  margin-top: 6px;
  margin-bottom: 32px;
  transform: rotate(-1.5deg);
  transition: transform var(--transition-fast);
}

.cta-sticky-note:hover {
  transform: rotate(0deg) scale(1.04);
}

/* Folded paper corner triangle */
.note-fold-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #D97706 transparent;
  opacity: 0.55;
  pointer-events: none;
}

/* Icon graphic container */
.cta-icon-wrapper {
  margin: 16px 0 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.cta-sun-icon {
  animation: rotateSun 25s linear infinite;
  filter: drop-shadow(0 6px 16px rgba(255, 85, 34, 0.35));
}

@keyframes rotateSun {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cta-moon-icon {
  animation: floatMoon 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(15, 23, 42, 0.15));
}

@keyframes floatMoon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(-6deg);
  }
}

.cta-time-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 28px;
  max-width: 480px;
}

.cta-buttons-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-main-btn {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 100px;
  box-shadow: 0 10px 32px rgba(255, 85, 34, 0.4);
}

.cta-sub-link {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--transition-fast);
}

.cta-sub-link:hover {
  color: var(--color-orange);
}

/* ==========================================================================
   SECTION 9: FAQ / "THE NOSY SECTION"
   ========================================================================== */
.faq-section {
  max-width: 760px;
  margin: 100px auto 80px auto;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.9);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 22px;
  color: var(--color-orange);
  transition: transform var(--transition-fast);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 28px;
}

.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ==========================================================================
   SECTION 10: FOOTER (EXACT REFERENCE OHHMYDESIGN STYLE)
   ========================================================================== */
.site-footer-container {
  max-width: 1200px;
  margin: 80px auto 40px auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.footer-card {
  background: var(--color-dark);
  color: #FFFFFF;
  border-radius: 28px;
  padding: 48px 56px 32px 56px;
  position: relative;
  overflow: hidden;
  /* Dotted grid */
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
}

.footer-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-text-light-muted);
  margin-bottom: 60px;
}

.btn-scroll-top {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition-fast);
}

.btn-scroll-top:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.footer-cta-area {
  margin-bottom: 70px;
}

.footer-subtitle {
  font-size: 13px;
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-email-big {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  font-weight: 900;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  line-height: 1.1;
  transition: var(--transition-fast);
}

.footer-email-big:hover {
  color: var(--color-orange);
}

.email-arrow {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--color-orange);
}

.footer-btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.footer-available-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
}

/* Footer Link Columns */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-bottom: 80px;
}

.footer-col-title {
  font-size: 11px;
  color: var(--color-text-light-muted);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-list a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-col-list a:hover {
  color: var(--color-orange);
  transform: translateX(4px);
  display: inline-block;
}

/* Huge Bottom Brand Watermark */
.footer-brand-watermark {
  font-family: var(--font-main);
  font-size: clamp(4.5rem, 15vw, 12.5rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  user-select: none;
  margin-bottom: 30px;
}

.brand-char-orange {
  color: var(--color-orange);
}

/* Bottom Status Bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 11px;
  color: var(--color-text-light-muted);
}

@media (max-width: 1024px) {

  .bento-card-large,
  .service-card-large,
  .service-card-medium,
  .service-card-uiux,
  .service-card-web,
  .service-card-brand,
  .service-card-thumb,
  .service-card-video {
    grid-column: span 12 !important;
  }

  .bento-card-metrics {
    grid-column: span 12;
    flex-direction: row;
    justify-content: space-around;
  }

  .bento-card-capabilities,
  .bento-card-frame,
  .bento-card-tools,
  .bento-card-review {
    grid-column: span 12;
  }

  .comparison-content-grid {
    grid-template-columns: 1fr;
  }

  .comparison-vs-badge {
    margin: 0 auto;
  }

  .footer-links-grid {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (hover: none) or (max-width: 768px) {
  .work-preview-float {
    display: none !important;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .page-main-container,
  .section-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .top-ruler-bar {
    padding: 0 12px;
  }

  .ruler-scale-ticks {
    display: none;
  }

  .navbar-header {
    justify-content: center;
    margin-top: 14px;
    gap: 0;
    width: 95%;
    max-width: 100%;
  }

  .nav-pill-left,
  .nav-pill-right {
    display: none !important;
  }

  .nav-pill-center {
    width: 100%;
    justify-content: space-around;
    margin-top: 0;
    overflow-x: auto;
    padding: 8px 12px;
    gap: 6px;
    scrollbar-width: none;
  }
  .nav-pill-center::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 6px 12px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Reliable Auto Layout for Hero on Mobile */
  .hero-section {
    padding: 40px 16px 20px;
    box-sizing: border-box;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 8.5vw, 3.4rem);
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-statement-box {
    width: 100%;
    box-sizing: border-box;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary-orange,
  .btn-secondary-pill {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }

  /* Reliable Auto Layout for Bento Grid on Mobile */
  .bento-grid,
  .services-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .bento-card,
  .service-card {
    grid-column: 1 / -1 !important;
    width: 100%;
    padding: 24px 20px;
    box-sizing: border-box;
  }

  .bento-card-metrics {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .capabilities-pills-wrap,
  .tools-pill-group,
  .service-tool-pills-row,
  .chat-top-header,
  .comp-header-row,
  .selected-top-tags {
    flex-wrap: wrap;
    gap: 8px;
  }

  .brand-swatches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .swatch-chip {
    height: 80px;
  }

  .chat-body {
    padding: 16px 14px;
  }

  .msg-content {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .msg-attachment-card {
    flex-wrap: wrap;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Reliable Auto Layout for Featured Works on Mobile */
  .works-list-table {
    width: 100%;
    box-sizing: border-box;
  }

  .work-item-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 16px;
    box-sizing: border-box;
  }

  .work-col-num {
    flex: 0 0 auto;
    width: 36px;
  }

  .work-col-title {
    flex: 1 1 auto;
    font-size: 20px;
    word-break: break-word;
  }

  .work-col-action {
    flex: 0 0 auto;
  }

  .work-col-tags {
    display: flex !important;
    flex-wrap: wrap;
    width: 100%;
    gap: 6px;
    padding-left: 36px;
    margin-top: 4px;
  }

  .work-col-year {
    display: none;
  }

  /* Reliable Auto Layout for Testimonials & Comparison on Mobile */
  .testimonial-card,
  .comparison-card {
    width: 100%;
    box-sizing: border-box;
    padding: 26px 18px;
  }

  .test-footer {
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Reliable Auto Layout for Pricing & CTA on Mobile */
  .pricing-card-single {
    padding: 28px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .pricing-plan-title {
    font-size: 28px;
    word-break: break-word;
  }

  .pricing-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary-orange.btn-pricing-book,
  .btn-secondary-pill.btn-pricing-short {
    width: 100%;
    justify-content: center;
  }

  .pricing-email-row {
    flex-wrap: wrap;
    word-break: break-all;
    text-align: center;
  }

  .cta-section {
    padding: 40px 16px;
    box-sizing: border-box;
    width: 100%;
  }

  .cta-dynamic-title {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
    word-break: break-word;
  }

  .cta-buttons-wrap {
    flex-direction: column;
    width: 100%;
    gap: 14px;
    align-items: center;
  }

  .cta-main-btn {
    width: 100%;
    justify-content: center;
  }

  /* Reliable Auto Layout for FAQ & Footer on Mobile */
  .faq-question {
    padding: 18px 14px;
    font-size: 16px;
    gap: 12px;
    text-align: left;
  }

  .faq-answer p {
    padding: 0 14px 18px;
    font-size: 14px;
  }

  .footer-card {
    padding: 32px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-email-big {
    font-size: clamp(1.3rem, 6.5vw, 2.2rem);
    word-break: break-word;
    line-height: 1.35;
  }

  .footer-btn-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }

  .footer-brand-watermark {
    font-size: clamp(2.8rem, 15vw, 6rem);
    overflow: hidden;
    text-align: center;
    width: 100%;
    word-break: keep-all;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 32px 12px 20px;
  }

  .hero-statement-box {
    padding: 18px 16px;
  }

  .bento-card,
  .service-card,
  .testimonial-card,
  .comparison-card,
  .pricing-card-single,
  .footer-card {
    padding: 22px 16px;
  }

  .bento-card-metrics {
    flex-direction: column;
    align-items: flex-start;
  }

  .chat-body {
    padding: 14px 14px;
  }

  .comparison-content-grid {
    padding: 20px 14px;
  }

  .test-quote {
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-time-text {
    font-size: 16px;
  }

  .work-col-tags {
    padding-left: 0;
  }

  .work-col-title {
    font-size: 18px;
  }
}