@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Inter:wght@400;500&display=swap');

:root {
  --clr-bg: #f7f6f4;
  --clr-bg-alt: #eeecea;
  --clr-surface: #ffffff;
  --clr-text: #1e1c1a;
  --clr-text-muted: #6b6762;
  --clr-text-light: #9c9894;
  --clr-accent: #c8622a;
  --clr-accent-dark: #a84e20;
  --clr-accent-light: #f0ddd3;
  --clr-border: #e0ddd9;
  --clr-white: #ffffff;

  --bg: var(--clr-bg);
  --bg-alt: var(--clr-bg-alt);
  --accent: var(--clr-accent);

  --shadow-sm: 0 1px 3px rgba(30,28,26,0.06), 0 1px 2px rgba(30,28,26,0.04);
  --shadow-md: 0 4px 12px rgba(30,28,26,0.08), 0 2px 6px rgba(30,28,26,0.05), 0 1px 2px rgba(30,28,26,0.04);
  --shadow-lg: 0 12px 32px rgba(30,28,26,0.10), 0 4px 12px rgba(30,28,26,0.07), 0 1px 3px rgba(30,28,26,0.04);
  --shadow-xl: 0 24px 56px rgba(30,28,26,0.12), 0 8px 20px rgba(30,28,26,0.08), 0 2px 6px rgba(30,28,26,0.04);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

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

  --hdr-h: 72px;
  --container: 1180px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

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


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--hdr-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hdr.scrolled {
  background: rgba(247,246,244,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.hdr-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hdr-logo { flex-shrink: 0; display: flex; align-items: center; }
.hdr-logo img { height: 36px; width: auto; }

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

.hdr-lnk {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.hdr-lnk:hover, .hdr-lnk.active {
  color: var(--clr-text);
  background: rgba(200,98,42,0.08);
}

.hdr-lnk.active { color: var(--clr-accent); }

.hdr-cta { margin-left: 1rem; }

.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.hdr-burger:hover { background: var(--clr-accent-light); }

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,28,26,0.55);
  backdrop-filter: blur(3px);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mob-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: var(--clr-surface);
  z-index: 960;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.mob-panel.open { transform: translateX(0); }

.mob-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  color: var(--clr-text-muted);
  transition: background 0.2s, color 0.2s;
  margin-bottom: 1.5rem;
}

.mob-close:hover { background: var(--clr-accent-light); color: var(--clr-accent); }

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mob-lnk {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--clr-text);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s;
}

.mob-lnk:hover { background: var(--clr-accent-light); color: var(--clr-accent); }

.mob-cta { margin-top: 2rem; text-align: center; width: 100%; }


.btn-prim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(200,98,42,0.25);
  white-space: nowrap;
}

.btn-prim:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200,98,42,0.35);
}

