/* ==========================================================================
   EXP-003: V1.2.1 TYPOGRAPHY COLOR HIERARCHY (styles.css)
   Immersive Mobile-First Personal Landing Page — Zero Outer Card Container
   Strict Hierarchy: Primary → Secondary → Accent → Muted Tinted → High-Contrast Light
   ========================================================================== */

:root {
  --font-main: 'Readex Pro', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Base Canvas Defaults (Aurora Emerald) */
  --canvas-bg: #050810;
  --primary-accent: #10B981;
  --secondary-accent: #06B6D4;
  --accent-glow: rgba(16, 185, 129, 0.40);
  --accent-glow-secondary: rgba(6, 182, 212, 0.28);
  
  /* Typography Color Hierarchy Tokens — Aurora Emerald */
  --typo-name: linear-gradient(135deg, #6EE7B7 0%, #10B981 50%, #06B6D4 100%);
  --typo-name-glow: drop-shadow(0 2px 16px rgba(16, 185, 129, 0.55));
  --typo-tagline: #10B981;
  --typo-tagline-bg: rgba(16, 185, 129, 0.14);
  --typo-tagline-border: rgba(16, 185, 129, 0.45);
  --typo-bio: #6EE7B7; /* Vibrant mint green, unmistakably colored */
  --typo-section: #10B981;
  --typo-service-title: #A7F3D0;
  --typo-social-handle: rgba(52, 211, 153, 0.85);
  --typo-contact-label: #10B981;
  --typo-contact-value: #ECFDF5; /* High-contrast crisp light */
  --typo-footer: rgba(52, 211, 153, 0.65);

  --text-pure: #FFFFFF;
  --glass-surface: rgba(255, 255, 255, 0.04);
  --glass-surface-hover: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-hover: rgba(255, 255, 255, 0.20);

  /* WhatsApp Action Color */
  --wa-emerald: #25D366;
  --wa-glow: rgba(37, 211, 102, 0.45);

  /* Geometry */
  --radius-full: 9999px;
  --radius-2xl: 26px;
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
}

/* ==========================================================================
   Theme Atmospheric Profiles (Distinct Color Moods for Texts & Canvas)
   ========================================================================== */

/* 1. CLIENT-001: Obsidian + Gold + Amber + Warm Orange Light */
body.theme-deep-black-gold {
  --canvas-bg: #050507;
  --primary-accent: #F59E0B;
  --secondary-accent: #FBBF24;
  --accent-glow: rgba(245, 158, 11, 0.50);
  --accent-glow-secondary: rgba(251, 191, 36, 0.35);

  /* Typography Color Hierarchy — Pure Amber & Gold */
  --typo-name: linear-gradient(135deg, #FDE68A 0%, #F59E0B 45%, #D97706 100%);
  --typo-name-glow: drop-shadow(0 2px 20px rgba(245, 158, 11, 0.65));
  --typo-tagline: #F59E0B;
  --typo-tagline-bg: rgba(245, 158, 11, 0.16);
  --typo-tagline-border: rgba(245, 158, 11, 0.48);
  --typo-bio: #FBBF24; /* Distinct warm amber-gold, unmistakably colored & highly readable */
  --typo-section: #F59E0B;
  --typo-service-title: #FDE68A; /* Warm goldenrod */
  --typo-social-handle: rgba(251, 191, 36, 0.85);
  --typo-contact-label: #F59E0B;
  --typo-contact-value: #FEF3C7; /* High-contrast warm light */
  --typo-footer: rgba(245, 158, 11, 0.60);

  --glass-surface: rgba(245, 158, 11, 0.04);
  --glass-surface-hover: rgba(245, 158, 11, 0.085);
  --glass-border: rgba(245, 158, 11, 0.18);
  --glass-border-hover: rgba(245, 158, 11, 0.40);
}

/* 2. Aurora Emerald (Generic Default) */
body.theme-aurora-emerald {
  --canvas-bg: #050810;
  --primary-accent: #10B981;
  --secondary-accent: #06B6D4;
  --accent-glow: rgba(16, 185, 129, 0.45);
  --accent-glow-secondary: rgba(6, 182, 212, 0.30);

  /* Typography Color Hierarchy — Emerald & Mint */
  --typo-name: linear-gradient(135deg, #6EE7B7 0%, #10B981 50%, #06B6D4 100%);
  --typo-name-glow: drop-shadow(0 2px 18px rgba(16, 185, 129, 0.55));
  --typo-tagline: #10B981;
  --typo-tagline-bg: rgba(16, 185, 129, 0.14);
  --typo-tagline-border: rgba(16, 185, 129, 0.45);
  --typo-bio: #6EE7B7;
  --typo-section: #10B981;
  --typo-service-title: #A7F3D0;
  --typo-social-handle: rgba(52, 211, 153, 0.85);
  --typo-contact-label: #10B981;
  --typo-contact-value: #ECFDF5;
  --typo-footer: rgba(52, 211, 153, 0.65);
}

/* 3. Cyber Dark (Creator Demo: Purple + Magenta + Electric Blue) */
body.theme-cyber-dark {
  --canvas-bg: #070412;
  --primary-accent: #A855F7;
  --secondary-accent: #EC4899;
  --accent-glow: rgba(168, 85, 247, 0.50);
  --accent-glow-secondary: rgba(236, 72, 153, 0.36);

  /* Typography Color Hierarchy — Neon Violet, Pink & Cyan */
  --typo-name: linear-gradient(135deg, #F472B6 0%, #C084FC 50%, #38BDF8 100%);
  --typo-name-glow: drop-shadow(0 2px 20px rgba(168, 85, 247, 0.60));
  --typo-tagline: #F472B6;
  --typo-tagline-bg: rgba(244, 114, 182, 0.16);
  --typo-tagline-border: rgba(244, 114, 182, 0.45);
  --typo-bio: #D8B4FE; /* Radiant soft violet */
  --typo-section: #C084FC;
  --typo-service-title: #E9D5FF;
  --typo-social-handle: rgba(192, 132, 252, 0.85);
  --typo-contact-label: #C084FC;
  --typo-contact-value: #F5D0FE;
  --typo-footer: rgba(168, 85, 247, 0.60);

  --glass-surface: rgba(168, 85, 247, 0.045);
  --glass-surface-hover: rgba(168, 85, 247, 0.095);
  --glass-border: rgba(168, 85, 247, 0.20);
  --glass-border-hover: rgba(236, 72, 153, 0.40);
}

/* 4. Warm Luxury (Merchant Demo: Rose & Amber Gold) */
body.theme-warm-luxury {
  --canvas-bg: #0A0608;
  --primary-accent: #FB7185;
  --secondary-accent: #F59E0B;
  --accent-glow: rgba(251, 113, 133, 0.48);
  --accent-glow-secondary: rgba(245, 158, 11, 0.32);

  /* Typography Color Hierarchy — Coral, Rose & Warm Gold */
  --typo-name: linear-gradient(135deg, #FDA4AF 0%, #FB7185 50%, #F59E0B 100%);
  --typo-name-glow: drop-shadow(0 2px 20px rgba(251, 113, 133, 0.55));
  --typo-tagline: #FB7185;
  --typo-tagline-bg: rgba(251, 113, 133, 0.15);
  --typo-tagline-border: rgba(251, 113, 133, 0.45);
  --typo-bio: #FDBA74; /* Warm peach-amber */
  --typo-section: #FB7185;
  --typo-service-title: #FED7AA;
  --typo-social-handle: rgba(251, 113, 133, 0.85);
  --typo-contact-label: #FB7185;
  --typo-contact-value: #FFEDD5;
  --typo-footer: rgba(251, 113, 133, 0.60);

  --glass-surface: rgba(251, 113, 133, 0.04);
  --glass-surface-hover: rgba(251, 113, 133, 0.085);
  --glass-border: rgba(251, 113, 133, 0.18);
  --glass-border-hover: rgba(245, 158, 11, 0.38);
}

/* 5. Minimal Clean */
body.theme-minimal-clean {
  --canvas-bg: #070709;
  --primary-accent: #F1F5F9;
  --secondary-accent: #94A3B8;
  --accent-glow: rgba(255, 255, 255, 0.18);
  --accent-glow-secondary: rgba(255, 255, 255, 0.08);

  --typo-name: linear-gradient(135deg, #FFFFFF 30%, #E2E8F0 70%, #94A3B8 100%);
  --typo-name-glow: none;
  --typo-tagline: #E2E8F0;
  --typo-tagline-bg: rgba(255, 255, 255, 0.08);
  --typo-tagline-border: rgba(255, 255, 255, 0.25);
  --typo-bio: #CBD5E1;
  --typo-section: #94A3B8;
  --typo-service-title: #E2E8F0;
  --typo-social-handle: rgba(148, 163, 184, 0.8);
  --typo-contact-label: #94A3B8;
  --typo-contact-value: #F1F5F9;
  --typo-footer: rgba(148, 163, 184, 0.6);

  --glass-surface: rgba(255, 255, 255, 0.035);
  --glass-surface-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-border-hover: rgba(255, 255, 255, 0.22);
}

/* ==========================================================================
   CSS Reset & Full Canvas Setup
   ========================================================================== */

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body.canvas-body {
  font-family: var(--font-main);
  background-color: var(--canvas-bg);
  color: var(--typo-service-title);
  min-height: 100vh;
  min-height: 100dvh;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  padding: env(safe-area-inset-top, 24px) 14px calc(env(safe-area-inset-bottom, 24px) + 64px) 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Full-Canvas Aurora & Atmospheric Lighting
   ========================================================================== */

.canvas-aurora {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.65;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.orb-primary {
  top: -60px;
  right: -30px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 0, 0, 0) 70%);
}

.orb-secondary {
  top: 32%;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent-glow-secondary) 0%, rgba(0, 0, 0, 0) 70%);
}

.orb-accent {
  bottom: -40px;
  right: 5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0.35;
}

/* Micro background noise / stippling */
.canvas-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.40;
}

/* ==========================================================================
   Fluid Content Column (NO Outer Card / Completely Immersive)
   ========================================================================== */

.canvas-content-wrapper {
  width: 100%;
  max-width: 390px;
  box-sizing: border-box;
  min-width: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  min-height: 100svh;
  padding: 52px 20px 0;
}

/* ==========================================================================
   1. Hero Identity Header (Dominant Typography & Prominent Avatar)
   ========================================================================== */

.hero-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 8px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.avatar-stage {
  position: relative;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient glow directly behind avatar */
.avatar-ambient-halo {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(24px);
  opacity: 0.85;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.92); opacity: 0.65; }
  100% { transform: scale(1.08); opacity: 0.95; }
}

.avatar-frame {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 32px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, var(--primary-accent) 50%, rgba(0, 0, 0, 0.8) 100%);
  box-shadow: 0 16px 32px -6px rgba(0, 0, 0, 0.7), 0 0 24px var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.avatar-frame:hover {
  transform: scale(1.04);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 29px;
  display: block;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 29px;
  background: linear-gradient(145deg, #181920 0%, #0c0d12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-placeholder span {
  font-size: 38px;
  font-weight: 800;
  background: var(--typo-name);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary-accent);
  letter-spacing: -1px;
}

.hero-typography {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

/* 1. Hero Name: Strongest Primary Identity */
.hero-name {
  font-size: 30px;
  font-weight: 800;
  background: var(--typo-name);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary-accent);
  filter: var(--typo-name-glow);
  letter-spacing: -0.5px;
  line-height: 1.25;
  text-align: center;
}

.verified-seal {
  color: var(--typo-section);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}

/* 2. Tagline / Business Type: Clear Secondary Accent */
.tagline-pill {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--typo-tagline);
  background: var(--typo-tagline-bg);
  border: 1px solid var(--typo-tagline-border);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-top: 2px;
  text-align: center;
}

/* 3. Hero Bio: Theme-derived, Warm/Tinted, Muted & Highly Readable */
.hero-bio {
  font-size: 15px;
  color: var(--typo-bio);
  max-width: 360px;
  line-height: 1.65;
  margin-top: 4px;
  text-align: center;
  font-weight: 500;
}

/* ==========================================================================
   2. WhatsApp Centerpiece Hero Action
   ========================================================================== */

.whatsapp-cta-section {
  width: 100%;
  box-sizing: border-box;
}

.whatsapp-hero-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.24), rgba(16, 185, 129, 0.12));
  border: 1.5px solid rgba(37, 211, 102, 0.60);
  border-radius: var(--radius-2xl);
  color: var(--text-pure);
  text-decoration: none;
  box-shadow: 0 16px 36px -10px var(--wa-glow), 0 0 0 1px rgba(37, 211, 102, 0.25);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-sizing: border-box;
  min-width: 0;
}

