/* ============================================================
   AVUNMORIX DIGITAL - MAIN STYLESHEET
   Design: Candy Gradient | Whitespace Premium
   ============================================================ */


:root {
  
  --color-pink:        #f472b6;
  --color-pink-light:  #fce7f3;
  --color-pink-mid:    #ec4899;
  --color-purple:      #a855f7;
  --color-purple-light:#f3e8ff;
  --color-purple-mid:  #9333ea;
  --color-blue:        #60a5fa;
  --color-blue-light:  #dbeafe;
  --color-blue-mid:    #3b82f6;
  --color-teal:        #2dd4bf;
  --color-teal-light:  #ccfbf1;

  
  --grad-candy:        linear-gradient(135deg, #f472b6 0%, #a855f7 40%, #60a5fa 75%, #2dd4bf 100%);
  --grad-candy-soft:   linear-gradient(135deg, #fce7f3 0%, #f3e8ff 50%, #dbeafe 100%);
  --grad-candy-text:   linear-gradient(90deg, #ec4899, #a855f7, #3b82f6);
  --grad-hero:         linear-gradient(135deg, #fdf4ff 0%, #f0f4ff 50%, #f0fdfa 100%);
  --grad-section-fade: linear-gradient(180deg, #f8f5ff 0%, #f0f9ff 100%);

  
  --text-primary:   #1e1433;
  --text-secondary: #4a3f6b;
  --text-muted:     #7c6fa0;
  --text-light:     #b4a8cc;

  
  --surface-white:  #fefefe;
  --surface-light:  #faf8ff;
  --surface-tinted: #f5f0ff;
  --surface-card:   #ffffff;

  
  --border-light:   #ede8ff;
  --border-mid:     #d8ccf5;

  
  --shadow-xs:   0 1px 3px rgba(100, 60, 180, 0.06);
  --shadow-sm:   0 2px 8px rgba(100, 60, 180, 0.08), 0 1px 3px rgba(100, 60, 180, 0.04);
  --shadow-md:   0 4px 20px rgba(100, 60, 180, 0.10), 0 2px 8px rgba(100, 60, 180, 0.06);
  --shadow-lg:   0 8px 40px rgba(100, 60, 180, 0.14), 0 4px 16px rgba(100, 60, 180, 0.08);
  --shadow-xl:   0 16px 60px rgba(100, 60, 180, 0.16), 0 8px 24px rgba(100, 60, 180, 0.10);
  --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.20);

  
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  
  --header-height: 72px;
}


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

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--surface-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--text-primary); }

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { line-height: 1.75; color: var(--text-secondary); }


.mod-hero-title-gradient {
  background: var(--grad-candy-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--grad-candy);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md), 0 0 20px rgba(168, 85, 247, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(168, 85, 247, 0.35);
  opacity: 0.95;
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-mid);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.btn-ghost:hover {
  border-color: var(--color-purple);
  color: var(--color-purple);
  background: var(--color-purple-light);
  transform: translateY(-2px);
}

.btn-large { padding: 1rem 2.25rem; font-size: 1.05rem; }


.mod-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: var(--grad-candy-soft);
  color: var(--color-purple-mid);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

/* ============================================================
   HEADER
   ============================================================ */
.mod-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(254, 254, 254, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s ease;
}
.mod-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.mod-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-md);
}

.mod-header-logo { flex-shrink: 0; display: flex; align-items: center; }
.mod-header-logo img { transition: opacity 0.25s ease; }
.mod-header-logo:hover img { opacity: 0.8; }

.mod-nav { display: none; }
@media (min-width: 1024px) { .mod-nav { display: flex; align-items: center; } }

.mod-nav-list { display: flex; align-items: center; gap: var(--space-xs); }

.mod-nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: color 0.25s ease, background 0.25s ease;
}
.mod-nav-link:hover, .mod-nav-link.active {
  color: var(--color-purple-mid);
  background: var(--color-purple-light);
}

