/* ================= HOME PAGE ================= */

.home-page {
  --home-brown: #4b220c;
  --home-brown-dark: #3a1803;
  --home-tan: #9c6b4f;
  --home-cream: #faf7f4;
  --home-cream-dark: #f3ebe6;
  --home-text: #5a4a42;
  --home-white: #ffffff;
  --home-shadow: 0 8px 30px rgba(75, 34, 12, 0.08);
  --home-radius: 18px;
  background: var(--home-cream);
  color: var(--home-text);
  font-family: "Poppins", sans-serif;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--home-brown-dark);
}

.home-section {
  padding: 70px 5%;
}

.home-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.home-section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.home-section-head p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--home-text);
}

/* ================= HERO SPLIT ================= */

.home-hero-split {
  background: #faf7f4;
  padding: 0;
}

.home-hero-split-bg {
  position: relative;
  min-height: clamp(500px, 38vw, 600px);
  display: flex;
  align-items: center;
  padding: 52px 5% 48px;
  background: #faf7f4;
  overflow: hidden;
}

.home-hero-split-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 48%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #faf7f4 0%,
    #faf7f4 72%,
    rgba(250, 247, 244, 0.75) 88%,
    transparent 100%
  );
}

.home-hero-split-bg::after {
  content: "";
  position: absolute;
  top: 50%;
  right: max(0px, calc((100vw - 1250px) / 2));
  transform: translateY(-50%);
  width: min(58vw, 700px);
  height: 92%;
  max-height: 560px;
  z-index: 0;
  pointer-events: none;
  background: url("../img/hero-banner.png") right center / contain no-repeat;
}

.home-hero-split-inner {
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.home-hero-split-content {
  max-width: 540px;
}

.home-hero-est {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b5e3c;
  margin-bottom: 0;
}

.home-hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.home-iso-hero-badge,
.home-page a.home-iso-hero-badge,
.home-page a.home-iso-hero-badge:link,
.home-page a.home-iso-hero-badge:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, #fffefb 0%, #f3ebe2 100%);
  color: #3a1803 !important;
  border: 1.5px solid #c9a84c;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(196, 168, 76, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-iso-hero-badge i {
  font-size: 13px;
  color: #b8922e;
}

.home-iso-hero-badge:hover,
.home-page a.home-iso-hero-badge:hover {
  color: #3a1803 !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  border-color: #b8922e;
  box-shadow: 0 8px 22px rgba(196, 168, 76, 0.28);
}

.home-hero-split-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #1a1209;
  margin-bottom: 14px;
}

.home-hero-split-sub {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
  line-height: 1.55;
  color: #8b5e3c;
  margin-bottom: 18px;
}

.home-hero-split-text {
  font-size: 14px;
  line-height: 1.8;
  color: #6b5d55;
  margin-bottom: 28px;
}

.home-hero-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.home-hero-split-actions .home-btn i {
  font-size: 12px;
}

.home-btn-hero-secondary {
  background: #f5efe6;
  color: #3d2b1f;
  border: 1.5px solid #3d2b1f;
  box-shadow: none;
}

.home-btn-hero-secondary:hover {
  background: #fff;
  color: #3d2b1f;
  border-color: #3d2b1f;
  transform: translateY(-2px);
}

.home-hero-split-features {
  background: #f0ebe6;
  padding: 22px 5%;
  margin-top: 8px;
}

.home-hero-split-features-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.home-hero-split-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-hero-split-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 94, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5e3c;
  font-size: 17px;
}

.home-hero-split-feature strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3d2b1f;
  line-height: 1.35;
  margin-bottom: 2px;
}

.home-hero-split-feature > div > span {
  font-size: 11.5px;
  color: #8a7b72;
  line-height: 1.4;
}

/* ================= SHOWCASE ================= */

.home-showcase {
  padding: 50px 5% 70px;
  background: linear-gradient(180deg, #fff 0%, var(--home-cream) 100%);
}

.home-showcase .home-hero-content h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 520px;
}

