/*
Theme Name: Ronnie Nguyen City Pop Theme
Theme URI: https://ronnienguyen.com/
Author: Antigravity
Author URI: https://example.com/
Description: A creative, impressive City Pop inspired theme for Ronnie Nguyen.
Version: 1.0
Text Domain: ronnienguyen-citypop
*/

:root {
  --gutter: max(2rem, 8vw);
  
  /* City Pop Palette */
  --city-blue: #414B9E;
  --city-ceil: #9792CB;
  --city-purple: #AA74A0;
  --city-sand: #E2C99E;
  --city-ruby: #852736;
  
  /* Functional Aliases */
  --ink: var(--city-blue);
  --ink-light: var(--city-ceil);
  --ink-muted: var(--city-purple);
  --accent-blue: var(--city-ceil);
  --accent-rose: var(--city-ruby);
  --accent-neon: var(--city-purple);
  --white: #ffffff;
  --black: #0a0a0a;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

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

html {
  scroll-behavior: smooth
}

/* CITY POP TEXTURES & UTILITIES */
.city-grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.city-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(226, 201, 158, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(226, 201, 158, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* TYPOGRAPHY EVOLUTION */
.text-outline {
  -webkit-text-stroke: 1.5px var(--city-sand);
  color: transparent;
  transition: all 0.4s ease;
}

.text-outline:hover {
  color: var(--city-sand);
  -webkit-text-stroke: 1.5px transparent;
  text-shadow: 0 0 15px rgba(226, 201, 158, 0.4);
}

.neon-glow {
  text-shadow: 0 0 10px var(--city-purple), 0 0 20px var(--city-purple);
  color: var(--white);
}

.neon-glow-ruby {
  text-shadow: 0 0 10px var(--city-ruby), 0 0 20px var(--city-ruby);
  color: var(--white);
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--city-sand);
  background: var(--city-blue);
  overflow-x: hidden;
  line-height: 1.6
}

/* AMBIENT WAVY LINES CANVAS — visible only on white-background sections */
#ambient-lines {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(65, 75, 158, 0.45); /* Chinese Blue with glass */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(226, 201, 158, 0.1);
  transition: all 0.4s ease;
  animation: fadeDown 0.8s ease both;
}

nav .nav-logo { color: var(--city-sand); }
nav .nav-links a { color: var(--city-sand); }
nav .nav-burger span { background: var(--city-sand); }

/* Khi cuộn: nav trắng hơn một chút */
nav.scrolled {
  padding: 0.9rem 3rem;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  z-index: 201;
  position: relative
}

.nav-logo span {
  color: var(--accent-blue)
}

/* HAMBURGER BUTTON */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1000;
  position: relative
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.25s ease,
              width 0.35s ease
}

.nav-burger span:nth-child(2) {
  width: 70%
}

.nav-burger:hover span {
  background: var(--accent-blue)
}

/* Burger → X morph when open */
body.nav-open .nav-burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

body.nav-open .nav-burger span:nth-child(2) {
  opacity: 0;
  width: 0
}

body.nav-open .nav-burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

/* NAV OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92); /* Solid background instead of heavy blur */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: all
}

.nav-overlay-close {
  position: absolute;
  top: 1.6rem;
  right: 2.8rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.nav-overlay-close span {
  position: absolute;
  width: 24px;
  height: 1.5px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: background 0.2s
}

.nav-overlay-close span:nth-child(1) { transform: rotate(45deg) }
.nav-overlay-close span:nth-child(2) { transform: rotate(-45deg) }

.nav-overlay-close:hover span {
  background: var(--white)
}

/* NAV LINKS inside overlay */
.nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem
}

.nav-links li {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease
}

body.nav-open .nav-links li {
  opacity: 1;
  transform: translateY(0)
}

body.nav-open .nav-links li:nth-child(1) { transition-delay: 0.08s }
body.nav-open .nav-links li:nth-child(2) { transition-delay: 0.14s }
body.nav-open .nav-links li:nth-child(3) { transition-delay: 0.20s }
body.nav-open .nav-links li:nth-child(4) { transition-delay: 0.26s }
body.nav-open .nav-links li:nth-child(5) { transition-delay: 0.32s }

.nav-links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.4;
  display: inline-block;
  transition: color 0.2s, transform 0.2s
}

.nav-links a:hover {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-rose));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(12px);
}

.nav-links a.nav-active {
  color: var(--accent-blue)
}

/* Book a session CTA inside overlay */
.nav-cta-overlay {
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  font-style: normal !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--white) !important;
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  padding: 0.7rem 2rem !important;
  border-radius: 100px !important;
  transition: border-color 0.25s, background 0.25s !important
}

.nav-cta-overlay:hover {
  border-color: var(--white) !important;
  background: rgba(255,255,255,0.08) !important;
  transform: none !important
}

/* Tagline at bottom of overlay */
.nav-overlay-tagline {
  position: absolute;
  bottom: 2.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  opacity: 0;
  transition: opacity 0.4s 0.4s ease
}

body.nav-open .nav-overlay-tagline {
  opacity: 1
}

/* Backdrop for closing on outside click */
.nav-overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: none;
  background: transparent
}

body.nav-open .nav-overlay-backdrop {
  display: block
}

/* WATER CANVAS */
#water-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  pointer-events: none;
  opacity: 1
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem var(--gutter) 5rem;
  position: relative;
  overflow: hidden;
  z-index: 2
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-soft) 0%, #fffbfc 55%, var(--pink-soft) 100%);
  z-index: 0
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #c9e4ff 0%, transparent 70%);
  top: -80px;
  right: -120px;
  animation: float1 14s ease-in-out infinite
}

.blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #f9d9d9 0%, transparent 70%);
  bottom: 60px;
  left: -80px;
  animation: float2 18s ease-in-out infinite
}

.blob-3 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #ddeeff 0%, transparent 70%);
  top: 40%;
  left: 38%;
  animation: float1 11s ease-in-out infinite reverse
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(30px, -30px) scale(1.06)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-20px, 20px) scale(1.04)
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1rem;
  animation: fadeUp 0.9s 0.2s ease both
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent-blue)
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.9s 0.28s ease both
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.9s 0.36s ease both
}

.hero-headline em {
  font-style: italic;
  color: var(--accent-blue)
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-light);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.6rem;
  animation: fadeUp 0.9s 0.5s ease both
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.65s ease both
}

.hero-tagline-strip {
  position: absolute;
  bottom: 3rem;
  right: var(--gutter);
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-muted);
  max-width: 240px;
  text-align: right;
  line-height: 1.6;
  animation: fadeUp 0.9s 0.8s ease both
}

/* QUOTE SECTION */
.quote-section {
  background: transparent;
  padding: 5rem var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden
}

.quote-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  padding: 0;
  border: none
}

