:root {
  --color-primary: #2C7A66;
  --color-primary-dark: #1E5A4A;
  --color-primary-light: #3A9A82;
  --color-primary-subtle: #E8F5F0;
  --color-secondary: #F3C97A;
  --color-secondary-dark: #D4A84E;
  --color-secondary-light: #F8DDA4;
  --color-accent: #FF4D6D;
  --color-accent-dark: #E03355;
  --color-accent-light: #FF7A93;
  --color-background: #FBF6EC;
  --color-background-alt: #FFFFFF;
  --color-background-dark: #1F2A24;
  --color-background-green: #F0F7F4;
  --color-text: #1F2A24;
  --color-text-light: #4A5950;
  --color-text-muted: #6B7E72;
  --color-text-on-dark: #F5F0E6;
  --color-text-on-primary: #FFFFFF;
  --color-border: #D8D0C4;
  --color-border-light: #E8E2D6;
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.06em;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 96px;
  --space-6xl: 120px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50%;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(31, 42, 36, 0.05);
  --shadow-sm: 0 2px 4px rgba(31, 42, 36, 0.06), 0 1px 2px rgba(31, 42, 36, 0.04);
  --shadow-md: 0 4px 12px rgba(31, 42, 36, 0.08), 0 2px 4px rgba(31, 42, 36, 0.04);
  --shadow-lg: 0 8px 24px rgba(31, 42, 36, 0.1), 0 4px 8px rgba(31, 42, 36, 0.05);
  --shadow-xl: 0 16px 48px rgba(31, 42, 36, 0.12), 0 8px 16px rgba(31, 42, 36, 0.06);
  --shadow-nav: 0 2px 12px rgba(31, 42, 36, 0.1);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --top-bar-height: 40px;
  --nav-height: 72px;
  --header-total: 112px;
  --mobile-cta-height: 64px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: 1rem;
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
}

h1 {
  font-size: 2.25rem;
  line-height: 1.15;
}

h2 {
  font-size: 1.875rem;
  line-height: var(--leading-tight);
}

h3 {
  font-size: 1.5rem;
  line-height: var(--leading-snug);
}

h4 {
  font-size: 1.25rem;
  line-height: var(--leading-snug);
}

h5 {
  font-size: 1.125rem;
  font-weight: var(--weight-semibold);
}

h6 {
  font-size: 1rem;
  font-weight: var(--weight-semibold);
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: var(--weight-semibold);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.gap-2xl {
  gap: var(--space-2xl);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

/* ========================
   TOP UTILITY BAR
   ======================== */
.top-bar {
  background-color: var(--color-background-dark);
  color: var(--color-text-on-dark);
  font-size: 0.8125rem;
  line-height: 1;
  padding: var(--space-sm) 0;
  display: none;
}

.top-bar a {
  color: var(--color-secondary-light);
  transition: color var(--transition-fast);
}

.top-bar a:hover {
  color: var(--color-secondary);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(245, 240, 230, 0.8);
  white-space: nowrap;
}

.top-bar__divider {
  width: 1px;
  height: 14px;
  background-color: rgba(245, 240, 230, 0.2);
}

.top-bar__apply {
  font-weight: var(--weight-semibold);
  color: var(--color-secondary) !important;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* ========================
   MAIN NAV
   ======================== */
.main-nav {
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border-light);
  height: var(--nav-height);
  position: relative;
  z-index: 1000;
  transition: box-shadow var(--transition-base), background-color var(--transition-base);
}

.main-nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-nav);
  background-color: rgba(251, 246, 236, 0.97);
  backdrop-filter: blur(8px);
}

.main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  min-height: var(--nav-height);
}

.main-nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
  height: 100%;
}

.main-nav__logo img {
  height: 36px;
  width: auto;
}

.main-nav__logo-text {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 1.2rem;
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
}

.main-nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  height: 100%;
}

.main-nav__link {
  font-size: 0.9375rem;
  font-weight: var(--weight-medium);
  color: var(--color-text-light);
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-xs) 0;
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__link.active {
  color: var(--color-primary);
}