.mod-header-cta { display: none; }
@media (min-width: 1024px) { .mod-header-cta { display: inline-flex; } }

.mod-header-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  transition: background 0.25s ease;
}
.mod-header-hamburger:hover { background: var(--surface-tinted); }
.mod-header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mod-header-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mod-header-hamburger.open span:nth-child(2) { opacity: 0; }
.mod-header-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) { .mod-header-hamburger { display: none; } }


.mod-mobile-nav {
  background: var(--surface-white);
  border-top: 1px solid var(--border-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mod-mobile-nav.open { max-height: 500px; }

.mod-mobile-nav-list { padding: var(--space-sm) var(--space-md); display: flex; flex-direction: column; gap: 2px; }

.mod-mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: background 0.2s ease, color 0.2s ease;
}
.mod-mobile-nav-link:hover { background: var(--surface-tinted); color: var(--color-purple-mid); }
.mod-mobile-nav-cta {
  margin-top: var(--space-xs);
  background: var(--grad-candy);
  color: #fff !important;
  text-align: center;
  font-weight: 600;
  border-radius: var(--radius-full);
}
.mod-mobile-nav-cta:hover { opacity: 0.9; background: var(--grad-candy); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.mod-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--grad-hero);
  overflow: hidden;
}

.mod-hero-bg-number {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(12rem, 30vw, 28rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(168, 85, 247, 0.07);
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.mod-hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.mod-hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f472b6, transparent 70%);
  top: -100px; left: -100px;
}
.mod-hero-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  top: 20%; right: -150px;
}
.mod-hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2dd4bf, transparent 70%);
  bottom: -50px; left: 30%;
}

.mod-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  align-items: center;
}
@media (min-width: 900px) {
  .mod-hero-inner { grid-template-columns: 1fr 1fr; }
}

.mod-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(168, 85, 247, 0.1);
  color: var(--color-purple-mid);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
}

.mod-hero-title {
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.mod-hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.75;
}

.mod-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.mod-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.mod-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  box-shadow: var(--shadow-xs);
}
.mod-hero-tag i { color: var(--color-teal); font-size: 0.75rem; }

.mod-hero-visual { position: relative; }

.mod-hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.mod-hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mod-hero-image-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  white-space: nowrap;
}
.mod-hero-image-badge i { color: var(--color-purple); }

.mod-hero-badge-float-1 { bottom: -16px; left: -20px; }
.mod-hero-badge-float-2 { top: -16px; right: -16px; }

/* ============================================================
   GRADIENT FADE TRANSITION
   ============================================================ */
.mod-gradient-fade-transition {
  height: 120px;
  background: linear-gradient(180deg, var(--grad-hero) 0%, #f8f5ff 100%);
  margin-top: -60px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.mod-problem {
  padding: var(--space-3xl) 0;
  background: var(--surface-light);
}

.mod-problem-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}
.mod-problem-title { margin-bottom: var(--space-sm); }
.mod-problem-intro { font-size: 1.05rem; }

.mod-problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) { .mod-problem-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mod-problem-grid { grid-template-columns: repeat(4, 1fr); } }

.mod-problem-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mod-problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.mod-problem-card:hover .mod-problem-card-reveal {
  opacity: 1;
  transform: translateY(0);
}

.mod-problem-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-candy-soft);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  color: var(--color-purple-mid);
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.mod-problem-card-title {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
.mod-problem-card-text { font-size: 0.9rem; line-height: 1.65; }

.mod-problem-card-reveal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-purple-mid);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================================
   MODULES SECTION
   ============================================================ */
.mod-modules {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}

.mod-modules-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}
.mod-modules-title { margin-bottom: var(--space-sm); }
.mod-modules-subtitle { font-size: 1.05rem; }

.mod-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) { .mod-modules-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mod-modules-grid { grid-template-columns: repeat(4, 1fr); } }

.mod-module-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.mod-module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-purple);
}
.mod-module-card:hover .mod-module-card-hover-content {
  opacity: 1;
  max-height: 80px;
}

