@charset "UTF-8";
:root {
  --primary: #70402C;
  --primary-rgb: 112, 64, 44;
  --secondary: #2F211A;
  --secondary-rgb: 47, 33, 26;
  --tertiary: #BC5C34;
  --tertiary-rgb: 188, 92, 52;
  --black: #2B211D;
  --black-rgb: 43, 33, 29;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --text: #2B211D;
  --text-rgb: 43, 33, 29;
  --font: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Sora', var(--font);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%);
  --gradient-animated: linear-gradient(270deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --green: #6F7D4F;
  --green-light: #EFF3E7;
  --green-dark: #4F5C35;
  --bg-alt: #F8F3EF;
  --border: #E8DAD2;
  --text-muted: #5E514B;
  --text-light: #8B6B5C;
  --text-label: #9B877D;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.22);
  --shadow-card: 0 24px 44px -28px rgba(47, 33, 26, 0.32);
  --shadow-hero: 0 40px 80px -36px rgba(47, 33, 26, 0.34);
  --page-hero-min-height: 220px;
  --page-hero-padding: 5rem 0 4rem;
  --page-hero-padding-sm: 3.5rem 0 3rem;
}

[class*=fi-] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fi {
  width: 1em;
  height: 1em;
  line-height: 1;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-centered {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes growBar {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes dashIn {
  from {
    stroke-dashoffset: var(--len);
  }
  to {
    stroke-dashoffset: var(--off);
  }
}
@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
body {
  margin: 0;
  font-family: var(--font);
  overflow-x: hidden;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.content-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.features-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.testimonials-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

@media (max-width: 992px) and (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.content {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.content.min {
  max-width: 1240px;
}
@media (max-width: 768px) {
  .content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 480px) {
  .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}
.button i {
  transition: var(--transition);
  font-size: 1.25rem;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.button:hover::before {
  transform: translateX(0);
}
.button:hover i {
  transform: translateX(4px);
}
.button:active {
  transform: translateY(0);
}
.button.primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.button.primary:hover {
  box-shadow: var(--shadow-lg);
}
.button.secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.button.secondary:hover {
  box-shadow: var(--shadow-lg);
}
.button.tertiary {
  background: var(--tertiary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.button.tertiary:hover {
  box-shadow: var(--shadow-lg);
}
.button.white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.button.white:hover {
  box-shadow: var(--shadow-lg);
}
.button.outline {
  background: transparent;
  border: 2px solid;
}
.button.outline.primary {
  border-color: var(--primary);
  color: var(--primary);
}
.button.outline.primary:hover {
  background: var(--primary);
  color: var(--white);
}
.button.outline.white {
  border-color: var(--white);
  color: var(--white);
}
.button.outline.white:hover {
  background: var(--white);
  color: var(--primary);
}
.button.small {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}
.button.large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
}
@media (max-width: 768px) {
  .button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
  .button:hover {
    transform: none;
  }
  .button:active {
    transform: scale(0.98);
  }
  .button.large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
.button.icon-only {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
}

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

@keyframes imageSkeletonPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes imageSkeletonShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.lazy-image-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: imageSkeletonShimmer 1.5s infinite;
}
.lazy-image-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(var(--primary-rgb), 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin-centered 1s linear infinite;
  opacity: 0.6;
  z-index: 1;
}
.lazy-image-wrapper.loaded {
  background: transparent;
  animation: none;
}
.lazy-image-wrapper.loaded::before {
  display: none;
}
.lazy-image-wrapper.loaded img {
  opacity: 1;
  transform: scale(1);
}
.lazy-image-wrapper.error {
  background: #f8f9fa;
  animation: none;
}
.lazy-image-wrapper.error::before {
  content: "🖼️";
  font-family: inherit;
  width: auto;
  height: auto;
  border: none;
  font-size: 2rem;
  color: #ccc;
  animation: none;
  opacity: 1;
}
.lazy-image-wrapper img {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}

img.lazy-load {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img.lazy-load.loaded {
  opacity: 1;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: imageSkeletonShimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .section-header {
    margin-bottom: 1.5rem;
  }
}
.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.625rem;
    margin-bottom: 0.5rem;
  }
}
.section-header p {
  font-size: 1.25rem;
  color: var(--text);
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 768px) {
  .section-header p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .section-header p {
    font-size: 0.9375rem;
  }
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: var(--page-hero-min-height);
  padding: var(--page-hero-padding);
  background: var(--gradient-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%), radial-gradient(ellipse 50% 60% at 10% 80%, rgba(var(--white-rgb), 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(var(--white-rgb), 0.12);
  z-index: 1;
}
.page-hero .content {
  position: relative;
  z-index: 2;
}
.page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.page-hero__breadcrumb a {
  color: rgba(var(--white-rgb), 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-hero__breadcrumb a:hover {
  color: var(--white);
}
.page-hero__breadcrumb-separator {
  color: rgba(var(--white-rgb), 0.35);
  font-size: 0.75rem;
  line-height: 1;
  user-select: none;
}
.page-hero__breadcrumb-current {
  color: rgba(var(--white-rgb), 0.9);
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(var(--white-rgb), 0.12);
  border: 1px solid rgba(var(--white-rgb), 0.18);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(4px);
}
.page-hero__eyebrow i {
  color: var(--white);
}
.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 0.75rem 0;
  max-width: 640px;
}
.page-hero__subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(var(--white-rgb), 0.8);
  margin: 0;
  max-width: 560px;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
.page-hero__actions .blog-search {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 480px;
}
.page-hero__actions .blog-search input[type=search],
.page-hero__actions .blog-search input[type=text] {
  flex: 1;
  padding: 0.75rem 1.125rem;
  border: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.9375rem;
  outline: none;
  color: var(--black);
  background: rgba(var(--white-rgb), 0.95);
}
.page-hero__actions .blog-search input[type=search]::placeholder,
.page-hero__actions .blog-search input[type=text]::placeholder {
  color: var(--tertiary);
}
.page-hero__actions .blog-search button {
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.page-hero__actions .blog-search button:hover {
  filter: brightness(1.1);
}
@media (max-width: 768px) {
  .page-hero {
    padding: var(--page-hero-padding-sm);
    min-height: auto;
  }
  .page-hero__title {
    font-size: clamp(1.375rem, 5vw, 1.875rem);
  }
  .page-hero__subtitle {
    font-size: 0.9375rem;
  }
  .page-hero__eyebrow {
    font-size: 0.6875rem;
  }
}
@media (max-width: 480px) {
  .page-hero__breadcrumb {
    font-size: 0.75rem;
  }
}

.page-hero--dark {
  background: var(--secondary);
}
.page-hero--dark::before {
  background: radial-gradient(ellipse 60% 70% at 90% 30%, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%), radial-gradient(ellipse 40% 50% at 0% 80%, rgba(var(--primary-rgb), 0.05) 0%, transparent 60%);
}

.page-hero--light {
  background: #f4f6f8;
}
.page-hero--light::before {
  background: radial-gradient(ellipse 80% 100% at 100% 50%, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%);
}
.page-hero--light::after {
  background: rgba(var(--black-rgb), 0.06);
}
.page-hero--light .page-hero__breadcrumb a {
  color: rgba(var(--text-rgb), 0.6);
}
.page-hero--light .page-hero__breadcrumb a:hover {
  color: var(--primary);
}
.page-hero--light .page-hero__breadcrumb-separator {
  color: rgba(var(--text-rgb), 0.3);
}
.page-hero--light .page-hero__breadcrumb-current {
  color: var(--text);
}
.page-hero--light .page-hero__eyebrow {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  border-color: rgba(var(--primary-rgb), 0.2);
}
.page-hero--light .page-hero__title {
  color: var(--secondary);
}
.page-hero--light .page-hero__subtitle {
  color: var(--text);
  opacity: 0.8;
}

.page-hero--minimal {
  background: transparent;
  min-height: auto;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(var(--black-rgb), 0.07);
}
.page-hero--minimal::before, .page-hero--minimal::after {
  display: none;
}
.page-hero--minimal .page-hero__breadcrumb a {
  color: var(--tertiary);
}
.page-hero--minimal .page-hero__breadcrumb a:hover {
  color: var(--primary);
}
.page-hero--minimal .page-hero__breadcrumb-separator {
  color: rgba(var(--text-rgb), 0.25);
}
.page-hero--minimal .page-hero__breadcrumb-current {
  color: var(--text);
}
.page-hero--minimal .page-hero__eyebrow {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  border-color: rgba(var(--primary-rgb), 0.2);
}
.page-hero--minimal .page-hero__title {
  color: var(--secondary);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}
.page-hero--minimal .page-hero__subtitle {
  color: var(--text);
  opacity: 0.75;
}

.page-hero--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero--image::before {
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.88) 0%, rgba(var(--secondary-rgb), 0.65) 100%);
}

.section {
  padding: 72px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 52px 0;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 36px 0;
  }
}
.section--alt {
  background: var(--bg-alt, #f5f6f8);
}
.section--dark {
  background: var(--secondary);
  color: var(--white);
}
.section--dark .section__badge {
  color: var(--primary);
}
.section--dark .section__title {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: none;
}
.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.65);
}
.section--primary {
  background: var(--gradient-primary);
  color: var(--white);
}
.section--primary .section__badge {
  color: rgba(255, 255, 255, 0.75);
}
.section--primary .section__title {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: none;
}
.section--primary .section__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.section--padding-sm {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .section--padding-sm {
    padding: 28px 0;
  }
}
.section--padding-lg {
  padding: 104px 0;
}
@media (max-width: 768px) {
  .section--padding-lg {
    padding: 72px 0;
  }
}
@media (max-width: 480px) {
  .section--padding-lg {
    padding: 52px 0;
  }
}
.section--padding-none {
  padding: 0;
}
.section--centered .section__header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section--centered .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  margin-bottom: 2.5rem;
  max-width: 680px;
}
@media (max-width: 768px) {
  .section__header {
    margin-bottom: 1.75rem;
  }
}

.section__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--tertiary);
  line-height: 1.65;
  margin: 0;
  max-width: 600px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.site-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}
@media (max-width: 768px) {
  .site-header .header-content {
    height: 64px;
  }
}

.logo a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: var(--transition);
}
.logo a:hover {
  opacity: 0.8;
}
.logo .logo-img {
  height: 34px;
  width: auto;
  display: block;
}
@media (max-width: 480px) {
  .logo .logo-img {
    height: 28px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: #4A362F;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .header-actions {
    display: none;
  }
}

.header-client-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.header-client-link:hover {
  color: var(--primary);
}
.header-client-link .status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.header-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  padding: 11px 20px;
  border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 8px 20px -8px rgba(112, 64, 44, 0.6);
  white-space: nowrap;
  transition: var(--transition);
}
.header-cta:hover {
  background: #5A3323;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid #E8DAD2;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-toggle .hamburger {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--secondary);
  box-shadow: 0 6px 0 var(--secondary), 0 -6px 0 var(--secondary);
}
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 14px 28px 22px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 1px solid #F3E9E3;
  transition: var(--transition);
}
.mobile-nav a:hover {
  color: var(--primary);
}
.mobile-nav .mobile-nav__cta {
  margin-top: 14px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  border-bottom: none;
}

.main-content {
  padding-top: 74px;
}
@media (max-width: 768px) {
  .main-content {
    padding-top: 64px;
  }
}

.site-footer {
  background: #2A1812;
  color: #fff;
  padding: 72px 0 0;
}
.site-footer a {
  color: #D8C6BC;
  text-decoration: none;
  transition: var(--transition);
}
.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #A67A63;
  margin: 0 0 16px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: var(--transition);
}
.footer-logo:hover {
  opacity: 1;
}
.footer-logo__img {
  height: 34px;
  width: auto;
}

.footer-about__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #C9ADA0;
  margin: 0 0 22px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social__link {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8DAD2;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social__link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .footer-social__link:hover {
    transform: none;
  }
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav li a {
  font-size: 14.5px;
  color: #D8C6BC;
  transition: var(--transition);
}
.footer-nav li a:hover {
  color: #fff;
  padding-left: 3px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-contact__item {
  font-size: 14.5px;
  color: #D8C6BC;
}
.footer-contact__item a {
  color: #D8C6BC;
}
.footer-contact__item a:hover {
  color: #fff;
}

.footer-col--newsletter .footer-col__title {
  margin-bottom: 0.75rem;
}

.footer-newsletter__box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.15rem 1.15rem;
}

.footer-newsletter__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.footer-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-newsletter__field {
  width: 100%;
}

.footer-newsletter__input {
  width: 100%;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.8rem;
  font-family: var(--font);
  transition: var(--transition);
  box-sizing: border-box;
}
.footer-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer-newsletter__input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.1rem;
}
.footer-newsletter__btn i {
  font-size: 0.75rem;
}
.footer-newsletter__btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.footer-newsletter__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.footer-newsletter__feedback {
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
  min-height: 1.1em;
}
.footer-newsletter__feedback--success {
  color: #5eead4;
}
.footer-newsletter__feedback--error {
  color: #fca5a5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
.footer-bottom__copy {
  margin: 0;
  font-size: 13px;
  color: #A67A63;
}

.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: #C9ADA0;
}
.footer-legal a:hover {
  color: #fff;
}

.feraweb-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.6;
  transition: var(--transition);
}
.feraweb-badge:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.feraweb-badge span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.feraweb-badge .fw-logo {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero {
  position: relative;
  padding: 128px 28px 90px;
  background: radial-gradient(1100px 560px at 78% -8%, #F4E8E0 0%, rgba(244, 232, 224, 0) 60%), linear-gradient(180deg, #FFFCFA 0%, #FFFFFF 100%);
}
@media (max-width: 992px) {
  .hero {
    padding: 100px 22px 64px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 90px 16px 48px;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border: 1px solid #E8DAD2;
  background: #fff;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 14px -8px rgba(27, 42, 69, 0.18);
  animation: floatUp 0.6s both;
}
.hero__badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulseDot 1.8s infinite;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 22px 0 0;
  color: var(--secondary);
  animation: floatUp 0.6s 0.05s both;
}
.hero__title .highlight {
  color: var(--primary);
}

.hero__desc {
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 560px;
  margin: 20px 0 0;
  animation: floatUp 0.6s 0.12s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: floatUp 0.6s 0.18s both;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 13px;
  text-decoration: none;
  transition: var(--transition);
}
.hero__btn--primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 30px -12px rgba(112, 64, 44, 0.7);
}
.hero__btn--primary:hover {
  background: #5A3323;
  transform: translateY(-1px);
}
.hero__btn--outline {
  color: var(--secondary);
  background: #fff;
  border: 1px solid #E2D1C7;
}
.hero__btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero__seals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  margin-top: 38px;
  max-width: 520px;
  animation: floatUp 0.6s 0.24s both;
}

