
@font-face { font-family: 'Inter'; src: url('./fonts/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('./fonts/Inter-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('./fonts/Inter-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

@font-face { font-family: 'Vazirmatn'; src: url('./fonts/Vazirmatn-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Vazirmatn'; src: url('./fonts/Vazirmatn-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Vazirmatn'; src: url('./fonts/Vazirmatn-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Vazirmatn'; src: url('./fonts/Vazirmatn-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Vazirmatn'; src: url('./fonts/Vazirmatn-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }

/* ==========================================================================
   MazKnez — Executive & Warm Luxury Editorial Design System
   Designed for business owners, executives, and enterprise decision makers.
   Aesthetic: Warm Ivory, Charcoal Slate, Fine Hairlines, High Trust & Prestige.
   ========================================================================== */

:root {
  /* Warm Luxury Editorial Palette */
  --bg: #fbfaf6;
  --bg-subtle: #f4f1ea;
  --bg-warm: #eeeae0;
  --surface: #ffffff;
  --surface-hover: #faf9f5;

  --border: rgba(26, 29, 35, 0.08);
  --border-strong: rgba(26, 29, 35, 0.16);
  --border-subtle: rgba(26, 29, 35, 0.04);

  --text-main: #14161a;
  --text-body: #3c4049;
  --text-muted: #646a77;
  --text-faint: #8d94a2;

  --primary: #12151c;
  --primary-hover: #222632;

  --accent: #1e3a8a;
  --accent-soft: rgba(30, 58, 138, 0.06);
  --accent-border: rgba(30, 58, 138, 0.15);

  --gold: #854d0e;
  --gold-bg: #fefce8;
  --gold-border: #fef08a;

  --success: #047857;
  --success-bg: #ecfdf5;
  --success-border: #a7f3d0;

  /* Typography */
  --font-family: "Vazirmatn", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Radius & Shadows */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-subtle: 0 2px 6px rgba(20, 22, 26, 0.03);
  --shadow-card: 0 4px 20px -2px rgba(20, 22, 26, 0.05);
  --shadow-hover: 0 12px 32px -4px rgba(20, 22, 26, 0.08);

  --transition: 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-family);
  font-size: 16.5px;
  line-height: 1.8;
  background-color: var(--bg);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: normal;
}

/* Typography Rules for Persian vs English */
[dir="rtl"] {
  letter-spacing: normal !important;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] span,
[dir="rtl"] p,
[dir="rtl"] a {
  letter-spacing: normal !important;
}

[dir="ltr"] {
  font-family: "Inter", var(--font-family);
}

[dir="ltr"] .hero-title {
  letter-spacing: -0.025em;
}

[dir="ltr"] .section-eyebrow,
[dir="ltr"] .conversion-tag,
[dir="ltr"] .blog-bridge-tag {
  letter-spacing: 0.06em;
}

/* Subtle architectural grid pattern & ambient gradient */
.editorial-canvas {
  position: relative;
  background-color: var(--bg);
  background-image: 
    radial-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 0% 50%, rgba(217, 119, 6, 0.03) 0%, transparent 45%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 28px;
}

/* ==========================================================================
   Executive Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(251, 250, 246, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-avatar-box {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  padding: 4px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.brand-link:hover .brand-avatar-box {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
}

.brand-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--text-main);
  line-height: 1.25;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-desktop a {
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition);
  padding: 8px 0;
  position: relative;
}

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

.nav-desktop a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-lang {
  background: var(--surface);
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-subtle);
}

.btn-lang:hover {
  border-color: var(--border-strong);
  color: var(--text-main);
}

.btn-header-cta {
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(18, 21, 28, 0.15);
}

.btn-header-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(18, 21, 28, 0.2);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   Hero Section — Executive 2-Column Balanced Showcase
   ========================================================================== */

.hero-section {
  position: relative;
  padding-block: 72px 56px;
  overflow: hidden;
  background: linear-gradient(175deg, #f8f6f0 0%, #fbfaf6 40%, #f0f4fb 80%, #fbfaf6 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(30, 58, 138, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(37, 99, 235, 0.12) 30%, rgba(217, 119, 6, 0.08) 70%, transparent 95%);
}

.hero-section > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-prestige {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(254, 243, 199, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-full);
  color: #92400e;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.12);
  transition: all var(--transition);
}

.badge-prestige:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  background: rgba(236, 253, 245, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  color: #065f46;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
  transition: all var(--transition);
}

.badge-status:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.18);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--success);
  box-shadow: 0 0 8px rgba(4, 120, 87, 0.45);
  animation: pulseDot 2.2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1.36;
  color: var(--text-main);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.88;
  color: var(--text-body);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-block-start: 4px;
}

.hero-mini-points {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-block-start: 10px;
}

.mini-point {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.mini-point svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Hero Showcase Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.visual-card {
  position: relative;
  width: 100%;
  max-width: 390px;
  background: linear-gradient(160deg, #131722 0%, #0d1017 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 26px 22px 30px;
  box-shadow: 0 24px 48px -12px rgba(13, 16, 23, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -12px rgba(13, 16, 23, 0.52), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.visual-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 58, 138, 0.45);
  border: 1px solid rgba(96, 165, 250, 0.35);
  color: #bfdbfe;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.badge-dot-live {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background-color: #60a5fa;
  box-shadow: 0 0 8px #60a5fa;
}

.visual-artwork-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.visual-artwork-wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(13, 148, 136, 0.15) 50%, transparent 75%);
  border-radius: var(--radius-full);
  filter: blur(16px);
  z-index: 0;
}

.visual-artwork {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s ease;
}

.visual-card:hover .visual-artwork {
  transform: scale(1.02);
}

.visual-identity-meta {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.visual-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: #f8fafc;
}

.visual-handle {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.18);
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(59, 130, 246, 0.28);
}

.visual-tagline {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.55;
  max-width: 320px;
  margin: 0 auto;
}

.visual-badge-floating {
  position: absolute;
  bottom: -16px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #14161a;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  z-index: 2;
}

[dir="ltr"] .visual-badge-floating {
  transform: translateX(-50%);
}

.exp-icon {
  font-size: 1rem;
}

/* Trust Pillar Stats Bar (Full width floating glass container) */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-block-start: 52px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 32px -6px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all var(--transition);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.trust-number {
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-sans);
  line-height: 1.25;
}

.trust-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.55;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-family);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(180deg, #1e2532 0%, #0f131a 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 4px 16px rgba(15, 19, 26, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2b3547 0%, #151a24 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 24px rgba(15, 19, 26, 0.28);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  border: 1px solid var(--border-strong);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: #ffffff;
  border-color: var(--text-main);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

/* ==========================================================================
   Section Common Layout
   ========================================================================== */

.section {
  padding-block: 80px;
}

.section-alt {
  background: linear-gradient(180deg, #f6f3ec 0%, #f9f7f2 50%, #fbfaf6 100%);
  border-block: 1px solid rgba(26, 29, 35, 0.05);
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(217, 119, 6, 0.08) 50%, transparent 90%);
}

.section-header {
  margin-block-end: 46px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.14);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-block-end: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: var(--text-main);
  margin-block-end: 12px;
  line-height: 1.36;
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--text-body);
  max-width: 740px;
  line-height: 1.8;
}

/* ==========================================================================
   Pain Points & Challenges Grid
   ========================================================================== */

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

.pain-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px -8px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.18);
}

