/* =============================================
   Avellqarix - Complete CSS
   Design: Hover Rich | Off-Center Editorial | 2026
   ============================================= */


:root {
  
  --c-bg: #faf8f5;
  --c-bg2: #f0ece6;
  --c-bg3: #1a1614;
  --c-bg4: #f7f4f0;
  --c-text: #1f1b18;
  --c-text-muted: #6b6460;
  --c-text-light: #f0ece6;
  --c-pri: #c4622d;
  --c-pri-dk: #a34e22;
  --c-pri-lt: #e8c4ae;
  --c-sec: #2c3e50;
  --c-sec-lt: #3d5166;
  --c-acc: #d4a853;
  --c-acc-lt: #f0d898;
  --c-border: #e0d8d0;
  --c-border-dk: #c8bdb4;

  
  --sh-sm: 0 2px 8px rgba(31,27,24,0.07), 0 1px 3px rgba(31,27,24,0.05);
  --sh-md: 0 8px 24px rgba(31,27,24,0.09), 0 2px 8px rgba(31,27,24,0.06);
  --sh-lg: 0 20px 48px rgba(31,27,24,0.12), 0 6px 16px rgba(31,27,24,0.07);
  --sh-xl: 0 32px 64px rgba(31,27,24,0.15), 0 8px 24px rgba(31,27,24,0.09);
  --sh-pri: 0 8px 24px rgba(196,98,45,0.22), 0 2px 8px rgba(196,98,45,0.14);
  --sh-pri-lg: 0 16px 40px rgba(196,98,45,0.32), 0 4px 12px rgba(196,98,45,0.18);

  
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 6rem;
  --sp-2xl: 9rem;

  
  --tr-fast: 0.18s ease-out;
  --tr-mid: 0.28s ease-out;
  --tr-slow: 0.42s ease-out;

  
  --font-hd: 'Bricolage Grotesque', sans-serif;
  --font-bd: 'Inter', sans-serif;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-bd);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--tr-fast);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-bd);
  line-height: 1;
}

input, textarea, select {
  font-family: var(--font-bd);
}


h1, h2, h3, h4, h5 {
  font-family: var(--font-hd);
  line-height: 1.18;
  color: var(--c-text);
  font-weight: 700;
}

p { line-height: 1.7; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-pri);
  color: #fff;
  font-family: var(--font-bd);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.72rem 1.5rem;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition:
    background var(--tr-fast),
    box-shadow var(--tr-fast),
    transform var(--tr-fast),
    border-color var(--tr-fast);
  box-shadow: var(--sh-pri);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-pri:hover {
  background: var(--c-pri-dk);
  box-shadow: var(--sh-pri-lg);
  transform: translateY(-2px);
  color: #fff;
}

.btn-pri:active {
  transform: translateY(0);
  box-shadow: var(--sh-pri);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(240,236,230,0.9);
  font-family: var(--font-bd);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.72rem 1.5rem;
  border-radius: var(--r-full);
  border: 2px solid rgba(240,236,230,0.35);
  transition:
    border-color var(--tr-fast),
    background var(--tr-fast),
    transform var(--tr-fast),
    color var(--tr-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: rgba(240,236,230,0.75);
  background: rgba(240,236,230,0.1);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--c-pri);
  font-family: var(--font-bd);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--r-full);
  border: 2px solid var(--c-pri);
  transition:
    background var(--tr-fast),
    color var(--tr-fast),
    transform var(--tr-fast),
    box-shadow var(--tr-fast);
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--c-pri);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--sh-pri);
}

.btn-lg {
  padding: 0.92rem 2.1rem;
  font-size: 1rem;
}

/* =============================================
   HEADER
   ============================================= */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition:
    background var(--tr-slow),
    border-color var(--tr-slow),
    backdrop-filter var(--tr-slow),
    -webkit-backdrop-filter var(--tr-slow),
    box-shadow var(--tr-slow);
}

