

@layer base, layout, components, utilities;


:root {
  
  --c-50:  #f0f2f8;
  --c-100: #dde2f0;
  --c-200: #b8c2e0;
  --c-300: #8fa0cc;
  --c-400: #6680b8;
  --c-500: #3d5a9e;
  --c-600: #2e4585;
  --c-700: #213368;
  --c-800: #16234d;
  --c-900: #0d1633;
  --c-950: #070c1f;

  
  --acc:       #e8a020;
  --acc-light: #fbd47a;
  --acc-dark:  #b87a10;

  
  --bg:        #f5f6fb;
  --bg-card:   #ffffff;
  --text-base: #1a2240;
  --text-muted:#4a5578;
  --text-light:#7a87a8;
  --border:    #dde2f0;

  
  --sh-sm: 0 1px 3px rgba(13,22,51,0.08), 0 1px 2px rgba(13,22,51,0.06);
  --sh-md: 0 4px 12px rgba(13,22,51,0.10), 0 2px 4px rgba(13,22,51,0.07);
  --sh-lg: 0 8px 30px rgba(13,22,51,0.12), 0 4px 10px rgba(13,22,51,0.08);
  --sh-xl: 0 16px 48px rgba(13,22,51,0.16), 0 6px 16px rgba(13,22,51,0.10);

  
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  
  --tr-fast: 150ms ease;
  --tr-base: 250ms ease;
  --tr-slow: 400ms ease;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-base);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }


h1, h2, h3, h4 {
  font-family: 'Literata', serif;
  line-height: 1.2;
  color: var(--c-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-muted); }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}


.sec { padding: var(--sp-20) 0; }

.sec-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--sp-12);
}
.sec-header .sec-sub {
  font-size: 1.05rem;
  margin-top: var(--sp-4);
}

.sec-label {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: var(--sp-3);
}

.sec-title {
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-4);
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--acc);
  color: var(--c-900);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  transition: background var(--tr-base), transform var(--tr-fast), box-shadow var(--tr-base);
  box-shadow: 0 2px 8px rgba(232,160,32,0.3), 0 1px 3px rgba(232,160,32,0.2);
  min-height: 44px;
}
.btn-primary:hover {
  background: var(--acc-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.4), 0 2px 6px rgba(232,160,32,0.25);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: transparent;
  color: var(--c-200);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all var(--tr-base);
  min-height: 44px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: transparent;
  color: var(--c-600);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--c-300);
  transition: all var(--tr-base);
  min-height: 44px;
}
.btn-outline:hover {
  background: var(--c-50);
  border-color: var(--c-500);
  color: var(--c-700);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
}

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: var(--c-50);
  color: var(--c-600);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  transition: all var(--tr-base);
  min-height: 36px;
}
.btn-sm:hover {
  background: var(--acc);
  color: var(--c-900);
  border-color: var(--acc);
}


.crd {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  transition: box-shadow var(--tr-base), transform var(--tr-base);
}
.crd:hover {
  box-shadow: var(--sh-xl);
  transform: translateY(-3px);
}

.crd-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--c-50), var(--c-100));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 1.3rem;
  color: var(--c-500);
  border: 1px solid var(--c-200);
  transition: all var(--tr-base);
}
.crd:hover .crd-ico {
  background: linear-gradient(135deg, var(--acc-light), var(--acc));
  color: var(--c-900);
  border-color: var(--acc);
}

.crd-title {
  margin-bottom: var(--sp-3);
  color: var(--c-800);
}
.crd-txt { font-size: 0.95rem; line-height: 1.7; }


.crd:has(.crd-expand) { cursor: pointer; }
.crd:has(img) { padding: 0; overflow: hidden; }
.sec:has(.highlighted) { background: var(--c-50); }
.frm:has(:focus) { box-shadow: 0 0 0 3px rgba(232,160,32,0.15); border-radius: var(--r-lg); }
.frm-field:has(input:focus) label,
.frm-field:has(select:focus) label,
.frm-field:has(textarea:focus) label { color: var(--c-600); }