.quote-text em {
  font-style: italic;
  color: var(--accent-blue)
}

.quote-author {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 1.6rem
}

.quote-author::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-rose));
  margin: 0 auto 1rem;
  border-radius: 2px
}

/* IMAGE BANNER */
.image-banner {
  width: 100%;
  padding: 0;
  overflow: hidden;
  max-height: 280px;
  background: linear-gradient(135deg, var(--blue-soft), var(--pink-soft))
}

.image-banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block
}

/* BUTTONS */
.btn-primary {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--city-ruby);
  padding: 0.9rem 2.2rem;
  border-radius: 4px; /* More geometric/retro */
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 4px 4px 0px var(--city-blue); /* Hard shadow retro style */
  border: 1px solid var(--city-ruby);
}

.btn-primary:hover {
  background: var(--city-blue);
  color: var(--city-sand);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--city-ruby);
}

.btn-secondary {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--city-sand);
  background: transparent;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  border: 1.5px solid var(--city-sand);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--city-sand);
  color: var(--city-blue);
  box-shadow: 0 0 15px rgba(226, 201, 158, 0.3);
}

.btn-light {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2)
}

.btn-light:hover {
  background: var(--blue-soft);
  transform: translateY(-2px)
}

.btn-outline-light {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.2s
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-2px)
}

/* SECTION COMMONS */
section {
  padding: 5.5rem var(--gutter);
  position: relative;
  z-index: 2
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.2rem
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink-muted)
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem
}

.section-title em {
  font-style: italic;
  color: var(--accent-rose)
}

.section-intro {
  font-size: 1rem;
  color: var(--ink-light);
  max-width: 520px;
  line-height: 1.75
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 155, 213, 0.25), transparent);
  border: none;
  margin: 0
}

/* ABOUT */
#about {
  background: transparent; /* let canvas waves show through */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.about-intro {
  font-size: 0.97rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.2rem
}

.about-intro strong {
  color: var(--ink);
  font-weight: 500
}

.position-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.08), rgba(213, 123, 123, 0.05));
  border: 1px solid rgba(91, 155, 213, 0.18);
  border-radius: 14px;
  padding: 1.2rem 1.6rem;
  margin-bottom: 2rem
}

.badge-icon {
  font-size: 1.6rem;
  padding-top: 0.1rem;
  flex-shrink: 0
}

.badge-text-top {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 0.25rem
}

.badge-text-main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1.4
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1.2rem
}

.about-image-placeholder {
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft), var(--pink-soft));
  border: 1px solid rgba(91, 155, 213, 0.12);
  display: flex;
  align-items: center;
  justify-content: center
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  border-radius: 20px
}

.about-image-note {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.about-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.about-stat {
  background: linear-gradient(135deg, var(--blue-soft), rgba(253, 242, 242, 0.4));
  border: 1px solid rgba(91, 155, 213, 0.1);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  text-align: center
}

.about-stat:nth-child(even) {
  background: linear-gradient(135deg, var(--pink-soft), rgba(227, 241, 255, 0.4));
  border-color: rgba(213, 123, 123, 0.1)
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.2rem;
  color: var(--accent-blue)
}

.about-stat:nth-child(even) .stat-num {
  color: var(--accent-rose)
}

.stat-label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.4
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem
}

.about-tag {
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(91, 155, 213, 0.2);
  color: var(--accent-blue);
  background: rgba(91, 155, 213, 0.05)
}

/* CAREER TIMELINE */
#career {
  background: linear-gradient(160deg, var(--blue-soft) 0%, #ffffff 80%)
}

.career-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem
}

.career-intro {
  font-size: 0.97rem;
  color: var(--ink-light);
  line-height: 1.8
}

.timeline-track {
  display: flex;
  flex-direction: column;
  position: relative
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-blue) 0%, rgba(91, 155, 213, 0.08) 100%)
}

.tl-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0 1.8rem;
  padding-bottom: 2.2rem;
  position: relative
}

.tl-item:last-child {
  padding-bottom: 0
}

.tl-date {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-align: right;
  padding-top: 0.22rem
}

.tl-body {
  position: relative;
  padding-left: 1.5rem
}

.tl-body::before {
  content: '';
  position: absolute;
  left: -0.45rem;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--accent-blue);
  z-index: 1
}

.tl-item.current .tl-body::before {
  background: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(91, 155, 213, 0.18)
}

.tl-company {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-blue);
  letter-spacing: 0.04em;
  margin-bottom: 0.12rem
}

.tl-role {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.35rem
}

.tl-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem
}

.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem
}

.tl-tag {
  font-size: 0.67rem;
  padding: 0.18rem 0.65rem;
  border-radius: 100px;
  background: rgba(91, 155, 213, 0.08);
  color: var(--accent-blue);
  border: 1px solid rgba(91, 155, 213, 0.18)
}

.tl-tag.rose {
  background: rgba(213, 123, 123, 0.08);
  color: var(--accent-rose);
  border-color: rgba(213, 123, 123, 0.18)
}

/* WHAT I DO */
#what-i-do {
  background: transparent
}

.services-header {
  max-width: 600px;
  margin-bottom: 3.5rem
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem
}

.service-card {
  background: linear-gradient(135deg, rgba(227, 241, 255, 0.4), rgba(253, 242, 242, 0.3));
  border: 1px solid rgba(91, 155, 213, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-rose));
  opacity: 0;
  transition: opacity 0.3s
}

.service-card {
  position: relative;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(26, 26, 46, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 26, 46, 0.1)
}

.service-card:hover::before {
  opacity: 1
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem
}

.service-icon svg {
  width: 1.2em;
  height: 1.2em;
  stroke-width: 1.5;
}

.service-icon.blue {
  background: rgba(91, 155, 213, 0.12)
}

.service-icon.rose {
  background: rgba(213, 123, 123, 0.12)
}

.service-icon.mix {
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.1), rgba(213, 123, 123, 0.1))
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem
}

.service-desc {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.7
}

/* ECOSYSTEM */
#ecosystem {
  background: var(--ink);
  color: var(--white)
}

#ecosystem .section-label {
  color: rgba(255, 255, 255, 0.4)
}

#ecosystem .section-label::before {
  background: rgba(255, 255, 255, 0.4)
}

#ecosystem .section-title {
  color: var(--white)
}

#ecosystem .section-title em {
  color: #90caff
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem
}

.ecosystem-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75
}

.ecosystem-flow {
  display: flex;
  flex-direction: column;
  gap: 0
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  transition: background 0.25s;
  cursor: default
}

.flow-item:hover {
  background: rgba(255, 255, 255, 0.06)
}

.flow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0
}

.flow-dot.primary {
  background: #90caff
}

.flow-dot.channel {
  background: rgba(255, 255, 255, 0.25)
}

