


:root {
  
  --color-bg: #f4f2ee;
  --color-bg-alt: #edeae4;
  --color-surface: #faf9f7;
  --color-dark: #1a1714;
  --color-dark-2: #2c2825;
  --color-dark-3: #3d3a36;
  --color-text: #2c2825;
  --color-text-muted: #6b6460;
  --color-text-light: #9c9590;

  --color-primary: #c8501a;
  --color-primary-dark: #a3400e;
  --color-primary-light: #e8693b;
  --color-secondary: #1a4a6b;
  --color-secondary-light: #2a6a9b;
  --color-accent: #e8a832;
  --color-accent-light: #f2c460;

  --gradient-primary: linear-gradient(135deg, #c8501a 0%, #e8693b 50%, #e8a832 100%);
  --gradient-secondary: linear-gradient(135deg, #1a1714 0%, #2c2825 40%, #1a4a6b 100%);
  --gradient-hero: linear-gradient(160deg, rgba(26,23,20,0.88) 0%, rgba(26,74,107,0.72) 60%, rgba(200,80,26,0.50) 100%);
  --gradient-band: linear-gradient(135deg, #1a4a6b 0%, #c8501a 50%, #e8a832 100%);
  --gradient-orb-warm: radial-gradient(circle, rgba(232,105,59,0.18) 0%, transparent 70%);
  --gradient-orb-cool: radial-gradient(circle, rgba(26,74,107,0.15) 0%, transparent 70%);

  
  --shadow-xs: 0 1px 3px rgba(26,23,20,0.08), 0 1px 2px rgba(26,23,20,0.05);
  --shadow-sm: 0 4px 12px rgba(26,23,20,0.10), 0 2px 4px rgba(26,23,20,0.06);
  --shadow-md: 0 8px 24px rgba(26,23,20,0.12), 0 4px 8px rgba(26,23,20,0.07);
  --shadow-lg: 0 16px 48px rgba(26,23,20,0.14), 0 6px 16px rgba(26,23,20,0.08);
  --shadow-xl: 0 24px 64px rgba(26,23,20,0.18), 0 8px 24px rgba(26,23,20,0.10);
  --shadow-colored: 0 12px 40px rgba(200,80,26,0.22), 0 4px 12px rgba(200,80,26,0.12);
  --shadow-dark: 0 20px 60px rgba(26,23,20,0.30), 0 8px 20px rgba(26,23,20,0.16);

  
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

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

  
  --nav-h: 72px;

  
  --tr-fast: 0.2s ease;
  --tr-base: 0.3s ease;
  --tr-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--tr-base); }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }


h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--color-text); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--sp-5);
}
.section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 56ch;
}


.global-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--tr-base);
  cursor: pointer;
  white-space: nowrap;
}
.global-cta--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-colored);
}
.global-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(200,80,26,0.35), 0 4px 12px rgba(200,80,26,0.18);
  color: #fff;
}
.global-cta--secondary {
  background: var(--color-surface);
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(26,23,20,0.10);
}
.global-cta--secondary:hover {
  background: var(--color-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.global-cta--ghost {
  background: transparent;
  color: rgba(255,255,255,0.90);
  border: 2px solid rgba(255,255,255,0.40);
}
.global-cta--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.70);
  color: #fff;
}
.global-cta--white {
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.global-cta--white:hover {
  background: var(--color-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-primary-dark);
}
.global-cta--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.global-cta--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}


.global-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--color-dark);
  height: var(--nav-h);
  transition: box-shadow var(--tr-base);
}
.global-header.scrolled {
  box-shadow: var(--shadow-dark);
}
.global-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 100%;
  position: relative;
}
.global-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.global-header.scrolled .global-nav::after {
  transform: translateX(-50%) scaleX(1);
}
.global-nav__logo img { filter: brightness(0) invert(1); }
.global-nav__links {
  display: flex;
  gap: var(--sp-1);
  margin-left: auto;
}
.global-nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--tr-base);
}
.global-nav__link:hover,
.global-nav__link.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.global-nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-colored);
  transition: all var(--tr-base);
  white-space: nowrap;
}
.global-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,80,26,0.40);
  color: #fff;
}
.global-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--tr-base);
}
.global-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--tr-base), opacity var(--tr-base);
}
.global-nav__hamburger:hover { background: rgba(255,255,255,0.08); }
.global-nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.global-nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.global-nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.55);
  z-index: 950;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}