.btn-prim:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--clr-text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-border);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  border-color: var(--clr-accent);
  background: var(--clr-accent-light);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-white);
  color: var(--clr-accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.btn-white:hover {
  background: #fff8f5;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.16);
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--hdr-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,98,42,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(200,98,42,0.05) 0%, transparent 50%),
    linear-gradient(160deg, #f7f6f4 0%, #ede9e4 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(200,98,42,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
}

.hero-cnt {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,98,42,0.2);
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--clr-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-hl {
  color: var(--clr-accent);
  position: relative;
}

.hero-hl::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.08em;
  background: var(--clr-accent);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-acts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cards {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2rem;
  padding-bottom: 3rem;
}

.hcrd {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hcrd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hcrd-ico {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.hcrd-ttl {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.hcrd-txt {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}


.sec {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.sec-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.sec-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.sec-txt {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}


.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.intro-badge-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(30,28,26,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-head);
  padding: 0.6rem 1rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.intro-body { padding: 1rem 0; }


.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.area-crd {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.area-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.area-ico {
  width: 52px;
  height: 52px;
  background: var(--clr-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
}

.area-ttl {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}

.area-txt {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}


.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-accent-light), transparent);
}

.pstep {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.pstep-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--clr-surface);
  border: 2px solid var(--clr-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--clr-accent);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.pstep-ttl {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
  padding-top: 0.75rem;
}

.pstep-txt {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}


.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.report-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.report-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
}

.report-list li i {
  color: var(--clr-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.report-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}


.who-slider { margin-top: 2rem; padding-bottom: 3rem; }

.who-crd {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  height: 100%;
}

.who-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.who-body {
  padding: 1.75rem;
}

.who-ico {
  width: 44px;
  height: 44px;
  background: var(--clr-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

.who-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.who-body p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--clr-accent);
  width: 44px;
  height: 44px;
  background: var(--clr-surface);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.swiper-button-prev::after,
.swiper-button-next::after { font-size: 1rem; font-weight: 700; }

.swiper-pagination-bullet-active { background: var(--clr-accent); }


.sec-highlight {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.hl-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.hl-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hl-txt {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}


.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px;
  gap: 1rem;
}

.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gal-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}


.nl-strip {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}

.nl-body { flex: 1; }

.nl-ttl {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
}

.nl-txt {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.nl-frm {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}


.frm-group {
  margin-bottom: 1.25rem;
}

.frm-lbl {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}

.frm-inp {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.frm-inp:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(200,98,42,0.12);
}

.frm-inp::placeholder { color: var(--clr-text-light); }

.frm-area { resize: vertical; min-height: 130px; }

.frm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}

.frm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--clr-accent);
  margin-top: 2px;
  cursor: pointer;
}

.frm-check a { color: var(--clr-accent); }
.frm-check a:hover { text-decoration: underline; }

.frm-submit { width: 100%; padding: 0.9rem; font-size: 1rem; }


.crd {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}


.pg-hero {
  position: relative;
  padding: calc(var(--hdr-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(200,98,42,0.07) 0%, transparent 60%),
    linear-gradient(160deg, #f7f6f4 0%, #ede9e4 100%);
  z-index: 0;
}

.pg-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,98,42,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}

.pg-hero-cnt {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pg-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 1rem;
}

.pg-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 560px;
}


.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.method-crd {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.method-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.method-ico {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
}

.method-crd h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
}

.method-crd p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}


.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.values-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.highlight-box {
  background: var(--clr-accent-light);
  border-left: 4px solid var(--clr-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--clr-text);
  line-height: 1.6;
  transition: background 0.4s ease;
}

.highlight-box.highlighted {
  background: rgba(200,98,42,0.18);
}


.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.course-crd {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.course-tag {
  display: inline-block;
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.course-ttl {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
}

.course-txt {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.course-detail {
  display: flex;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--clr-text-light);
  font-weight: 500;
}

.course-detail i { color: var(--clr-accent); margin-right: 0.25rem; }


.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.apstep {
  text-align: center;
  padding: 2rem 1.5rem;
}

.apstep-ico {
  width: 64px;
  height: 64px;
  background: var(--clr-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-accent);
  margin: 0 auto 1.25rem;
}

.apstep h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
}

.apstep p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}


.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-crd {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-crd:hover .blog-img-wrap img { transform: scale(1.04); }

.blog-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.blog-body { padding: 1.75rem; }

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--clr-text-light);
  margin-bottom: 0.75rem;
}

.blog-ttl {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-exc {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.blog-full-content {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
}

.blog-full-content p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}


.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tag {
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}

.tag:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-light);
}


.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-crd { padding: 2.5rem; }

.contact-info-block {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  margin-bottom: 1.5rem;
}

.contact-info-ttl {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
}

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

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

.contact-ico {
  width: 40px;
  height: 40px;
  background: var(--clr-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  flex-shrink: 0;
}

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

.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.5;
}

.contact-info-item a:hover { color: var(--clr-accent); }


.urgent-block {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(200,98,42,0.3);
}

.urgent-ico {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.urgent-ttl {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.urgent-txt {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}


.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.thanks-body { background: linear-gradient(135deg, #f0ebe4 0%, #e8e2da 100%); }

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--hdr-h) - 280px);
  padding: 4rem 1.5rem;
}

.thanks-crd {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-border);
  text-align: center;
  max-width: 520px;
  width: 100%;
}