.whatsapp-hero-btn:hover {
  transform: translateY(-2px) scale(1.01);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.34), rgba(16, 185, 129, 0.20));
  border-color: rgba(37, 211, 102, 0.85);
  box-shadow: 0 20px 45px -8px var(--wa-glow), 0 0 0 1px rgba(37, 211, 102, 0.45);
}

.whatsapp-hero-btn:active {
  transform: scale(0.985);
}

.wa-icon-sphere {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--wa-emerald);
  color: #061B0E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
}

.wa-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}

.wa-headline {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-subheadline {
  font-size: 12.5px;
  color: var(--typo-bio);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.85;
}

.wa-action-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  flex-shrink: 0;
}

.beacon-dot {
  width: 12px;
  height: 12px;
  background-color: var(--wa-emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
  animation: pulse-beacon 2s infinite;
}

@keyframes pulse-beacon {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   3. Social Showcase (Vibrant Visual Tiles with Brand-Tinted Typography)
   ========================================================================== */

.social-showcase {
  width: 100%;
  box-sizing: border-box;
}

.social-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  justify-items: stretch;
}

/* Adaptive: 1 tile — centered, max 70% width */
.social-tiles-grid.tiles-count-1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: 70%;
  margin: 0 auto;
}

/* Adaptive: 2 tiles — balanced 2 columns */
.social-tiles-grid.tiles-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
}