.mobile-sheet-overlay.active { display: block; opacity: 1; }
.mobile-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 960;
  background: var(--color-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--sp-4) var(--sp-5) var(--sp-7);
  transform: translateY(100%);
  transition: transform var(--tr-slow);
  box-shadow: 0 -16px 64px rgba(26,23,20,0.22);
}
.mobile-sheet.open { transform: translateY(0); }
.mobile-sheet__handle {
  width: 40px;
  height: 4px;
  background: var(--color-text-light);
  border-radius: var(--radius-full);
  margin: 0 auto var(--sp-5);
  opacity: 0.4;
}
.mobile-sheet__nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.mobile-sheet__link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 14px var(--sp-4);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--tr-base);
}
.mobile-sheet__link i { width: 20px; color: var(--color-text-muted); font-size: 0.9rem; }
.mobile-sheet__link:hover { background: var(--color-bg-alt); color: var(--color-dark); }
.mobile-sheet__link--whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  margin-top: var(--sp-3);
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}
.mobile-sheet__link--whatsapp i { color: rgba(255,255,255,0.8); }
.mobile-sheet__link--whatsapp:hover { color: #fff; transform: translateY(-1px); }


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}




.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}
.home-hero__depth-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.home-hero__depth-orb--1 {
  width: 600px;
  height: 600px;
  background: var(--gradient-orb-warm);
  bottom: -100px;
  right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}
.home-hero__depth-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--gradient-orb-cool);
  top: 10%;
  left: -80px;
  animation: orbFloat2 10s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px,-30px) scale(1.05); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,20px) scale(0.96); } }

.home-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: var(--sp-8) var(--sp-5);
  animation: heroEntrance 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.home-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--sp-4);
  background: rgba(255,255,255,0.10);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.20);
}
.home-hero__heading {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 20px rgba(26,23,20,0.3);
}
.home-hero__accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-hero__desc {
  color: rgba(255,255,255,0.84);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 58ch;
  margin: 0 auto var(--sp-7);
  line-height: 1.7;
}
.home-hero__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}
.home-hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.50);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }


.home-intro {
  background: var(--color-surface);
  padding: var(--sp-9) var(--sp-6);
  position: relative;
  z-index: 2;
  margin-top: -2px;
}
.home-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.home-intro__card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,23,20,0.06);
  transition: all var(--tr-base);
  position: relative;
  overflow: hidden;
}
.home-intro__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr-base);
}
.home-intro__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.home-intro__card:hover::before { transform: scaleX(1); }
.home-intro__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-colored);
  font-size: 1.3rem;
  color: #fff;
}
.home-intro__card h3 {
  font-size: 1rem;
  margin-bottom: var(--sp-3);
  color: var(--color-dark);
}
.home-intro__card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


.home-services {
  padding: var(--sp-10) var(--sp-6);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.home-services__bg-shape {
  position: absolute;
  top: -200px;
  right: -300px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--gradient-orb-warm);
  pointer-events: none;
  z-index: 0;
}
.home-services__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home-services__header {
  max-width: 580px;
  margin-bottom: var(--sp-8);
}
.home-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.home-services__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--tr-base);
  border: 1px solid rgba(26,23,20,0.05);
}
.home-services__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.home-services__card-img {
  height: 200px;
  overflow: hidden;
}
.home-services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home-services__card:hover .home-services__card-img img { transform: scale(1.04); }
.home-services__card-body {
  padding: var(--sp-5) var(--sp-6);
  position: relative;
}
.home-services__card-icon {
  position: absolute;
  top: -22px;
  right: var(--sp-5);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: var(--shadow-colored);
}
.home-services__card-body h3 {
  margin-bottom: var(--sp-3);
  color: var(--color-dark);
}
.home-services__card-body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.home-how {
  background: var(--color-dark);
  padding: var(--sp-10) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.home-how__container { max-width: 1200px; margin: 0 auto; }
.home-how__header { margin-bottom: var(--sp-8); }
.home-how__header .section-eyebrow { color: var(--color-accent-light); }
.home-how__header .section-heading { color: #fff; }
.home-how__steps {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.home-how__step {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: var(--sp-7) var(--sp-6) var(--sp-6);
  position: relative;
  transition: all var(--tr-base);
  backdrop-filter: blur(8px);
}
.home-how__step:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.30);
}
.home-how__step-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  line-height: 1;
}
.home-how__step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-colored);
}
.home-how__step h3 { color: #fff; margin-bottom: var(--sp-3); }
.home-how__step p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.65; margin-bottom: var(--sp-3); }
.home-how__step-note {
  font-size: 0.8rem;
  color: var(--color-accent-light);
  font-weight: 500;
  margin-bottom: 0 !important;
}
.home-how__step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 1.2rem;
  padding-top: 60px;
  flex-shrink: 0;
}