.mod-module-card-featured {
  background: linear-gradient(135deg, #fdf4ff, #f0f4ff);
  border-color: var(--color-purple);
}

.mod-module-card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-candy-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.7;
}

.mod-module-card-title { font-size: 1rem; margin-bottom: 0.5rem; }
.mod-module-card-text { font-size: 0.88rem; line-height: 1.65; margin-bottom: var(--space-sm); }

.mod-module-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.mod-module-card-tags span {
  padding: 0.2rem 0.65rem;
  background: var(--grad-candy-soft);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-purple-mid);
  border: 1px solid var(--border-light);
}

.mod-module-card-hover-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  border-top: 1px solid var(--border-light);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
}
.mod-module-card-hover-content p { font-size: 0.83rem; color: var(--color-purple-mid); }

/* ============================================================
   APPROACH SECTION
   ============================================================ */
.mod-approach {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--surface-white) 0%, var(--surface-tinted) 100%);
}

.mod-approach-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 900px) {
  .mod-approach-inner { grid-template-columns: 1fr 1fr; }
}

.mod-approach-visual { position: relative; }

.mod-approach-img {
  border-radius: var(--radius-xl);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.mod-approach-img-accent {
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 12px);
  background: var(--grad-candy);
  z-index: -1;
  opacity: 0.15;
}

.mod-approach-title { margin-bottom: var(--space-md); }
.mod-approach-text { margin-bottom: var(--space-md); font-size: 1.02rem; }

.mod-approach-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.mod-approach-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.mod-approach-feature i {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-candy-soft);
  border-radius: var(--radius-sm);
  color: var(--color-purple-mid);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   FOR WHOM SECTION
   ============================================================ */
.mod-forwho {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}

.mod-forwho-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-2xl);
}
.mod-forwho-title { margin-bottom: var(--space-sm); }

.mod-forwho-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) { .mod-forwho-grid { grid-template-columns: repeat(3, 1fr); } }

.mod-forwho-card {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mod-forwho-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.mod-forwho-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mod-forwho-card:hover .mod-forwho-img { transform: scale(1.04); }

.mod-forwho-card-body { padding: var(--space-lg); }
.mod-forwho-card-title { margin-bottom: 0.6rem; font-size: 1.1rem; }
.mod-forwho-card-body p { font-size: 0.92rem; }

/* ============================================================
   TOOLS SECTION
   ============================================================ */
.mod-tools {
  padding: var(--space-3xl) 0;
  background: var(--surface-tinted);
}

.mod-tools-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}
.mod-tools-title { margin-bottom: var(--space-sm); }
.mod-tools-subtitle { font-size: 1.02rem; }

.mod-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) { .mod-tools-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mod-tools-grid { grid-template-columns: repeat(4, 1fr); } }

.mod-tool-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.mod-tool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.mod-tool-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--tool-color) 12%, white);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--tool-color);
  margin-bottom: var(--space-md);
}

.mod-tool-card-name { font-size: 1.05rem; margin-bottom: 0.5rem; }
.mod-tool-card-desc { font-size: 0.88rem; line-height: 1.65; margin-bottom: var(--space-sm); }

.mod-tool-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: #dcfce7;
  color: #16a34a;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.mod-gallery {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}

.mod-gallery-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto var(--space-2xl);
}
.mod-gallery-title { margin-bottom: var(--space-sm); }

.mod-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-sm);
}
@media (min-width: 768px) {
  .mod-gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .mod-gallery-item-large { grid-row: 1 / 3; }
}

.mod-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  box-shadow: var(--shadow-sm);
}
.mod-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mod-gallery-item-large img { aspect-ratio: 3/4; }
@media (min-width: 768px) { .mod-gallery-item-large img { aspect-ratio: auto; height: 100%; } }

.mod-gallery-item:hover img { transform: scale(1.05); }

.mod-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(100, 40, 160, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 1.5rem;
}
.mod-gallery-item:hover .mod-gallery-overlay { opacity: 1; }