.seal-item {
  display: flex;
  align-items: center;
  gap: 11px;
}
.seal-item .seal-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}
.seal-item span {
  font-size: 14.5px;
  font-weight: 600;
  color: #4A362F;
}

.dashboard {
  position: relative;
  animation: floatUp 0.7s 0.2s both;
}
.dashboard__glow {
  position: absolute;
  inset: -24px -18px;
  background: linear-gradient(140deg, rgba(112, 64, 44, 0.1), rgba(18, 161, 80, 0.08));
  filter: blur(40px);
  border-radius: 40px;
  z-index: 0;
}
.dashboard__card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero);
  overflow: hidden;
}

.dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #F2E8E2;
}

.dashboard__dots {
  display: flex;
  gap: 5px;
}
.dashboard__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dashboard__dots span:nth-child(1) {
  background: #E2685F;
}
.dashboard__dots span:nth-child(2) {
  background: #E8B73C;
}
.dashboard__dots span:nth-child(3) {
  background: #3BBF73;
}

.dashboard__label {
  font-size: 12.5px;
  font-weight: 600;
  color: #6B7890;
  margin-left: 6px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: var(--radius-full);
}
.status-badge .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulseDot 1.8s infinite;
}

.dashboard__body {
  padding: 20px;
}

.dashboard__revenue {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.dashboard__revenue-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-label);
}
.dashboard__revenue-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.growth-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 9px;
}