.home-journey {
  padding: var(--sp-10) var(--sp-6);
  background: var(--color-bg-alt);
  position: relative;
}
.home-journey__container { max-width: 900px; margin: 0 auto; }
.home-journey__header { margin-bottom: var(--sp-9); text-align: center; }
.home-journey__header .section-sub { margin: 0 auto; }
.home-journey__map { position: relative; }
.home-journey__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-5);
  align-items: start;
}
.home-journey__item-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: var(--shadow-colored);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.home-journey__item-content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,23,20,0.06);
  margin-bottom: 0;
}
.home-journey__item-content h4 {
  color: var(--color-dark);
  margin-bottom: var(--sp-2);
}
.home-journey__item-content p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.home-journey__connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  margin: var(--sp-2) 0 var(--sp-2) 27px;
  opacity: 0.4;
}


.home-gradient-band {
  background: var(--gradient-band);
  padding: var(--sp-9) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.home-gradient-band__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.home-gradient-band__orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.home-gradient-band__orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  bottom: -100px; left: -50px;
}
.home-gradient-band__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  position: relative;
  z-index: 1;
}
.home-gradient-band__text { flex: 1; }
.home-gradient-band__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: var(--sp-4);
  line-height: 1.25;
}
.home-gradient-band__text p {
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  max-width: 52ch;
}
.home-gradient-band__action {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex-shrink: 0;
}


.home-area {
  padding: var(--sp-10) var(--sp-6);
  background: var(--color-surface);
}
.home-area__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.home-area__content .section-heading { margin-bottom: var(--sp-4); }
.home-area__content p { color: var(--color-text-muted); margin-bottom: var(--sp-4); font-size: 0.95rem; }
.home-area__content p:last-of-type { margin-bottom: var(--sp-6); }
.home-area__visual { position: relative; }
.home-area__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.home-area__img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.home-area__img-badge {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-dark);
}
.home-area__img-badge i { color: var(--color-primary); }


.home-faq {
  padding: var(--sp-10) var(--sp-6);
  background: var(--color-bg);
}
.home-faq__container { max-width: 1100px; margin: 0 auto; }
.home-faq__header { margin-bottom: var(--sp-8); max-width: 600px; }
.home-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.home-faq__item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(26,23,20,0.07);
  transition: all var(--tr-base);
}
.home-faq__item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.home-faq__q {
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--color-dark);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.95rem;
}
.home-faq__q i { color: var(--color-primary); flex-shrink: 0; }
.home-faq__a { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.65; }


.home-cta-bottom {
  padding: var(--sp-10) var(--sp-6);
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}
.home-cta-bottom__depth-shape {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--gradient-orb-cool);
  pointer-events: none;
}
.home-cta-bottom__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-9);
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-cta-bottom__img {
  border-radius: var(--radius-xl);
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.home-cta-bottom__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--color-dark);
  margin-bottom: var(--sp-4);
}
.home-cta-bottom__text p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--sp-6);
}
.home-cta-bottom__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}


.reviews-hero {
  padding: calc(var(--nav-h) + var(--sp-9)) var(--sp-6) var(--sp-9);
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  text-align: center;
}
.reviews-hero__depth-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.reviews-hero__depth-orb--1 {
  width: 500px; height: 500px;
  background: var(--gradient-orb-warm);
  top: -150px; right: -100px;
}
.reviews-hero__depth-orb--2 {
  width: 350px; height: 350px;
  background: var(--gradient-orb-cool);
  bottom: -100px; left: -50px;
}
.reviews-hero__content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.reviews-hero .section-eyebrow { color: var(--color-accent-light); }
.reviews-hero__heading {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: var(--sp-5);
}
.reviews-hero__content > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
}

