/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; word-wrap: break-word; overflow-wrap: break-word; }

:root {
  --bg: #faf8ff;
  --bg2: #f2edfb;
  --bg3: #e6d8f7;
  --accent: #6B2FA0;
  --accent2: #521E85;
  --accent-gold: #C9961A;
  --accent-amber: #E87830;
  --text: #1a0f2e;
  --text-muted: #6b5789;
  --border: rgba(107, 47, 160, 0.18);
  --card-bg: #ffffff;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =====================
   TYPOGRAPHY
===================== */
h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.1; font-weight: 900; }
h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { word-wrap: break-word; overflow-wrap: break-word; text-align: justify; }

.accent { color: var(--accent); }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

section { padding: 6rem 0; }

/* =====================
   BUTTONS
===================== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid rgba(107, 47, 160, 0.35);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-full { width: 100%; text-align: center; }

/* Tarot Card golden button */
#tarot-btn {
  position: relative;
  background: linear-gradient(90deg, #b8860b, #f5d060, #C9961A, #f5d060, #b8860b);
  background-size: 300% 100%;
  border: none;
  color: #1a0f00;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  animation: goldShift 3s linear infinite;
  box-shadow: 0 0 16px rgba(201, 150, 26, 0.5), 0 4px 20px rgba(201, 150, 26, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.03em;
}
#tarot-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-20deg);
  animation: shimmer 2.5s ease-in-out infinite;
}
#tarot-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 28px rgba(201, 150, 26, 0.75), 0 8px 32px rgba(201, 150, 26, 0.4);
}
@keyframes goldShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
@keyframes shimmer {
  0%   { left: -75%; }
  60%  { left: 125%; }
  100% { left: 125%; }
}

/* =====================
   NAVBAR
===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.8rem 2rem;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(107, 47, 160, 0.08);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(107, 47, 160, 0.25));
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--accent); }
.btn-nav {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--accent2) !important; color: #ffffff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--accent); }

/* =====================
   HERO
===================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 4rem;
}
.hero-content { flex: 1; }
.hero-content h1 { max-width: 560px; font-size: clamp(1.6rem, 2.8vw, 2.4rem); line-height: 1.3; word-wrap: break-word; overflow-wrap: break-word; word-break: break-word; }
.hero-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 1.5rem 0 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.location-note { margin-top: 1.2rem; font-size: 0.9rem; color: var(--text-muted); }

.hero-visual { flex: 0 0 400px; position: relative; }
.hero-img-wrap { position: relative; display: inline-block; width: 100%; }
.hero-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 60px rgba(107, 47, 160, 0.15);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(107, 47, 160, 0.35);
}
.hero-badge strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.hero-badge span { font-size: 0.75rem; font-weight: 600; line-height: 1.3; }

/* =====================
   STATS
===================== */
#stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat strong { display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; }
.stat span { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }

/* =====================
   ABOUT
===================== */
#about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-image { position: relative; }
.img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
}
.about-accent-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(107, 47, 160, 0.35);
}
.about-accent-box strong { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.about-accent-box span { font-size: 0.85rem; font-weight: 600; line-height: 1.4; }

.about-text h2 { margin-bottom: 1.5rem; }
.about-text h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; font-weight: 700; margin-bottom: 1.5rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-text strong { color: var(--text); }
.about-intro { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.1rem; }
.about-pillars { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.8rem 0 2rem; }
.about-pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(var(--accent-rgb, 139,90,43), 0.06);
  border-left: 3px solid var(--accent);
  padding: 0.65rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.pillar-icon { color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }
.about-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.about-list li::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =====================
   SERVICES
===================== */
/* VISION & MISSION */
#vision-mission { background: var(--bg-alt); padding: 80px 0; }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vm-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vm-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.vm-icon {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}
.vm-card h3 { font-size: 1.5rem; margin: 0.25rem 0 1rem; }
.vm-card p { color: var(--text-muted); line-height: 1.8; font-size: 1rem; }
.about-vm-grid { grid-template-columns: 1fr 1fr; margin-top: 2rem; }
.about-vm-grid .vm-card { padding: 1.5rem 1.25rem; }
@media (max-width: 640px) { .vm-grid { grid-template-columns: 1fr; } }

#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(107, 47, 160, 0.06);
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(107, 47, 160, 0.15); }
.service-card.featured { background: var(--accent); border-color: var(--accent); box-shadow: 0 12px 40px rgba(107, 47, 160, 0.35); }
.service-card.featured h3, .service-card.featured p, .service-card.featured .service-tag { color: #ffffff; }
.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =====================
   PORTFOLIO / CASE STUDIES
===================== */
#portfolio { background: var(--bg2); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(107, 47, 160, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.portfolio-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(107, 47, 160, 0.16); }
.portfolio-item.large { grid-column: span 2; }

/* Coloured header band */
.cs-header {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 110px;
}
.pi-1 { background: linear-gradient(135deg, #e4d0f8 0%, #c9a8ef 100%); }
.pi-2 { background: linear-gradient(135deg, #fdecc8 0%, #f5d08a 100%); }
.pi-3 { background: linear-gradient(135deg, #d8c0f8 0%, #b890ef 100%); }
.pi-4 { background: linear-gradient(135deg, #fde0b0 0%, #f5c06a 100%); }
.pi-5 { background: linear-gradient(135deg, #e8d8ff 0%, #c8a8f8 100%); }

.pi-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.6);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}

.cs-stat-hero {
  text-align: right;
  flex-shrink: 0;
}
.cs-stat-hero strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}
.cs-stat-hero span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Card body */
.cs-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cs-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cs-meta span { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.cs-duration { color: var(--accent) !important; }

.cs-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.cs-body > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.cs-outcomes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.25rem;
}
.cs-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cs-dot {
  display: block;
  width: 7px;
  height: 7px;
  min-width: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 0.42em;
}

.cs-quote {
  font-size: 0.825rem !important;
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
  padding-left: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.6 !important;
}

/* =====================
   PROCESS / TIMELINE
===================== */
#process { background: var(--bg); }

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.25;
}

.tl-item {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px rgba(107,47,160,0.2);
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.tl-body {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 12px rgba(107, 47, 160, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.tl-body:hover { box-shadow: 0 8px 28px rgba(107, 47, 160, 0.14); transform: translateY(-2px); }
.tl-body h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.tl-body > p { color: var(--text-muted); font-size: 0.92rem; }

/* Substeps (Step 02) */
.substeps { display: flex; flex-direction: column; gap: 0; }
.substep {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.25rem 0;
}
.substep-dot {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 5px;
}
.substep strong { font-size: 0.95rem; display: block; margin-bottom: 0.1rem; }
.substep p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.substep-arrow {
  text-align: center;
  color: var(--accent);
  font-size: 1.1rem;
  opacity: 1;
  padding: 0.1rem 0 0.1rem 1.5rem;
}

/* Insights list (Step 03) */
.insights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  counter-reset: insight;
}
.insights-list li {
  counter-increment: insight;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.insights-list li::before {
  content: counter(insight, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

/* Pricing card (Step 04) */
.pricing-card { display: flex; flex-direction: column; gap: 1rem; }

.pricing-offer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #C9961A, #e87830);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pricing-offer-label { font-size: 0.95rem; }
.pricing-offer-validity {
  background: rgba(0,0,0,0.2);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pricing-amount-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing-amount-old {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(201,150,26,0.1);
  border: 1px solid rgba(201,150,26,0.35);
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
}
.pricing-label { font-size: 0.95rem; font-weight: 600; }
.pricing-amount { font-size: 1.3rem; font-weight: 900; color: var(--accent-gold); }
.pricing-note { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.pricing-tagline {
  font-style: italic;
  font-weight: 600;
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
}

/* =====================
   TESTIMONIALS
===================== */
#testimonials {
  background: linear-gradient(135deg, #0e0026 0%, #220050 40%, #1a003d 70%, #0e0026 100%);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(201, 150, 26, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(107, 47, 160, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(201, 150, 26, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
#testimonials .section-header { position: relative; z-index: 1; }
#testimonials .section-tag { color: #C9961A; border-color: rgba(201,150,26,0.5); }
#testimonials h2 { color: #ffffff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(107, 47, 160, 0.06);
}
.testimonial.featured-t {
  background: var(--accent);
  border-color: var(--accent);
  grid-column: span 2;
  box-shadow: 0 12px 40px rgba(107, 47, 160, 0.3);
}
.testimonial.featured-t p, .testimonial.featured-t .testimonial-author strong { color: #ffffff; }
.testimonial.featured-t .testimonial-author span { color: rgba(255,255,255,0.7); }
.testimonial.featured-t .quote-mark { color: rgba(255,255,255,0.2); }
.testimonial.featured-t .author-avatar { background: #ffffff; color: var(--accent); }

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.25;
  display: block;
  margin-bottom: 1rem;
}
.testimonial p { font-size: 1.05rem; margin-bottom: 1.5rem; color: var(--text-muted); }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* Testimonial text cards */
.t-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}
.t-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
}
.t-card--featured .t-quote { grid-column: 1 / -1; }
.t-card--featured .t-stars { grid-column: 1 / -1; }
.t-card--featured .t-author { grid-column: 1 / -1; }
.t-card--featured .t-signoff { grid-column: 1 / -1; }

.t-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 150, 26, 0.25);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.t-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 150, 26, 0.55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 150, 26, 0.1);
}

.t-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent-gold);
  opacity: 0.6;
  margin-bottom: 1rem;
  display: block;
}
.t-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.t-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.t-text strong { color: #ffffff; font-weight: 700; }
.t-text em { color: var(--accent-gold); font-style: italic; }
.t-signoff {
  font-size: 0.82rem;
  color: rgba(201, 150, 26, 0.75);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.t-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin: 1rem 0 1.25rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(201, 150, 26, 0.2);
  padding-top: 1rem;
}
.t-author-info strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}
.t-author-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Testimonial image grid */
.t-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.t-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: transform var(--transition), box-shadow var(--transition);
  background: #fff;
}
.t-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(107,47,160,0.22);
}
.t-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================
   CONTACT
===================== */
#contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon { font-size: 1.2rem; }
.contact-item span:last-child { color: var(--text-muted); font-size: 0.95rem; }

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 8px 40px rgba(107, 47, 160, 0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107, 47, 160, 0.1);
}
.form-group select option { background: var(--bg); }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }

/* =====================
   FOOTER
===================== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.75rem; max-width: 260px; }
.footer-links h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-links a { display: block; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-social h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-links a {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  background: var(--card-bg);
}
/* Instagram */
.social-links a[aria-label="Instagram"] { color: #E1306C; border-color: rgba(225,48,108,0.3); background: rgba(225,48,108,0.06); }
.social-links a[aria-label="Instagram"]:hover { background: rgba(225,48,108,0.15); border-color: #E1306C; }

/* LinkedIn */
.social-links a[aria-label="LinkedIn"] { color: #0A66C2; border-color: rgba(10,102,194,0.3); background: rgba(10,102,194,0.06); }
.social-links a[aria-label="LinkedIn"]:hover { background: rgba(10,102,194,0.15); border-color: #0A66C2; }

/* Facebook */
.social-links a[aria-label="Facebook"] { color: #1877F2; border-color: rgba(24,119,242,0.3); background: rgba(24,119,242,0.06); }
.social-links a[aria-label="Facebook"]:hover { background: rgba(24,119,242,0.15); border-color: #1877F2; }

/* YouTube */
.social-links a[aria-label="YouTube"] { color: #FF0000; border-color: rgba(255,0,0,0.3); background: rgba(255,0,0,0.06); }
.social-links a[aria-label="YouTube"]:hover { background: rgba(255,0,0,0.15); border-color: #FF0000; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .t-img-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  #hero {
    flex-direction: column;
    padding: 7rem 1.5rem 3rem;
    text-align: center;
    gap: 3rem;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { flex: none; width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-badge { right: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 320px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large { grid-column: span 1; }

  .timeline { padding-left: 0.5rem; }
  .insights-list { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial.featured-t { grid-column: span 1; }
  .t-cards-grid { grid-template-columns: 1fr; }
  .t-card--featured { grid-template-columns: 1fr; }
  .t-img-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 1.25rem; }
  h1 { font-size: 2.4rem; }
  .hero-content h1 { font-size: 1.4rem; }
  h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* =====================
   WHATSAPP BUTTON
===================== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .whatsapp-btn { bottom: 1.25rem; right: 1.25rem; padding: 0.75rem; border-radius: 50%; }
  .whatsapp-btn .wa-label { display: none; }
}

/* =====================
   OFFER POPUP
===================== */
#offer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.4s ease;
}
#offer-overlay.hidden {
  display: none;
}
#offer-modal {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#offer-modal img {
  width: 100%;
  display: block;
}
#offer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
#offer-close:hover {
  background: rgba(200, 30, 30, 0.8);
}
@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =====================
   TESTIMONIAL LIGHTBOX
===================== */
#lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  flex-direction: column;
}
#lb-overlay.lb-visible {
  display: flex;
}
#lb-box {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
}
#lb-img {
  display: block;
  border-radius: 10px;
  transition: width 0.2s ease;
  height: auto;
}
#lb-controls {
  flex-shrink: 0;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}
#lb-controls button {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(6px);
}
#lb-controls button:hover {
  background: rgba(107, 47, 160, 0.65);
  border-color: var(--accent);
}
#lb-close {
  background: rgba(220, 50, 50, 0.25) !important;
  border-color: rgba(220, 50, 50, 0.5) !important;
}
#lb-close:hover {
  background: rgba(220, 50, 50, 0.7) !important;
}