.flow-dot.result {
  background: #f9b8b8
}

.flow-arrow {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.12);
  margin-left: 1.7rem
}

.flow-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: 0.03em
}

.flow-label.highlight {
  color: #90caff;
  font-weight: 500
}

.flow-label.highlight-rose {
  color: #f9b8b8;
  font-weight: 500
}

.channels-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem
}

.channel-pill {
  font-size: 0.72rem;
  padding: 0.28rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6)
}

/* CLIENTS / LOGOS */
#clients {
  background: linear-gradient(135deg, #ffffff 0%, var(--pink-soft) 100%)
}

.clients-intro {
  font-size: 0.97rem;
  color: var(--ink-light);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 3rem
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 2rem;
  border-radius: 12px;
  border: 1px solid rgba(26, 26, 46, 0.1);
  background: var(--white);
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s, transform 0.25s;
  will-change: transform;
  min-width: 140px
}

.logo-pill:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-3px)
}

.logo-pill span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  white-space: nowrap
}

/* CHANNELS */
#channels {
  background: transparent
}

.channels-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem
}

.channel-card {
  padding: 1.8rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px); /* Reduced from 8px for performance */
  will-change: transform;
  border: 1px solid rgba(91, 155, 213, 0.12);
  transition: transform 0.25s, box-shadow 0.25s
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 26, 46, 0.08)
}

.channel-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem
}

.channel-desc {
  font-size: 0.83rem;
  color: var(--ink-light);
  line-height: 1.65
}

/* CONSULTING */
#consulting {
  background: transparent
}

.consulting-intro-block {
  max-width: 580px;
  margin-bottom: 3.5rem
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem
}

.pkg-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(91, 155, 213, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  will-change: transform;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(91, 155, 213, 0.15)
}

.pkg-header {
  padding: 1.8rem 2rem 1.4rem;
  background: linear-gradient(135deg, var(--blue-soft), rgba(253, 242, 242, 0.5))
}

.pkg-card:nth-child(2) .pkg-header {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2a4a 100%)
}

.pkg-card:nth-child(3) .pkg-header {
  background: linear-gradient(135deg, var(--pink-soft), rgba(227, 241, 255, 0.5))
}

.pkg-duration {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-blue);
  margin-bottom: 0.2rem
}

.pkg-card:nth-child(2) .pkg-duration {
  color: #90caff
}

.pkg-name {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light)
}

.pkg-card:nth-child(2) .pkg-name {
  color: rgba(255, 255, 255, 0.6)
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.6rem
}

.pkg-card:nth-child(2) .pkg-price {
  color: var(--white)
}

.pkg-body {
  padding: 1.6rem 2rem 2rem;
  background: var(--white);
  flex: 1
}

.pkg-card:nth-child(2) .pkg-body {
  background: #f8faff
}

.pkg-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem
}

.pkg-body ul li {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.5;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start
}

.pkg-body ul li::before {
  content: '✓';
  color: var(--accent-blue);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05rem
}

.pkg-badge {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent-blue);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.5rem
}

/* FAQ */
#faq {
  background: transparent
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem
}

.faq-intro {
  font-size: 0.97rem;
  color: var(--ink-light);
  line-height: 1.75
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.faq-item {
  border-bottom: 1px solid rgba(26, 26, 46, 0.08)
}

.faq-item:first-child {
  border-top: 1px solid rgba(26, 26, 46, 0.08)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  gap: 1rem
}

.faq-q-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(91, 155, 213, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--accent-blue);
  transition: background 0.25s, transform 0.3s
}

.faq-item.open .faq-icon {
  background: var(--accent-blue);
  color: var(--white);
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease
}

.faq-a-inner {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.75;
  padding-bottom: 1.4rem
}

.faq-item.open .faq-a {
  max-height: 300px
}

/* CONTACT */
#contact {
  background: var(--ink);
  text-align: center;
  padding: 6rem 4rem
}

#contact .section-label {
  justify-content: center;
  color: rgba(255, 255, 255, 0.4)
}

#contact .section-label::before {
  background: rgba(255, 255, 255, 0.4)
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.contact-headline em {
  font-style: italic;
  color: #90caff
}

.contact-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 680px;
  margin: 0 auto 2.8rem;
  line-height: 1.7
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* FOOTER 2.0 (The Minimal Signature) */
.ft2 {
  position: relative;
  background: var(--white);
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.03);
  will-change: transform;
}

.ft2-signature-wrap {
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.ft2-signature-row {
  display: inline-flex;
  animation: footerMarquee 80s linear infinite;
  will-change: transform;
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 18rem);
  font-weight: 800;
  color: rgba(26, 26, 46, 0.04);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.ft2-signature-row span {
  padding-right: 6rem;
}

@keyframes footerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

.ft2-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.ft2-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 2rem;
}

.ft2-logo {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

.ft2-logo span {
  color: var(--accent-blue);
  font-weight: 600;
}

.ft2-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.8rem;
}

.ft2-nav {
  display: flex;
  gap: 3rem;
}

.ft2-nav a {
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s, transform 0.25s;
}

.ft2-nav a:hover {
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.ft2-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.ft2-credits {
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 400;
}

.ft2-meta {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.ft2-social {
  display: flex;
  gap: 2rem;
}

.ft2-social a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s;
}

.ft2-social a:hover {
  color: var(--accent-blue);
}

/* AI Menu Logic */
.ft2-ai-wrap {
  position: relative;
}

.ft2-ai-trigger {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.ft2-ai-trigger:hover {
  color: var(--ink);
}

.ft2-ai-menu {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 1rem;
  min-width: 180px;
  display: none;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  margin-bottom: 1.2rem;
  z-index: 10;
}

.ft2-ai-wrap.open .ft2-ai-menu {
  display: flex;
  animation: fadeUp 0.3s ease both;
}

.ft2-ai-menu a {
  font-size: 0.78rem;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.ft2-ai-menu a:hover {
  color: var(--accent-blue);
}

@media(max-width: 900px) {
  .ft2-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }
  .ft2-nav {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ft2-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .ft2-meta {
    flex-direction: column;
    gap: 1.5rem;
  }
  .ft2-ai-menu {
    right: 50%;
    transform: translateX(50%);
  }
}


/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: 0.1s
}

.reveal-delay-2 {
  transition-delay: 0.2s
}

.reveal-delay-3 {
  transition-delay: 0.3s
}

.reveal-delay-4 {
  transition-delay: 0.4s
}

/* FREELANCE PACKAGES */
#packages {
  background: linear-gradient(160deg, var(--blue-soft) 0%, var(--white) 60%)
}

.freelance-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start
}

.fpkg-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(91, 155, 213, 0.15);
  display: flex;
  flex-direction: column;
  background: var(--white);
  will-change: transform;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fpkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(91, 155, 213, 0.15)
}