.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--tr-slow), box-shadow var(--tr-slow), backdrop-filter var(--tr-slow);
}
.hdr-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-6);
}
.hdr-logo { flex-shrink: 0; }
.hdr-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex: 1;
  justify-content: center;
}
.hdr-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--tr-base);
  position: relative;
  white-space: nowrap;
}
.hdr-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--acc);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--tr-base);
}
.hdr-link:hover, .hdr-link.active { color: #fff; }
.hdr-link:hover::after, .hdr-link.active::after { transform: scaleX(1); }

.hdr-cta { flex-shrink: 0; }


.hdr.hdr-solid,
.hdr.scrolled {
  background: rgba(13,22,51,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(13,22,51,0.3);
}


.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--tr-base);
}
.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  transform: translateX(-100%);
  transition: transform var(--tr-slow) cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.mob-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mob-menu-left {
  width: 55%;
  background: var(--c-900);
  padding: var(--sp-8) var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.mob-menu-right {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.mob-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.mob-brand {
  position: absolute;
  bottom: var(--sp-8);
  left: var(--sp-6);
  font-family: 'Literata', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}
.mob-close {
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-6);
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--tr-base);
}
.mob-close:hover { color: var(--acc); }
.mob-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-16);
  margin-bottom: var(--sp-8);
}
.mob-link {
  font-family: 'Literata', serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color var(--tr-base), transform var(--tr-base);
  display: block;
}
.mob-link:hover {
  color: var(--acc);
  transform: translateX(6px);
}
.mob-cta { margin-top: var(--sp-4); align-self: flex-start; }


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, var(--c-950) 0%, var(--c-800) 50%, var(--c-700) 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(232,160,32,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(61,90,158,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: var(--sp-20) var(--sp-6);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--acc-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: var(--sp-6);
}
.hero-h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: #fff;
  margin-bottom: var(--sp-6);
  line-height: 1.15;
}
.hero-accent {
  background: linear-gradient(135deg, var(--acc), var(--acc-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 580px;
  margin-bottom: var(--sp-10);
  line-height: 1.7;
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}


.pg-hero {
  background: linear-gradient(140deg, var(--c-950) 0%, var(--c-800) 100%);
  padding: calc(var(--sp-20) + 60px) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(232,160,32,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.pg-hero-content {
  position: relative;
  max-width: 700px;
}
.pg-hero-h1 {
  color: #fff;
  margin-bottom: var(--sp-4);
}
.pg-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
}


.sec-intro { background: var(--bg); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.intro-text .sec-title { margin-top: var(--sp-2); }
.intro-text p { margin-bottom: var(--sp-4); }
.intro-text .btn-outline { margin-top: var(--sp-4); }
.intro-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.intro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--tr-slow);
}
.intro-img:hover img { transform: scale(1.03); }
.intro-img-badge {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  background: rgba(13,22,51,0.9);
  backdrop-filter: blur(8px);
  color: var(--acc-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(232,160,32,0.2);
}


.sec-services {
  background: linear-gradient(180deg, var(--c-50) 0%, var(--bg) 100%);
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
.srv-crd { position: relative; }
.srv-crd .crd-expand {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow), opacity var(--tr-base);
  opacity: 0;
  margin-top: 0;
}
.srv-crd.expanded .crd-expand {
  max-height: 300px;
  opacity: 1;
  margin-top: var(--sp-4);
}
.srv-crd .crd-expand p { font-size: 0.9rem; margin-bottom: var(--sp-4); }
.crd-toggle {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-50);
  border: 1px solid var(--border);
  color: var(--c-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--tr-base);
}
.crd-toggle:hover { background: var(--acc); color: var(--c-900); border-color: var(--acc); }
.srv-crd.expanded .crd-toggle { transform: rotate(180deg); }


.sec-carousel {
  background: var(--c-900);
  padding: var(--sp-20) 0;
}
.sec-carousel .sec-label { color: var(--acc-light); }
.sec-carousel .sec-title { color: #fff; }
.sec-carousel .sec-sub { color: rgba(255,255,255,0.6); }
.slide-crd {
  background: var(--c-800);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}
.slide-crd:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.slide-crd img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity var(--tr-base);
}
.slide-crd:hover img { opacity: 1; }
.slide-body { padding: var(--sp-5); }
.slide-tag {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  color: var(--acc-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: var(--sp-3);
  border: 1px solid rgba(232,160,32,0.2);
}
.slide-body h4 { color: #fff; margin-bottom: var(--sp-2); font-size: 1rem; }
.slide-body p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; }


.splide__pagination__page.is-active { background: var(--acc); }
.splide__arrow { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); }
.splide__arrow svg { fill: #fff; }
.splide__arrow:hover { background: var(--acc); }


.sec-approach {
  background: var(--bg);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.approach-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.approach-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.approach-text p { margin-bottom: var(--sp-4); }
.approach-steps { margin-top: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-5); }
.step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--c-600), var(--c-500));
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(61,90,158,0.3);
}
.step-body strong { display: block; color: var(--c-800); margin-bottom: var(--sp-1); font-size: 0.95rem; }
.step-body p { font-size: 0.9rem; margin: 0; }