.hdr.scrolled {
  background: rgba(250,248,245,0.84);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom-color: rgba(31,27,24,0.09);
  box-shadow: 0 2px 20px rgba(31,27,24,0.07), 0 1px 4px rgba(31,27,24,0.05);
}

.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hdr-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.hdr-logo img {
  height: 36px;
  width: auto;
  transition: opacity var(--tr-fast);
}

.hdr-logo:hover img { opacity: 0.78; }


.hdr-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0 auto;
}

.hdr-lnk {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  padding: 0.45rem 0.8rem;
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--tr-fast), background var(--tr-fast);
  text-decoration: none;
}

.hdr-lnk::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--c-pri);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--tr-mid);
}

.hdr-lnk:hover {
  color: var(--c-pri);
  background: rgba(196,98,45,0.06);
}

.hdr-lnk:hover::after,
.hdr-lnk.active::after {
  transform: scaleX(1);
}

.hdr-lnk.active {
  color: var(--c-pri);
}

.hdr-cta {
  flex-shrink: 0;
  font-size: 0.85rem;
  padding: 0.6rem 1.3rem;
}


.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--tr-fast);
  min-width: 44px;
  min-height: 44px;
}

.hdr-burger:hover { background: var(--c-bg2); }

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--tr-mid), opacity var(--tr-mid), background var(--tr-fast);
}

.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hdr-mob {
  display: none;
  flex-direction: column;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: 0.75rem 1.5rem 1.5rem;
  gap: 0.15rem;
  box-shadow: 0 8px 24px rgba(31,27,24,0.09);
}

.hdr-mob.show { display: flex; }

.hdr-mob-lnk {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--tr-fast), padding-left var(--tr-fast);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.hdr-mob-lnk:last-of-type { border-bottom: none; }

.hdr-mob-lnk:hover,
.hdr-mob-lnk.active {
  color: var(--c-pri);
  padding-left: 0.75rem;
}

.hdr-mob-cta {
  margin-top: 0.75rem;
  text-align: center;
  justify-content: center;
  border-bottom: none !important;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1614 0%, #2c1f18 45%, #1a2535 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 72% 38%, rgba(196,98,45,0.17) 0%, transparent 70%),
    radial-gradient(ellipse 45% 65% at 18% 72%, rgba(44,62,80,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 50% 10%, rgba(212,168,83,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-shape1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.1) 0%, transparent 65%);
  right: -150px;
  top: 5%;
  pointer-events: none;
}

.hero-shape2 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.09) 0%, transparent 65%);
  left: 3%;
  bottom: 8%;
  pointer-events: none;
}

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

.hero-content { padding-right: 1rem; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,98,45,0.18);
  color: var(--c-acc-lt);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(196,98,45,0.28);
  margin-bottom: 1.75rem;
}

.hero-h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-h1 em {
  font-style: normal;
  color: var(--c-acc);
  position: relative;
  display: inline-block;
}

.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-acc), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(240,236,230,0.78);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}


.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
}

.hero-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  transition: transform var(--tr-slow), box-shadow var(--tr-slow);
}

.hero-img:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 48px 96px rgba(31,27,24,0.3), 0 12px 32px rgba(31,27,24,0.15);
}

.hero-card {
  position: absolute;
  bottom: -1.25rem;
  left: -2rem;
  background: #fff;
  border-radius: var(--r-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--sh-lg);
  font-family: var(--font-bd);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-text);
  transition: transform var(--tr-mid), box-shadow var(--tr-mid);
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-xl);
}

.hero-card i {
  color: var(--c-pri);
  font-size: 1.25rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240,236,230,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 0.7; }
}

/* =============================================
   HOVER CARD BASE
   ============================================= */