/* ============================================================
   CONTACT PREVIEW
   ============================================================ */
.mod-contact-preview {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--surface-white) 0%, var(--surface-tinted) 100%);
}

.mod-contact-preview-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
}
.mod-contact-preview-title { margin-bottom: var(--space-sm); }

.mod-contact-preview-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
@media (min-width: 768px) {
  .mod-contact-preview-cards { grid-template-columns: repeat(3, 1fr); }
}

.mod-contact-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mod-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.mod-contact-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-candy-soft);
  border-radius: var(--radius-md);
  color: var(--color-purple-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mod-contact-card-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.3rem; }
.mod-contact-card-body p { font-size: 0.88rem; line-height: 1.6; }
.mod-contact-card-body a { color: var(--color-purple-mid); }
.mod-contact-card-body a:hover { text-decoration: underline; }
.mod-contact-card-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }

.mod-contact-preview-cta { text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.mod-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.85);
  padding-top: var(--space-2xl);
}

.mod-footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 900px) {
  .mod-footer-inner { grid-template-columns: 1.5fr 1fr; }
}

.mod-footer-logo { opacity: 0.9; margin-bottom: var(--space-md); }

.mod-footer-story {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 400px;
  margin-bottom: var(--space-lg);
}

.mod-footer-cta { align-self: flex-start; }

.mod-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
}
@media (max-width: 599px) {
  .mod-footer-links { grid-template-columns: 1fr 1fr; }
}

.mod-footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
}

.mod-footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.mod-footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.mod-footer-col a:hover { color: var(--color-pink); }

.mod-footer-bottom {
  margin-top: var(--space-2xl);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mod-footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-xs);
}
.mod-footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.mod-page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--grad-hero);
  overflow: hidden;
  text-align: center;
}

.mod-page-hero .mod-hero-bg-number {
  font-size: clamp(6rem, 20vw, 18rem);
  opacity: 0.04;
  right: 50%;
  transform: translate(50%, -50%);
  -webkit-text-stroke: 2px rgba(168, 85, 247, 0.15);
}

.mod-page-hero-content { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.mod-page-hero-title { margin-bottom: var(--space-md); }
.mod-page-hero-text { font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ============================================================
   STORY PAGE
   ============================================================ */
.mod-story {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}

.mod-story-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 900px) {
  .mod-story-inner { grid-template-columns: 1.4fr 1fr; }
}

.mod-story-block { margin-bottom: var(--space-2xl); }
.mod-story-block:last-child { margin-bottom: 0; }

.mod-story-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-purple-mid);
  background: var(--color-purple-light);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.mod-story-block-title { margin-bottom: var(--space-md); }
.mod-story-content p { font-size: 1.02rem; margin-bottom: var(--space-md); }

.mod-story-sidebar { display: flex; flex-direction: column; gap: var(--space-lg); }

.mod-story-image-stack { position: relative; }
.mod-story-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.mod-story-img-card {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  max-width: 200px;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.mod-story-img-card i { color: var(--color-purple-mid); margin-top: 2px; }
.mod-story-img-card p { font-size: 0.8rem; line-height: 1.5; }

.mod-story-values {
  background: var(--surface-tinted);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
}
.mod-story-values-title { font-size: 1rem; margin-bottom: var(--space-md); }

.mod-story-value {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.mod-story-value:last-child { margin-bottom: 0; }
.mod-story-value i { color: var(--color-teal); margin-top: 3px; flex-shrink: 0; }
.mod-story-value strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.mod-story-value p { font-size: 0.85rem; }

.mod-story-cta {
  padding: var(--space-3xl) 0;
  background: var(--grad-candy-soft);
}
.mod-story-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.mod-story-cta-title { margin-bottom: var(--space-md); }
.mod-story-cta-inner p { margin-bottom: var(--space-lg); font-size: 1.05rem; }

/* ============================================================
   FEATURES PAGE
   ============================================================ */
.mod-feature-section {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}
.mod-feature-section-tinted { background: var(--surface-tinted); }

.mod-feature-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 900px) {
  .mod-feature-inner { grid-template-columns: 1fr 1fr; }
  .mod-feature-inner-alt .mod-feature-content { order: 2; }
  .mod-feature-inner-alt .mod-feature-visual { order: 1; }
}

.mod-feature-module-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-purple-mid);
  background: var(--color-purple-light);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.mod-feature-title { margin-bottom: var(--space-md); }