.fpkg-card--featured {
  border-color: var(--accent-rose);
  box-shadow: 0 0 0 3px rgba(213, 123, 123, 0.12)
}

.fpkg-header {
  padding: 2rem 2rem 1.6rem;
  position: relative
}

.fpkg-header--blue {
  background: linear-gradient(135deg, var(--blue-soft), rgba(227, 241, 255, 0.8))
}

.fpkg-header--rose {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2a4a 100%)
}

.fpkg-header--mix {
  background: linear-gradient(135deg, rgba(253, 242, 242, 0.8), rgba(227, 241, 255, 0.5))
}

.fpkg-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
  background: var(--accent-blue);
  color: var(--white)
}

.fpkg-badge--rose {
  background: var(--accent-rose)
}

.fpkg-badge--mix {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-rose));
  color: var(--white)
}

.fpkg-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  display: block
}

.fpkg-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.5rem
}

.fpkg-header--rose .fpkg-name {
  color: var(--white)
}

.fpkg-tagline {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.55;
  margin-bottom: 1rem
}

.fpkg-header--rose .fpkg-tagline {
  color: rgba(255, 255, 255, 0.55)
}

.fpkg-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--ink)
}

.fpkg-price strong {
  font-weight: 600;
  color: var(--accent-blue)
}

.fpkg-header--rose .fpkg-price {
  color: rgba(255, 255, 255, 0.7)
}

.fpkg-header--rose .fpkg-price strong {
  color: #90caff
}

.fpkg-per {
  font-size: 0.95rem;
  font-weight: 300;
  margin-left: 0.1rem
}

.fpkg-note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--ink-muted);
  margin-left: 0.4rem
}

.fpkg-header--rose .fpkg-note {
  color: rgba(255, 255, 255, 0.35)
}

.fpkg-body {
  padding: 1.6rem 2rem 1.4rem;
  flex: 1;
  border-top: 1px solid rgba(91, 155, 213, 0.1)
}

.fpkg-header--rose+.fpkg-body {
  border-top-color: rgba(213, 123, 123, 0.12)
}

.fpkg-section-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-top: 1.1rem;
  margin-bottom: 0.45rem
}

.fpkg-section-label:first-child {
  margin-top: 0
}

.fpkg-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.2rem
}

.fpkg-body ul li {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.5;
  display: flex;
  gap: 0.55rem;
  align-items: flex-start
}

.fpkg-body ul li::before {
  content: '✓';
  color: var(--accent-blue);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.05rem
}

.fpkg-card--featured .fpkg-body ul li::before {
  color: var(--accent-rose)
}

.fpkg-footer {
  padding: 1.4rem 2rem 2rem
}

.fpkg-cta {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(26, 26, 46, 0.14)
}

.fpkg-cta:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91, 155, 213, 0.3)
}

.fpkg-cta--rose {
  background: var(--accent-rose)
}

.fpkg-cta--rose:hover {
  background: #c46a6a
}

.fpkg-note-bar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(91, 155, 213, 0.06);
  border: 1px solid rgba(91, 155, 213, 0.15);
  border-radius: 14px;
  padding: 1.2rem 1.6rem;
  margin-top: 2rem
}

.fpkg-note-bar span {
  font-size: 1.3rem;
  flex-shrink: 0
}

.fpkg-note-bar p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.65
}

.fpkg-note-bar a {
  color: var(--accent-blue);
  text-decoration: underline
}

/* HOMEPAGE PACKAGE TEASER */
#packages {
  background: linear-gradient(160deg, var(--blue-soft) 0%, var(--white) 60%)
}

.pkg-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.4rem
}

.pkg-teaser-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.8rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(91, 155, 213, 0.15);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s
}

.pkg-teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(91, 155, 213, 0.14);
  border-color: rgba(91, 155, 213, 0.3)
}

.pkg-teaser-card--featured {
  border-color: rgba(213, 123, 123, 0.3);
  box-shadow: 0 0 0 2px rgba(213, 123, 123, 0.1)
}

.pkg-teaser-card--featured:hover {
  box-shadow: 0 14px 40px rgba(213, 123, 123, 0.16), 0 0 0 2px rgba(213, 123, 123, 0.2)
}

.pkg-teaser-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center
}

.pkg-teaser-icon--blue {
  background: rgba(91, 155, 213, 0.1)
}

.pkg-teaser-icon--rose {
  background: rgba(213, 123, 123, 0.1)
}

.pkg-teaser-icon--mix {
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.1), rgba(213, 123, 123, 0.1))
}

.pkg-teaser-body {
  flex: 1
}

.pkg-teaser-badge {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.3rem
}

.pkg-teaser-badge--rose {
  color: var(--accent-rose)
}

.pkg-teaser-badge--mix {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.pkg-teaser-name {
  font-family: var(--font-display);
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.25rem
}

.pkg-teaser-desc {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem
}

.pkg-teaser-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-light)
}

.pkg-teaser-price strong {
  font-weight: 600;
  color: var(--accent-blue)
}

.pkg-teaser-price em {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--ink-muted);
  margin-left: 0.3rem
}

.pkg-teaser-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(91, 155, 213, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-blue);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s
}

.pkg-teaser-arrow:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: var(--white);
  transform: translateX(3px)
}

.pkg-teaser-arrow--rose {
  border-color: rgba(213, 123, 123, 0.3);
  color: var(--accent-rose)
}

.pkg-teaser-arrow--rose:hover {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
  color: var(--white)
}

.pkg-teaser-cta {
  text-align: center;
  padding-top: 0.5rem
}

.pkg-teaser-cta-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.75rem
}

/* ── NEW HERO SLIDER (full-width) ── */
.svh-slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--pink-soft) 100%);
}

.svh-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  width: 400%
}

.svh-slide {
  width: 25%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 4rem;
  flex-shrink: 0
}

.svh-slide-inner {
  max-width: 680px;
  text-align: center
}

.svh-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink, #111);
  margin-bottom: 1.5rem
}

.svh-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink, #111);
  margin-bottom: 1.2rem
}