.home-hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.home-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--home-tan);
  margin-bottom: 14px;
}

.home-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 520px;
}

.home-hero-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 500px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.home-btn-primary {
  background: var(--home-brown);
  color: #fff;
  border: 2px solid var(--home-brown);
  box-shadow: 0 10px 24px rgba(75, 34, 12, 0.2);
}

.home-btn-primary:hover {
  background: var(--home-brown-dark);
  border-color: var(--home-brown-dark);
  color: #fff;
  transform: translateY(-2px);
}

.home-btn-outline {
  background: transparent;
  color: var(--home-brown);
  border: 2px solid var(--home-brown);
}

.home-btn-outline:hover {
  background: var(--home-brown);
  color: #fff;
  transform: translateY(-2px);
}

.home-btn-light {
  background: #fff;
  color: var(--home-brown);
  border: 2px solid #fff;
}

.home-btn-light:hover {
  background: var(--home-cream);
  color: var(--home-brown-dark);
}

.home-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.home-btn-ghost:hover {
  background: #fff;
  color: var(--home-brown);
}

.home-hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.home-hero-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.home-hero-feature i {
  font-size: 18px;
  color: var(--home-tan);
}

.home-hero-feature span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--home-brown-dark);
}

.home-hero-visual {
  position: relative;
}

.home-hero-card {
  position: relative;
  background: var(--home-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--home-shadow);
  border: 1px solid rgba(156, 107, 79, 0.12);
}

.home-hero-carousel {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.home-hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.home-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  color: var(--home-brown-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 8px;
}

.home-hero-caption {
  padding: 18px 22px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-text);
}

.home-hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 18px;
}

.home-hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.home-hero-dots button.active {
  background: var(--home-brown);
  transform: scale(1.15);
}

/* ================= ABOUT US ================= */

.home-about {
  background: var(--home-white);
}

.home-about-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.home-about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 520px;
}

.home-about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--home-text);
  margin-bottom: 14px;
  max-width: 560px;
}

.home-about-content p:last-child {
  margin-bottom: 0;
}

.home-about-card {
  position: relative;
  background: var(--home-white);
  border-radius: 24px;
  overflow: hidden;
}

.home-about-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.home-about-badge,
.home-page a.home-about-badge,
.home-page a.home-about-badge:link,
.home-page a.home-about-badge:visited {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fffefb 0%, #f8f0e6 100%);
  color: #3a1803 !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1.5px solid #c9a84c;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(58, 24, 3, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-about-badge i {
  color: #b8922e;
  font-size: 15px;
}

.home-about-badge:hover,
.home-page a.home-about-badge:hover {
  color: #3a1803 !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(58, 24, 3, 0.18);
}

.home-about-iso {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(145deg, #fffefb 0%, #faf4ec 100%);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-left: 4px solid #c9a84c;
  max-width: 560px;
  box-shadow: 0 8px 28px rgba(58, 24, 3, 0.05);
}

.home-about-iso h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-about-iso h3::before {
  content: "\f559";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: #b8922e;
}

.home-about-iso p {
  margin-bottom: 18px;
}

.home-about-iso p strong {
  color: var(--home-brown-dark);
}

.home-about-iso-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-about-iso-btn,
.home-page a.home-about-iso-btn {
  align-self: flex-start;
  font-size: 13px;
  padding: 11px 22px;
  min-height: 44px;
  text-decoration: none !important;
}

.home-about-iso-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-about-iso-download,
.home-page a.home-about-iso-download,
.home-page a.home-about-iso-download:link,
.home-page a.home-about-iso-download:visited {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid rgba(139, 94, 60, 0.22);
  color: #3d2b1f !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  transition: 0.25s ease;
  box-shadow: 0 2px 8px rgba(58, 24, 3, 0.04);
}

.home-about-iso-download:hover,
.home-page a.home-about-iso-download:hover {
  color: #3a1803 !important;
  text-decoration: none !important;
  border-color: #c9a84c;
  background: #fffdf8;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(196, 168, 76, 0.15);
}

.home-about-iso-download i {
  font-size: 11px;
  color: #b8922e;
}

.home-about-caption {
  padding: 18px 22px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--home-text);
  margin: 0;
}