.mod-feature-text { margin-bottom: var(--space-md); font-size: 1.02rem; }

.mod-feature-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: var(--space-md); }
.mod-feature-list-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.mod-feature-list-item i { color: var(--color-teal); font-size: 0.7rem; flex-shrink: 0; }

.mod-feature-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mod-feature-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.mod-feature-tool {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.mod-feature-tool:hover { border-color: var(--color-purple); box-shadow: var(--shadow-sm); }
.mod-feature-tool i { color: var(--color-purple-mid); }

.mod-feature-closing {
  background: linear-gradient(135deg, #fdf4ff 0%, #f0f4ff 100%);
}
.mod-feature-closing-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 900px) {
  .mod-feature-closing-inner { grid-template-columns: 1fr 1fr; }
}

.mod-feature-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  margin-bottom: var(--space-sm);
  transition: box-shadow 0.25s ease;
}
.mod-feature-step:hover { box-shadow: var(--shadow-md); }
.mod-feature-step:last-child { margin-bottom: 0; }

.mod-feature-step-num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-candy);
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.mod-feature-step h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.mod-feature-step p { font-size: 0.85rem; }

.mod-features-cta {
  padding: var(--space-3xl) 0;
  background: var(--surface-tinted);
}
.mod-features-cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.mod-features-cta-title { margin-bottom: var(--space-md); }
.mod-features-cta-inner p { margin-bottom: var(--space-lg); font-size: 1.05rem; }
.mod-features-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-sm); }

/* ============================================================
   TEAMS PAGE
   ============================================================ */
.mod-teams-why {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}
.mod-teams-why-header { max-width: 640px; margin: 0 auto var(--space-2xl); text-align: center; }
.mod-teams-why-title { margin-bottom: var(--space-md); }
.mod-teams-why-text { font-size: 1.05rem; }

.mod-teams-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) { .mod-teams-why-grid { grid-template-columns: repeat(3, 1fr); } }

.mod-teams-why-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mod-teams-why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.mod-teams-why-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-candy-soft);
  border-radius: var(--radius-lg);
  font-size: 1.4rem;
  color: var(--color-purple-mid);
  margin: 0 auto var(--space-md);
}
.mod-teams-why-card h3 { margin-bottom: 0.5rem; }
.mod-teams-why-card p { font-size: 0.9rem; }

.mod-teams-how {
  padding: var(--space-3xl) 0;
  background: var(--surface-tinted);
}
.mod-teams-how-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
@media (min-width: 900px) { .mod-teams-how-inner { grid-template-columns: 1fr 1fr; } }

.mod-teams-how-title { margin-bottom: var(--space-md); }
.mod-teams-how-text { margin-bottom: var(--space-md); font-size: 1.02rem; }

.mod-teams-how-steps { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); }

.mod-teams-how-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.mod-teams-step-num {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-candy);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.mod-teams-step-content h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.mod-teams-step-content p { font-size: 0.88rem; }

.mod-teams-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mod-teams-modules {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}
.mod-teams-modules-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-2xl);
}
.mod-teams-modules-title { margin-bottom: var(--space-sm); }
.mod-teams-modules-header p { font-size: 1.02rem; }

.mod-teams-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 640px) { .mod-teams-modules-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .mod-teams-modules-grid { grid-template-columns: repeat(4, 1fr); } }

.mod-teams-module-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mod-teams-module-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.mod-teams-module-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-candy-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.7;
}
.mod-teams-module-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.mod-teams-module-card p { font-size: 0.88rem; }