.svh-title em {
  font-style: italic;
  color: var(--accent-blue, #5b9bd5)
}

.svh-desc {
  font-size: 1rem;
  color: var(--ink, #111);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto
}

.svh-price {
  font-size: 0.9rem;
  color: var(--ink, #111);
  font-weight: 500;
  margin-bottom: 2rem
}

.svh-price strong {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent-blue, #5b9bd5)
}

.svh-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink, #111);
  border: 1.5px solid var(--ink, #111);
  padding: 0.8rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s
}

.svh-cta:hover {
  background: var(--ink, #111);
  color: #fff;
  border-color: var(--ink, #111);
  transform: translateY(-2px)
}

.svh-controls {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5
}

.svh-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.03);
  color: var(--ink, #111);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center
}

.svh-arrow:hover {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.25)
}

.svh-dots {
  display: flex;
  gap: 0.4rem
}

.svh-dot {
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  color: rgba(0,0,0,0.5);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.25s
}

.svh-dot.active {
  background: var(--accent-blue, #5b9bd5);
  border-color: var(--accent-blue, #5b9bd5);
  color: #fff
}

.svh-trust {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  z-index: 5;
  flex-wrap: wrap;
  justify-content: center
}

.svh-trust span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink, #111);
  white-space: nowrap
}

@media (max-width: 768px) {
  .svh-slide { padding: 5rem 2rem 9rem; min-height: 80vh }
  .svh-controls { bottom: 6.5rem }
  .svh-trust { bottom: 1.5rem; gap: 0.8rem; flex-wrap: wrap; justify-content: center }
}

/* ── POPUP CONTACT FORM ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto
}

.popup-box {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2rem;
  max-width: 480px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 24px 48px rgba(0,0,0,0.15)
}

.popup-overlay.active .popup-box {
  transform: translateY(0)
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--ink-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s
}

.popup-close:hover {
  background: rgba(0,0,0,0.12);
  color: var(--ink)
}

.popup-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem
}

.popup-sub {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5
}

.popup-field {
  margin-bottom: 1rem
}

.popup-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.3rem
}

.popup-field input,
.popup-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--ink);
  background: #fafaf8;
  transition: border-color 0.2s;
  box-sizing: border-box
}

.popup-field input:focus,
.popup-field textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: #fff
}

.popup-field textarea {
  resize: vertical;
  min-height: 80px
}

.popup-submit {
  width: 100%;
  padding: 0.85rem;
  border: none;
  border-radius: 100px;
  background: var(--accent-blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem
}

.popup-submit:hover {
  background: #4a8bc5;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(91,155,213,0.3)
}

.popup-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none
}

.popup-success {
  text-align: center;
  padding: 1rem;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: #2e7d32;
  font-weight: 500
}

/* ── SERVICES PAGE v2 ── */

/* Hero Slider */
.sv2-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 3rem;
  overflow: hidden
}

.sv2-hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0
}

.sv2-hero-bg-slide.active {
  opacity: 1
}

.sv2-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1
}

.sv2-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%
}

.sv2-hero-text {
  position: relative;
  min-height: 320px
}

.sv2-hero-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem
}

.sv2-hero-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.4);
  margin-right: 0.8rem;
  vertical-align: middle
}

.sv2-hero-slide-text {
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none
}

.sv2-hero-slide-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative
}

.sv2-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.2rem
}

.sv2-hero-title em {
  font-style: italic;
  color: #90caff
}

.sv2-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem
}

.sv2-hero-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 0.8rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s
}

.sv2-hero-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px)
}

/* Hero Cards */
.sv2-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.sv2-hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 1rem;
  align-items: center
}

.sv2-hero-card.active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(144,202,255,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateX(8px)
}

.sv2-hero-card:hover:not(.active) {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px)
}

.sv2-card-icon {
  font-size: 1.6rem;
  grid-row: 1 / 3
}

.sv2-card-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4)
}

.sv2-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff
}

.sv2-card-price {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  grid-row: 1 / 3;
  text-align: right
}

.sv2-card-price strong {
  color: #90caff
}

/* Hero Controls */
.sv2-hero-controls {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem
}

.sv2-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center
}

.sv2-arrow:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4)
}

.sv2-dots {
  display: flex;
  gap: 0.5rem
}

.sv2-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0
}

.sv2-dot.active {
  background: #90caff;
  box-shadow: 0 0 0 3px rgba(144,202,255,0.25);
  transform: scale(1.2)
}

/* Hero Trust Strip */
.sv2-hero-trust {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap
}

.sv2-hero-trust span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45)
}

/* ── Service Detail Sections ── */
.sv2-detail {
  padding: 5rem var(--gutter)
}

.sv2-detail--alt {
  background: linear-gradient(135deg, rgba(227,241,255,0.3) 0%, rgba(253,242,242,0.2) 100%)
}

.sv2-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap
}

.sv2-detail-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 200;
  color: rgba(91,155,213,0.2);
  line-height: 1;
  flex-shrink: 0
}

.sv2-detail-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.4rem
}

.sv2-detail-eyebrow--rose { color: var(--accent-rose) }
.sv2-detail-eyebrow--mix { color: #8b6fb0 }

.sv2-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink)
}

.sv2-detail-title em {
  font-style: italic;
  color: var(--accent-rose)
}

.sv2-popular-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rose);
  border: 1px solid rgba(213,123,123,0.35);
  border-radius: 4px;
  padding: 3px 8px;
  margin-top: 0.5rem
}

.sv2-detail-price {
  margin-left: auto;
  text-align: right;
  flex-shrink: 0
}

.sv2-price-from {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.2rem
}

.sv2-price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-blue)
}

.sv2-price-amount small {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-muted)
}

.sv2-price-amount--rose { color: var(--accent-rose) }
.sv2-price-amount--mix { color: #8b6fb0 }

.sv2-price-note {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 0.2rem
}

.sv2-detail-intro {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.8;
  max-width: 780px;
  margin-bottom: 2.5rem
}

/* Feature Grids */
.sv2-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem
}

.sv2-feature-col--wide {
  grid-column: 1 / -1
}

.sv2-feature-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(91,155,213,0.12)
}

.sv2-feature-col ul {
  list-style: none;
  padding: 0
}

.sv2-feature-col li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 0.5rem
}

.sv2-feature-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.8rem
}

/* Detail CTA */
.sv2-detail-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(91,155,213,0.1)
}

.sv2-cta-btn {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block
}

.sv2-cta-btn--blue {
  color: #fff;
  background: var(--accent-blue);
  box-shadow: 0 4px 16px rgba(91,155,213,0.25)
}

.sv2-cta-btn--blue:hover {
  background: #4a8bc5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,155,213,0.35)
}

.sv2-cta-btn--rose {
  color: #fff;
  background: var(--accent-rose);
  box-shadow: 0 4px 16px rgba(213,123,123,0.25)
}

.sv2-cta-btn--rose:hover {
  background: #c56a6a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(213,123,123,0.35)
}

.sv2-cta-btn--mix {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-blue), #8b6fb0);
  box-shadow: 0 4px 16px rgba(139,111,176,0.25)
}

.sv2-cta-btn--mix:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,111,176,0.35)
}

.sv2-cta-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-style: italic
}