.hov-card {
  transition:
    transform var(--tr-mid),
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.hov-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.hov-img {
  transition: transform var(--tr-slow), box-shadow var(--tr-slow);
  border-radius: var(--r-lg);
}

.hov-img:hover {
  transform: scale(1.025);
  box-shadow: var(--sh-lg);
}

/* =============================================
   WAVE DIVIDERS
   ============================================= */
.wave-div {
  line-height: 0;
  background: var(--c-bg3);
  overflow: hidden;
}

.wave-div svg {
  display: block;
  width: 100%;
  min-width: 320px;
}

.wave-inv {
  background: var(--c-bg2);
}

/* =============================================
   SECTIONS - BASE
   ============================================= */
.sec {
  padding: var(--sp-xl) 0;
}

.sec-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}


.sec-off-r .sec-img-col { order: -1; }
.sec-off-l .sec-txt-col { order: -1; }

.sec-label {
  display: inline-block;
  font-family: var(--font-bd);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-pri);
  margin-bottom: 0.8rem;
}

.sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.sec-body {
  font-size: 1rem;
  color: var(--c-text-muted);
  line-height: 1.78;
  margin-bottom: 1.25rem;
}

.sec-body:last-of-type { margin-bottom: 1.75rem; }

.sec-center-hd {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  margin-bottom: 3.5rem;
}

.sec-sub-hd {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 580px;
  margin: 0.75rem auto 0;
  line-height: 1.72;
}

.sec-img {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  width: 100%;
  object-fit: cover;
  display: block;
}

.sec-img-col { position: relative; }

/* =============================================
   PROBLEMA SECTION
   ============================================= */
.sec-problema { background: var(--c-bg2); }

.prob-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.prob-item {
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.1rem 1.15rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
}

.prob-item:hover { border-color: var(--c-pri-lt); }

.prob-ico {
  color: var(--c-pri);
  font-size: 1.15rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.prob-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--c-text);
}

.prob-item p {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* =============================================
   APPROACH SECTION
   ============================================= */
.sec-approach { background: var(--c-bg); }

.approach-accent {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.1) 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  pointer-events: none;
}

/* =============================================
   PILLARS SECTION
   ============================================= */
.sec-pillars {
  background: var(--c-bg3);
  padding: var(--sp-xl) 0;
}

.sec-pillars .sec-center-hd .sec-label { color: var(--c-acc); }
.sec-pillars .sec-title { color: #fff; }
.sec-pillars .sec-sub-hd { color: rgba(240,236,230,0.68); }

.pillars-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-crd {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition:
    background var(--tr-mid),
    border-color var(--tr-mid),
    transform var(--tr-mid),
    box-shadow var(--tr-mid);
}

.pillar-crd:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,98,45,0.38);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28), 0 0 0 1px rgba(196,98,45,0.18);
}

.pillar-num {
  font-family: var(--font-hd);
  font-size: 4.5rem;
  font-weight: 800;
  color: rgba(196,98,45,0.13);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  user-select: none;
  pointer-events: none;
  transition: color var(--tr-mid);
}

.pillar-crd:hover .pillar-num { color: rgba(196,98,45,0.22); }

.pillar-ico-wrap {
  width: 52px;
  height: 52px;
  background: rgba(196,98,45,0.18);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background var(--tr-fast), transform var(--tr-fast);
}

.pillar-crd:hover .pillar-ico-wrap {
  background: rgba(196,98,45,0.32);
  transform: scale(1.08) rotate(-3deg);
}

.pillar-ico { color: var(--c-acc); font-size: 1.3rem; }

.pillar-ttl {
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.pillar-txt {
  font-size: 0.9rem;
  color: rgba(240,236,230,0.68);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}

.pillar-lnk {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--c-acc);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--tr-fast), color var(--tr-fast);
}

.pillar-lnk:hover {
  gap: 0.75rem;
  color: var(--c-acc-lt);
}

/* =============================================
   PROCESS SECTION
   ============================================= */
.sec-process { background: var(--c-bg2); }

.process-steps {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
}

.proc-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition:
    transform var(--tr-mid),
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.proc-step:hover {
  transform: translateY(-4px) translateX(4px);
  box-shadow: var(--sh-md);
  border-color: var(--c-pri-lt);
}