.mod-teams-cta {
  padding: var(--space-3xl) 0;
  background: var(--grad-candy-soft);
}
.mod-teams-cta-inner { text-align: center; max-width: 520px; margin: 0 auto; }
.mod-teams-cta-title { margin-bottom: var(--space-md); }
.mod-teams-cta-inner p { margin-bottom: var(--space-lg); font-size: 1.05rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.mod-contact-hero {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: var(--grad-hero);
  text-align: center;
}
.mod-contact-hero-content { max-width: 600px; margin: 0 auto; }
.mod-contact-hero-title { margin-bottom: var(--space-md); }
.mod-contact-hero-text { font-size: 1.1rem; }

.mod-contact-main {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}
.mod-contact-main-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 900px) {
  .mod-contact-main-inner { grid-template-columns: 1.2fr 1fr; }
}

.mod-contact-form-wrap {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.mod-contact-form-title { margin-bottom: var(--space-lg); font-size: 1.4rem; }

.mod-form-step { transition: opacity 0.3s ease; }
.mod-form-step-hidden { display: none; }

.mod-form-progress {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.mod-form-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.mod-form-progress-step span {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--border-mid);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.mod-form-progress-step label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.mod-form-progress-step-active span {
  background: var(--grad-candy);
  border-color: transparent;
  color: #fff;
}
.mod-form-progress-step-active label { color: var(--color-purple-mid); }
.mod-form-progress-step-done span {
  background: var(--color-teal);
  border-color: transparent;
  color: #fff;
}

.mod-form-progress-line {
  flex: 1;
  height: 2px;
  background: var(--border-mid);
  border-radius: 2px;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}
.mod-form-progress-line-done { background: var(--color-teal); }

.mod-form-group { margin-bottom: var(--space-md); }
.mod-form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.mod-form-input, .mod-form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface-light);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.mod-form-input:focus, .mod-form-textarea:focus {
  border-color: var(--color-purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
  background: var(--surface-white);
}
.mod-form-textarea { resize: vertical; min-height: 130px; }

.mod-form-group-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; }
.mod-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.mod-form-checkbox-label input[type="checkbox"] { display: none; }
.mod-form-checkbox-custom {
  width: 20px; height: 20px;
  border: 2px solid var(--border-mid);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  background: var(--surface-white);
}
.mod-form-checkbox-label input:checked + .mod-form-checkbox-custom {
  background: var(--grad-candy);
  border-color: transparent;
}
.mod-form-checkbox-label input:checked + .mod-form-checkbox-custom::after {
  content: '';
  display: block;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.mod-form-checkbox-label a { color: var(--color-purple-mid); text-decoration: underline; }

.mod-form-actions { display: flex; gap: var(--space-sm); align-items: center; margin-top: var(--space-md); flex-wrap: wrap; }
.mod-form-next { width: 100%; justify-content: center; margin-top: var(--space-sm); }

.mod-contact-info-title { font-size: 1.4rem; margin-bottom: var(--space-lg); }
.mod-contact-info-cards { display: flex; flex-direction: column; gap: var(--space-md); }

.mod-contact-info-card {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--surface-tinted);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.25s ease;
}
.mod-contact-info-card:hover { box-shadow: var(--shadow-sm); }

.mod-contact-info-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-candy-soft);
  border-radius: var(--radius-md);
  color: var(--color-purple-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.mod-contact-info-card h3 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.mod-contact-info-card p { font-size: 0.88rem; line-height: 1.6; }
.mod-contact-info-card a { color: var(--color-purple-mid); }
.mod-contact-info-card a:hover { text-decoration: underline; }
.mod-contact-info-note { font-size: 0.78rem; color: var(--text-muted); }


.mod-contact-timeline {
  padding: var(--space-3xl) 0;
  background: var(--surface-tinted);
}
.mod-contact-timeline-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto var(--space-2xl);
}
.mod-contact-timeline-title { margin-bottom: var(--space-sm); }