/* Adaptive: 3+ tiles — default 2-col grid */
.social-tiles-grid.tiles-count-many {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
}

.social-tile-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  color: var(--text-pure);
  text-decoration: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5);
  transition: all 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
}

.social-tile-btn:hover {
  background: var(--glass-surface-hover);
  border-color: var(--tile-color, var(--glass-border-hover));
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.7), 0 0 18px -4px var(--tile-glow, transparent);
}

.social-tile-btn:active {
  transform: scale(0.98);
}

.tile-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--tile-color, var(--text-pure));
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: all 0.25s ease;
}

.social-tile-btn:hover .tile-icon-box {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.06);
}

.tile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
  overflow: hidden;
  min-width: 0;
}

/* 7. Social Label: Distinct Platform Color or Secondary Accent */
.tile-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--tile-color, var(--typo-service-title));
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 8. Social Handle: Muted Tinted Text */
.tile-handle {
  font-size: 11px;
  color: var(--typo-social-handle);
  direction: ltr;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 2px;
  font-weight: 500;
}

/* ==========================================================================
   4. Services Showcase (Feature Blocks — Theme-Coded Colored Text)
   ========================================================================== */

.services-showcase {
  width: 100%;
  box-sizing: border-box;
}

/* 4. Section Title: Accent */
.section-micro-label {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--typo-section);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  padding-right: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-micro-label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--typo-section);
  box-shadow: 0 0 10px var(--accent-glow);
}