.dashboard__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 84px;
  padding: 0 2px;
  margin-top: 18px;
}

.chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.chart-bar__fill {
  width: 100%;
  border-radius: 6px 6px 4px 4px;
  background: linear-gradient(180deg, #E2D1C7, #D6BEB1);
  transform-origin: bottom;
  animation: growBar 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.chart-bar__fill--active {
  background: linear-gradient(180deg, #70402C, #BC5C34);
}
.chart-bar__label {
  font-size: 9px;
  font-weight: 600;
  color: #A6B0C2;
}

.dashboard__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.dashboard__mini-card {
  background: var(--bg-alt);
  border: 1px solid #EEE3DD;
  border-radius: 14px;
  padding: 14px;
}
.dashboard__mini-card-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-label);
}
.dashboard__mini-card-value {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 3px;
}
.dashboard__mini-card-sub {
  font-size: 11px;
  color: var(--text-label);
  margin-top: 2px;
}
.dashboard__mini-card--gauge {
  display: flex;
  align-items: center;
  gap: 13px;
}

.dashboard__obligations {
  margin-top: 14px;
  background: var(--secondary);
  border-radius: 14px;
  padding: 14px 16px;
  color: #fff;
}
.dashboard__obligations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dashboard__obligations-header .label {
  font-size: 12px;
  font-weight: 600;
  color: #C9ADA0;
}
.dashboard__obligations-header .count {
  font-size: 11px;
  color: #A67A63;
}
.dashboard__obligations-header .count b {
  color: #D28A62;
}
.dashboard__obligations-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.dashboard__obligations-item .name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
}
.dashboard__obligations-item .name .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D28A62;
}
.dashboard__obligations-item .date {
  font-size: 12px;
  color: #C9ADA0;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin: 0;
}

.tools-intro__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 14px 0 0;
}

.section-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 16px 0 0;
}

.benefits-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.benefit-card,
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.benefit-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #E2D1C7;
}
@media (max-width: 768px) {
  .benefit-card:hover,
  .service-card:hover {
    transform: translateY(-2px);
  }
}
.benefit-card .card-icon,
.service-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #F4E8E0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}
.benefit-card h3,
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin: 18px 0 0;
}
.benefit-card p,
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-light);
  margin: 8px 0 0;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
}
.service-card p {
  font-size: 14.5px;
  margin-bottom: 16px;
  flex: 1;
}
.service-card .service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.service-card .service-link:hover {
  gap: 10px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.specialty-card {
  display: flex;
  gap: 16px;
  background: var(--bg-alt);
  border: 1px solid #EEE3DD;
  border-radius: 16px;
  padding: 22px;
  transition: background 0.25s, border-color 0.25s;
}
.specialty-card:hover {
  background: #fff;
  border-color: #E2D1C7;
}
.specialty-card .card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #E8DAD2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.specialty-card h3 {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--secondary);
  margin: 2px 0 0;
}
.specialty-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-light);
  margin: 6px 0 0;
}