/* Warm color variants (consulting) */
.sv2-detail-eyebrow--warm { color: #b8860b }
.sv2-price-amount--warm { color: #b8860b }

.sv2-cta-btn--warm {
  color: #fff;
  background: linear-gradient(135deg, #b8860b, #d4a030);
  box-shadow: 0 4px 16px rgba(184,134,11,0.25)
}

.sv2-cta-btn--warm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.35)
}

/* Toggle Accordions */
.sv2-toggles {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(91,155,213,0.1);
  border-radius: 12px;
  overflow: hidden
}

.sv2-toggle {
  border-bottom: 1px solid rgba(91,155,213,0.08)
}

.sv2-toggle:last-child {
  border-bottom: none
}

.sv2-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s
}

.sv2-toggle-btn:hover {
  background: rgba(91,155,213,0.04)
}

.sv2-toggle.open .sv2-toggle-btn {
  background: rgba(91,155,213,0.06)
}

.sv2-toggle-icon {
  font-size: 1.2rem;
  flex-shrink: 0
}

.sv2-toggle-label {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink)
}

.sv2-toggle-chevron {
  font-size: 1.2rem;
  color: var(--ink-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 20px;
  text-align: center
}

.sv2-toggle.open .sv2-toggle-chevron {
  transform: rotate(45deg)
}

.sv2-toggle-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease
}

.sv2-toggle-panel ul {
  list-style: none;
  padding: 0 1.4rem 1.2rem 3.4rem;
  margin: 0
}

.sv2-toggle-panel li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 0.45rem
}

.sv2-toggle-panel li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.8rem
}

/* Toggle meta & columns (consulting) */
.sv2-toggle-meta {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-style: italic;
  padding: 0 1.4rem 0.8rem 3.4rem;
  line-height: 1.6
}

.sv2-toggle-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 0 1.4rem 1.2rem 3.4rem
}

.sv2-toggle-cols strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem
}

.sv2-toggle-cols ul {
  padding: 0 !important
}

/* Bundle card inside consulting */
.sv2-bundle {
  background: linear-gradient(135deg, rgba(184,134,11,0.06), rgba(212,160,48,0.04));
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: 12px;
  padding: 1.6rem 2rem;
  margin-bottom: 2rem
}

.sv2-bundle-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8860b;
  margin-bottom: 0.3rem
}

.sv2-bundle-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem
}

.sv2-bundle p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 0.6rem
}

.sv2-bundle-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #b8860b
}

/* Services v2 responsive */
@media (max-width: 900px) {
  .sv2-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }
  .sv2-hero-text {
    min-height: auto
  }
  .sv2-hero-slide-text {
    position: relative;
    top: auto
  }
  .sv2-hero-cards {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.8rem;
    padding-bottom: 0.5rem
  }
  .sv2-hero-card {
    min-width: 240px;
    flex-shrink: 0
  }
  .sv2-hero-card.active {
    transform: none
  }
  .sv2-detail-header {
    flex-direction: column;
    gap: 1rem
  }
  .sv2-detail-price {
    margin-left: 0;
    text-align: left
  }
  .sv2-features-grid {
    grid-template-columns: 1fr
  }
  .sv2-feature-col--wide {
    grid-column: 1
  }
  .sv2-toggle-cols {
    grid-template-columns: 1fr;
    gap: 1rem
  }
  .sv2-toggle-panel ul {
    padding-left: 2rem
  }
  .sv2-toggle-meta {
    padding-left: 2rem
  }
  .sv2-toggle-cols {
    padding-left: 2rem
  }
}

@media (max-width: 620px) {
  .sv2-hero {
    padding: 7rem 2rem 2.5rem;
    min-height: 80vh
  }
  .sv2-hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem
  }
  .sv2-detail-num {
    font-size: 2.5rem
  }
  .sv2-toggle-btn {
    padding: 0.9rem 1rem
  }
}

/* ── SERVICES PAGE (legacy kept) ── */
/* Hero */
.sv-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 3rem 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft) 0%, #fffbfc 55%, var(--pink-soft) 100%)
}

.sv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.sv-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px
}

.sv-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin: 1rem 0 1.4rem
}

.sv-hero-headline em {
  font-style: italic;
  color: var(--accent-blue)
}

.sv-hero-sub {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 780px;
  line-height: 1.8;
  margin-bottom: 2.2rem
}

.sv-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.4rem
}

.sv-pill {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(91, 155, 213, 0.3);
  color: var(--accent-blue);
  background: rgba(91, 155, 213, 0.06);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s
}

.sv-pill:hover {
  background: var(--accent-blue);
  color: var(--white);
  transform: translateY(-2px)
}

.sv-pill--rose {
  border-color: rgba(213, 123, 123, 0.3);
  color: var(--accent-rose);
  background: rgba(213, 123, 123, 0.06)
}

.sv-pill--rose:hover {
  background: var(--accent-rose);
  color: var(--white)
}

.sv-pill--mix {
  border-color: rgba(91, 155, 213, 0.2);
}

.sv-hero-trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem
}

.sv-hero-trust span {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 500
}

/* Divider */
.sv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 155, 213, 0.2), transparent)
}

/* Package sections */
.sv-package {
  padding: 6rem var(--gutter)
}

.sv-package--blue {
  background: transparent
}

.sv-package--dark {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2a4a 100%)
}

.sv-package--warm {
  background: transparent
}

.sv-pkg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start
}

.sv-pkg-layout--reverse .sv-pkg-media {
  order: 2
}

.sv-pkg-layout--reverse .sv-pkg-content {
  order: 1
}

/* Media */
.sv-pkg-media {
  position: relative
}

.sv-pkg-img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  box-shadow: 0 24px 60px rgba(26, 26, 46, 0.15)
}

.sv-pkg-price-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1rem;
  background: var(--white);
  border: 1px solid rgba(91, 155, 213, 0.2);
  border-radius: 16px;
  padding: 1.1rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.1)
}

.sv-pkg-price-badge--rose {
  border-color: rgba(213, 123, 123, 0.25);
  background: var(--ink)
}

.sv-pkg-price-badge--mix {
  border-color: rgba(213, 123, 123, 0.15)
}

.sv-pkg-price-badge-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.1rem
}

.sv-pkg-price-badge--rose .sv-pkg-price-badge-label {
  color: rgba(255, 255, 255, 0.4)
}

.sv-pkg-price-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-blue);
  line-height: 1
}

.sv-pkg-price-badge--rose .sv-pkg-price-badge-num {
  color: #90caff
}

.sv-pkg-price-badge-per {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 0.1rem
}

.sv-pkg-price-badge--rose .sv-pkg-price-badge-per {
  color: rgba(255, 255, 255, 0.35)
}

.sv-pkg-price-badge-note {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rose);
  margin-top: 0.4rem
}

.sv-pkg-price-badge--rose .sv-pkg-price-badge-note {
  color: rgba(213, 123, 123, 0.7)
}

/* Package content */
.sv-pkg-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem
}

.sv-pkg-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent-blue)
}

.sv-pkg-eyebrow--rose {
  color: rgba(255, 255, 255, 0.4)
}

