/* ==========================================================================
   FraigneauRender - Cinematic 3D LEGO Studio Stylesheet
   Design System: Dark Cinematic Studio, Glassmorphism, Luxury Lighting
   ========================================================================== */

:root {
  /* Core Color Palette */
  --bg-primary: #0a0c10;
  --bg-secondary: #11141b;
  --bg-tertiary: #181d26;
  --bg-card: rgba(20, 24, 34, 0.72);
  --bg-card-hover: rgba(28, 34, 48, 0.85);

  /* Glassmorphism & Borders */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-bright: rgba(255, 255, 255, 0.18);
  --border-accent: rgba(255, 59, 48, 0.4);

  /* Brand Accents */
  --accent-red: #ff3b30;
  --accent-red-glow: rgba(255, 59, 48, 0.35);
  --accent-orange: #ff9500;
  --accent-gold: #f59e0b;
  --accent-cyan: #00f0ff;
  --accent-cyan-glow: rgba(0, 240, 255, 0.3);
  --accent-fiverr: #1dbf73;
  --accent-fiverr-hover: #19a463;
  --accent-fiverr-glow: rgba(29, 191, 115, 0.35);

  /* Typography Colors */
  --text-primary: #f5f6f8;
  --text-secondary: #9aa2b1;
  --text-muted: #626977;
  --text-light: #ffffff;

  /* Typography Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Elevations */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.65);
  --shadow-glow-red: 0 0 35px rgba(255, 59, 48, 0.28);
  --shadow-glow-cyan: 0 0 35px rgba(0, 240, 255, 0.22);
  --shadow-glow-fiverr: 0 0 30px rgba(29, 191, 115, 0.3);

  /* Layout & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent body scrolling when mobile navigation drawer is active */
body.nav-open {
  overflow: hidden;
}

/* Ambient Background Lights */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.22) 0%, rgba(255, 149, 0, 0.08) 50%, transparent 70%);
  top: -100px;
  right: -100px;
}

.glow-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, rgba(29, 191, 115, 0.05) 50%, transparent 70%);
  top: 600px;
  left: -200px;
}

.glow-3 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.12) 0%, transparent 70%);
  bottom: 400px;
  right: -150px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
}

.gradient-text {
  background: linear-gradient(135deg, #ff3b30 0%, #ff9500 50%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center {
  text-align: center;
}

/* Glass Panel Reusable Utility */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--border-glass-bright);
}

/* Tech Pill Badge */
.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff3b30 0%, #e0281e 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 59, 48, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 59, 48, 0.5);
  filter: brightness(1.1);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.75s ease;
}

.btn-glow:hover::after {
  transform: rotate(25deg) translateY(100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  border: 1px solid var(--border-glass-bright);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.btn-fiverr {
  background: #1dbf73;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px var(--accent-fiverr-glow);
}

.btn-fiverr:hover {
  background: var(--accent-fiverr-hover);
  box-shadow: 0 6px 22px rgba(29, 191, 115, 0.55);
  transform: translateY(-2px);
}

.btn-outline-fiverr {
  background: rgba(29, 191, 115, 0.08);
  border: 1px solid rgba(29, 191, 115, 0.4);
  color: #1dbf73;
}

.btn-outline-fiverr:hover {
  background: #1dbf73;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.brand-accent {
  color: var(--accent-red);
}

.brand-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-cyan));
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-text-short {
  display: none;
}

.nav-mobile-footer {
  display: none;
}

.mobile-bottom-dock {
  display: none;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 5px;
  padding: 0;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}

.hero-header-content {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 48px;
}

.hero-title {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero-description {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 34px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Hero Stats Bar */
.hero-stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 24px;
  background-color: var(--border-glass);
}

/* ==========================================================================
   Hero Video Showcase Stage
   ========================================================================== */
.hero-video-wrapper {
  position: relative;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.video-ambient-glow {
  position: absolute;
  top: 10%;
  left: 5%;
  right: 5%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.28) 0%, rgba(0, 240, 255, 0.18) 50%, transparent 75%);
  filter: blur(60px);
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.video-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85);
}

.video-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000000;
  overflow: hidden;
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Top Bar Overlay */
.video-top-bar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.video-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
}

.video-spec-tag {
  padding: 6px 12px;
  background: rgba(10, 12, 16, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-cyan);
}

/* Center Play Button Overlay */
.video-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 59, 48, 0.88);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  box-shadow: 0 0 35px rgba(255, 59, 48, 0.55);
  transition: all var(--transition-fast);
}

.video-overlay-btn svg {
  margin-left: 4px;
}