.numbers-section {
  padding: 92px 28px;
  background: radial-gradient(900px 500px at 12% 0%, #4A2B1E 0%, rgba(74, 43, 30, 0) 55%), var(--secondary);
  color: #fff;
}
@media (max-width: 768px) {
  .numbers-section {
    padding: 64px 22px;
  }
}
.numbers-section .section-eyebrow {
  color: #D28A62;
}
.numbers-section .section-title {
  color: #fff;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.number-card {
  padding: 26px 0;
  border-top: 2px solid rgba(210, 138, 98, 0.35);
}
.number-card .number-value {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.number-card .number-value .suffix {
  font-size: 20px;
  font-weight: 600;
  color: #C9ADA0;
  margin-left: 6px;
}
.number-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #C9ADA0;
  margin: 14px 0 0;
  max-width: 220px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.process-card .step-number {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
  margin: 18px 0 0;
}
.process-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-light);
  margin: 8px 0 0;
}

.troca-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 992px) {
  .troca-grid {
    grid-template-columns: 1fr;
  }
}

.troca-steps {
  background: linear-gradient(160deg, #2F211A, #4A2B1E);
  border-radius: var(--radius-xl);
  padding: 34px;
  color: #fff;
  box-shadow: 0 40px 70px -38px rgba(47, 33, 26, 0.6);
}
.troca-steps__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #D28A62;
  margin: 0 0 8px;
}
.troca-steps__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.troca-steps__item .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(210, 138, 98, 0.16);
  color: #D28A62;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.troca-steps__item span {
  font-size: 15.5px;
  font-weight: 500;
  color: #F8EFEA;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 46px;
  align-items: start;
}

.plan-card {
  position: relative;
  border-radius: 20px;
  padding: 30px;
}
.plan-card--default {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px -34px rgba(47, 33, 26, 0.3);
}
.plan-card--highlighted {
  background: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: 0 44px 80px -40px rgba(47, 33, 26, 0.65);
}
.plan-card--highlighted .plan-card__name,
.plan-card--highlighted .plan-card__price {
  color: #fff;
}
.plan-card--highlighted .plan-card__desc {
  color: #C9ADA0;
}
.plan-card--highlighted .plan-card__line {
  border-color: rgba(255, 255, 255, 0.14);
}
.plan-card--highlighted .plan-card__feature .check {
  color: #D28A62;
}
.plan-card--highlighted .plan-card__feature span {
  color: #EFE1D9;
}
.plan-card--highlighted .plan-card__level {
  color: #C9ADA0;
}
.plan-card--highlighted .plan-card__btn {
  color: #2F211A;
  background: #D28A62;
}

.plan-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #D28A62;
  color: #2F211A;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: var(--radius-full);
}

.plan-card__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
}

.plan-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: #76655D;
  margin: 8px 0 0;
  min-height: 42px;
}

.plan-card__pricing {
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid #EEE3DD;
  border-bottom: 1px solid #EEE3DD;
}

.plan-card__line {
  border-color: #EEE3DD;
}

.plan-card__from {
  font-size: 13px;
  color: #76655D;
}

.plan-card__price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
}

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
}
.plan-card__feature .check {
  flex-shrink: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  margin-top: 2px;
}
.plan-card__feature span {
  font-size: 14.5px;
  color: #58473F;
}

.plan-card__level {
  font-size: 13px;
  font-weight: 600;
  color: #76655D;
  margin: 16px 0 18px;
}

.plan-card__btn {
  display: block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
}
.plan-card__btn:hover {
  opacity: 0.9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid #EEE3DD;
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-card .quote-mark {
  font-size: 22px;
  color: #D6BEB1;
  line-height: 1;
}
.testimonial-card .quote-text {
  font-size: 16px;
  line-height: 1.6;
  color: #4A362F;
  margin: 6px 0 18px;
  flex: 1;
}
.testimonial-card .result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #E6EAF2;
  padding-top: 16px;
}
.testimonial-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
}
.testimonial-author .name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--secondary);
}
.testimonial-author .info {
  font-size: 13px;
  color: #76655D;
}

.faq-section {
  max-width: 820px;
  margin: 0 auto;
}

.faq-container {
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-top: 1px solid #F2E8E2;
}
.faq-item:first-child {
  border-top: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
}
.faq-question:hover {
  background: rgba(112, 64, 44, 0.02);
}
.faq-question .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F4E8E0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.3s;
}
.faq-question[aria-expanded=true] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-light);
}
.faq-answer.open {
  display: block;
}

.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.blog-cat-tag {
  font-size: 13px;
  font-weight: 600;
  color: #58473F;
  background: #F8F3EF;
  border: 1px solid #E8DAD2;
  padding: 8px 14px;
  border-radius: var(--radius-full);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.blog-preview-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.blog-preview-card .card-image {
  height: 150px;
  background: repeating-linear-gradient(45deg, #EFE5DF, #EFE5DF 11px, #FBF7F4 11px, #FBF7F4 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9B877D;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.03em;
  overflow: hidden;
}
.blog-preview-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-preview-card .card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-preview-card .card-body .cat {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-preview-card .card-body h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
  margin: 10px 0 0;
}
.blog-preview-card .card-body p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-light);
  margin: 10px 0 16px;
  flex: 1;
}
.blog-preview-card .card-body .read-time {
  font-size: 12.5px;
  color: #9B877D;
  font-weight: 600;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
}
@media (min-width: 640px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tool-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.tool-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.25s;
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
}
.tool-card:hover::before {
  opacity: 1;
}
.tool-card:hover .tool-card__icon {
  transform: scale(1.08);
}
.tool-card:hover .tool-card__arrow {
  background: var(--primary);
  color: var(--white);
  transform: translateX(2px);
}
.tool-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.25s ease;
}
.tool-card__heading {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.tool-card__title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--secondary);
}
.tool-card__desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-light);
}
.tool-card__arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
  align-self: center;
}
.tool-card__arrow i {
  display: block;
}

.home-form-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .home-form-grid {
    grid-template-columns: 1fr;
  }
}

.home-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 30px 60px -40px rgba(47, 33, 26, 0.4);
}
.home-form-card h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--secondary);
  margin: 0;
}
.home-form-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 12px 0 26px;
}

.home-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .home-form {
    grid-template-columns: 1fr;
  }
}