/* ================= SHARED EYEBROW ================= */

.home-eyebrow {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--home-tan);
  margin-bottom: 14px;
}

.home-eyebrow-center {
  text-align: center;
}

.home-eyebrow-light {
  color: rgba(255, 255, 255, 0.65);
}

/* ================= TRUST PREMIUM ================= */

.home-trust-premium {
  background: #f9f7f2;
  padding: 90px 5%;
}

.home-trust-premium-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.home-trust-premium-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 480px;
}

.home-trust-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--home-text);
  margin-bottom: 36px;
  max-width: 520px;
}

.home-trust-premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}

.home-trust-premium-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.home-trust-premium-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--home-tan);
  font-size: 22px;
}

.home-trust-premium-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--home-brown-dark);
  margin-bottom: 6px;
  line-height: 1.35;
}

.home-trust-premium-item p {
  font-size: 13px;
  line-height: 1.6;
  color: #7a6a62;
  margin: 0;
}

.home-trust-premium-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-trust-premium-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(75, 34, 12, 0.12);
}

.home-trust-premium-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.home-trust-quote {
  background: var(--home-brown-dark);
  padding: 28px 32px;
  text-align: center;
}

.home-trust-quote p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(15px, 2vw, 17px);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= PROCESS PREMIUM ================= */

.home-process-premium {
  background: #f9f7f2;
  padding: 90px 5% 100px;
}

.home-process-premium-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.home-process-premium-inner h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 56px;
}

.home-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.home-process-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 0;
  border-top: 2px dotted rgba(156, 107, 79, 0.45);
  z-index: 0;
}

.home-process-step {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-process-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(156, 107, 79, 0.35);
  background: #f9f7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--home-tan);
  margin-bottom: 14px;
}

.home-process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--home-brown);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.home-process-step h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--home-brown-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.home-process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: #7a6a62;
  margin: 0;
  max-width: 220px;
}

/* ================= WHY CHOOSE ================= */

.home-choose {
  background: var(--home-white);
}

.home-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
}

.home-choose-card {
  background: var(--home-cream);
  border: 1px solid rgba(156, 107, 79, 0.1);
  border-radius: var(--home-radius);
  padding: 24px 18px;
  text-align: center;
  transition: 0.3s ease;
}

.home-choose-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow);
}

.home-choose-card i {
  font-size: 24px;
  color: var(--home-tan);
  margin-bottom: 14px;
}

.home-choose-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}

.home-choose-card p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  color: #777;
}

/* ================= INDUSTRIES ================= */

.home-industries {
  background: var(--home-cream);
}

.home-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1140px;
  margin: 0 auto;
}

.home-industry-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--home-white);
  border: 1px solid rgba(156, 107, 79, 0.12);
  border-radius: 50px;
  padding: 14px 18px;
  transition: 0.3s ease;
  box-shadow: 0 4px 14px rgba(75, 34, 12, 0.04);
}

.home-industry-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(156, 107, 79, 0.25);
  box-shadow: var(--home-shadow);
}

.home-industry-pill i {
  font-size: 16px;
  color: var(--home-tan);
  flex-shrink: 0;
}

.home-industry-pill span {
  font-size: 13px;
  font-weight: 600;
  color: var(--home-brown-dark);
  line-height: 1.3;
}

/* ================= CTA PREMIUM ================= */

.home-cta-premium {
  padding: 40px 5% 52px;
  background: #faf7f4;
}