.video-overlay-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #ff3b30;
  box-shadow: 0 0 45px rgba(255, 59, 48, 0.8);
}

.video-overlay-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

/* Custom Controls Bar */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 12, 16, 0.95) 0%, rgba(10, 12, 16, 0.6) 70%, transparent 100%);
  padding: 24px 20px 14px 20px;
  z-index: 20;
  opacity: 1;
  transition: opacity var(--transition-normal);
}

.video-player-container:hover .video-controls,
.video-player-container.paused .video-controls {
  opacity: 1;
}

.progress-bar-wrap {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 12px;
  touch-action: none;
  transition: height var(--transition-fast);
}

.progress-bar-wrap:hover {
  height: 8px;
}

.progress-bar-buffered {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}

.progress-bar-current {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
  border-radius: 3px;
}

.progress-scrubber-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.progress-bar-wrap:hover .progress-scrubber-thumb {
  opacity: 1;
}

.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls-left, .controls-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ctrl-btn {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.ctrl-btn:hover {
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.1);
}

.volume-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-slider {
  width: 70px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
}

.time-display {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
}

.time-display span:first-child {
  color: #ffffff;
}

.btn-jump-phase {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
}

.btn-jump-phase:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

/* Video Meta Bar Footer */
.video-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(14, 18, 25, 0.95);
  border-top: 1px solid var(--border-glass);
}

.video-meta-info {
  display: flex;
  flex-direction: column;
}

.meta-set-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.meta-set-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ==========================================================================
   Sections Common Structure
   ========================================================================== */
.section {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

.section-header {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Interactive 4-Phase Sequence Section
   ========================================================================== */
.phase-nav-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.phase-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(20, 24, 34, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-normal);
  color: var(--text-secondary);
}

.phase-tab:hover {
  background: rgba(28, 34, 48, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.phase-tab.active {
  background: rgba(28, 34, 48, 0.95);
  border-color: var(--accent-red);
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.25);
  color: #ffffff;
}

.tab-index {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.phase-tab.active .tab-index {
  color: var(--accent-red);
}

.tab-text {
  display: flex;
  flex-direction: column;
}

.tab-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.tab-time {
  font-size: 12px;
  color: var(--text-muted);
}

/* Phase Stage Card */
.phase-stage-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.phase-visual-wrap {
  position: relative;
  background-color: #07080a;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.phase-stage-card:hover .phase-image {
  transform: scale(1.03);
}

.phase-time-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-cyan);
}

.btn-seek-video {
  position: absolute;
  bottom: 18px;
  right: 18px;
}

.phase-content-wrap {
  padding: 38px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phase-header-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.phase-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}

.phase-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 26px;
}

.phase-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.phase-spec-card {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
}

.spec-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.spec-val {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid rgba(255, 59, 48, 0.25);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon-box {
  background: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.5);
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

/* ==========================================================================
   Pipeline Steps
   ========================================================================== */
.pipeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pipeline-step-card {
  padding: 30px 24px;
  position: relative;
}

.pipeline-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.step-num-badge {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-cyan);
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.step-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-glass);
  padding-top: 14px;
}

.step-checklist li {
  font-size: 12px;
  color: var(--text-muted);
  position: relative;
  padding-left: 16px;
}

.step-checklist li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-red);
}

/* ==========================================================================
   Pricing Packages (Fiverr)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-pricing {
  border: 1px solid rgba(255, 59, 48, 0.5);
  background: rgba(24, 28, 40, 0.88);
  box-shadow: 0 15px 45px rgba(255, 59, 48, 0.15);
  transform: scale(1.03);
}

.featured-pricing:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--accent-red);
  box-shadow: 0 20px 55px rgba(255, 59, 48, 0.3);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff3b30, #ff9500);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
}

.pricing-card-header {
  margin-bottom: 24px;
}

.package-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.featured-tag {
  color: var(--accent-red);
}

.package-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.package-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features li.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.check {
  color: #1dbf73;
  font-weight: bold;
}

.cross {
  color: var(--text-muted);
  font-weight: bold;
}

/* ==========================================================================
   About Thibault Fraigneau
   ========================================================================== */
.about-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  padding: 44px;
  align-items: center;
}

.about-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 240, 255, 0.2);
}

.avatar-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(29, 191, 115, 0.12);
  border: 1px solid rgba(29, 191, 115, 0.3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: #1dbf73;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background-color: #1dbf73;
  border-radius: 50%;
  box-shadow: 0 0 8px #1dbf73;
  animation: pulse-dot 2s infinite;
}