.reviews-info { padding: var(--sp-8) var(--sp-6); background: var(--color-surface); }
.reviews-info__container { max-width: 900px; margin: 0 auto; }
.reviews-info__card {
  display: flex;
  gap: var(--sp-5);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  align-items: flex-start;
}
.reviews-info__card i { font-size: 1.6rem; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.reviews-info__card h3 { margin-bottom: var(--sp-2); color: var(--color-dark); }
.reviews-info__card p { font-size: 0.92rem; color: var(--color-text-muted); margin-bottom: var(--sp-3); }
.reviews-info__card p:last-child { margin-bottom: 0; }

.reviews-scenarios { padding: var(--sp-10) var(--sp-6); background: var(--color-bg); }
.reviews-scenarios__container { max-width: 1200px; margin: 0 auto; }
.reviews-scenarios__header { max-width: 600px; margin-bottom: var(--sp-8); }
.reviews-scenarios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.reviews-scenarios__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--tr-base);
  position: relative;
}
.reviews-scenarios__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.reviews-scenarios__card img { width: 100%; height: 180px; object-fit: cover; }
.reviews-scenarios__card-num {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-dark);
}
.reviews-scenarios__card h3 {
  padding: var(--sp-5) var(--sp-5) var(--sp-2);
  color: var(--color-dark);
}
.reviews-scenarios__card p {
  padding: 0 var(--sp-5);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.reviews-scenarios__card-note {
  display: block;
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 500;
}

.reviews-process {
  padding: var(--sp-10) var(--sp-6);
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.reviews-process__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,80,26,0.10) 0%, transparent 50%, rgba(26,74,107,0.12) 100%);
}
.reviews-process__container { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.reviews-process__header { margin-bottom: var(--sp-6); }
.reviews-process__header .section-eyebrow { color: var(--color-accent-light); }
.reviews-process__header .section-heading { color: #fff; }
.reviews-process__content p {
  color: rgba(255,255,255,0.70);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.reviews-process__content p:last-child { margin-bottom: 0; }

.reviews-cta { padding: var(--sp-9) var(--sp-6); background: var(--color-bg-alt); text-align: center; }
.reviews-cta__container { max-width: 600px; margin: 0 auto; }
.reviews-cta__container h2 { margin-bottom: var(--sp-3); color: var(--color-dark); }
.reviews-cta__container p { color: var(--color-text-muted); margin-bottom: var(--sp-6); }
.reviews-cta__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }


.onetime-hero {
  padding: calc(var(--nav-h) + var(--sp-9)) var(--sp-6) var(--sp-9);
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  text-align: center;
}
.onetime-hero__depth-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.onetime-hero__depth-orb--1 {
  width: 550px; height: 550px;
  background: var(--gradient-orb-warm);
  top: -150px; left: -100px;
}
.onetime-hero__depth-orb--2 {
  width: 400px; height: 400px;
  background: var(--gradient-orb-cool);
  bottom: -100px; right: -50px;
}
.onetime-hero__content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.onetime-hero__heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--color-dark);
  margin-bottom: var(--sp-5);
}
.onetime-hero__accent { color: var(--color-primary); }
.onetime-hero__content > p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin: 0 auto;
}

.onetime-what {
  padding: var(--sp-10) var(--sp-6);
  background: var(--color-bg);
}
.onetime-what__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.onetime-what__text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.onetime-what__text p:last-child { margin-bottom: 0; }
.onetime-what__visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.onetime-steps {
  padding: var(--sp-10) var(--sp-6);
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.onetime-steps__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,80,26,0.12) 0%, transparent 40%, rgba(26,74,107,0.15) 100%);
}
.onetime-steps__container { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.onetime-steps__header { margin-bottom: var(--sp-8); }
.onetime-steps__header .section-eyebrow { color: var(--color-accent-light); }
.onetime-steps__header .section-heading { color: #fff; }
.onetime-steps__list { display: flex; flex-direction: column; gap: var(--sp-5); }
.onetime-steps__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-5);
  align-items: start;
}
.onetime-steps__step-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: var(--shadow-colored);
  flex-shrink: 0;
}
.onetime-steps__step-body h3 { color: #fff; margin-bottom: var(--sp-2); }
.onetime-steps__step-body p { color: rgba(255,255,255,0.68); font-size: 0.92rem; line-height: 1.7; }

.onetime-items { padding: var(--sp-10) var(--sp-6); background: var(--color-surface); }
.onetime-items__container { max-width: 1000px; margin: 0 auto; }
.onetime-items__header { margin-bottom: var(--sp-7); }
.onetime-items__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.onetime-items__item {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(26,23,20,0.07);
  transition: all var(--tr-base);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
}
.onetime-items__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.onetime-items__item i { font-size: 1.6rem; color: var(--color-primary); }
.onetime-items__item span { font-size: 0.85rem; font-weight: 500; color: var(--color-text); }
.onetime-items__note {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid rgba(200,80,26,0.15);
}
.onetime-items__note i { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.onetime-items__note p { font-size: 0.9rem; color: var(--color-text-muted); }

.onetime-pricing { padding: var(--sp-9) var(--sp-6) var(--sp-10); background: var(--color-bg-alt); }
.onetime-pricing__container { max-width: 1000px; margin: 0 auto; }
.onetime-pricing__header { margin-bottom: var(--sp-7); }
.onetime-pricing__factors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.onetime-pricing__factor {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--tr-base);
}
.onetime-pricing__factor:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.onetime-pricing__factor-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-colored);
}
.onetime-pricing__factor h3 { margin-bottom: var(--sp-2); color: var(--color-dark); font-size: 1rem; }
.onetime-pricing__factor p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; }