.proc-num {
  width: 52px;
  height: 52px;
  background: var(--c-pri);
  color: #fff;
  font-family: var(--font-hd);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-pri);
  transition: background var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast);
}

.proc-step:hover .proc-num {
  background: var(--c-pri-dk);
  transform: scale(1.1);
  box-shadow: var(--sh-pri-lg);
}

.proc-content h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.proc-content p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.68;
  margin: 0;
}

.proc-connector {
  width: 2px;
  height: 1.75rem;
  background: linear-gradient(to bottom, var(--c-border-dk), var(--c-border));
  margin: 0 0 0 2.9rem;
  border-radius: 2px;
}

/* =============================================
   FOR WHO SECTION
   ============================================= */
.sec-forwho { background: var(--c-bg); }

.forwho-img-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.sec-img-2 {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  width: 100%;
  object-fit: cover;
  display: block;
  margin-top: 2.5rem;
  transition: transform var(--tr-slow), box-shadow var(--tr-slow);
}

.sec-img-2:hover {
  transform: scale(1.025);
  box-shadow: var(--sh-lg);
}

.forwho-list {
  margin: 1.25rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.forwho-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.58;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: padding-left var(--tr-fast), color var(--tr-fast);
}

.forwho-list li:last-child { border-bottom: none; }
.forwho-list li:hover { padding-left: 0.4rem; color: var(--c-pri); }

.forwho-list li i {
  color: var(--c-pri);
  margin-top: 0.22rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* =============================================
   PROGRAMS PREVIEW
   ============================================= */
.sec-prog-prev { background: var(--c-bg2); }

.prog-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prog-crd {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition:
    transform var(--tr-mid),
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.prog-crd:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-pri-lt);
}

.prog-crd-feat {
  border-color: var(--c-pri);
  box-shadow: var(--sh-pri);
}

.prog-crd-feat:hover {
  border-color: var(--c-pri-dk);
  box-shadow: var(--sh-pri-lg);
}

.prog-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.prog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow);
}

.prog-crd:hover .prog-img { transform: scale(1.06); }

.prog-body { padding: 1.75rem; }

.prog-tag {
  display: inline-block;
  background: var(--c-bg2);
  color: var(--c-text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: var(--r-full);
  margin-bottom: 0.8rem;
}

.prog-tag-feat {
  background: rgba(196,98,45,0.1);
  color: var(--c-pri);
}

.prog-ttl {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.prog-txt {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.68;
  margin-bottom: 1.25rem;
}

/* =============================================
   FOOTER
   ============================================= */
.ftr {
  background: var(--c-bg3);
  color: var(--c-text-light);
  margin-top: auto;
}


.ftr-stats {
  background: rgba(196,98,45,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ftr-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--tr-fast);
}

.ftr-stat:last-child { border-right: none; }

.ftr-stat:hover { background: rgba(196,98,45,0.09); }

.ftr-stat-ico {
  font-size: 1.75rem;
  color: var(--c-acc);
  flex-shrink: 0;
  opacity: 0.85;
}

.ftr-stat-num {
  font-family: var(--font-hd);
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: inline;
}

.ftr-stat-suf {
  font-family: var(--font-hd);
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ftr-stat p {
  font-size: 0.77rem;
  color: rgba(240,236,230,0.55);
  margin-top: 0.25rem;
  line-height: 1.45;
}


.ftr-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.ftr-logo {
  margin-bottom: 1.1rem;
  opacity: 0.88;
  transition: opacity var(--tr-fast);
}

.ftr-logo:hover { opacity: 1; }

.ftr-tagline {
  font-size: 0.88rem;
  color: rgba(240,236,230,0.6);
  line-height: 1.68;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.ftr-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ftr-contact a,
.ftr-contact span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(240,236,230,0.65);
  transition: color var(--tr-fast);
  text-decoration: none;
}

.ftr-contact a:hover { color: var(--c-acc); }

.ftr-contact i {
  color: var(--c-pri);
  font-size: 0.82rem;
  width: 14px;
  text-align: center;
}

.ftr-nav-col h4 {
  font-family: var(--font-bd);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,236,230,0.38);
  margin-bottom: 1.25rem;
}

.ftr-nav-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(240,236,230,0.65);
  margin-bottom: 0.65rem;
  text-decoration: none;
  transition: color var(--tr-fast), padding-left var(--tr-fast);
  position: relative;
}

.ftr-nav-col a:hover {
  color: var(--c-acc);
  padding-left: 0.45rem;
}

.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.ftr-bottom p {
  font-size: 0.77rem;
  color: rgba(240,236,230,0.35);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.pg-hero {
  padding: 10rem 2rem 6rem;
  background: linear-gradient(135deg, var(--c-bg3) 0%, #2c1f18 60%, #1a2535 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 50% 55%, rgba(196,98,45,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 80% 20%, rgba(212,168,83,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pg-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pg-hero-h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pg-hero-sub {
  font-size: 1.05rem;
  color: rgba(240,236,230,0.72);
  line-height: 1.72;
  max-width: 600px;
  margin: 0 auto;
}

.pg-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.serv-crd {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--sh-sm);
  transition:
    transform var(--tr-mid),
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.serv-crd:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--c-pri-lt);
}

.serv-ico {
  font-size: 1.9rem;
  color: var(--c-pri);
  margin-bottom: 1.1rem;
  display: block;
  transition: transform var(--tr-fast);
}

.serv-crd:hover .serv-ico { transform: scale(1.12) rotate(-5deg); }

.serv-crd h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.serv-crd p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.68;
  margin: 0 0 1.1rem;
}