.pain-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #b91c1c;
  background: rgba(254, 242, 242, 0.9);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-block-end: 18px;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.06);
}

.pain-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-main);
  margin-block-end: 14px;
  line-height: 1.45;
}

.pain-card p {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-block-end: 22px;
}

.pain-solution {
  padding: 15px 18px;
  background: linear-gradient(135deg, rgba(238, 242, 255, 0.75) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-radius: var(--radius-md);
  border-inline-start: 3.5px solid var(--accent);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.pain-solution-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-block-end: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pain-solution-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.6;
}

/* ==========================================================================
   Solutions & Offerings (3 Core Pillars)
   ========================================================================== */

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

.solution-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e3a8a, #2563eb, #0d9488);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px -8px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(37, 99, 235, 0.18);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(30, 58, 138, 0.12) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  margin-block-end: 20px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
  transition: all var(--transition);
}

.solution-card:hover .solution-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.solution-card h3 {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text-main);
  margin-block-end: 14px;
  line-height: 1.42;
}

.solution-card p {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-block-end: 22px;
}

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-block-start: 16px;
  border-top: 1px solid var(--border);
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 600;
}

.solution-features li svg {
  color: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   End-to-End Process Timeline
   ========================================================================== */

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

.process-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 18px 36px -12px rgba(37, 99, 235, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.process-step-num {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border: 3px solid rgba(255, 255, 255, 0.95);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 20px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
  transition: all var(--transition);
}

.process-card:hover .process-step-num {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.process-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-block-end: 12px;
  line-height: 1.45;
}

.process-card p {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.82;
  margin: 0;
}

/* ==========================================================================
   Principles & Guarantees
   ========================================================================== */

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.principle-item {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  gap: 20px;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.principle-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #d97706, #f59e0b);
  opacity: 0;
  transition: opacity var(--transition);
}

.principle-item:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: 0 16px 36px -12px rgba(217, 119, 6, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.principle-item:hover::after {
  opacity: 1;
}

.principle-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16) 0%, rgba(217, 119, 6, 0.08) 100%);
  border: 1px solid rgba(217, 119, 6, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.08);
  transition: all var(--transition);
}

.principle-item:hover .principle-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.28);
}