.home-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.home-form__group--full {
  grid-column: 1/-1;
}
.home-form__group label {
  font-size: 13px;
  font-weight: 600;
  color: #4A362F;
}
.home-form__group input,
.home-form__group select,
.home-form__group textarea {
  padding: 13px 14px;
  border: 1px solid #E8DAD2;
  border-radius: 11px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--secondary);
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
}
.home-form__group input:focus,
.home-form__group select:focus,
.home-form__group textarea:focus {
  border-color: var(--primary);
}
.home-form__group input::placeholder,
.home-form__group select::placeholder,
.home-form__group textarea::placeholder {
  color: #B8A399;
}
.home-form__group textarea {
  resize: vertical;
  min-height: 80px;
}

.home-form__submit {
  grid-column: 1/-1;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 16px;
  border: none;
  border-radius: 13px;
  cursor: pointer;
  box-shadow: 0 14px 30px -12px rgba(112, 64, 44, 0.7);
  font-family: var(--font);
  transition: var(--transition);
}
.home-form__submit:hover {
  background: #5A3323;
}

.home-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.whatsapp-cta-card {
  background: linear-gradient(160deg, #0E7A3D, #12A150);
  border-radius: var(--radius-xl);
  padding: 30px;
  color: #fff;
  box-shadow: 0 30px 60px -40px rgba(18, 161, 80, 0.7);
}
.whatsapp-cta-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.whatsapp-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  margin: 18px 0 0;
}
.whatsapp-cta-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #E6F6EC;
  margin: 8px 0 20px;
}
.whatsapp-cta-card .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: #0E7A3D;
  background: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
}
.whatsapp-cta-card .wa-btn:hover {
  opacity: 0.92;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.contact-info-card .card-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-label);
  margin: 0 0 14px;
}
.contact-info-card .info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  color: #4A362F;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

.contact-main {
  padding: 5rem 0 6rem;
  background: #F8F3EF;
}
@media (max-width: 768px) {
  .contact-main {
    padding: 3rem 0 4rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-form-area {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}
@media (max-width: 480px) {
  .contact-form-area {
    padding: 1.5rem;
    border-radius: 12px;
  }
}
.contact-form-area h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form__honeypot {
  display: none;
  position: absolute;
  left: -9999px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row.form-row--half {
  flex-direction: row;
  gap: 1.25rem;
}
.form-row.form-row--half .form-group {
  flex: 1;
  min-width: 0;
}
@media (max-width: 600px) {
  .form-row.form-row--half {
    flex-direction: column;
  }
}
.form-row.form-row--actions {
  margin-top: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
}

.form-required {
  color: var(--primary);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: var(--font);
  color: var(--text);
  background: #FBF7F4;
  border: 1.5px solid #E8DAD2;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-input::placeholder {
  color: #B8A399;
}
.form-input:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(112, 64, 44, 0.15);
}
.form-input.is-invalid {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  font-size: 0.8125rem;
  color: #e05252;
  min-height: 1em;
}

.contact-form__submit {
  align-self: flex-start;
  min-width: 200px;
  position: relative;
}
.contact-form__submit .btn-loading {
  display: none;
}
.contact-form__submit.is-loading {
  pointer-events: none;
  opacity: 0.75;
}
.contact-form__submit.is-loading .btn-text {
  display: none;
}
.contact-form__submit.is-loading .btn-loading {
  display: inline;
}
@media (max-width: 480px) {
  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }
}

.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 0.25rem;
}
.form-feedback.is-success {
  background: #edfaf5;
  color: #1a7a50;
  border: 1px solid #a8e6cc;
}
.form-feedback.is-error {
  background: #fdf0f0;
  color: #b83232;
  border: 1px solid #f3b8b8;
}
.form-feedback[hidden] {
  display: none;
}

.contact-info {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 100px;
}
@media (max-width: 1024px) {
  .contact-info {
    position: static;
    order: -1;
  }
}
@media (max-width: 480px) {
  .contact-info {
    padding: 1.5rem;
    border-radius: 12px;
  }
}
.contact-info h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 1.75rem;
}

.contact-info__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info__item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-info__item > div strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info__item > div a, .contact-info__item > div span {
  font-size: 0.9375rem;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.contact-info__item > div a:hover, .contact-info__item > div span:hover {
  color: var(--primary);
}

.contact-info__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(112, 64, 44, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.125rem;
}

.contact-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: #25d366;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.contact-wa-btn i {
  font-size: 1.25rem;
}
.contact-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}
.contact-wa-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .contact-wa-btn:hover {
    transform: none;
  }
  .contact-wa-btn:active {
    transform: scale(0.98);
  }
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--secondary);
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  opacity: 0;
}
.cookie-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-bar.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

.cookie-bar__simple {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cookie-bar__simple {
    flex-direction: column;
    align-items: stretch;
  }
}

.cookie-bar__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 280px;
}
.cookie-bar__text .fi {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-bar__text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.cookie-bar__text p a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar__text p a:hover {
  opacity: 0.8;
}

.cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cookie-bar__actions {
    justify-content: stretch;
  }
  .cookie-bar__actions .cookie-bar__btn {
    flex: 1;
  }
}

.cookie-bar__detailed {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-bar__detailed[hidden] {
  display: none;
}

.cookie-bar__detailed-header h2 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #fff;
}
.cookie-bar__detailed-header p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-bar__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
@media (max-width: 600px) {
  .cookie-bar__categories {
    grid-template-columns: 1fr;
  }
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s ease;
}
.cookie-category:has(input:checked) {
  border-color: rgba(var(--primary-rgb), 0.5);
  background: rgba(var(--primary-rgb), 0.05);
}

.cookie-category__info {
  flex: 1;
}
.cookie-category__info p {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.cookie-category__title {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-category__title .fi {
  font-size: 15px;
  color: var(--primary);
}
.cookie-category__title strong {
  font-size: 14px;
  color: #fff;
}

.cookie-category__required {
  font-size: 10px;
  background: rgba(var(--primary-rgb), 0.2);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 2px;
}
.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--primary);
}
.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}
.cookie-toggle input:focus-visible + .cookie-toggle__slider {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.cookie-toggle--disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-toggle--disabled input:checked + .cookie-toggle__slider {
  background: var(--tertiary);
}

.cookie-toggle__slider {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  transition: background 0.25s ease;
  position: relative;
}
.cookie-toggle__slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cookie-bar__detailed-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 600px) {
  .cookie-bar__detailed-actions .cookie-bar__btn {
    flex: 1;
  }
}