.main-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
  border-radius: 1px;
}

.main-nav__link:hover::after,
.main-nav__link.active::after {
  width: 100%;
}

.main-nav__cta {
  display: none;
  align-items: center;
  height: 100%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  align-self: center;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-background);
  z-index: 999;
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.mobile-menu__link {
  display: block;
  padding: var(--space-md) 0;
  font-size: 1.125rem;
  font-weight: var(--weight-medium);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--color-primary);
}

.mobile-menu__cta {
  margin-top: var(--space-xl);
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 0.9375rem;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: var(--tracking-wide);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-text-on-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background-color: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 77, 109, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn--gold {
  background-color: var(--color-secondary);
  color: var(--color-text);
  border-color: var(--color-secondary);
}

.btn--gold:hover {
  background-color: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.btn--full {
  width: 100%;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--full {
  min-height: 100vh;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-height: 600px;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 42, 36, 0.82) 0%,
    rgba(44, 122, 102, 0.65) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--space-4xl) 0;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: 2.5rem;
  font-weight: var(--weight-bold);
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: var(--tracking-tight);
}

.hero__subtitle {
  font-size: 1.125rem;
  font-weight: var(--weight-regular);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ========================
   TRUST BAR / STATS
   ======================== */
.trust-bar {
  background-color: var(--color-primary-dark);
  padding: var(--space-xl) 0;
  position: relative;
  z-index: 3;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  text-align: center;
}

.trust-bar__stat {
  padding: var(--space-sm) 0;
}

.trust-bar__number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: var(--weight-bold);
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.trust-bar__label {
  font-size: 0.8125rem;
  color: rgba(245, 240, 230, 0.75);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wide);
}

/* ========================
   SECTIONS
   ======================== */
.section {
  padding: var(--space-4xl) 0;
}

.section--lg {
  padding: var(--space-5xl) 0;
}

.section--xl {
  padding: var(--space-6xl) 0;
}

.section--white {
  background-color: var(--color-background-alt);
}

.section--cream {
  background-color: var(--color-background);
}

.section--green-light {
  background-color: var(--color-background-green);
}

.section--dark {
  background-color: var(--color-background-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #FFFFFF;
}

.section--dark p {
  color: rgba(245, 240, 230, 0.8);
}

.section--primary {
  background-color: var(--color-primary);
}

.section--primary h2,
.section--primary h3,
.section--primary h4 {
  color: #FFFFFF;
}

.section--primary p {
  color: rgba(255, 255, 255, 0.85);
}

.section__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-3xl);
}