.mod-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.mod-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-pink), var(--color-purple), var(--color-blue), var(--color-teal));
}

.mod-timeline-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
}
.mod-timeline-item:last-child { margin-bottom: 0; }

.mod-timeline-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-candy);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.mod-timeline-content {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  flex: 1;
  transition: box-shadow 0.25s ease;
}
.mod-timeline-content:hover { box-shadow: var(--shadow-md); }
.mod-timeline-content h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.mod-timeline-content p { font-size: 0.88rem; }

.mod-timeline-time {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-purple-mid);
  background: var(--color-purple-light);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}


.mod-contact-map {
  padding: var(--space-3xl) 0;
  background: var(--surface-white);
}
.mod-contact-map-title { text-align: center; margin-bottom: var(--space-lg); }
.mod-contact-map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.mod-thanks-main { min-height: calc(100vh - var(--header-height) - 200px); display: flex; align-items: center; }

.mod-thanks {
  padding: var(--space-3xl) 0;
  width: 100%;
}
.mod-thanks-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}


.mod-thanks-envelope {
  margin: 0 auto var(--space-xl);
  width: 120px;
  height: 100px;
}

.mod-envelope {
  position: relative;
  width: 120px;
  height: 80px;
}

.mod-envelope-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 70px;
  background: linear-gradient(135deg, #fce7f3, #f3e8ff);
  border-radius: 4px 4px 8px 8px;
  border: 2px solid var(--border-mid);
  box-shadow: var(--shadow-md);
}

.mod-envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 40px solid var(--color-purple-light);
  transform-origin: top center;
  animation: envelope-open 0.8s ease 0.3s forwards;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(100,60,180,0.1));
}

@keyframes envelope-open {
  0%   { transform: rotateX(0deg); }
  100% { transform: rotateX(-160deg); }
}

.mod-envelope-letter {
  position: absolute;
  bottom: 10px;
  left: 15px;
  width: 90px;
  height: 55px;
  background: var(--surface-white);
  border-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  animation: letter-rise 0.6s ease 0.9s both;
  z-index: 1;
  overflow: hidden;
}

@keyframes letter-rise {
  0%   { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(-35px); opacity: 1; }
}

.mod-envelope-letter-lines {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mod-envelope-letter-lines::before,
.mod-envelope-letter-lines::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--grad-candy-soft);
  border-radius: 2px;
}
.mod-envelope-letter-lines::before { width: 70%; }
.mod-envelope-letter-lines::after { width: 50%; }

.mod-thanks-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: var(--space-md);
  animation: fade-up 0.6s ease 1.4s both;
}
.mod-thanks-text {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  animation: fade-up 0.6s ease 1.6s both;
}
.mod-thanks-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  animation: fade-up 0.6s ease 1.8s both;
}
.mod-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  animation: fade-up 0.6s ease 2s both;
}

@keyframes fade-up {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.mod-legal-hero {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  background: var(--grad-hero);
  border-bottom: 1px solid var(--border-light);
}
.mod-legal-title { margin-bottom: 0.5rem; }
.mod-legal-meta { font-size: 0.88rem; color: var(--text-muted); }

.mod-legal-content { padding: var(--space-3xl) 0; background: var(--surface-white); }
.mod-legal-container { max-width: 800px; }

.mod-legal-intro {
  background: var(--surface-tinted);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-purple);
  margin-bottom: var(--space-2xl);
}
.mod-legal-intro p { font-size: 1rem; }

.mod-legal-qa { display: flex; flex-direction: column; gap: var(--space-xl); }

.mod-legal-q h2 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--border-light);
}
.mod-legal-q p { font-size: 0.95rem; margin-bottom: var(--space-sm); }
.mod-legal-q p:last-child { margin-bottom: 0; }

.mod-legal-sections-lettered { display: flex; flex-direction: column; gap: var(--space-xl); }

.mod-legal-section h2 {
  font-size: 1.15rem;
  color: var(--color-purple-mid);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}
