:root {
  --bg: #f7f6f4;
  --bg-alt: #f0eeeb;
  --bg-dark: #1c1c1e;
  --bg-card: #ffffff;
  --txt: #2a2a2a;
  --txt-muted: #6b6b6b;
  --txt-light: #9a9a9a;
  --accent: #e85d2f;
  --accent-dark: #c44820;
  --accent-light: #f07a55;
  --border: #e2dfd9;
  --border-light: #ede9e4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --hdr-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  font-size: clamp(15px, 1.6vw, 17px);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }

.accent { color: var(--accent); }

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hdr-h);
  background: rgba(247, 246, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--transition);
}
.hdr.scrolled { box-shadow: var(--shadow-md); }
.hdr.hidden { transform: translateY(-100%); }

.hdr-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr-logo-img { width: 32px; height: 32px; }
.hdr-logo-txt {
  font-size: 18px;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: -0.3px;
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.hdr-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--txt-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.hdr-link:hover, .hdr-link.active {
  color: var(--txt);
  background: var(--bg-alt);
}
.hdr-link.active { color: var(--accent); }

.hdr-cta {
  margin-left: 8px;
  flex-shrink: 0;
}

.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: all var(--transition);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(232, 93, 47, 0.25);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 93, 47, 0.35);
}
.btn-accent:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--txt);
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--txt);
  background: var(--bg-alt);
}

.link-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14.5px;
  transition: gap var(--transition), color var(--transition);
}
.link-accent:hover { gap: 10px; color: var(--accent-dark); }

.sec {
  padding: clamp(60px, 8vw, 120px) 0;
}
.sec-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.sec-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--txt);
  letter-spacing: -0.5px;
}
.sec-desc {
  font-size: 16px;
  color: var(--txt-muted);
  max-width: 540px;
  margin-top: 12px;
  line-height: 1.7;
}
.sec-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.sec-head .sec-desc { margin: 12px auto 0; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,30,0.82) 0%, rgba(28,28,30,0.45) 60%, rgba(28,28,30,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--hdr-h) + 40px);
  padding-bottom: 80px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 47, 0.15);
  border: 1px solid rgba(232, 93, 47, 0.4);
  color: var(--accent-light);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.intro-sec { background: var(--bg); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.intro-txt { max-width: 520px; }
.intro-txt .sec-title { margin-bottom: 20px; }
.intro-body {
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.intro-body:last-of-type { margin-bottom: 24px; }
.intro-img-wrap {
  position: relative;
}
.intro-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.intro-badge i { color: var(--accent); font-size: 20px; }
.intro-badge strong { display: block; font-size: 13px; font-weight: 700; color: var(--txt); }
.intro-badge span { font-size: 12px; color: var(--txt-muted); }

.modules-sec { background: var(--bg-alt); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.crd {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.module-crd .crd-img {
  margin-top: 20px;
  border-radius: var(--radius-md);
  aspect-ratio: 16/9;
  object-fit: cover;
}
.crd-ico {
  width: 52px;
  height: 52px;
  background: rgba(232, 93, 47, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--transition);
}
.crd:hover .crd-ico { background: rgba(232, 93, 47, 0.14); }
.crd-ico i { color: var(--accent); font-size: 20px; }
.crd-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 10px;
  line-height: 1.3;
}
.crd-txt {
  font-size: 14.5px;
  color: var(--txt-muted);
  line-height: 1.7;
}

.checklist-sec { background: var(--bg); }
.checklist-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.checklist-left { position: sticky; top: calc(var(--hdr-h) + 32px); }
.checklist-left .sec-title { margin-bottom: 16px; }
.checklist-desc {
  color: var(--txt-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--txt);
  line-height: 1.55;
}
.chk-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(232, 93, 47, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.chk-icon i { color: var(--accent); font-size: 10px; }

.image-sec { background: var(--bg-alt); padding: clamp(40px, 5vw, 80px) 0; }
.img-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
}
.img-mosaic-main img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  min-height: 300px;
}
.img-mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.img-mosaic-side img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  flex: 1;
}

.brand-sec { background: var(--bg); }
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.brand-txt .sec-title { margin-bottom: 20px; }
.brand-txt p {
  color: var(--txt-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.brand-features { display: flex; flex-direction: column; gap: 24px; }
.brand-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition), transform var(--transition);
}
.brand-feat:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.brand-feat > i {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}
.brand-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.brand-feat p { font-size: 13.5px; color: var(--txt-muted); margin: 0; line-height: 1.6; }

.swiper-sec { background: var(--bg-alt); }
.topic-swiper {
  padding-bottom: 52px !important;
}
.topic-slide {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: auto;
}
.topic-ico {
  width: 56px;
  height: 56px;
  background: rgba(232, 93, 47, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.topic-ico i { color: var(--accent); font-size: 22px; }
.topic-slide h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--txt); }
.topic-slide p { font-size: 14.5px; color: var(--txt-muted); line-height: 1.7; }
.swiper-pagination-bullet { background: var(--border); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--accent); }
.swiper-button-prev, .swiper-button-next {
  color: var(--accent) !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--bg-card);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 14px !important; font-weight: 900; }