.principle-text h4 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-main);
  margin-block-end: 8px;
  line-height: 1.45;
}

.principle-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}

/* ==========================================================================
   Blog Bridge Section
   ========================================================================== */

.blog-bridge {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: var(--radius-xl);
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 20px 45px -15px rgba(15, 23, 42, 0.07), 0 1px 3px rgba(15, 23, 42, 0.03);
}

.blog-bridge-header {
  max-width: 840px;
}

.blog-bridge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-block-end: 14px;
}

.blog-bridge-header h3 {
  font-size: 1.68rem;
  font-weight: 800;
  color: var(--text-main);
  margin-block-end: 10px;
  line-height: 1.35;
}

.blog-bridge-header p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.82;
}

.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.blog-article-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all var(--transition);
  position: relative;
}

.blog-article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 18px 40px -10px rgba(37, 99, 235, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
}

.blog-badge-category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-block-end: 14px;
  align-self: flex-start;
}

.blog-article-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.5;
  margin-block-end: 10px;
}

.blog-article-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-block-end: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  transition: all var(--transition);
}

.blog-read-more .arrow-icon {
  display: inline-block;
  transition: transform var(--transition);
}

.blog-article-card:hover .blog-read-more .arrow-icon {
  transform: translateX(-5px);
}

.blog-bridge-footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 6px;
}

/* ==========================================================================
   Final Conversion & Contact Section
   ========================================================================== */

.conversion-box {
  background: radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.35) 0%, transparent 65%),
              radial-gradient(circle at 10% 100%, rgba(13, 148, 136, 0.22) 0%, transparent 50%),
              linear-gradient(150deg, #090d16 0%, #111827 50%, #0c1524 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 64px 44px;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.conversion-inner {
  max-width: 700px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.conversion-tag {
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #bfdbfe;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(147, 197, 253, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-block-end: 18px;
}

.conversion-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-block-end: 16px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.conversion-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.88;
  margin-block-end: 36px;
}

.conversion-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: #ffffff;
  color: #0f172a;
  font-weight: 800;
  border-radius: var(--radius-full);
  padding: 14px 28px;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  transition: all var(--transition);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.4);
}

.conversion-meta {
  margin-block-start: 28px;
  color: #94a3b8;
  font-size: 0.92rem;
}

/* Copy Email Component */
.copy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  cursor: pointer;
  transition: all var(--transition);
}