.cookie-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.cookie-bar__btn .fi {
  font-size: 13px;
}
.cookie-bar__btn--accept, .cookie-bar__btn--save {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}
.cookie-bar__btn--accept:hover, .cookie-bar__btn--save:hover {
  background: transparent;
  color: var(--primary);
}
.cookie-bar__btn--reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}
.cookie-bar__btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.cookie-bar__btn--settings {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
}
.cookie-bar__btn--settings:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.cookie-bar__btn--back {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
  padding-left: 6px;
}
.cookie-bar__btn--back:hover {
  color: #fff;
}

.legal-body {
  padding: 56px 0 80px;
  background: #fafafa;
}

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

.legal-summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(var(--primary-rgb), 0.06);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin-bottom: 36px;
}
.legal-summary .fi {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-summary p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}

.legal-toc {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.legal-toc h2 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--tertiary);
  margin: 0 0 14px;
  font-weight: 700;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 6px 24px;
}
.legal-toc li {
  font-size: 14px;
}
.legal-toc a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-toc a:hover {
  color: var(--primary);
}

.legal-article {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 40px 44px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .legal-article {
    padding: 28px 20px;
  }
}
.legal-article section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid #f0f0f0;
}
.legal-article section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.legal-article h2 {
  font-size: 20px;
  color: var(--secondary);
  margin: 0 0 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-article h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-article h3 {
  font-size: 16px;
  color: var(--black);
  margin: 24px 0 10px;
  font-weight: 600;
}
.legal-article p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 14px;
}
.legal-article p:last-child {
  margin-bottom: 0;
}
.legal-article ul, .legal-article ol {
  padding-left: 20px;
  margin: 0 0 14px;
}
.legal-article ul li, .legal-article ol li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 6px;
}
.legal-article a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
.legal-article a:hover {
  opacity: 0.75;
}
.legal-article code {
  background: #f3f4f6;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 13px;
  font-family: "Courier New", monospace;
  color: var(--secondary);
}
.legal-article .button {
  margin: 16px 0;
}

.legal-contact {
  list-style: none !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px !important;
  margin: 0 !important;
}
.legal-contact li .fi {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.cookie-type-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}
.cookie-type-card:hover {
  border-color: var(--primary);
}
.cookie-type-card p {
  margin: 10px 0 0 !important;
}

.cookie-type-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-type-header .fi {
  font-size: 22px;
  flex-shrink: 0;
}
.cookie-type-header h3 {
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-type-header.essential .fi {
  color: #22c55e;
}
.cookie-type-header.functional .fi {
  color: var(--primary);
}
.cookie-type-header.analytics .fi {
  color: #f59e0b;
}
.cookie-type-header.marketing .fi {
  color: #BC5C34;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  background: #dcfce7;
  color: #16a34a;
  letter-spacing: 0.2px;
}
.badge.optional {
  background: #f3f4f6;
  color: var(--tertiary);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.legal-table th {
  background: var(--secondary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.legal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
  vertical-align: top;
  line-height: 1.5;
}
.legal-table tr:last-child td {
  border-bottom: none;
}
.legal-table tr:nth-child(even) td {
  background: #fafafa;
}

.legal-nav-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.legal-nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}
.legal-nav-links a .fi {
  color: var(--primary);
}
.legal-nav-links a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15);
}

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  padding: 0 20px 0 0;
  height: 56px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, padding 0.3s ease, max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 56px;
  overflow: hidden;
  will-change: transform;
}
.whatsapp-btn.has-cookie-bar {
  bottom: calc(24px + var(--cookie-bar-height, 0px));
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  max-width: 220px;
}
@media (max-width: 480px) {
  .whatsapp-btn {
    right: 16px;
    bottom: 16px;
    height: 56px;
    max-width: 56px;
    padding: 0;
  }
  .whatsapp-btn.has-cookie-bar {
    bottom: calc(16px + var(--cookie-bar-height, 0px));
  }
  .whatsapp-btn:hover {
    max-width: 56px;
    transform: scale(1.06);
  }
}

.whatsapp-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
}
.whatsapp-btn__icon .fi {
  font-size: 26px;
  line-height: 1;
}

.whatsapp-btn__label {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
  pointer-events: none;
}
.whatsapp-btn:hover .whatsapp-btn__label {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 480px) {
  .whatsapp-btn__label {
    display: none;
  }
}

@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.15);
  }
}
.whatsapp-btn.do-pulse {
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  background: #F8F3EF;
}
@media (max-width: 768px) {
  .error-page {
    min-height: 60vh;
    padding: 4rem 0;
  }
}

.error-content {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.error-code {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary);
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--secondary);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.error-description {
  font-size: 1.0625rem;
  color: var(--tertiary);
  line-height: 1.7;
  margin: 0 0 2.5rem;
}

.error-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  opacity: 0.7;
  display: flex;
  justify-content: center;
}
@media (max-width: 480px) {
  .error-icon {
    font-size: 2.75rem;
  }
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .error-actions .button {
    text-align: center;
    justify-content: center;
  }
}

.error-debug {
  margin-top: 3rem;
  padding: 1.25rem 1.5rem;
  background: #fff8f8;
  border: 1px solid #f3b8b8;
  border-radius: 10px;
  text-align: left;
}
.error-debug summary {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b83232;
  cursor: pointer;
  user-select: none;
}
.error-debug pre {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: #7a1a1a;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.6;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
}
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.blog-featured {
  margin-bottom: 48px;
}
.blog-featured__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background: var(--white);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-featured__inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}
@media (max-width: 700px) {
  .blog-featured__inner {
    grid-template-columns: 1fr;
  }
}
.blog-featured__image-wrap {
  position: relative;
  overflow: hidden;
}
.blog-featured__image-wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media (max-width: 700px) {
  .blog-featured__image-wrap::before {
    padding-top: 56.25%;
  }
}
.blog-featured__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-featured__image-wrap:hover img {
  transform: scale(1.04);
}
.blog-featured__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 700px) {
  .blog-featured__body {
    padding: 24px 20px;
  }
}
.blog-featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
}
.blog-featured__title {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--secondary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-featured__excerpt {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--tertiary);
}
.blog-featured__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.blog-filters__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
  margin-right: 4px;
}
.blog-filters a {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid #e0e0e0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s;
}
.blog-filters a:hover, .blog-filters a.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.blog-card__image-link {
  display: block;
  overflow: hidden;
}
.blog-card__image-wrap {
  position: relative;
  overflow: hidden;
}
.blog-card__image-wrap::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.blog-card__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.blog-card:hover .blog-card__image-wrap img {
  transform: scale(1.06);
}
.blog-card__body {
  padding: 20px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}