.cta-sec { background: var(--bg); }
.cta-inner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d2f 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 93, 47, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content .sec-label { color: var(--accent-light); }
.cta-h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-img-wrap img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.ftr { background: #1c1c1e; color: rgba(255,255,255,0.7); margin-top: auto; }
.ftr-stats {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.ftr-stats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.ftr-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px 16px 0;
  margin-right: 32px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ftr-stat:last-child { border-right: none; margin-right: 0; }
.ftr-stat i { color: var(--accent); font-size: 14px; }
.ftr-main { padding: clamp(40px, 5vw, 72px) 0 0; }
.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.ftr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.ftr-logo-img { width: 28px; height: 28px; filter: brightness(0) invert(1); }
.ftr-logo span { font-size: 17px; font-weight: 700; color: #ffffff; }
.ftr-tagline { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.ftr-addr { font-size: 13px; color: rgba(255,255,255,0.4); display: flex; align-items: flex-start; gap: 8px; }
.ftr-addr i { color: var(--accent); margin-top: 3px; }
.ftr-col-title { font-size: 13px; font-weight: 700; color: #ffffff; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
.ftr-links { display: flex; flex-direction: column; gap: 8px; }
.ftr-links a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.ftr-links a:hover { color: #ffffff; }
.ftr-contact-list { display: flex; flex-direction: column; gap: 10px; }
.ftr-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); }
.ftr-contact-list i { color: var(--accent); margin-top: 3px; font-size: 12px; flex-shrink: 0; }
.ftr-contact-list a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.ftr-contact-list a:hover { color: #ffffff; }
.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.ftr-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ftr-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }

.page-hero {
  padding: calc(var(--hdr-h) + 64px) 0 64px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero-sm { padding: calc(var(--hdr-h) + 40px) 0 40px; }
.page-hero-content { max-width: 640px; }
.page-hero-h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-sub { font-size: 17px; color: var(--txt-muted); line-height: 1.7; max-width: 520px; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.story-img-col { position: relative; }
.story-img-col img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.story-quote {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: #ffffff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  max-width: 260px;
  box-shadow: var(--shadow-lg);
}
.story-quote i { font-size: 20px; margin-bottom: 8px; opacity: 0.6; }
.story-quote p { font-size: 14px; line-height: 1.6; font-weight: 500; font-style: italic; }
.story-txt { padding-top: 20px; }
.story-txt .sec-title { margin-bottom: 20px; }
.story-txt p { color: var(--txt-muted); line-height: 1.75; margin-bottom: 16px; }

.values-sec { background: var(--bg-alt); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.val-crd {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.val-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.val-ico {
  width: 48px; height: 48px;
  background: rgba(232, 93, 47, 0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.val-ico i { color: var(--accent); font-size: 18px; }
.val-crd h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.val-crd p { font-size: 14px; color: var(--txt-muted); line-height: 1.7; }

.timeline-sec { background: var(--bg); }
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.tl-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-item:last-child::before { display: none; }
.tl-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  transition: all var(--transition);
}
.tl-item:hover .tl-num {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.tl-content { padding-top: 12px; }
.tl-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.tl-content p { font-size: 14.5px; color: var(--txt-muted); line-height: 1.7; }

.about-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  color: #ffffff;
  box-shadow: 0 16px 48px rgba(232, 93, 47, 0.3);
}
.about-cta h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.about-cta p { font-size: 16px; opacity: 0.85; margin-bottom: 28px; line-height: 1.65; }
.about-cta .btn-accent {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.about-cta .btn-accent:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.scope-intro { margin-bottom: clamp(40px, 5vw, 64px); }
.scope-lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--txt-muted);
  line-height: 1.75;
  max-width: 760px;
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}
.scope-modules { display: flex; flex-direction: column; gap: 64px; }
.scope-mod {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.scope-mod-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.scope-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  opacity: 0.15;
  transition: opacity var(--transition);
}
.scope-mod:hover .scope-num { opacity: 0.25; }
.scope-mod-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.scope-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 93, 47, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 6px;
}
.scope-mod-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.scope-mod-txt p { color: var(--txt-muted); line-height: 1.75; margin-bottom: 16px; font-size: 15px; }
.scope-mod-txt h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--txt-muted); margin-bottom: 12px; }
.scope-list { display: flex; flex-direction: column; gap: 8px; }
.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--txt);
  line-height: 1.55;
}
.scope-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
}
.scope-mod-img img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.format-sec { background: var(--bg-alt); }
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.fmt-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fmt-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fmt-item > i { font-size: 28px; color: var(--accent); margin-bottom: 14px; }
.fmt-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.fmt-item p { font-size: 13.5px; color: var(--txt-muted); line-height: 1.65; }

.gift-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.gift-txt .sec-title { margin-bottom: 20px; }
.gift-txt p { color: var(--txt-muted); line-height: 1.75; margin-bottom: 16px; }
.gift-img-wrap img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.gift-types-sec { background: var(--bg-alt); }
.gift-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.gift-crd {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gift-crd:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gift-crd-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.gift-crd-ico {
  width: 52px; height: 52px;
  background: rgba(232, 93, 47, 0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.gift-crd-ico i { color: var(--accent); font-size: 20px; }
.gift-crd h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.gift-crd p { font-size: 14px; color: var(--txt-muted); line-height: 1.7; margin-bottom: 20px; }
.gift-includes { display: flex; flex-direction: column; gap: 8px; }
.gift-includes li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--txt); }
.gift-includes i { color: var(--accent); font-size: 11px; }

.gift-how-sec { background: var(--bg); }
.gift-steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.gift-step {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.gift-step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.gift-step:last-child::before { display: none; }
.gift-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  box-shadow: 0 4px 12px rgba(232, 93, 47, 0.3);
}
.gift-step-content { padding-top: 8px; }
.gift-step-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.gift-step-content p { font-size: 14px; color: var(--txt-muted); line-height: 1.7; }

.contact-methods-sec { background: var(--bg-alt); }
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.contact-method {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.contact-method:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-method-accent { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm); }
.cm-ico {
  width: 52px; height: 52px;
  background: rgba(232, 93, 47, 0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cm-ico i { color: var(--accent); font-size: 20px; }
.contact-method h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.cm-when { font-size: 12px; color: var(--txt-light); margin-bottom: 10px; font-style: italic; }
.contact-method p { font-size: 14px; color: var(--txt-muted); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.cm-link { font-size: 14px; font-weight: 600; color: var(--accent); transition: color var(--transition); margin-bottom: 12px; display: block; }
.cm-link:hover { color: var(--accent-dark); }
.cm-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(232, 93, 47, 0.08);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: auto;
}

.contact-main-sec { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.contact-form-col .sec-title { margin-bottom: 28px; }

.frm { display: flex; flex-direction: column; gap: 20px; }
.frm-row { display: flex; gap: 16px; }
.frm-row-2 > * { flex: 1; }
.frm-field { display: flex; flex-direction: column; gap: 6px; }
.frm-label { font-size: 13px; font-weight: 600; color: var(--txt); }
.frm-input, .frm-textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  color: var(--txt);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.frm-input:focus, .frm-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 47, 0.12);
}
.frm-textarea { resize: vertical; min-height: 120px; }
.frm-privacy .frm-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--txt-muted);
  line-height: 1.55;
  cursor: pointer;
}
.frm-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}
.frm-privacy a { color: var(--accent); text-decoration: underline; }
.frm-submit { width: 100%; justify-content: center; padding: 13px 24px; font-size: 15px; }

.contact-info-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.contact-info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-details li { display: flex; align-items: flex-start; gap: 14px; }
.contact-details i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
}
.contact-details strong { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--txt-muted); margin-bottom: 2px; }
.contact-details span, .contact-details a { font-size: 14.5px; color: var(--txt); transition: color var(--transition); }
.contact-details a:hover { color: var(--accent); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }

.thanks-main { min-height: calc(100vh - var(--hdr-h) - 200px); display: flex; align-items: center; }
.thanks-sec { width: 100%; padding: 80px 0; }
.thanks-inner { text-align: center; max-width: 480px; margin: 0 auto; }
.thanks-anim { width: 100px; height: 100px; margin: 0 auto 32px; }
.thanks-svg { width: 100%; height: 100%; }
.thanks-circle {
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: drawCircle 0.8s ease forwards;
}
.thanks-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.5s ease forwards 0.7s;
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.thanks-content { opacity: 0; animation: fadeInUp 0.6s ease forwards 1.1s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.thanks-h1 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 800; margin-bottom: 12px; color: var(--txt); }
.thanks-p { font-size: 15px; color: var(--txt-muted); line-height: 1.7; margin-bottom: 28px; }

.legal-sec { background: var(--bg); }
.legal-container { max-width: 840px; }
.legal-intro {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent);
}
.legal-intro p { font-size: 15px; color: var(--txt-muted); line-height: 1.75; }
.legal-container h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--txt);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.legal-container h3 { font-size: 17px; font-weight: 700; margin: 28px 0 10px; color: var(--txt); }
.legal-container h4 { font-size: 15px; font-weight: 700; margin: 20px 0 8px; color: var(--txt); }
.legal-container p { font-size: 14.5px; color: var(--txt-muted); line-height: 1.75; margin-bottom: 14px; }
.legal-container ul { margin: 10px 0 14px 0; display: flex; flex-direction: column; gap: 6px; }
.legal-container ul li { font-size: 14.5px; color: var(--txt-muted); line-height: 1.65; padding-left: 16px; position: relative; }
.legal-container ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.legal-container a { color: var(--accent); transition: color var(--transition); }
.legal-container a:hover { color: var(--accent-dark); }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13.5px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.legal-table th {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  padding: 12px 14px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.legal-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--txt-muted);
  vertical-align: top;
  line-height: 1.55;
}
.legal-table tr:nth-child(even) td { background: var(--bg-alt); }
.legal-table tr:last-child td { border-bottom: none; }
.legal-dl { margin: 12px 0 20px; }
.legal-dl dt { font-weight: 700; font-size: 14.5px; color: var(--txt); margin-top: 16px; margin-bottom: 4px; }
.legal-dl dd { font-size: 14px; color: var(--txt-muted); line-height: 1.7; margin-left: 16px; }

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
}
.cookie-txt { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-txt a { color: var(--accent-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn-reject {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-reject:hover { background: rgba(255,255,255,0.08); color: #fff; }
.cookie-btn-customize {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-customize:hover { background: rgba(255,255,255,0.08); }
.cookie-btn-accept {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-accept:hover { background: var(--accent-dark); }
.cookie-expand {
  display: none;
  padding: 16px clamp(16px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.cookie-expand.open { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.cookie-cats { display: flex; gap: 20px; flex-wrap: wrap; }
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
}
.cookie-cat input { accent-color: var(--accent); cursor: pointer; }
.cookie-btn-save {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-light);
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-save:hover { background: var(--accent); color: #ffffff; }

.mob-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(247, 246, 244, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 800;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mob-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 4px 8px;
  color: var(--txt-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color var(--transition);
  min-height: 56px;
}
.mob-nav-item i { font-size: 18px; transition: color var(--transition), transform var(--transition); }
.mob-nav-item.active { color: var(--accent); }
.mob-nav-item.active i { transform: scale(1.15); }
.mob-nav-item:hover { color: var(--txt); }

@media (max-width: 1024px) {
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
  .mob-nav { display: flex; }
  body { padding-bottom: 64px; }
  .cookie-bar { bottom: 0; }
  .intro-grid, .story-grid, .brand-grid, .gift-intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-img-wrap { order: -1; }
  .intro-badge { bottom: 12px; left: 12px; }
  .checklist-inner { grid-template-columns: 1fr; }
  .checklist-left { position: static; }
  .img-mosaic { grid-template-columns: 1fr; }
  .img-mosaic-main img { aspect-ratio: 16/9; min-height: unset; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-img-wrap { display: none; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .scope-mod-body { grid-template-columns: 1fr; }
  .scope-mod-img { display: none; }
  .story-quote { right: 0; bottom: 0; max-width: 220px; }
}

@media (max-width: 640px) {
  .modules-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr 1fr; }
  .gift-cards-grid { grid-template-columns: 1fr; }
  .contact-methods-grid { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr; }
  .ftr-stats-inner { flex-direction: column; gap: 0; }
  .ftr-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 12px 0; margin-right: 0; }
  .ftr-stat:last-child { border-bottom: none; }
  .frm-row { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-accent, .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .cookie-bar-main { flex-direction: column; align-items: flex-start; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn-accent, .cta-btns .btn-ghost { width: 100%; justify-content: center; }
}