/* =============================================
   VALUES SECTION
   ============================================= */
.sec-values { background: var(--c-bg); }

.values-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.val-crd {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  box-shadow: var(--sh-sm);
  transition:
    transform var(--tr-mid),
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.val-crd:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--c-pri-lt);
}

.val-ico {
  font-size: 1.75rem;
  color: var(--c-pri);
  margin-bottom: 1rem;
  display: block;
  transition: transform var(--tr-fast);
}

.val-crd:hover .val-ico { transform: scale(1.12) rotate(-5deg); }

.val-crd h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.val-crd p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.68;
  margin: 0;
}

/* =============================================
   METHODOLOGY SECTION
   ============================================= */
.sec-method { background: var(--c-bg2); }

/* =============================================
   CTA MID SECTION
   ============================================= */
.sec-cta-mid {
  background: linear-gradient(135deg, var(--c-pri) 0%, #b85520 50%, var(--c-pri-dk) 100%);
  padding: 5.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sec-cta-mid::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-mid-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-mid-ttl {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.cta-mid-txt {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  line-height: 1.68;
}

.sec-cta-mid .btn-pri {
  background: #fff;
  color: var(--c-pri);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.12);
  border-color: transparent;
}

.sec-cta-mid .btn-pri:hover {
  background: var(--c-bg2);
  color: var(--c-pri-dk);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  transform: translateY(-3px);
}

/* =============================================
   FAQ SECTION
   ============================================= */
.sec-faq { background: var(--c-bg); }

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-cat { margin-bottom: 3.5rem; }
.faq-cat:last-child { margin-bottom: 0; }

.faq-cat-ttl {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--c-border);
  color: var(--c-text);
}

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

.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow var(--tr-mid),
    border-color var(--tr-mid),
    transform var(--tr-mid);
}

.faq-item:hover {
  border-color: var(--c-pri-lt);
  box-shadow: var(--sh-md);
  transform: translateX(3px);
}

.faq-item.open {
  border-color: var(--c-pri-lt);
  box-shadow: var(--sh-md);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-bd);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  transition: color var(--tr-fast);
  min-height: 44px;
}

.faq-q:hover { color: var(--c-pri); }
.faq-item.open .faq-q { color: var(--c-pri); }

.faq-ico {
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--c-pri);
  transition: transform var(--tr-mid);
}

.faq-item.open .faq-ico { transform: rotate(180deg); }