.onetime-cta { padding: var(--sp-9) var(--sp-6); background: var(--color-dark); text-align: center; }
.onetime-cta__container { max-width: 600px; margin: 0 auto; }
.onetime-cta__container h2 { color: #fff; margin-bottom: var(--sp-3); }
.onetime-cta__container p { color: rgba(255,255,255,0.68); margin-bottom: var(--sp-6); }
.onetime-cta__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }


.biz-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.biz-hero__bg {
  position: absolute;
  inset: 0;
}
.biz-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.biz-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,23,20,0.90) 0%, rgba(26,74,107,0.75) 60%, rgba(200,80,26,0.45) 100%);
}
.biz-hero__depth-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.biz-hero__depth-orb--1 {
  width: 400px; height: 400px;
  background: var(--gradient-orb-warm);
  top: -100px; right: -50px;
  z-index: 1;
}
.biz-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--sp-8)) var(--sp-6) var(--sp-9);
}
.biz-hero .section-eyebrow { color: var(--color-accent-light); }
.biz-hero__heading {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: var(--sp-5);
  max-width: 700px;
}
.biz-hero__accent { color: var(--color-accent); }
.biz-hero__content > p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: var(--sp-7);
  line-height: 1.7;
}

.biz-intro { padding: var(--sp-9) var(--sp-6); background: var(--color-surface); }
.biz-intro__container { max-width: 900px; margin: 0 auto; }
.biz-intro__content .section-heading { margin-bottom: var(--sp-4); }
.biz-intro__content p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: var(--sp-4); }

.biz-services { padding: var(--sp-10) var(--sp-6); background: var(--color-bg); }
.biz-services__container { max-width: 1200px; margin: 0 auto; }
.biz-services__header { margin-bottom: var(--sp-7); max-width: 600px; }
.biz-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.biz-services__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,23,20,0.06);
  transition: all var(--tr-base);
}
.biz-services__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.biz-services__card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-colored);
}
.biz-services__card h3 { margin-bottom: var(--sp-3); color: var(--color-dark); }
.biz-services__card p { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; }

.biz-gradient {
  background: var(--gradient-secondary);
  padding: var(--sp-9) var(--sp-6);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.biz-gradient__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.biz-gradient__orb--1 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(200,80,26,0.18) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.biz-gradient__orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(26,74,107,0.20) 0%, transparent 70%);
  bottom: -100px; left: -50px;
}
.biz-gradient__content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.biz-gradient__content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: var(--sp-4);
}
.biz-gradient__content p {
  color: rgba(255,255,255,0.70);
  font-size: 1rem;
  margin-bottom: var(--sp-7);
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.biz-faq { padding: var(--sp-10) var(--sp-6); background: var(--color-bg-alt); }
.biz-faq__container { max-width: 900px; margin: 0 auto; }
.biz-faq__header { margin-bottom: var(--sp-7); }
.biz-faq__list { display: flex; flex-direction: column; gap: var(--sp-4); }
.biz-faq__item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(26,23,20,0.07);
  transition: all var(--tr-base);
}
.biz-faq__item:hover { box-shadow: var(--shadow-md); }
.biz-faq__item h3 {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--color-dark);
  margin-bottom: var(--sp-3);
  font-size: 0.98rem;
}
.biz-faq__item h3 i { color: var(--color-primary); flex-shrink: 0; }
.biz-faq__item p { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.65; }