.copy-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  padding-block: 44px;
  margin-block-start: 70px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.social-link:hover {
  color: var(--accent);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Toast Message */
.toast-msg {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Scroll To Top */
.to-top-btn {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
  z-index: 40;
  box-shadow: var(--shadow-card);
}

.to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top-btn:hover {
  background: var(--bg-subtle);
  border-color: var(--text-main);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 74px;
  inset-inline: 0;
  background: rgba(251, 250, 246, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 49;
  transform: translateY(-120%);
  transition: transform var(--transition);
}

.mobile-nav-drawer.open {
  transform: translateY(0);
}

.mobile-nav-drawer a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding-block: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    order: 1; /* Changed to display image first */
  }

  .hero-content {
    order: 2; /* Content goes under the image */
  }

  .blog-articles-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .solutions-grid,
  .process-timeline,
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* ── Header ── */
  .nav-desktop {
    display: none;
  }

  .btn-header-cta {
    display: none;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-title {
    white-space: nowrap;
    font-size: 1.05rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* ── Hero ── */
  .hero-section {
    padding-block: 36px 28px;
    background: linear-gradient(175deg, #f4f2ec 0%, #fbfaf6 35%, #eef3fb 70%, #fbfaf6 100%);
  }

  .hero-badge-row {
    gap: 8px;
  }

  .badge-status,
  .badge-prestige {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    line-height: 1.45;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.82;
  }

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

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
    padding: 14px 20px;
  }

  .hero-mini-points {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding-block-start: 6px;
  }

  .mini-point {
    font-size: 0.82rem;
  }

  /* Hero Visual Card — compact & centered on mobile */
  .visual-card {
    max-width: 280px;
    padding: 16px 14px 20px;
    border-radius: 20px;
    margin-block-start: 16px;
  }

  .visual-artwork-wrap {
    max-width: 170px;
  }

  .visual-name {
    font-size: 0.95rem;
  }

  .visual-tagline {
    font-size: 0.72rem;
    max-width: 240px;
  }

  .visual-badge-floating {
    font-size: 0.72rem;
    padding: 5px 12px;
    bottom: -10px;
  }

  /* ── Trust Bar ── */
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 16px;
    margin-block-start: 32px;
    border-radius: 16px;
  }

  .trust-item {
    padding: 10px;
    text-align: center;
    align-items: center;
  }

  .trust-number {
    font-size: 1.25rem;
  }

  .trust-label {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  /* ── Sections ── */
  .section {
    padding-block: 52px;
  }

  .section-header {
    margin-block-end: 32px;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    line-height: 1.42;
  }

  .section-subtitle {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .section-eyebrow {
    font-size: 0.78rem;
  }

  /* ── Grids → Single Column ── */
  .pain-grid,
  .solutions-grid,
  .process-timeline,
  .principles-grid,
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

  /* ── Pain Cards ── */
  .pain-card {
    padding: 22px 18px;
  }

  .pain-card h3 {
    font-size: 1.08rem;
  }

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

  .pain-solution {
    padding: 14px 16px;
  }

  /* ── Solution Cards ── */
  .solution-card {
    padding: 24px 20px;
  }

  .solution-card h3 {
    font-size: 1.1rem;
  }

  /* ── Process Cards ── */
  .process-card {
    padding: 24px 20px;
  }

  .process-step-num {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .process-card h4 {
    font-size: 1.08rem;
  }

  /* ── Principle Cards ── */
  .principle-item {
    padding: 22px 18px;
    gap: 14px;
  }

  .principle-icon {
    width: 42px;
    height: 42px;
  }

  .principle-text h4 {
    font-size: 1.05rem;
  }

  .principle-text p {
    font-size: 0.88rem;
  }

  /* ── Blog Bridge ── */
  .blog-bridge {
    padding: 28px 20px;
    gap: 22px;
  }

  .blog-bridge-header h3 {
    font-size: 1.35rem;
  }

  .blog-bridge-header p {
    font-size: 0.95rem;
  }

  .blog-article-card {
    padding: 20px 18px;
  }

  .blog-article-card h4 {
    font-size: 1.02rem;
  }

  .blog-bridge-footer,
  .blog-bridge-footer .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Conversion CTA ── */
  .conversion-box {
    padding: 40px 22px;
    border-radius: 20px;
  }

  .conversion-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .conversion-desc {
    font-size: 1rem;
    line-height: 1.82;
  }

  .conversion-actions {
    flex-direction: column;
    width: 100%;
  }

  .conversion-actions .btn,
  .copy-pill {
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
    padding: 13px 18px;
    box-sizing: border-box;
  }

  /* ── Footer ── */
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    font-size: 0.85rem;
  }
}

/* ── Extra small screens (< 400px) ── */
@media (max-width: 400px) {
  .container {
    padding-inline: 18px;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.52;
  }

  .trust-bar {
    padding: 12px;
    gap: 6px;
  }

  .trust-number {
    font-size: 1.1rem;
  }

  .trust-label {
    font-size: 0.72rem;
  }

  .badge-status,
  .badge-prestige {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .visual-card {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .brand-link {
    max-width: 60%;
    overflow: hidden;
  }
  .brand-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-title {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 768px) {
  .visual-tagline {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .visual-identity-meta {
    padding-bottom: 10px;
  }
}

/* Justify alignments */
.hero-lead, 
.pain-card p, 
.solution-card p, 
.about-content p, 
.process-card p, 
.guarantee-card p {
  text-align: justify;
  text-justify: inter-word;
}

/* Adjust grids to 2x2 */
@media (min-width: 1024px) {
  .pain-grid, .solutions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pain-grid, .solutions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}



/* Corrected Mobile Optimization */
@media (max-width: 768px) {
  .site-header {
    height: 60px;
  }
  .hero-section {
    padding-block: 15px 20px;
  }
  .hero-grid {
    gap: 15px;
  }
  
  /* Optimize visual card properly */
  .visual-card {
    padding: 15px 15px 20px 15px;
    margin-bottom: 30px;
    max-width: 300px;
  }
  .visual-artwork-wrap {
    max-width: 175px !important; /* This controls the actual size! */
    margin: 0 auto 10px auto !important;
  }
  .visual-artwork {
    width: 100% !important;
    height: 100% !important;
  }
  .visual-name-row {
    margin-bottom: 5px;
  }
  .visual-tagline {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .visual-badge-top {
    padding: 4px 10px;
    font-size: 0.75rem;
  }
  
  /* Optimize Text & CTA spacing */
  .hero-title {
    font-size: 1.45rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 15px;
  }
  
  /* The CTA group stays under the text but is sized nicely */
  .hero-cta-group {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
  .btn {
    width: 100%;
    padding: 10px 20px;
  }
}

/* About Section Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}
.about-visual {
  text-align: center;
}
.about-avatar {
  width: 200px;
  height: 200px;
  
  
  
  object-fit: cover;
}
.about-content .section-title {
  margin-bottom: 20px;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-avatar {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .mobile-nav-drawer {
    top: 60px; /* Match header height */
  }
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.fab-btn {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
.fab-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fab-btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .fab-btn {
    width: 40px;
    height: 40px;
  }
  .fab-btn svg {
    width: 20px;
    height: 20px;
  }
}