.faq-a {
  padding: 0 1.5rem 1.25rem;
  display: none;
  border-top: 1px solid var(--c-border);
  padding-top: 1.1rem;
}

.faq-item.open .faq-a { display: block; }

.faq-a p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.72;
  margin-bottom: 0.75rem;
}

.faq-a p:last-child { margin-bottom: 0; }

/* =============================================
   PROGRAM DETAIL (grupales page)
   ============================================= */
.sec-prog-detail { background: var(--c-bg); }

.prog-detail-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.prog-detail-crd {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition:
    transform var(--tr-mid),
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.prog-detail-crd:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-pri-lt);
}

.prog-detail-hd {
  background: var(--c-bg2);
  padding: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.prog-detail-tag {
  display: inline-block;
  background: var(--c-pri);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: var(--r-full);
  margin-bottom: 0.8rem;
}

.prog-detail-hd h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.prog-detail-dur {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.prog-detail-body { padding: 2rem; }

.prog-detail-body > p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.72;
  margin-bottom: 1.25rem;
}

.prog-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.prog-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.55;
}

.prog-detail-list li i {
  color: var(--c-pri);
  font-size: 0.78rem;
  margin-top: 0.22rem;
  flex-shrink: 0;
}

/* =============================================
   EXPECT TIMELINE (grupales page)
   ============================================= */
.sec-expect { background: var(--c-bg2); }

.expect-timeline {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expect-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-sm);
  transition:
    transform var(--tr-mid),
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.expect-item:hover {
  transform: translateY(-3px) translateX(4px);
  box-shadow: var(--sh-md);
  border-color: var(--c-pri-lt);
}

.expect-time {
  font-family: var(--font-hd);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-pri);
  background: rgba(196,98,45,0.1);
  border-radius: var(--r-sm);
  padding: 0.45rem 0.65rem;
  text-align: center;
  flex-shrink: 0;
  transition: background var(--tr-fast), color var(--tr-fast);
}

.expect-item:hover .expect-time {
  background: var(--c-pri);
  color: #fff;
}

.expect-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--c-text);
}

.expect-content p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   WHY GROUP (grupales page)
   ============================================= */
.sec-why-group { background: var(--c-bg); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.sec-contact {
  background: var(--c-bg);
  padding: var(--sp-xl) 0;
}

.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-col h2 { margin-bottom: 0.75rem; }
.contact-form-col .sec-body { margin-bottom: 2rem; }


.frm-acc {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 0.8rem;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.frm-acc:hover { border-color: var(--c-pri-lt); }

.frm-acc-hd {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: #fff;
  font-family: var(--font-bd);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-text);
  gap: 1rem;
  transition: background var(--tr-fast), color var(--tr-fast);
  min-height: 52px;
  cursor: pointer;
}

.frm-acc-hd span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.frm-acc-hd span i { color: var(--c-pri); font-size: 0.9rem; }

.frm-acc-hd.open {
  background: rgba(196,98,45,0.05);
  color: var(--c-pri);
}

.frm-acc-ico {
  font-size: 0.8rem;
  color: var(--c-pri);
  transition: transform var(--tr-mid);
  flex-shrink: 0;
}

.frm-acc-hd.open .frm-acc-ico { transform: rotate(180deg); }

.frm-acc-body {
  padding: 1.25rem 1.4rem;
  background: var(--c-bg4);
  border-top: 1px solid var(--c-border);
}

.frm-field { margin-bottom: 1.1rem; }
.frm-field:last-child { margin-bottom: 0; }

.frm-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.45rem;
}

.frm-field input,
.frm-field textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--font-bd);
  font-size: 0.9rem;
  color: var(--c-text);
  background: #fff;
  transition:
    border-color var(--tr-fast),
    box-shadow var(--tr-fast),
    background var(--tr-fast);
  outline: none;
  -webkit-appearance: none;
}

.frm-field input:focus,
.frm-field textarea:focus {
  border-color: var(--c-pri);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.11);
  background: #fff;
}