.biz-cta { padding: var(--sp-9) var(--sp-6); background: var(--color-dark); text-align: center; }
.biz-cta__container { max-width: 600px; margin: 0 auto; }
.biz-cta__container h2 { color: #fff; margin-bottom: var(--sp-3); }
.biz-cta__container p { color: rgba(255,255,255,0.68); margin-bottom: var(--sp-6); }
.biz-cta__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }


.contact-hero {
  padding: calc(var(--nav-h) + var(--sp-9)) var(--sp-6) var(--sp-8);
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-hero__depth-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-hero__depth-orb--1 {
  width: 500px; height: 500px;
  background: var(--gradient-orb-warm);
  top: -150px; right: -80px;
}
.contact-hero__content { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.contact-hero .section-eyebrow { color: var(--color-accent-light); }
.contact-hero__heading { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: var(--sp-4); }
.contact-hero__content > p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }

.contact-channels {
  padding: var(--sp-8) var(--sp-6);
  background: var(--color-surface);
}
.contact-channels__container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.contact-channels__card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,23,20,0.07);
  transition: all var(--tr-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.contact-channels__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-channels__icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-colored);
}
.contact-channels__card h3 { color: var(--color-dark); margin: 0; }
.contact-channels__card p { font-size: 0.88rem; color: var(--color-text-muted); }

.contact-form-section {
  padding: var(--sp-9) var(--sp-6) var(--sp-10);
  background: var(--color-bg);
}
.contact-form-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}
.contact-form-section__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 560px;
}
.contact-form-section__map iframe { width: 100%; height: 100%; border: none; }
.contact-form-section__form-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
  box-shadow: var(--shadow-md);
}
.contact-form-section__form-wrap h2 { color: var(--color-dark); margin-bottom: var(--sp-2); }
.contact-form-section__form-wrap > p { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: var(--sp-6); }
.contact-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-form__group { display: flex; flex-direction: column; gap: var(--sp-2); }
.contact-form__group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
}
.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(26,23,20,0.14);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--tr-base), box-shadow var(--tr-base);
  outline: none;
}
.contact-form__group input:focus,
.contact-form__group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(200,80,26,0.12);
}
.contact-form__group textarea { resize: vertical; min-height: 120px; }
.contact-form__privacy {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.contact-form__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.contact-form__privacy label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.contact-form__privacy label a { color: var(--color-primary); text-decoration: underline; }
.contact-form__submit { width: 100%; justify-content: center; margin-top: var(--sp-2); }

.contact-news { padding: var(--sp-9) var(--sp-6) var(--sp-10); background: var(--color-surface); }
.contact-news__container { max-width: 1100px; margin: 0 auto; }
.contact-news__header { margin-bottom: var(--sp-7); }
.contact-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.contact-news__item {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(26,23,20,0.07);
  transition: all var(--tr-base);
}
.contact-news__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-news__item-date {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.contact-news__item h3 { color: var(--color-dark); margin-bottom: var(--sp-3); font-size: 1rem; }
.contact-news__item p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.65; }


.thanks-main {
  min-height: calc(100vh - var(--nav-h) - 120px);
  display: flex;
  align-items: center;
}
.thanks-section {
  width: 100%;
  padding: var(--sp-9) var(--sp-6);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.thanks-section__depth-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.thanks-section__depth-orb--1 {
  width: 500px; height: 500px;
  background: var(--gradient-orb-warm);
  top: -150px; right: -100px;
}
.thanks-section__depth-orb--2 {
  width: 350px; height: 350px;
  background: var(--gradient-orb-cool);
  bottom: -100px; left: -50px;
}
.thanks-section__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}


.thanks-envelope {
  width: 120px;
  height: 90px;
  margin: 0 auto var(--sp-7);
  position: relative;
}
.thanks-envelope__body {
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #e8ede8 0%, #d0d8d0 100%);
  border-radius: var(--radius-sm);
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: visible;
}
.thanks-envelope__bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(135deg, #c8c8c0 0%, #b8b8b0 100%);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.thanks-envelope__left {
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 40px 60px;
  border-color: transparent transparent transparent #d0d5d0;
}
.thanks-envelope__right {
  position: absolute;
  top: 0; right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 60px 40px 0;
  border-color: transparent #c8cdc8 transparent transparent;
}
.thanks-envelope__flap {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(135deg, #e0e8e0 0%, #c8d0c8 100%);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transform-origin: top;
  animation: flapOpen 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s both;
  z-index: 3;
}
@keyframes flapOpen {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(-160deg); }
}
.thanks-envelope__letter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  width: 80px;
  height: 60px;
  background: #fff;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-primary);
  animation: letterRise 0.7s cubic-bezier(0.16,1,0.3,1) 0.9s both;
  z-index: 2;
}
@keyframes letterRise {
  from { transform: translateX(-50%) translateY(0); opacity: 0; }
  to { transform: translateX(-50%) translateY(-50px); opacity: 1; }
}