.thanks-ico {
  width: 72px;
  height: 72px;
  background: var(--clr-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--clr-accent);
  margin: 0 auto 1.5rem;
}

.thanks-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 1rem;
}

.thanks-txt {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.thanks-txt a { color: var(--clr-accent); }
.thanks-txt a:hover { text-decoration: underline; }


.legal-hero {
  background: linear-gradient(160deg, #f7f6f4 0%, #ede9e4 100%);
  padding: calc(var(--hdr-h) + 2.5rem) 0 3rem;
  border-bottom: 1px solid var(--clr-border);
}

.legal-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--clr-text-light);
}

.legal-doc {
  max-width: 780px;
}

.legal-intro {
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--clr-border);
}

.legal-doc h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 2.5rem 0 0.75rem;
}

.legal-doc p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}


.ftr {
  background: #1e1c1a;
  color: rgba(255,255,255,0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
}

.ftr-logo { filter: brightness(0) invert(1); opacity: 0.9; }

.ftr-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 1rem 0;
}

.ftr-addr {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.ftr-addr i { color: var(--clr-accent); margin-top: 0.15rem; flex-shrink: 0; }
.ftr-addr a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.ftr-addr a:hover { color: var(--clr-accent); }

.ftr-htitle {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.ftr-lnk {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.ftr-lnk:hover { color: var(--clr-accent); }

.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}


.sec-cta-strip { padding: clamp(3rem, 7vw, 5rem) 0; }


[data-highlight] {
  transition: background 0.5s ease, border-color 0.5s ease;
}


.ck-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid var(--clr-border);
  box-shadow: 0 -4px 24px rgba(30,28,26,0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.ck-bar.visible { transform: translateY(0); }

.ck-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  flex-wrap: wrap;
}

.ck-txt {
  flex: 1;
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  min-width: 240px;
}

.ck-txt a { color: var(--clr-accent); text-decoration: underline; }

.ck-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.ck-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.ck-btn-accept {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}

.ck-btn-accept:hover { background: var(--clr-accent-dark); }

.ck-btn-reject {
  background: transparent;
  color: var(--clr-text-muted);
  border-color: var(--clr-border);
}

.ck-btn-reject:hover { border-color: var(--clr-text-muted); color: var(--clr-text); }

.ck-btn-custom {
  background: transparent;
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

.ck-btn-custom:hover { background: var(--clr-accent-light); }

.ck-expand {
  border-top: 1px solid var(--clr-border);
  padding: 1.25rem 2rem;
  display: none;
}

.ck-expand.open { display: block; }

.ck-categories {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.ck-cat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--clr-text-muted);
}

.ck-cat input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--clr-accent);
}

.ck-save {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
  background: var(--clr-accent);
  color: #fff;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.ck-save:hover { background: var(--clr-accent-dark); }


@media (max-width: 1024px) {
  .hero-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .ftr-brand { grid-column: 1 / -1; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .gal-lg { grid-column: 1 / -1; }
}

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

  .hero-cards {
    grid-template-columns: 1fr 1fr;
    margin-top: -1rem;
  }

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

  .intro-img, .report-img, .values-img {
    aspect-ratio: 16/9;
    order: -1;
  }

  .nl-strip {
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
  }

  .nl-frm { width: 100%; flex-direction: column; }
  .nl-frm .btn-prim { width: 100%; }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gal-item { height: 200px; }

  .process-steps::before { left: 20px; }
  .pstep-num { width: 40px; height: 40px; font-size: 0.75rem; }
  .pstep { gap: 1.25rem; }

  .ftr-grid { grid-template-columns: 1fr; }
  .ftr-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero-cards {
    grid-template-columns: 1fr;
  }

  .hero-acts {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-acts .btn-prim,
  .hero-acts .btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .ck-main { padding: 1rem; gap: 1rem; }
  .ck-btns { width: 100%; }
  .ck-btn { flex: 1; text-align: center; }

  .areas-grid,
  .courses-grid,
  .method-grid { grid-template-columns: 1fr; }
}