.sec-contact-form {
  background: linear-gradient(180deg, var(--c-50) 0%, var(--bg) 100%);
}
.form-wrap { max-width: 680px; margin: 0 auto; }


.frm-wizard {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}
.frm-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--sp-10);
}
.frm-step-ind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-100);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--tr-base);
  border: 2px solid var(--border);
}
.frm-step-ind.active .step-dot {
  background: var(--c-600);
  color: #fff;
  border-color: var(--c-600);
  box-shadow: 0 4px 12px rgba(61,90,158,0.3);
}
.frm-step-ind.done .step-dot {
  background: var(--acc);
  color: var(--c-900);
  border-color: var(--acc);
}
.step-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.frm-step-ind.active .step-lbl { color: var(--c-600); }
.frm-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 var(--sp-3);
  margin-bottom: var(--sp-5);
  min-width: 40px;
}

.frm-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.frm-panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.frm-panel h3 {
  font-size: 1.2rem;
  color: var(--c-800);
  margin-bottom: var(--sp-6);
}

.frm-field {
  margin-bottom: var(--sp-5);
}
.frm-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
  transition: color var(--tr-base);
}
.frm-field input,
.frm-field select,
.frm-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  color: var(--text-base);
  background: var(--bg);
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
  min-height: 44px;
}
.frm-field input:focus,
.frm-field select:focus,
.frm-field textarea:focus {
  outline: none;
  border-color: var(--c-500);
  box-shadow: 0 0 0 3px rgba(61,90,158,0.12);
}
.frm-field textarea { resize: vertical; min-height: 120px; }
.frm-field select { appearance: none; cursor: pointer; }
.frm-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.frm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--c-600);
  cursor: pointer;
}
.frm-check label {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.frm-check label a { color: var(--c-500); text-decoration: underline; }
.req { color: var(--acc-dark); }
.frm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp-6);
}


.sec-contact-cards { background: var(--bg); padding: var(--sp-12) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.contact-crd {
  text-align: center;
}
.contact-crd .crd-ico {
  margin: 0 auto var(--sp-4);
  font-size: 1.4rem;
}
.contact-crd .crd-title { margin-bottom: var(--sp-2); font-size: 1.1rem; }
.contact-crd .crd-txt { font-size: 0.88rem; margin-bottom: var(--sp-3); }
.contact-link {
  display: block;
  color: var(--c-600);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--tr-base);
  line-height: 1.5;
}
.contact-link:hover { color: var(--acc-dark); }


.sec-beliefs { background: var(--bg); }
.beliefs-intro {
  max-width: 720px;
  margin: 0 auto var(--sp-12);
  text-align: center;
}
.beliefs-intro p { font-size: 1.05rem; }
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
.belief-crd { position: relative; padding-top: var(--sp-10); }
.belief-num {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  font-family: 'Literata', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-100);
  line-height: 1;
  transition: color var(--tr-base);
}
.belief-crd:hover .belief-num { color: rgba(232,160,32,0.2); }
.belief-crd h3 { margin-bottom: var(--sp-4); font-size: 1.15rem; }
.belief-crd p { margin-bottom: var(--sp-3); font-size: 0.93rem; }