.home-cta-premium-inner {
  max-width: 1250px;
  margin: 0 auto;
  background: #faf9f6;
  border: 1px solid rgba(156, 107, 79, 0.1);
  border-radius: 24px;
  padding: 36px 48px 32px;
  box-shadow: 0 4px 24px rgba(75, 34, 12, 0.04);
}

/* Top: image + intro + features */
.home-cta-premium-top {
  display: grid;
  grid-template-columns: 0.88fr 1.05fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 12px;
}

.home-cta-premium-visual {
  border-radius: 14px;
  overflow: visible;
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-cta-premium-visual img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.home-cta-premium-intro {
  text-align: center;
  padding: 0 8px;
}

.home-cta-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.home-cta-badge-line {
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: rgba(139, 94, 60, 0.35);
}

.home-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8b5e3c;
  white-space: nowrap;
}

.home-cta-badge i {
  font-size: 9px;
}

.home-cta-premium-intro h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 10px;
  color: #3d2b1f;
}

.home-cta-premium-intro p {
  font-size: 14px;
  line-height: 1.65;
  color: #6b5d55;
  margin: 0 auto;
  max-width: 340px;
}

.home-cta-premium-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 8px;
}

.home-cta-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(156, 107, 79, 0.12);
}

.home-cta-feature:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.home-cta-feature:first-child {
  padding-top: 0;
}

.home-cta-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5efe7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5e3c;
  font-size: 18px;
}

.home-cta-feature strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3d2b1f;
  margin-bottom: 5px;
  line-height: 1.35;
}

.home-cta-feature p {
  font-size: 12px;
  line-height: 1.6;
  color: #8a7b72;
  margin: 0;
}

/* White CTA bar */
.home-cta-premium-bar {
  display: grid;
  grid-template-columns: 1.25fr auto 0.8fr;
  gap: 28px;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 32px;
  box-shadow: 0 8px 32px rgba(75, 34, 12, 0.08);
  margin: 14px 0 22px;
  position: relative;
}

.home-cta-bar-left {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.home-cta-bar-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5efe7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5e3c;
  font-size: 24px;
}

.home-cta-bar-left h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #3d2b1f;
  margin-bottom: 8px;
  line-height: 1.3;
}

.home-cta-bar-left p {
  font-size: 13px;
  line-height: 1.65;
  color: #8a7b72;
  margin: 0;
  max-width: 280px;
}

.home-cta-bar-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 2px 28px;
  border-left: 1px solid rgba(156, 107, 79, 0.14);
  border-right: 1px solid rgba(156, 107, 79, 0.14);
}

.home-cta-bar-checks span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #3d2b1f;
  white-space: nowrap;
}

.home-cta-bar-checks i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #8b5e3c;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-cta-bar-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  min-width: 200px;
}

.home-cta-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 0 32px;
  border-radius: 50px;
  background: #3d2b1f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;
}

.home-cta-bar-btn:hover {
  background: #4b220c;
  color: #fff;
  transform: translateY(-2px);
}

.home-cta-bar-btn i {
  font-size: 12px;
}

.home-cta-bar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #8b5e3c;
  text-decoration: none;
  transition: 0.3s ease;
}

.home-cta-bar-link:hover {
  color: #3d2b1f;
}

.home-cta-bar-link i {
  font-size: 12px;
}

/* Trust bar */
.home-cta-premium-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 4px;
}

.home-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid rgba(156, 107, 79, 0.14);
}

.home-cta-trust-item:first-child {
  padding-left: 0;
}

.home-cta-trust-item:last-child {
  border-right: none;
  padding-right: 0;
}

.home-cta-trust-item > i {
  font-size: 24px;
  color: #8b5e3c;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.home-cta-trust-item strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3d2b1f;
  line-height: 1.35;
  margin-bottom: 2px;
}