.thanks-text { animation: fadeInUp 0.6s ease 1.4s both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.thanks-text__heading { color: var(--color-dark); margin-bottom: var(--sp-4); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.thanks-text__sub { color: var(--color-text-muted); font-size: 1.05rem; margin-bottom: var(--sp-3); }
.thanks-text__note { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: var(--sp-6); }
.thanks-text__note a { color: var(--color-primary); font-weight: 500; }
.thanks-text__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }


.legal-main { padding-bottom: var(--sp-10); }
.legal-hero {
  background: var(--color-dark);
  padding: calc(var(--nav-h) + var(--sp-8)) var(--sp-6) var(--sp-8);
  text-align: center;
}
.legal-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: var(--sp-3); }
.legal-hero__meta { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.legal-hero--terms { background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-secondary) 100%); }
.legal-hero--cookies { background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark) 100%); }

.legal-content {
  max-width: 860px;
  margin: var(--sp-9) auto;
  padding: 0 var(--sp-6);
}
.legal-content--terms .legal-clause { margin-bottom: var(--sp-7); }
.legal-content--cookies .cookies-tech-intro,
.legal-content--cookies .cookies-categories,
.legal-content--cookies .cookies-control,
.legal-content--cookies .cookies-maps,
.legal-content--cookies .cookies-contact { margin-bottom: var(--sp-7); }
.legal-content__intro { margin-bottom: var(--sp-6); }
.legal-content__intro p,
.legal-content__body p,
.legal-content__preamble p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: var(--sp-4); }
.legal-content__body h2,
.legal-clause h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid rgba(200,80,26,0.15);
}
.legal-clause h3,
.cookies-category-block h3 {
  font-size: 1rem;
  color: var(--color-dark-2);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.cookies-tech-intro h2,
.cookies-categories > h2,
.cookies-control h2,
.cookies-maps h2,
.cookies-contact h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid rgba(26,74,107,0.15);
}
.legal-term { color: var(--color-primary); font-weight: 600; cursor: help; }
.legal-definition {
  background: rgba(200,80,26,0.06);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-4) 0 var(--sp-5);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.legal-definition strong { color: var(--color-dark); display: block; margin-bottom: var(--sp-2); }
.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin: var(--sp-4) 0;
}
.legal-list li {
  padding-left: var(--sp-5);
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: var(--sp-2);
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}
.cookies-category-block {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-4);
}
.cookies-table-wrap { overflow-x: auto; margin-top: var(--sp-4); }
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.cookies-table th {
  background: var(--color-dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.cookies-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(26,23,20,0.08);
  color: var(--color-text-muted);
}
.cookies-table td code {
  background: rgba(200,80,26,0.10);
  color: var(--color-primary);
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  font-size: 0.85em;
}
.cookies-category-block p { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.75; margin-top: var(--sp-3); }
.cookies-control p,
.cookies-maps p,
.cookies-contact p { font-size: 0.92rem; color: var(--color-text-muted); line-height: 1.75; margin-bottom: var(--sp-3); }


.global-footer {
  background: var(--color-dark-2);
  color: rgba(255,255,255,0.72);
  margin-top: auto;
}
.global-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-7) var(--sp-6);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
}
.global-footer__brand img { filter: brightness(0) invert(1); margin-bottom: var(--sp-3); }
.global-footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,0.50); line-height: 1.65; max-width: 30ch; }
.global-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.global-footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--tr-base);
}
.global-footer__links a:hover { color: #fff; }
.global-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.global-footer__contact a,
.global-footer__contact span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--tr-base);
}
.global-footer__contact a:hover { color: #fff; }
.global-footer__contact i { color: var(--color-primary); width: 16px; }
.global-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.global-footer__bar span { font-size: 0.82rem; color: rgba(255,255,255,0.40); }
.global-footer__legal { display: flex; gap: var(--sp-4); }
.global-footer__legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.40);
  transition: color var(--tr-base);
}
.global-footer__legal a:hover { color: rgba(255,255,255,0.80); }