.sec-science {
  background: linear-gradient(180deg, var(--c-50) 0%, var(--bg) 100%);
}
.science-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.science-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.science-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.science-text p { margin-bottom: var(--sp-4); }
.science-text .btn-outline { margin-top: var(--sp-4); }


.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
.module-crd { position: relative; }
.module-phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: var(--sp-4);
}
.module-list {
  list-style: none;
  margin-top: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.module-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: var(--sp-5);
  position: relative;
}
.module-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--acc);
  border-radius: 50%;
}


.sec-forwhom { background: var(--c-50); }
.forwhom-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.forwhom-text p { margin-bottom: var(--sp-4); }
.forwhom-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin: var(--sp-6) 0;
}
.tag {
  background: var(--c-100);
  color: var(--c-700);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--c-200);
}
.forwhom-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
.forwhom-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}


.sec-signup { background: var(--bg); }
.signup-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
}
.signup-info p { margin-bottom: var(--sp-4); }
.signup-points {
  margin: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.signup-pt {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.signup-pt i { color: var(--c-500); font-size: 0.85rem; }
.signup-form-wrap { }


.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-form-info p { margin-top: var(--sp-4); }


.sec-faq { background: var(--c-50); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.faq-item h4 {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  font-size: 1rem;
}
.faq-item h4 i { color: var(--acc); font-size: 0.9rem; }
.faq-item p { font-size: 0.9rem; line-height: 1.65; }


.sec-map { background: var(--bg); }
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}


.legal-hero {
  background: linear-gradient(140deg, var(--c-950) 0%, var(--c-800) 100%);
  padding: calc(80px + var(--sp-16)) 0 var(--sp-16);
}
.legal-hero .pg-hero-h1 { color: #fff; margin-bottom: var(--sp-3); }
.legal-hero .pg-hero-sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.legal-sec { background: var(--bg); }
.legal-container {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.legal-crd { }
.legal-crd h2 {
  font-size: 1.15rem;
  color: var(--c-700);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--c-100);
}
.legal-crd p { font-size: 0.92rem; margin-bottom: var(--sp-3); line-height: 1.7; }
.legal-crd ul {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-3);
}
.legal-crd ul li { font-size: 0.92rem; color: var(--text-muted); margin-bottom: var(--sp-2); line-height: 1.6; }
.legal-crd a { color: var(--c-500); text-decoration: underline; }
.legal-crd:hover { transform: none; box-shadow: var(--sh-md); }

.imp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.imp-table th, .imp-table td {
  padding: 0.6rem var(--sp-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.imp-table th {
  font-weight: 600;
  color: var(--c-700);
  background: var(--c-50);
  width: 40%;
}
.imp-table td { color: var(--text-muted); }
.imp-table a { color: var(--c-500); }


.thanks-sec {
  flex: 1;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--sp-20)) 0 var(--sp-20);
  background: linear-gradient(180deg, var(--c-50) 0%, var(--bg) 100%);
}
.thanks-wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.thanks-h1 { margin: var(--sp-8) 0 var(--sp-4); }
.thanks-p { font-size: 1.05rem; margin-bottom: var(--sp-3); }
.thanks-p-small { font-size: 0.9rem; color: var(--text-light); margin-bottom: var(--sp-8); }
.thanks-actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }


.envelope-anim {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.env-body {
  position: relative;
  width: 100px;
  height: 72px;
}
.env-bottom {
  width: 100px;
  height: 72px;
  background: linear-gradient(135deg, var(--c-200), var(--c-300));
  border-radius: 0 0 var(--r-md) var(--r-md);
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: var(--sh-md);
}
.env-flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 36px solid var(--c-400);
  z-index: 2;
  transform-origin: top;
  animation: openFlap 1s ease 0.5s forwards;
}
@keyframes openFlap {
  0% { transform: rotateX(0deg); }
  100% { transform: rotateX(180deg); }
}
.env-letter {
  position: absolute;
  width: 72px;
  height: 54px;
  background: #fff;
  border-radius: var(--r-sm);
  left: 14px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-500);
  font-size: 1.4rem;
  box-shadow: var(--sh-sm);
  animation: slideUp 0.8s ease 1s forwards;
  transform: translateY(0);
  opacity: 0;
}
@keyframes slideUp {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-40px); opacity: 1; }
}