.section__header--left {
  text-align: left;
  margin-left: 0;
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section--dark .section__eyebrow,
.section--primary .section__eyebrow {
  color: var(--color-secondary);
}

.section__title {
  font-size: 1.875rem;
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.section--dark .section__subtitle {
  color: rgba(245, 240, 230, 0.7);
}

/* ========================
   CARDS
   ======================== */
.card {
  background-color: var(--color-background-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card--flat {
  box-shadow: none;
  border: 1px solid var(--color-border-light);
}

.card--flat:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card--green {
  background-color: var(--color-primary-subtle);
  border: 1px solid rgba(44, 122, 102, 0.1);
}

.card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.card__title {
  font-size: 1.25rem;
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: var(--leading-normal);
}

.card__meta {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

/* ========================
   SPLIT / ALTERNATING CONTENT
   ======================== */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.split__content {
  padding: var(--space-md) 0;
}

.split__content h2 {
  margin-bottom: var(--space-md);
}

.split__content h3 {
  margin-bottom: var(--space-md);
}

.split__content p {
  margin-bottom: var(--space-md);
}

/* ========================
   PRODUCT/SOLUTION BLOCKS
   ======================== */
.product-block {
  position: relative;
  overflow: hidden;
}

.product-block__image-bg {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.product-block__image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.product-block__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background-color: var(--color-background-green);
  border-radius: var(--radius-md);
}

.product-block__detail {
  flex: 1;
  min-width: 120px;
}

.product-block__detail-label {
  font-size: 0.75rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.product-block__detail-value {
  font-size: 1.125rem;
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}

/* ========================
   COMPARISON TABLE
   ======================== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-background-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
}

.comparison-table thead {
  background-color: var(--color-primary);
}

.comparison-table th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-weight: var(--weight-semibold);
  color: #FFFFFF;
  font-size: 0.875rem;
  letter-spacing: var(--tracking-wide);
  white-space: nowrap;
}

.comparison-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-light);
  vertical-align: top;
}

.comparison-table tbody tr:hover {
  background-color: var(--color-primary-subtle);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
}

/* ========================
   TESTIMONIALS
   ======================== */
.testimonial {
  background-color: var(--color-background-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial__quote {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: var(--leading-relaxed);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--color-secondary);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__photo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-round);
  object-fit: cover;
  border: 2px solid var(--color-secondary-light);
}

.testimonial__name {
  font-weight: var(--weight-semibold);
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.3;
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ========================
   FAQ / ACCORDION
   ======================== */
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) 0;
  font-size: 1.0625rem;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--transition-base);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  border-radius: 1px;
  transition: transform var(--transition-base);
}

.faq-toggle::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item.active .faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: var(--space-lg);
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: var(--leading-relaxed);
}

/* ========================
   FORMS
   ======================== */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px var(--space-md);
  font-size: 1rem;
  color: var(--color-text);
  background-color: var(--color-background-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(44, 122, 102, 0.12);
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

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

.form-hint {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

/* ========================
   IFRAME WRAPPER
   ======================== */
.iframe-wrapper {
  background-color: var(--color-background-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.iframe-wrapper iframe {
  display: block;
}

/* ========================
   CTA SECTION (with bg image)
   ======================== */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 42, 36, 0.88) 0%,
    rgba(44, 122, 102, 0.78) 100%
  );
  z-index: 1;
}

.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__content h2 {
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.cta-section__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: var(--space-xl);
}

/* ========================
   CONTACT INFO CARDS
   ======================== */
.contact-card {
  background-color: var(--color-background-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-primary);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-card__title {
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.contact-card__value {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: var(--leading-normal);
}

.contact-card__value a {
  color: var(--color-primary);
  font-weight: var(--weight-medium);
}

.contact-card__value a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ========================
   VALUES / FEATURES LIST
   ======================== */
.value-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.value-item:last-child {
  border-bottom: none;
}

.value-item__title {
  font-size: 1.125rem;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.value-item__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: var(--leading-normal);
}

/* ========================
   INDUSTRIES GRID
   ======================== */
.industry-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  cursor: default;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.industry-card:hover img {
  transform: scale(1.05);
}

.industry-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(transparent, rgba(31, 42, 36, 0.85));
}

.industry-card__name {
  font-size: 1rem;
  font-weight: var(--weight-semibold);
  color: #FFFFFF;
}

/* ========================
   WHY CHOOSE US
   ======================== */
.reason-card {
  padding: var(--space-xl);
  border-left: 3px solid var(--color-secondary);
  background-color: var(--color-background-alt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.reason-card:hover {
  border-left-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.reason-card__title {
  font-size: 1.125rem;
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.reason-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: var(--leading-normal);
}

/* ========================
   PAGE HERO (Interior pages)
   ======================== */
.page-hero {
  position: relative;
  padding: var(--space-4xl) 0 var(--space-3xl);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 42, 36, 0.85) 0%,
    rgba(44, 122, 102, 0.7) 100%
  );
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.page-hero__title {
  font-size: 2.25rem;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--leading-relaxed);
}

/* ========================
   LEGAL PAGES
   ======================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
  line-height: var(--leading-relaxed);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content ul {
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: var(--leading-normal);
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-updated {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background-color: var(--color-background-dark);
  color: var(--color-text-on-dark);
  padding: var(--space-4xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  text-decoration: none;
}

.footer__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: 1.125rem;
  color: #FFFFFF;
}

.footer__desc {
  font-size: 0.875rem;
  color: rgba(245, 240, 230, 0.65);
  line-height: var(--leading-relaxed);
}

.footer__heading {
  font-size: 0.875rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: 0.9375rem;
  color: rgba(245, 240, 230, 0.7);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: #FFFFFF;
}

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: rgba(245, 240, 230, 0.7);
}

.footer__contact-item a {
  color: rgba(245, 240, 230, 0.7);
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--color-secondary);
}

.footer__bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  padding: var(--space-lg) 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer__copyright {
  font-size: 0.8125rem;
  color: rgba(245, 240, 230, 0.45);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(245, 240, 230, 0.45);
  transition: color var(--transition-fast);
}

.footer__legal a:hover {
  color: rgba(245, 240, 230, 0.7);
}

.footer__disclaimer {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(245, 240, 230, 0.06);
}

.footer__disclaimer p {
  font-size: 0.75rem;
  color: rgba(245, 240, 230, 0.3);
  line-height: var(--leading-normal);
  text-align: center;
}

/* ========================
   MOBILE STICKY CTA BAR
   ======================== */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background-color: var(--color-background-dark);
  padding: var(--space-sm) var(--space-md);
  gap: var(--space-sm);
  box-shadow: 0 -4px 16px rgba(31, 42, 36, 0.2);
  align-items: center;
}

.mobile-cta-bar .btn {
  flex: 1;
  text-align: center;
  padding: 12px var(--space-md);
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

/* ========================
   HIGHLIGHT / ACCENT ELEMENTS
   ======================== */
.highlight {
  color: var(--color-secondary);
}

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

.highlight--primary {
  color: var(--color-primary);
}

.divider {
  width: 48px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  margin: var(--space-md) 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  line-height: 1.4;
}

.badge--primary {
  background-color: var(--color-primary-subtle);
  color: var(--color-primary);
}

.badge--accent {
  background-color: rgba(255, 77, 109, 0.1);
  color: var(--color-accent);
}

.badge--gold {
  background-color: rgba(243, 201, 122, 0.2);
  color: var(--color-secondary-dark);
}

/* ========================
   BODY BOTTOM PADDING (mobile CTA bar)
   ======================== */
body {
  padding-bottom: var(--mobile-cta-height);
}

/* ========================
   RESPONSIVE — TABLET (768px+)
   ======================== */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .top-bar {
    display: block;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .split--reverse {
    direction: rtl;
  }

  .split--reverse > * {
    direction: ltr;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1.25rem;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-bar__number {
    font-size: 2.25rem;
  }

  .section {
    padding: var(--space-5xl) 0;
  }

  .section--lg {
    padding: var(--space-6xl) 0;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .page-hero {
    padding: var(--space-5xl) 0 var(--space-4xl);
  }

  .page-hero__title {
    font-size: 2.75rem;
  }

  .industry-card {
    height: 240px;
  }

  .cta-section {
    padding: var(--space-5xl) 0;
  }
}

/* ========================
   RESPONSIVE — DESKTOP (1024px+)
   ======================== */
@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .main-nav__links {
    display: flex;
  }

  .main-nav__cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-cta-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero {
    min-height: 90vh;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .split {
    gap: var(--space-4xl);
  }

  .section {
    padding: var(--space-5xl) 0;
  }

  .section--lg {
    padding: var(--space-6xl) 0;
  }

  .section__title {
    font-size: 2.5rem;
  }

  .page-hero__title {
    font-size: 3rem;
  }

  .industry-card {
    height: 260px;
  }
}

/* ========================
   RESPONSIVE — LARGE DESKTOP (1280px+)
   ======================== */
@media (min-width: 1280px) {
  .container {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .hero__title {
    font-size: 3.75rem;
  }
}

/* ========================
   PRINT STYLES
   ======================== */
@media print {
  .top-bar,
  .main-nav,
  .mobile-cta-bar,
  .mobile-menu {
    display: none !important;
  }

  body {
    padding-bottom: 0;
    background: #fff;
    color: #000;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
  }
}