.frm-field input:hover,
.frm-field textarea:hover {
  border-color: var(--c-border-dk);
}

.frm-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.frm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 0.12rem;
  accent-color: var(--c-pri);
  cursor: pointer;
}

.frm-check label {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.58;
  cursor: pointer;
}

.frm-check a {
  color: var(--c-pri);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 0.95rem;
  font-size: 0.95rem;
}


.contact-info-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--c-border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(196,98,45,0.09);
  color: var(--c-pri);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--tr-fast), transform var(--tr-fast);
}

.contact-info-item:hover i {
  background: rgba(196,98,45,0.18);
  transform: scale(1.08);
}

.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info-item a,
.contact-info-item span {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.5;
  transition: color var(--tr-fast);
}

.contact-info-item a:hover { color: var(--c-pri); }


.contact-tips {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-sm);
}

.contact-tips h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-pri);
}

.contact-tips > p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin-bottom: 1.1rem;
  line-height: 1.62;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--c-text);
  line-height: 1.58;
}

.tips-list li i {
  color: var(--c-pri);
  font-size: 0.72rem;
  margin-top: 0.28rem;
  flex-shrink: 0;
}


.contact-map {
  max-width: 1280px;
  margin: 3.5rem auto 0;
  padding: 0 2rem;
}

.contact-map-ttl {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--c-border);
}

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-sec {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  background: var(--c-bg);
}

.thanks-inner {
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.thanks-ico {
  font-size: 4.5rem;
  color: var(--c-pri);
  margin-bottom: 1.5rem;
  animation: popIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-ttl {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.thanks-sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 3rem;
  line-height: 1.72;
}

.thanks-next { text-align: left; margin-bottom: 3rem; }

.thanks-next h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.thanks-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thanks-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--sh-sm);
  transition:
    transform var(--tr-mid),
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.thanks-step:hover {
  transform: translateX(5px);
  box-shadow: var(--sh-md);
  border-color: var(--c-pri-lt);
}

.thanks-step-num {
  width: 44px;
  height: 44px;
  background: var(--c-pri);
  color: #fff;
  font-family: var(--font-hd);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--sh-pri);
}

.thanks-step strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--c-text);
}

.thanks-step p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.62;
  margin: 0;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-hero {
  padding: 9rem 2rem 4rem;
  background: var(--c-bg2);
  border-bottom: 1px solid var(--c-border);
}

.legal-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.legal-hero p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  margin: 0;
}

.sec-legal { background: var(--c-bg); }

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-acc {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition:
    box-shadow var(--tr-mid),
    border-color var(--tr-mid);
}

.legal-acc:hover {
  border-color: var(--c-pri-lt);
  box-shadow: var(--sh-md);
}

.legal-acc.open {
  border-color: var(--c-pri-lt);
  box-shadow: var(--sh-md);
}

.legal-acc-hd {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  font-family: var(--font-bd);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-text);
  text-align: left;
  transition: background var(--tr-fast), color var(--tr-fast);
  cursor: pointer;
  min-height: 56px;
}

.legal-acc-hd:hover { color: var(--c-pri); }
.legal-acc.open .legal-acc-hd { color: var(--c-pri); background: rgba(196,98,45,0.04); }

.legal-acc-hd i {
  font-size: 0.8rem;
  color: var(--c-pri);
  transition: transform var(--tr-mid);
  flex-shrink: 0;
}

.legal-acc.open .legal-acc-hd i { transform: rotate(180deg); }

.legal-acc-body {
  padding: 1.5rem;
  background: #fff;
  border-top: 1px solid var(--c-border);
}

.legal-acc-body p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.78;
  margin-bottom: 0.9rem;
}

.legal-acc-body p:last-child { margin-bottom: 0; }

.legal-acc-body ul {
  margin: 0.5rem 0 0.9rem 1.4rem;
  list-style: disc;
}

.legal-acc-body li {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.68;
  margin-bottom: 0.45rem;
}

.legal-acc-body strong { color: var(--c-text); }