.feature-blocks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.feature-block {
  padding: 14px 12px;
  background: var(--feature-bg);
  border: 1px solid var(--feature-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.25s ease;
  min-width: 0;
  box-sizing: border-box;
}

.feature-block:hover {
  background: var(--glass-surface-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.feature-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.feature-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--typo-section);
  box-shadow: 0 0 10px var(--accent-glow);
  flex-shrink: 0;
}

/* 5. Service Title: Primary / Secondary Identity */
.feature-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--typo-service-title);
  line-height: 1.4;
  word-break: break-word;
  min-width: 0;
}

/* ==========================================================================
   5. Direct Contact Strip (Phone, Email, Website, Location)
   ========================================================================== */

.contact-strip-section {
  width: 100%;
  box-sizing: border-box;
}

.contact-strip-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.22s ease;
  min-width: 0;
  box-sizing: border-box;
}

.contact-strip-item:hover {
  background: var(--glass-surface-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.contact-strip-item:active {
  transform: scale(0.985);
}

.strip-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--typo-contact-label);
  transition: all 0.2s ease;
}

.contact-strip-item:hover .strip-icon-box {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.08);
}

.strip-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
  min-width: 0;
  overflow: hidden;
}

/* 9. Contact Label: Accent / Secondary */
.strip-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--typo-contact-label);
}

/* 10. Contact Value: High-Contrast Crisp Light */
.strip-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--typo-contact-value);
  direction: ltr;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   6. Subtle Footer Watermark
   ========================================================================== */

.canvas-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 20px;
  margin-top: auto;
}

/* 11. Footer: Muted Tinted Text */
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 12px;
  color: var(--typo-footer);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  transition: color 0.2s ease;
}

.footer-badge:hover {
  color: var(--typo-contact-value);
}

.footer-badge strong {
  color: var(--typo-section);
}

/* ==========================================================================
   Preview Dock (Dev Only)
   ========================================================================== */

.dev-preview-dock {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 360px;
  background: rgba(10, 12, 18, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  box-sizing: border-box;
}

.dock-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  min-width: 0;
}

.dock-tag {
  background: var(--primary-accent);
  color: #061108;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.dock-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  color: var(--text-pure);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  outline: none;
  cursor: pointer;
  flex: 1;
  min-width: 0;
  text-align: right;
  direction: rtl;
}

.dock-select option {
  background: #0B0E14;
  color: #FFFFFF;
}

.dock-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.dock-close:hover {
  color: var(--text-pure);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (min-width: 481px) {
  .canvas-content-wrapper {
    max-width: 420px;
  }
}