.about-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
}

.about-bio {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}

.about-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 26px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Commission Inquiry / Brief Generator
   ========================================================================== */
.inquiry-card {
  padding: 44px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 12, 16, 0.7);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.3);
}

.form-textarea {
  resize: vertical;
}

.brief-preview-box {
  background: #07080b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.brief-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.preview-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-cyan);
}

.preview-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.brief-code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #a8b3cf;
  white-space: pre-wrap;
  line-height: 1.5;
}

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-box {
  padding: 60px 40px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.contact-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 59, 48, 0.12);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: var(--accent-red);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.contact-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

.direct-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-item-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-item-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item-val {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #11141b;
  border: 1px solid #1dbf73;
  color: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-notification svg {
  color: #1dbf73;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #07080c;
  border-top: 1px solid var(--border-glass);
  padding: 50px 0 35px 0;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.disclaimer {
  font-size: 11.5px;
  color: #495060;
  line-height: 1.5;
}

/* Utility Hidden */
.hidden {
  display: none !important;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile User-Experience Optimizations
   ========================================================================== */

/* Tablet Breakpoint */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .phase-nav-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .phase-stage-card {
    grid-template-columns: 1fr;
  }
  .phase-visual-wrap {
    min-height: 320px;
    height: 340px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pipeline-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .featured-pricing {
    transform: none;
  }
  .featured-pricing:hover {
    transform: translateY(-4px);
  }
  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-meta-row, .about-cta-row {
    justify-content: center;
  }
}

/* Smartphone / Mobile Breakpoint */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Header & Navigation */
  .nav-container {
    height: 60px;
  }
  .brand-logo {
    gap: 9px;
  }
  .brand-logo .logo-icon {
    width: 28px;
    height: 28px;
  }
  .brand-logo .brand-name {
    font-size: 16px;
  }
  .brand-logo .brand-badge {
    display: none;
  }
  .nav-actions {
    gap: 10px;
  }
  .nav-actions .btn-fiverr {
    padding: 7px 12px;
    font-size: 12.5px;
    border-radius: var(--radius-sm);
  }
  .mobile-toggle {
    display: flex;
  }

  /* Animated Mobile Navigation Drawer */
  .main-nav {
    display: flex;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 12, 16, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glass-bright);
    flex-direction: column;
    padding: 20px 16px 28px 16px;
    gap: 12px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
    z-index: 99;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-primary);
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .main-nav .nav-link.active,
  .main-nav .nav-link:hover {
    background: rgba(255, 59, 48, 0.12);
    border-color: rgba(255, 59, 48, 0.35);
    color: #ffffff;
  }

  .nav-mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid var(--border-glass-bright);
  }

  .nav-mobile-footer .btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 14.5px;
    justify-content: center;
  }

  /* Section Spacing */
  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-title {
    font-size: 28px;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 14.5px;
    line-height: 1.55;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 28px;
    padding-bottom: 50px;
  }

  .hero-header-content {
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.18;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Compact 2x2 Stats Dashboard on Mobile */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 4px 6px;
    text-align: center;
  }

  .stat-num {
    font-size: 15px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 1.3;
  }

  /* Hero Video Player Mobile */
  .video-top-bar {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .video-status-tag {
    font-size: 10px;
    padding: 4px 8px;
  }

  .video-spec-tag {
    display: none;
  }

  .video-overlay-btn {
    width: 60px;
    height: 60px;
  }

  .video-overlay-btn svg {
    width: 28px;
    height: 28px;
    margin-left: 3px;
  }

  .video-controls {
    padding: 20px 12px 10px 12px;
  }

  .progress-bar-wrap {
    height: 8px;
    margin-bottom: 10px;
    /* Generous hit area for thumbs */
    padding-top: 5px;
    padding-bottom: 5px;
    background-clip: content-box;
  }

  .progress-scrubber-thumb {
    width: 16px;
    height: 16px;
    opacity: 1; /* Always visible on touch screens */
  }

  .controls-row {
    gap: 8px;
  }

  .controls-left, .controls-right {
    gap: 10px;
  }

  /* Hide volume slider on mobile, phone hardware buttons are used */
  .volume-slider {
    display: none;
  }

  .time-display {
    font-size: 12px;
  }

  .btn-jump-phase {
    padding: 6px 8px;
  }

  .btn-jump-phase span {
    display: none; /* Icon-only on mobile */
  }

  .video-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .video-meta-actions {
    width: 100%;
  }

  .video-meta-actions .btn {
    width: 100%;
  }

  /* 4-Phase Tabs: Horizontal Swipeable Segmented Bar */
  .phase-nav-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 6px;
  }

  .phase-nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .phase-tab {
    flex: 0 0 auto;
    min-width: 165px;
    padding: 12px 14px;
    gap: 10px;
  }

  .tab-index {
    font-size: 16px;
  }

  .tab-title {
    font-size: 13px;
  }

  .tab-time {
    font-size: 10.5px;
  }

  /* Phase Display Card Mobile */
  .phase-stage-card {
    border-radius: var(--radius-md);
  }

  .phase-visual-wrap {
    min-height: unset;
    height: 220px;
  }

  .phase-time-pill {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 4px 10px;
  }

  .btn-seek-video {
    bottom: 12px;
    right: 12px;
    font-size: 11.5px;
    padding: 6px 12px;
  }

  .phase-content-wrap {
    padding: 22px 16px;
  }

  .phase-title {
    font-size: 21px;
    margin-bottom: 10px;
  }

  .phase-desc {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .phase-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .phase-spec-card {
    padding: 10px;
  }

  .spec-label {
    font-size: 10px;
  }

  .spec-val {
    font-size: 12px;
  }

  /* Features & Workflow Grids Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .pipeline-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pipeline-step-card {
    padding: 24px 20px;
  }

  /* Pricing Cards Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .price-amount {
    font-size: 40px;
  }

  .pricing-card .btn {
    width: 100%;
    margin-top: 8px;
  }

  /* About Card Mobile */
  .about-card {
    padding: 26px 18px;
    gap: 24px;
  }

  .about-avatar {
    width: 140px;
    height: 140px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-bio {
    font-size: 14.5px;
  }

  .about-meta-row {
    justify-content: center;
    gap: 8px;
  }

  .meta-tag {
    font-size: 12px;
    padding: 5px 10px;
  }

  .about-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .about-cta-row .btn {
    width: 100%;
  }

  /* Commission Inquiry Form Mobile */
  .inquiry-card {
    padding: 24px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* iOS Safari safe form inputs: 16px minimum font size prevents auto-zoom */
  .form-input {
    font-size: 16px !important;
    padding: 12px 14px;
  }

  .brief-preview-box {
    padding: 14px;
  }

  .brief-code {
    font-size: 12px;
  }

  .brief-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .brief-actions .btn {
    width: 100%;
  }

  /* Direct Contact Mobile */
  .contact-box {
    padding: 36px 18px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .direct-contact-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-item-card {
    padding: 22px 16px;
  }

  .contact-item-card .btn {
    width: 100%;
  }

  .contact-btn-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .contact-btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mobile Sticky Bottom Action Dock */
  .mobile-bottom-dock {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 85;
    padding: 10px 14px max(14px, env(safe-area-inset-bottom)) 14px;
    background: rgba(10, 12, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass-bright);
    gap: 10px;
    transform: translateY(115%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.7);
  }

  .mobile-bottom-dock.visible {
    transform: translateY(0);
  }

  .dock-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 10px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s ease, filter 0.15s ease;
  }

  .dock-btn:active {
    transform: scale(0.97);
  }

  .dock-btn-primary {
    background: linear-gradient(135deg, #ff3b30 0%, #e0281e 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 59, 48, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .dock-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid var(--border-glass-bright);
  }

  /* Toast Notification Centered and floating above mobile dock */
  .toast-notification {
    left: 16px;
    right: 16px;
    bottom: max(78px, calc(64px + env(safe-area-inset-bottom)));
    width: auto;
    justify-content: center;
    text-align: center;
  }

  /* Footer Mobile with safe area padding */
  .site-footer {
    padding: 40px 0 max(88px, calc(72px + env(safe-area-inset-bottom)));
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Extra Small Phones (iPhone SE, Galaxy S8, etc. <= 480px) */
@media (max-width: 480px) {
  .nav-actions .btn-fiverr .btn-text-full {
    display: none;
  }
  .nav-actions .btn-fiverr .btn-text-short {
    display: inline;
  }
  .nav-actions .btn-fiverr {
    padding: 6px 10px;
    gap: 5px;
    font-size: 12px;
  }
  .brand-logo .brand-name {
    font-size: 15px;
  }
  .hero-title {
    font-size: 26px;
    line-height: 1.2;
  }
  .section-title {
    font-size: 24px;
  }
  .price-amount {
    font-size: 34px;
  }
  .hero-stats {
    gap: 8px;
    padding: 10px;
  }
  .stat-num {
    font-size: 14px;
  }
  .stat-label {
    font-size: 10px;
  }
}