.legal-acc-body a {
  color: var(--c-pri);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--tr-fast);
}

.legal-acc-body a:hover { color: var(--c-pri-dk); }


.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 0.75rem 0;
  border-radius: var(--r-sm);
  overflow: hidden;
}

.cookie-table th {
  background: var(--c-bg2);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: 0.82rem;
}

.cookie-table td {
  padding: 0.7rem 1rem;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  vertical-align: top;
  line-height: 1.55;
}

.cookie-table tr:hover td { background: rgba(196,98,45,0.03); }

/* =============================================
   ORIGIN / DE DONDE VENIMOS
   ============================================= */
.sec-origin { background: var(--c-bg); }

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */


@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .prog-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .ftr-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ftr-stats { grid-template-columns: repeat(3, 1fr); }
}


@media (max-width: 900px) {
  
  .hdr-nav,
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }

  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem 4rem;
  }
  .hero-content { padding-right: 0; }
  .hero-img-wrap { max-width: 440px; margin: 0 auto; }
  .hero-card { left: -0.5rem; bottom: -1rem; }

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

  
  .sec-off-r .sec-img-col,
  .sec-off-l .sec-txt-col { order: 0; }

  
  .forwho-img-col {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .sec-img-2 { margin-top: 0; }

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

  
  .prog-detail-grid { grid-template-columns: 1fr; }

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

  
  .ftr-main { grid-template-columns: 1fr; gap: 2rem; }
  .ftr-stats { grid-template-columns: 1fr; }
  .ftr-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .ftr-stat:last-child { border-bottom: none; }
  .ftr-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }

  
  .prob-items { grid-template-columns: 1fr; }


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


@media (max-width: 640px) {
  :root {
    --sp-xl: 4rem;
    --sp-lg: 2.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-inner { padding: 2.5rem 1.25rem 3.5rem; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }

  
  .sec-inner { padding: 0 1.25rem; }
  .sec-center-hd { padding: 0 1.25rem; }
  .pillars-grid,
  .prog-grid,
  .prog-detail-grid,
  .values-grid,
  .services-grid { padding: 0 1.25rem; }
  .process-steps,
  .expect-timeline,
  .faq-wrap,
  .legal-wrap { padding: 0 1.25rem; }
  .contact-grid,
  .contact-map { padding: 0 1.25rem; }

  
  .ftr-main { padding: 2.5rem 1.25rem; }
  .ftr-bottom { padding: 1.25rem; }
  .ftr-stat { padding: 1.5rem 1.25rem; }

  
  .pg-hero { padding: 8rem 1.25rem 3rem; }
  .pg-hero-h1 { font-size: 2.1rem; }

  
  .legal-hero { padding: 8rem 1.25rem 2.5rem; }

  
  .sec-cta-mid { padding: 4rem 1.25rem; }

  
  .proc-step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .proc-num { width: 44px; height: 44px; font-size: 1.1rem; }
  .proc-connector { margin-left: 2.4rem; }

  
  .expect-item {
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }

  
  .thanks-sec { padding: 4rem 1.25rem; }
  .thanks-step {
    grid-template-columns: 42px 1fr;
    gap: 1rem;
    padding: 1rem 1.1rem;
  }

  
  .forwho-img-col { grid-template-columns: 1fr; }

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

  
  .ck-panel { width: calc(100vw - 2rem); right: 1rem; }

  
  .cookie-table { font-size: 0.78rem; }
  .cookie-table th,
  .cookie-table td { padding: 0.5rem 0.6rem; }
}


@media (max-width: 400px) {
  .hero-h1 { font-size: 2rem; }
  .pg-hero-h1 { font-size: 1.85rem; }
  .sec-title { font-size: 1.65rem; }
  .hdr-inner { padding: 0 1rem; }
  .hdr-mob { padding: 0.5rem 1rem 1.25rem; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .hdr, .ftr, .ck-btn, .ck-panel, .hero-scroll { display: none; }
  body { background: #fff; color: #000; }
  .sec { padding: 2rem 0; }
}