.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,23,20,0.65);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cookie-backdrop.visible { opacity: 1; }
.cookie-modal {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  padding: var(--sp-7);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.cookie-backdrop.visible .cookie-modal { transform: translateY(0) scale(1); }
.cookie-modal__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-colored);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-bottom: var(--sp-3);
}
.cookie-modal > p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}
.cookie-modal__categories { display: flex; flex-direction: column; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-4);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,23,20,0.08);
}
.cookie-category__info h4 { font-size: 0.9rem; color: var(--color-dark); margin-bottom: 2px; }
.cookie-category__info p { font-size: 0.78rem; color: var(--color-text-muted); }
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--color-text-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--tr-base);
}
.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--tr-base);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle__slider { background: var(--color-primary); }
.cookie-toggle input:checked + .cookie-toggle__slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle__slider { opacity: 0.5; cursor: not-allowed; background: var(--color-secondary); }
.cookie-modal__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.cookie-modal__actions .global-cta { flex: 1; justify-content: center; }


@media (max-width: 1024px) {
  .home-intro__container { grid-template-columns: repeat(2, 1fr); }
  .home-services__grid { grid-template-columns: 1fr; }
  .home-how__steps { flex-direction: column; }
  .home-how__step-arrow { transform: rotate(90deg); padding: 0; }
  .home-gradient-band__content { flex-direction: column; text-align: center; }
  .home-gradient-band__text p { margin: 0 auto; }
  .home-area__container { grid-template-columns: 1fr; }
  .home-cta-bottom__container { grid-template-columns: 1fr; }
  .home-cta-bottom__img { height: 260px; }
  .contact-form-section__container { grid-template-columns: 1fr; }
  .contact-form-section__map { height: 300px; }
  .contact-channels__container { grid-template-columns: 1fr; }
  .reviews-scenarios__grid { grid-template-columns: 1fr; }
  .biz-services__grid { grid-template-columns: 1fr; }
  .onetime-what__container { grid-template-columns: 1fr; }
  .onetime-items__grid { grid-template-columns: repeat(2, 1fr); }
  .onetime-pricing__factors { grid-template-columns: 1fr; }
  .global-footer__main { grid-template-columns: 1fr 1fr; }
  .home-faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .global-nav__links,
  .global-nav__cta { display: none; }
  .global-nav__hamburger { display: flex; }
  .home-intro__container { grid-template-columns: 1fr; }
  .home-how__steps { flex-direction: column; }
  .home-how__step-arrow { display: none; }
  .home-journey__item { grid-template-columns: 44px 1fr; gap: var(--sp-3); }
  .home-journey__item-dot { width: 44px; height: 44px; font-size: 0.9rem; }
  .home-journey__connector { margin-left: 21px; }
  .contact-news__grid { grid-template-columns: 1fr; }
  .global-footer__main { grid-template-columns: 1fr; gap: var(--sp-5); }
  .global-footer__bar { flex-direction: column; text-align: center; }
  .cookie-modal__actions { flex-direction: column; }
  .cookie-modal__actions .global-cta { flex: none; }
  .onetime-items__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-scenarios__grid { grid-template-columns: 1fr; }
  .home-hero__actions { flex-direction: column; align-items: center; }
  .home-cta-bottom__actions { flex-direction: column; }
  .home-area__img-wrap img { height: 260px; }
}

@media (max-width: 480px) {
  .home-hero__heading { font-size: 2.2rem; }
  .home-intro { padding: var(--sp-7) var(--sp-4); }
  .home-services, .home-how, .home-journey, .home-faq { padding: var(--sp-8) var(--sp-4); }
  .home-gradient-band { padding: var(--sp-7) var(--sp-4); }
  .home-area, .home-cta-bottom { padding: var(--sp-7) var(--sp-4); }
  .onetime-items__grid { grid-template-columns: repeat(2, 1fr); }
  .global-nav { padding: 0 var(--sp-4); }
  .legal-content { padding: 0 var(--sp-4); }
  .contact-form-section { padding: var(--sp-7) var(--sp-4) var(--sp-8); }
  .contact-form-section__form-wrap { padding: var(--sp-5); }
  .cookie-modal { padding: var(--sp-5); }
}