.blog-card__category:hover {
  text-decoration: underline;
}
.blog-card__title {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
}
.blog-card__title a:hover {
  color: var(--primary);
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.77rem;
  color: var(--tertiary);
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}
.blog-card__meta {
  display: flex;
  gap: 12px;
}
.blog-card__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card__read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.blog-card__read-more:hover {
  gap: 7px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.blog-pagination a, .blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.blog-pagination a {
  color: var(--black);
  border: 1.5px solid #e0e0e0;
}
.blog-pagination a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.blog-pagination span.current {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--primary);
}
.blog-pagination .pagination-ellipsis {
  width: auto;
  padding: 0 4px;
  color: var(--tertiary);
  border: none;
  cursor: default;
}

.blog-sidebar {
  position: sticky;
  top: 90px;
}
.blog-sidebar__widget {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.blog-sidebar__title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--tertiary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.blog-sidebar__search {
  display: flex;
  gap: 0;
}
.blog-sidebar__search input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e0e0e0;
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
}
.blog-sidebar__search input:focus {
  border-color: var(--primary);
}
.blog-sidebar__search button {
  padding: 10px 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.blog-sidebar__search button:hover {
  background: #BC5C34;
}
.blog-sidebar__categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar__categories li {
  border-bottom: 1px solid #f3f3f3;
}
.blog-sidebar__categories li:last-child {
  border-bottom: none;
}
.blog-sidebar__categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: var(--black);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.blog-sidebar__categories li a:hover {
  color: var(--primary);
}
.blog-sidebar__categories li a span.count {
  background: #F8F3EF;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.blog-sidebar__recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-sidebar__recent-posts li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f3f3;
}
.blog-sidebar__recent-posts li:last-child {
  border-bottom: none;
}
.blog-sidebar__recent-posts__img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.blog-sidebar__recent-posts__info {
  flex: 1;
}
.blog-sidebar__recent-posts__title a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-sidebar__recent-posts__title a:hover {
  color: var(--primary);
}
.blog-sidebar__recent-posts__date {
  font-size: 0.75rem;
  color: var(--tertiary);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-sidebar .newsletter-form-wrap--stacked .newsletter-form {
  display: flex;
  flex-direction: column;
}
.blog-sidebar .newsletter-form-wrap--stacked .newsletter-form__fields {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
}
.blog-sidebar .newsletter-form-wrap--stacked .newsletter-form__field,
.blog-sidebar .newsletter-form-wrap--stacked .newsletter-form__submit-wrap {
  width: 100%;
}
.blog-sidebar .newsletter-form-wrap--stacked .newsletter-form__input {
  width: 100%;
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
  background: #f8f9fa;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--black);
  transition: border-color 0.2s;
}
.blog-sidebar .newsletter-form-wrap--stacked .newsletter-form__input:focus {
  outline: none;
  border-color: var(--primary) !important;
  background: var(--white);
}
.blog-sidebar .newsletter-form-wrap--stacked .newsletter-form__input::placeholder {
  color: var(--tertiary);
}
.blog-sidebar .newsletter-form-wrap--stacked .newsletter-form__btn {
  width: 100%;
  border-radius: var(--radius-sm) !important;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 13px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.blog-sidebar .newsletter-form-wrap--stacked .newsletter-form__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.blog-empty {
  text-align: center;
  padding: 56px 24px;
}
.blog-empty__icon {
  font-size: 3rem;
  color: var(--tertiary);
  opacity: 0.5;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.blog-empty h3 {
  color: var(--secondary);
  margin-bottom: 8px;
}
.blog-empty p {
  color: var(--tertiary);
  margin-bottom: 24px;
}

.blog-post__hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 600px) {
  .blog-post__hero {
    min-height: 280px;
  }
}
.blog-post__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 42, 44, 0.85) 0%, rgba(10, 42, 44, 0.2) 60%, transparent 100%);
}
.blog-post__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post__hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 0 40px;
}
.blog-post__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.blog-post__breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.blog-post__breadcrumb a:hover {
  color: var(--white);
}
.blog-post__breadcrumb .sep {
  opacity: 0.5;
}
.blog-post__category-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-decoration: none;
}
.blog-post__title {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 16px;
}
.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
}
.blog-post__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-post__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 56px 0;
  align-items: start;
}
@media (max-width: 960px) {
  .blog-post__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.blog-post__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.blog-post__body h2, .blog-post__body h3, .blog-post__body h4 {
  color: var(--secondary);
  margin: 2em 0 0.7em;
  line-height: 1.3;
}
.blog-post__body h2 {
  font-size: 1.55rem;
}
.blog-post__body h3 {
  font-size: 1.25rem;
}
.blog-post__body h4 {
  font-size: 1.05rem;
}
.blog-post__body p {
  margin-bottom: 1.4em;
}
.blog-post__body a {
  color: var(--primary);
  text-decoration: underline;
}
.blog-post__body a:hover {
  opacity: 0.8;
}
.blog-post__body ul, .blog-post__body ol {
  margin-bottom: 1.4em;
  padding-left: 1.5em;
}
.blog-post__body ul li, .blog-post__body ol li {
  margin-bottom: 0.5em;
}
.blog-post__body blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  background: #F8F3EF;
  border-radius: 0 8px 8px 0;
  margin: 2em 0;
  color: var(--secondary);
  font-style: italic;
  font-size: 1.05em;
}
.blog-post__body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5em 0;
}
.blog-post__body code {
  background: #f4f4f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #c0392b;
}
.blog-post__body pre {
  background: #1e1e2e;
  color: #cdd6f4;
  padding: 20px 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5em 0;
  font-size: 0.9rem;
}
.blog-post__body pre code {
  background: none;
  color: inherit;
  padding: 0;
}
.blog-post__body hr {
  border: none;
  border-top: 2px solid #f0f0f0;
  margin: 2.5em 0;
}
.blog-post__author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #FFFCFA;
  border: 1px solid #E8DAD2;
  border-radius: 10px;
  padding: 24px;
  margin-top: 40px;
}
.blog-post__author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-post__author__placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.blog-post__author__info {
  flex: 1;
}
.blog-post__author__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.blog-post__author__bio {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}
.blog-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eeeeee;
}
.blog-post__tags__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
}
.blog-post__tags a {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: #f4f4f4;
  color: var(--black);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
}
.blog-post__tags a:hover {
  background: var(--primary);
  color: var(--white);
}
.blog-post__related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
}
.blog-post__related__title {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 24px;
}
.blog-post__related .blog-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.blog-post__meta-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 14px 0;
}
.blog-post__meta-bar .content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-post__meta-bar__author, .blog-post__meta-bar__date, .blog-post__meta-bar__read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--tertiary);
  font-weight: 500;
}
.blog-post__meta-bar__author i, .blog-post__meta-bar__date i, .blog-post__meta-bar__read-time i {
  font-size: 0.8rem;
  color: var(--primary);
}