.mod-legal-section p { font-size: 0.95rem; margin-bottom: var(--space-sm); }
.mod-legal-section p:last-child { margin-bottom: 0; }

.mod-legal-cookies-sections { display: flex; flex-direction: column; gap: var(--space-xl); }

.mod-legal-cookie-block h2 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.mod-legal-cookie-block p { font-size: 0.95rem; margin-bottom: var(--space-sm); }
.mod-legal-cookie-block p:last-child { margin-bottom: 0; }

.mod-cookie-type {
  background: var(--surface-tinted);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  border: 1px solid var(--border-light);
}
.mod-cookie-type h3 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--color-purple-mid); }
.mod-cookie-type p { font-size: 0.88rem; }

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.mod-cookie-consent {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 320px;
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border-light);
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  overflow: hidden;
}
.mod-cookie-consent.visible {
  transform: translateY(0);
  opacity: 1;
}
.mod-cookie-consent.expanded { width: 320px; }

.mod-cookie-consent-header {
  padding: var(--space-md) var(--space-md) var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.mod-cookie-consent-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-candy-soft);
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.mod-cookie-consent-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mod-cookie-consent-body { padding: 0 var(--space-md) var(--space-md); }
.mod-cookie-consent-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.mod-cookie-consent-text a { color: var(--color-purple-mid); text-decoration: underline; }

.mod-cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mod-cookie-btn-accept {
  padding: 0.7rem;
  background: var(--grad-candy);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mod-cookie-btn-accept:hover { opacity: 0.9; transform: translateY(-1px); }

.mod-cookie-btn-customize {
  padding: 0.65rem;
  background: transparent;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid var(--border-mid);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.mod-cookie-btn-customize:hover { border-color: var(--color-purple); color: var(--color-purple-mid); }

.mod-cookie-btn-reject {
  padding: 0.55rem;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: color 0.25s ease;
}
.mod-cookie-btn-reject:hover { color: var(--text-primary); }

.mod-cookie-toggles {
  display: none;
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--border-light);
  flex-direction: column;
  gap: var(--space-sm);
}
.mod-cookie-toggles.visible { display: flex; }

.mod-cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.mod-cookie-toggle-info strong { display: block; font-size: 0.82rem; font-weight: 600; }
.mod-cookie-toggle-info span { font-size: 0.75rem; color: var(--text-muted); }

.mod-cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.mod-cookie-toggle input { opacity: 0; width: 0; height: 0; }
.mod-cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-mid);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.3s ease;
}
.mod-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-xs);
}
.mod-cookie-toggle input:checked + .mod-cookie-toggle-slider { background: var(--grad-candy); }
.mod-cookie-toggle input:checked + .mod-cookie-toggle-slider::before { transform: translateX(18px); }
.mod-cookie-toggle input:disabled + .mod-cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }

.mod-cookie-save-btn {
  margin: var(--space-sm) var(--space-md) var(--space-md);
  width: calc(100% - var(--space-2xl));
  padding: 0.7rem;
  background: var(--grad-candy);
  color: #fff;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  display: none;
  transition: opacity 0.25s ease;
}
.mod-cookie-save-btn:hover { opacity: 0.9; }
.mod-cookie-save-btn.visible { display: block; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 640px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }
  .mod-hero-inner { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
  .mod-hero-badge-float-1, .mod-hero-badge-float-2 { display: none; }
  .mod-footer-links { grid-template-columns: 1fr 1fr; }
  .mod-contact-form-wrap { padding: var(--space-lg); }
  .mod-approach-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .mod-hero-actions { flex-direction: column; }
  .mod-hero-actions .btn-primary, .mod-hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .mod-cookie-consent { width: calc(100vw - var(--space-lg)); right: var(--space-sm); bottom: var(--space-sm); }
  .mod-timeline::before { left: 20px; }
  .mod-timeline-icon { width: 42px; height: 42px; font-size: 0.9rem; }
}