.sv-pkg-eyebrow--rose::before {
  background: rgba(255, 255, 255, 0.3)
}

.sv-pkg-eyebrow--mix {
  color: var(--accent-rose)
}

.sv-pkg-eyebrow--mix::before {
  background: var(--accent-rose)
}

.sv-pkg-popular-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent-rose);
  padding: 0.22rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.8rem
}

.sv-pkg-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.2rem
}

.sv-pkg-title em {
  font-style: italic;
  color: var(--accent-rose)
}

.sv-pkg-title--light {
  color: var(--white)
}

.sv-pkg-title--light em {
  color: #90caff
}

.sv-pkg-intro {
  font-size: 0.97rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 2rem
}

.sv-pkg-intro--light {
  color: rgba(255, 255, 255, 0.55)
}

/* Deliverables */
.sv-deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 2rem;
  margin-bottom: 2.4rem
}

.sv-deliverables--light .sv-deliv-title {
  color: rgba(255, 255, 255, 0.5)
}

.sv-deliverables--light ul li {
  color: rgba(255, 255, 255, 0.65)
}

.sv-deliverables--light ul li::before {
  color: #90caff
}

.sv-deliv-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.5rem
}

.sv-deliv-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem
}

.sv-deliv-group ul li {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start
}

.sv-deliv-group ul li::before {
  content: '✓';
  color: var(--accent-blue);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.72rem;
  margin-top: 0.05rem
}

/* CTA row */
.sv-pkg-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.7rem
}

.sv-pkg-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  align-self: flex-start
}

.sv-pkg-cta--blue {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 4px 18px rgba(26, 26, 46, 0.14)
}

.sv-pkg-cta--blue:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91, 155, 213, 0.3)
}

.sv-pkg-cta--rose {
  color: var(--white);
  background: var(--accent-rose);
  box-shadow: 0 4px 18px rgba(213, 123, 123, 0.2)
}

.sv-pkg-cta--rose:hover {
  background: #c46a6a;
  transform: translateY(-2px)
}

.sv-pkg-cta--mix {
  color: var(--white);
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-rose));
  box-shadow: 0 4px 18px rgba(91, 155, 213, 0.2)
}

.sv-pkg-cta--mix:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91, 155, 213, 0.3)
}

.sv-pkg-cta-note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5
}

.sv-pkg-cta-note--light {
  color: rgba(255, 255, 255, 0.3)
}

/* Combination banner */
.sv-combine {
  background: var(--ink);
  padding: 6rem 4rem
}

.sv-combine-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: start
}

.sv-combine-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem
}

.sv-combine-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25)
}

.sv-combine-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem
}

.sv-combine-title em {
  font-style: italic;
  color: #90caff
}

.sv-combine-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 2rem
}

.sv-combine-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s
}

.sv-combine-cta:hover {
  background: var(--blue-soft);
  transform: translateY(-2px)
}

.sv-combine-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

.sv-combine-card {
  padding: 1.6rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s
}

.sv-combine-card:hover {
  background: rgba(255, 255, 255, 0.09)
}

.sv-combine-card--full {
  grid-column: 1/-1;
  background: rgba(91, 155, 213, 0.08);
  border-color: rgba(91, 155, 213, 0.2)
}

.sv-combine-card-icon {
  font-size: 1.3rem;
  margin-bottom: 0.5rem
}

.sv-combine-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem
}

.sv-combine-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6
}

/* Process */
.sv-process {
  padding: 6rem 4rem;
  background: transparent
}

.sv-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem
}

.sv-step {
  flex: 1;
  padding: 0 1.5rem
}

.sv-step:first-child {
  padding-left: 0
}

.sv-step:last-child {
  padding-right: 0
}

.sv-step-arrow {
  font-size: 1.5rem;
  color: rgba(91, 155, 213, 0.3);
  flex-shrink: 0;
  margin-top: 1.2rem;
  padding: 0 0.2rem
}

.sv-step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(91, 155, 213, 0.2);
  line-height: 1;
  margin-bottom: 0.4rem
}

.sv-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem
}

.sv-step p {
  font-size: 0.83rem;
  color: var(--ink-light);
  line-height: 1.65
}

/* Final CTA */
.sv-final-cta {
  background: var(--ink);
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden
}

.sv-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto
}

.sv-final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 1rem 0 1.4rem
}

.sv-final-cta-title em {
  font-style: italic;
  color: #90caff
}

.sv-final-cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto 2.6rem;
  line-height: 1.7
}

.sv-final-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* RESPONSIVE */
@media(max-width:1000px) {
  nav {
    padding: 1.2rem 2rem
  }

  .nav-links {
    display: none
  }

  #hero {
    padding: 7rem 2rem 5rem
  }

  section {
    padding: 4.5rem 2rem
  }

  #about,
  #career .career-layout,
  .ecosystem-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .services-grid,
  .channels-grid,
  .packages-grid {
    grid-template-columns: 1fr 1fr
  }

  .freelance-packages-grid {
    grid-template-columns: 1fr
  }

  .pkg-teaser-grid {
    grid-template-columns: 1fr
  }

  .hero-tagline-strip {
    display: none
  }

  footer {
    padding: 3rem 2rem 1.5rem
  }

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

  .footer-copy {
    text-align: center
  }

  .sv-hero {
    padding: 8rem 2rem 4rem
  }

  .sv-package {
    padding: 4rem 2rem
  }

  .sv-pkg-layout,
  .sv-pkg-layout--reverse {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .sv-pkg-layout--reverse .sv-pkg-media {
    order: 0
  }

  .sv-pkg-layout--reverse .sv-pkg-content {
    order: 0
  }

  .sv-deliverables {
    grid-template-columns: 1fr
  }

  .sv-combine-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .sv-process-steps {
    flex-direction: column;
    gap: 1.5rem
  }

  .sv-step-arrow {
    transform: rotate(90deg);
    margin: 0 auto
  }

  .sv-step {
    padding: 0
  }

  .sv-final-cta {
    padding: 5rem 2rem
  }
}

@media(max-width:620px) {

  .services-grid,
  .channels-grid,
  .packages-grid {
    grid-template-columns: 1fr
  }

  #contact {
    padding: 4.5rem 2rem
  }

  .timeline-track::before {
    left: 72px
  }

  .tl-item {
    grid-template-columns: 72px 1fr
  }

  .sv-combine-cards {
    grid-template-columns: 1fr
  }

  .sv-combine-card--full {
    grid-column: 1
  }

  .sv-hero-pills {
    flex-direction: column
  }

  .sv-pkg-price-badge {
    position: static;
    margin-top: 1rem;
    display: inline-block
  }
}

/* ── Full-width sections (override --gutter) ── */
#contact {
  padding-left: 3rem;
  padding-right: 3rem;
}