.ftr {
  background: var(--c-950);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}
.ftr-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding: var(--sp-16) 0 var(--sp-10);
}
.ftr-brand p { font-size: 0.88rem; margin-top: var(--sp-4); line-height: 1.6; color: rgba(255,255,255,0.5); }
.ftr-col h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-4);
}
.ftr-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-2);
  transition: color var(--tr-base);
}
.ftr-col a:hover { color: var(--acc-light); }
.ftr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}


.cookie-consent {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 320px;
  background: var(--c-900);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 8px 20px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.06);
  z-index: 10000;
  transform: translateY(calc(100% + var(--sp-6)));
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}
.cookie-consent.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-consent.expanded { }
.cc-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--acc-light);
  margin-bottom: var(--sp-4);
}
.cc-title {
  font-family: 'Literata', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.cc-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: var(--sp-5);
}
.cc-text a { color: var(--acc-light); text-decoration: underline; }
.cc-toggles {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cc-toggles.open { max-height: 300px; }
.cc-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cc-toggle-item:last-child { border-bottom: none; }
.cc-toggle-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.cc-toggle-label span { display: block; font-size: 0.74rem; color: rgba(255,255,255,0.35); font-weight: 400; }
.cc-switch {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}
.cc-switch input { opacity: 0; width: 0; height: 0; }
.cc-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--tr-base);
}
.cc-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--tr-base);
}
.cc-switch input:checked + .cc-slider { background: var(--acc); }
.cc-switch input:checked + .cc-slider::before { transform: translateX(16px); }
.cc-switch input:disabled + .cc-slider { opacity: 0.5; cursor: not-allowed; }
.cc-btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.cc-btn-accept {
  width: 100%;
  padding: 0.7rem;
  background: var(--acc);
  color: var(--c-900);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--r-md);
  transition: background var(--tr-base);
  min-height: 44px;
}
.cc-btn-accept:hover { background: var(--acc-dark); }
.cc-btn-customize {
  width: 100%;
  padding: 0.65rem;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--tr-base);
  min-height: 44px;
}
.cc-btn-customize:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
}
.cc-btn-save {
  display: none;
  width: 100%;
  padding: 0.65rem;
  background: var(--c-600);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--r-md);
  transition: background var(--tr-base);
  min-height: 44px;
}
.cc-btn-save:hover { background: var(--c-500); }
.cookie-consent.expanded .cc-btn-save { display: block; }
.cookie-consent.expanded .cc-btn-customize { display: none; }


@media (max-width: 1024px) {
  .hdr-nav { gap: var(--sp-4); }
  .intro-grid,
  .approach-grid,
  .science-wrap,
  .forwhom-wrap,
  .signup-wrap,
  .contact-form-wrap { grid-template-columns: 1fr; gap: var(--sp-10); }
  .intro-img img,
  .approach-img img,
  .science-img img,
  .forwhom-img img { height: 350px; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}

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

  .sec { padding: var(--sp-12) 0; }
  .sec-header { margin-bottom: var(--sp-8); }

  .hero-content { padding: var(--sp-12) var(--sp-6); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .srv-grid,
  .beliefs-grid,
  .module-grid,
  .faq-grid { grid-template-columns: 1fr; }

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

  .ftr-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .ftr-bottom { flex-direction: column; text-align: center; }

  .frm-wizard { padding: var(--sp-6); }

  .cookie-consent {
    width: calc(100vw - var(--sp-8));
    right: var(--sp-4);
    bottom: var(--sp-4);
  }

  .mob-menu-right { display: none; }
  .mob-menu-left { width: 100%; }

  .thanks-actions { flex-direction: column; }
  .thanks-actions a { width: 100%; text-align: center; justify-content: center; }

  .approach-text .btn-outline { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .frm-steps { gap: var(--sp-2); }
  .frm-step-line { min-width: 20px; margin: 0 var(--sp-1); margin-bottom: var(--sp-5); }
  .step-lbl { display: none; }
  .frm-nav { flex-wrap: wrap; gap: var(--sp-3); }
}