.home-cta-trust-item span {
  font-size: 11px;
  color: #8a7b72;
  line-height: 1.4;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
  .home-hero-split-bg {
    min-height: auto;
    padding: 44px 5% 380px;
    align-items: flex-start;
  }

  .home-hero-split-bg::before {
    width: 100%;
    height: 52%;
    bottom: auto;
    background: linear-gradient(
      180deg,
      #faf7f4 0%,
      #faf7f4 65%,
      rgba(250, 247, 244, 0.6) 85%,
      transparent 100%
    );
  }

  .home-hero-split-bg::after {
    top: auto;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: min(92%, 640px);
    height: 340px;
    max-height: none;
    background-position: center bottom;
  }

  .home-hero-split-content {
    max-width: 100%;
  }

  .home-hero-split-features-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .home-hero-wrap,
  .home-about-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-trust-premium-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-trust-premium-content h2,
  .home-trust-intro {
    max-width: none;
  }

  .home-trust-premium-image img {
    height: 400px;
  }

  .home-process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .home-process-timeline::before {
    display: none;
  }

  .home-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-cta-premium-inner {
    padding: 28px 24px 24px;
  }

  .home-cta-premium-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-cta-premium-visual img {
    max-height: 320px;
  }

  .home-cta-premium-intro p {
    max-width: none;
  }

  .home-cta-premium-features {
    padding-left: 0;
  }

  .home-cta-premium-bar {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 16px;
    padding: 22px 20px;
  }

  .home-cta-bar-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .home-cta-bar-left p {
    max-width: none;
  }

  .home-cta-bar-checks {
    border-left: none;
    border-right: none;
    padding: 0;
    align-items: center;
  }

  .home-cta-premium-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .home-cta-trust-item {
    border-right: none;
    padding: 0;
  }

  .home-about-content h2,
  .home-about-content p {
    max-width: none;
  }

  .home-about-iso {
    max-width: none;
  }

  .home-about-iso-btn {
    align-self: stretch;
    justify-content: center;
  }

  .home-hero h1,
  .home-hero-text {
    max-width: none;
  }

  .home-hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-hero-split-bg {
    padding: 36px 4% 32px;
    min-height: 460px;
    align-items: flex-start;
  }

  .home-hero-split-bg::before {
    z-index: 1;
    width: 56%;
    height: auto;
    bottom: 0;
    background: linear-gradient(
      90deg,
      #faf7f4 0%,
      #faf7f4 58%,
      rgba(250, 247, 244, 0.82) 78%,
      transparent 100%
    );
  }

  .home-hero-split-bg::after {
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    background-position: right -6% center;
    background-size: auto 90%;
  }

  .home-hero-split-inner {
    position: relative;
    z-index: 2;
  }

  .home-hero-split-content {
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .home-hero-split-text {
    font-size: 12.5px;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .home-hero-split-actions {
    flex-direction: column;
    gap: 10px;
    max-width: 240px;
  }

  .home-hero-split-actions .home-btn {
    width: 100%;
    max-width: none;
    font-size: 13px;
    padding: 12px 16px;
  }

  .home-hero-split-features-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-hero-split-features {
    padding: 20px 4%;
  }

  .home-section,
  .home-showcase,
  .home-cta-premium {
    padding: 36px 4% 44px;
  }

  .home-cta-premium-inner {
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  .home-cta-premium-visual img {
    max-height: 220px;
  }

  .home-cta-feature-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .home-cta-bar-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .home-cta-premium-trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-hero-features,
  .home-industries-grid {
    grid-template-columns: 1fr;
  }

  .home-trust-premium-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-trust-premium-image img {
    height: 300px;
  }

  .home-process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-choose-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-carousel,
  .home-about-card img {
    height: 300px;
  }

  .home-hero-actions {
    flex-direction: column;
  }

  .home-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .home-hero-split-bg {
    min-height: 440px;
  }

  .home-hero-split-bg::after {
    background-position: right -12% center;
    background-size: auto 82%;
  }

  .home-hero-split-actions {
    max-width: 220px;
  }
}