/* ── Services page: full-width sections ── */
.sv-final-cta {
  padding-left: 3rem;
  padding-right: 3rem;
}

.sv-combine {
  padding-left: 3rem;
  padding-right: 3rem;
}

/* ── Services page: inner sections with gutter ── */
.sv-process {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ════════════════════════════════════════
   PACKAGES CAROUSEL
════════════════════════════════════════ */
.sv-packages-carousel {
  padding: 5rem var(--gutter);
  background: var(--white);
}

.sv-carousel-intro {
  margin-bottom: 2.5rem;
}

/* Tabs */
.sv-carousel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.sv-carousel-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  border: 1.5px solid rgba(91, 155, 213, 0.2);
  background: transparent;
  color: var(--ink-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.sv-carousel-tab:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-1px);
}

.sv-carousel-tab.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Slides */
.sv-slide {
  display: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26, 26, 46, 0.1);
  animation: fadeUp 0.35s ease both;
}

.sv-slide.active {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
}

.sv-slide--blue {
  background: var(--white);
  border: 1px solid rgba(91, 155, 213, 0.12);
}

.sv-slide--dark {
  background: var(--ink);
}

.sv-slide--warm {
  background: linear-gradient(160deg, var(--pink-soft) 0%, var(--white) 100%);
  border: 1px solid rgba(213, 123, 123, 0.1);
}

/* Slide media */
.sv-slide-media {
  position: relative;
  overflow: hidden;
}

.sv-slide .sv-pkg-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: 0;
  display: block;
}

/* Slide content */
.sv-slide-content {
  padding: 2.8rem 2.6rem;
  display: flex;
  flex-direction: column;
}

/* Accordion */
.sv-accordion {
  flex: 1;
  margin: 1.4rem 0;
}

.sv-accordion details {
  border-bottom: 1px solid rgba(91, 155, 213, 0.1);
}

.sv-accordion--light details {
  border-color: rgba(255, 255, 255, 0.08);
}

.sv-accordion details:last-child {
  border-bottom: none;
}

.sv-accordion summary {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.75rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  gap: 1rem;
}

.sv-accordion--light summary {
  color: rgba(255, 255, 255, 0.85);
}

.sv-accordion summary::-webkit-details-marker {
  display: none;
}

.sv-accordion summary::after {
  content: '+';
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: content 0.2s;
}

.sv-accordion--light summary::after {
  color: rgba(255, 255, 255, 0.35);
}

.sv-accordion details[open] > summary::after {
  content: '\2212';
}

.sv-accordion ul {
  list-style: none;
  padding: 0 0 0.9rem 0;
  margin: 0;
}

.sv-accordion ul li {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.65;
  padding: 0.18rem 0 0.18rem 1.1rem;
  position: relative;
}

.sv-accordion--light ul li {
  color: rgba(255, 255, 255, 0.55);
}

.sv-accordion ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-size: 0.7rem;
}

.sv-accordion--light ul li::before {
  color: #90caff;
}

/* Carousel arrows + dots */
.sv-carousel-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.sv-carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(91, 155, 213, 0.25);
  background: transparent;
  color: var(--ink-light);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.sv-carousel-arrow:hover {
  background: var(--accent-blue);
  color: var(--white);
  border-color: var(--accent-blue);
}

.sv-carousel-dots {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.sv-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(91, 155, 213, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.sv-dot.active {
  background: var(--accent-blue);
  transform: scale(1.45);
}

/* ════════════════════════════════════════
   CONSULTING SECTION (Services page)
════════════════════════════════════════ */
.sv-consulting-section {
  background: var(--ink);
  padding: 5.5rem var(--gutter);
  color: var(--white);
}

.sv-consulting-section .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.sv-consulting-section .section-label::before {
  background: rgba(255, 255, 255, 0.4);
}

.sv-consulting-section .section-title {
  color: var(--white);
}

.sv-consulting-section .section-title em {
  color: #90caff;
}

.sv-consulting-section .section-intro {
  color: rgba(255, 255, 255, 0.55);
}

/* ════════════════════════════════════════
   CAROUSEL RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 820px) {
  .sv-slide.active {
    grid-template-columns: 1fr;
  }

  .sv-slide .sv-pkg-img {
    min-height: 220px;
    height: 220px;
  }

  .sv-slide-content {
    padding: 2rem 1.6rem;
  }

  .sv-carousel-tabs {
    gap: 0.4rem;
  }

  .sv-carousel-tab {
    font-size: 0.76rem;
    padding: 0.55rem 1rem;
  }
}

/* ========================================================
   CITY POP THEME OVERRIDES
   ======================================================== */

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--city-sand);
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--city-sand);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
  color: var(--city-sand);
  -webkit-text-stroke: 1px var(--city-sand);
  -webkit-text-fill-color: transparent;
}

/* HERO SECTION CUSTOM */
#pb-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 620px;
  background: var(--city-blue);
  overflow: hidden;
  position: relative;
}

.pb-hero-left-overlay {
  background: linear-gradient(to right, var(--city-blue) 0%, transparent 20%, transparent 80%, var(--city-blue) 100%);
  opacity: 0.4;
}

.pb-hero-right {
  background: var(--city-blue);
  color: var(--city-sand);
}

.pb-hero-quote {
  color: var(--city-ceil);
  border-left: 2px solid var(--city-ruby);
  padding-left: 1.5rem;
}

/* ABOUT SECTION */
#pb-about {
  background: linear-gradient(180deg, var(--city-blue) 0%, #2a2d5a 100%);
  color: var(--city-sand);
}

.pb-about-p1 {
  color: var(--white);
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.pb-about-p2 {
  color: var(--city-ceil);
}

/* WORD STAGES (Expertise & Skills) */
#pb-expertise, #pb-skills {
  background: #1a1b3a; /* Darker night blue */
  border-top: 1px solid rgba(151, 146, 203, 0.1);
}

/* TIMELINE CUSTOM */
#pb-background {
  background: #2a2d5a;
}

.pb-tl-role { color: var(--white); }
.pb-tl-co { color: var(--city-ceil); }
.pb-tl-tag {
  color: var(--city-sand);
  background: rgba(226, 201, 158, 0.1);
  border-color: rgba(226, 201, 158, 0.3);
}

/* FOOTER CUSTOM */
footer, #pb-contact {
  background: var(--black);
  border-top: 1px solid var(--city-ruby);
}

/* ========================================================
   MAGNETIC CURSOR STYLES
   ======================================================== */
.city-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference; /* Inverted color effect */
}

.cursor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--black);
  background: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  transform: translate(25px, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Cursor States */
.city-cursor.active .cursor-circle {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
}

.city-cursor.viewing .cursor-text {
  opacity: 1;
}

@media (max-width: 1024px) {
  .city-cursor { display: none; }
}