.newsletter-form__feedback {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}
.newsletter-form__feedback--success {
  background: #eafaf0;
  color: #1a7a45;
  border: 1px solid #b2e8c9;
}
.newsletter-form__feedback--error {
  background: #fdf0f0;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}
.newsletter-form__feedback--info {
  background: #f0f8ff;
  color: #1a5fa8;
  border: 1px solid #b8d9f5;
}

.newsletter-section {
  background: var(--white);
  padding: 56px 0 64px;
  border-top: 1px solid rgba(var(--black-rgb), 0.08);
}
.newsletter-section .content {
  display: grid;
  gap: 18px;
  max-width: 920px;
}
.newsletter-section__eyebrow {
  margin: 0 0 -4px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.newsletter-section h2 {
  margin: 0;
  color: var(--secondary);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}
.newsletter-section > .content > p:not(.newsletter-section__eyebrow) {
  margin: 0;
  max-width: 640px;
  color: var(--text-muted);
  line-height: 1.7;
}
.newsletter-section .newsletter-form-wrap--inline {
  max-width: 760px;
}
.newsletter-section .newsletter-form__fields {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(220px, 1.25fr) auto;
  gap: 10px;
  align-items: stretch;
}
.newsletter-section .newsletter-form__input {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  padding: 0 14px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.newsletter-section .newsletter-form__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}
.newsletter-section .newsletter-form__btn {
  min-width: 132px;
  height: 48px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.newsletter-section .newsletter-form__feedback {
  margin-top: 10px;
}
@media (max-width: 760px) {
  .newsletter-section .newsletter-form__fields {
    grid-template-columns: 1fr;
  }
  .newsletter-section .newsletter-form__btn {
    width: 100%;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-cancel-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
}

.newsletter-cancel-hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.newsletter-cancel-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: 14px;
  padding: 56px 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .newsletter-cancel-card {
    padding: 36px 24px;
  }
}

.newsletter-cancel-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.newsletter-cancel-icon--success {
  color: #1a7a45;
}
.newsletter-cancel-icon--info {
  color: var(--primary);
}
.newsletter-cancel-icon--error {
  color: #c0392b;
}

.newsletter-cancel-heading {
  font-size: 1.7rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.newsletter-cancel-message {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.newsletter-cancel-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.calc-section {
  padding: 4rem 0 6rem;
}

.calc-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 900px) {
  .calc-columns {
    flex-direction: row;
    align-items: flex-start;
  }
}

.calc-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
@media (min-width: 900px) {
  .calc-column {
    flex: 1 1 50%;
  }
}

.calc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  scroll-margin-top: 110px;
}
.calc-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.calc-card.is-open {
  border-color: var(--primary);
  box-shadow: 0 12px 36px -16px rgba(var(--primary-rgb), 0.35);
  transform: none;
}
.calc-card.is-open .calc-card__header {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.05), transparent);
}
.calc-card.is-open .calc-card__icon {
  transform: scale(1.06);
}
.calc-card.is-open .calc-card__toggle {
  background: var(--primary);
  color: var(--white);
}
.calc-card.is-open .calc-card__toggle i {
  transform: rotate(180deg);
}
.calc-card.is-open .calc-card__body {
  grid-template-rows: 1fr;
}

.calc-card__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: background 0.25s;
  border-radius: var(--radius-lg);
}

.calc-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.25s ease;
}

.calc-card__heading {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.calc-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
}

.calc-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
}

.calc-card__toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.25s, color 0.25s;
}
.calc-card__toggle i {
  display: block;
  transition: transform 0.25s ease;
}

.calc-card__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-card__body-inner {
  min-height: 0;
  overflow: hidden;
  padding: 4px 28px 32px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.calc-card.is-open .calc-card__body-inner {
  opacity: 1;
  transition: opacity 0.3s ease 0.12s;
}

.calc-form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.calc-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.calc-form__group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.calc-form__group input,
.calc-form__group select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.calc-form__group input:focus,
.calc-form__group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.calc-form__submit {
  width: 100%;
}
@media (min-width: 560px) {
  .calc-form__submit {
    width: auto;
  }
}

.calc-result {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.calc-result.is-success {
  background: var(--green-light);
  border-color: rgba(18, 161, 80, 0.25);
}
.calc-result.is-error {
  background: #fdf0f0;
  border-color: #f3b8b8;
}
.calc-result[hidden] {
  display: none;
}

.calc-result__table {
  width: 100%;
  border-collapse: collapse;
}
.calc-result__table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.calc-result__table tr:last-child {
  border-bottom: none;
}
.calc-result__table tr:last-child th, .calc-result__table tr:last-child td {
  padding-top: 12px;
  font-weight: 700;
  color: var(--secondary);
  font-size: 16px;
}
.calc-result__table th, .calc-result__table td {
  text-align: left;
  padding: 8px 0;
  font-size: 14.5px;
  font-weight: 500;
}
.calc-result__table th {
  color: var(--text-muted);
  font-weight: 600;
  padding-right: 16px;
}
.calc-result__table td {
  text-align: right;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .calc-result__table tr {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    gap: 2px;
  }
  .calc-result__table th, .calc-result__table td {
    padding: 0;
    text-align: left;
  }
}

.calc-result__msg {
  margin: 0;
  font-size: 14.5px;
  color: var(--text);
  font-weight: 600;
}

.calc-result__note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.5;
  display: flex;
  gap: 6px;
}
.calc-result__note i {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--primary);
}

.calc-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.calc-disclaimer i {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
}
.calc-disclaimer p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}
.calc-disclaimer p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/*# sourceMappingURL=base.css.map */
