ï»¿/* --------------------------------------------------
   Main stylesheet for Seon Pharma
   Organized by sections + responsive breakpoints
-------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Geist-Regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #111827;
}

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

button,
a {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------------------
   Header / Top bar
--------------------- */

.top-header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 20px 0;
  border-radius: 50%;
  overflow: hidden;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-section img {
  width: 120px;
  height: auto;
}

.divider {
  width: 2px;
  height: 30px;
  background: #f58220;
  margin: 0 18px;
}

.logo-section h1 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: 0.5px;
  margin: 0;
  font-family: "Geist-Light";
}

.mail-section {
  display: flex;
  align-items: center;
}

.mail-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f7931e;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  margin-right: 18px;
}

.mail-icon img {
  width: 24px;
  height: 24px;
}

.mail-text h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-family: "Geist-Bold";
  font-weight: 700;
  color: var(--dark-green);
}

.mail-text p {
  font-family: "Geist-Regular";
  margin: 0;
  font-size: 16px;
  color: var(--gray-500);
  text-decoration: none;
}

.mail-text a {
  margin: 0;
  text-decoration: none;
  font-size: 16px;
  font-family: "Geist-Regular";
  color: var(--gray-500);
}

.navbar {
  background: #1d651f;
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.navbar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
}

.navbar ul li a{
  padding: 20px;
}

.navbar ul li{
    display: flex;
}

.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  background-color: var(--dark-green);
}

@media (max-width: 768px) {
  .divider {
    margin: 0 12px;
  }

  .navbar ul li a {
    padding: 10px;
    font-size: 14px;
  }

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

  .logo-container {
    padding: 0;
    width: 50px;
    height: 50px;
  }

  .mail-text {
    display: none;
  }
}

/* ---------------------
   Hero section
--------------------- */

.hero {
  width: 100%;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background-color: var(--dark-green);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 16%;
  transform: translateY(-50%);
  max-width: 800px;
  color: #fff;
  z-index: 2;
}

.hero-content h1 {
  font-size: 54px;
  font-family: "Geist-Bold";
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #fff;
}

.hero-content p {
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn img {
  width: 24px;
  height: 24px;
}

.slider-btn:hover {
  background: #1d651f;
}

.prev {
  left: 40px;
  transform: translateY(-50%) rotate(180deg);
}

.next {
  right: 40px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 35px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  padding: 10px 15px;
  border-radius: 999px;
  background-color: #fff;
}

.slider-dots span {
  width: 14px;
  height: 14px;
  border: 2px solid var(--black);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dots span.active {
  background: var(--black);
}

/* ---------------------
   Section utilities
--------------------- */

h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin: 0 0 24px;
}

h2 .highlight {
  color: var(--orange);
}

.intro {
  color: var(--black);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 420px;
  font-family: "Geist-Light";
  font-weight: 600;
}

.intro strong {
  color: var(--gray-900);
  font-family: "Geist-SemiBold";
  font-weight: 600;
}

/* ---------------------
   About section
--------------------- */

.about-section {
  background: #ffffff;
}

.about-container {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-content h2 {
  font-size: 44px;
  color: var(--black);
  margin-bottom: 24px;
  font-family: "Geist-Bold";
}

.about-content h2 .highlight {
  font-size: 44px;
  margin-bottom: 24px;
  font-family: "Geist-Light";
}

.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 24px;
  height: 24px;
}

.feature h3 {
  font-size: 16px;
  font-family: "Geist-Bold";
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 4px;
}

.feature p {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
  margin: 0;
}

.mainpage-about-image-wrap {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
}

.mainpage-about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap .about-image-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 32px;
  }

  .about-container {
    padding: 96px 24px;
    grid-template-columns: 1fr;
  }
}

/* ---------------------
   Advantage section
--------------------- */

.advantage-section {
  background: var(--orange);
  position: relative;
  overflow: hidden;
  padding: 64px 24px;
}

.advantage-container {
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
}

.advantage-section .badge {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  font-family: "Geist-SemiBold";
  padding: 10px 22px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.advantage-section h2 {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 40px;
  max-width: 620px;
  font-family: "Geist-Bold";
}

.capsule-decor {
  position: absolute;
  top: -80px;
  right: -10px;
  width: 260px;
  height: 260px;
  opacity: 0.95;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  margin-top: 32px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-number {
  font-family: "Geist-Bold";
  font-size: 28px;
  color: #ffffff;
  margin: 0 0 6px;
}

.stat-label {
  font-family: "Geist-light";
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
}


@media (max-width: 900px) {
  .advantage-section h2 {
    font-size: 36px;
  }
  .advantage-section {
    padding: unset;
  }

  .capsule-decor {
    display: none;
  }

  .advantage-container {
    padding: 40px 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }
}

/* ---------------------
   Offer section
--------------------- */

.offer-section {
  max-width: 1152px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.offer-section h2 {
  font-family: "Geist-Bold";
  font-size: 40px;
  margin-bottom: 32px;
  color: var(--black);
}

.offer-row {
  display: flex;
  gap: 16px;
  height: 580px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  flex: 1 1 0;
  transition: flex-grow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background: #e5e7eb;
}

.offer-card.is-active {
  flex-grow: 3;
}

.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offer-card:hover img {
  transform: scale(1.04);
}

.offer-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
  pointer-events: none;
}

.offer-card.is-active .offer-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.offer-caption-row {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.offer-caption {
  color: #ffffff;
  font-size: 22px;
  font-family: "Geist-Regular";
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.offer-arrow-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #f97316;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.offer-arrow-btn svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-card-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #ffffff;
  font-size: 14px;
  font-family: "Geist-SemiBold";
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.offer-card.is-active .offer-card-label {
  opacity: 0;
}

/* ---------------------
   Workflow section
--------------------- */

.workflow-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.workflow-section .badge {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: 13px;
  font-family: "Geist-Bold";
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  margin-bottom: 24px;
}

.workflow-section h2 {
  font-size: 44px;
  color: var(--orange);
  margin-bottom: 40px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.workflow-card {
  border: 1.5px solid var(--orange);
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.workflow-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.workflow-card-body {
  padding: 24px 24px 28px;
}

.workflow-card h3 {
  font-family: "Geist-Bold";
  font-size: 20px;
  color: var(--orange);
  margin: 0 0 12px;
  letter-spacing: 0.3px;
}

.workflow-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  font-family: "Geist-Light";
  font-weight: 600;
}

@media (max-width: 768px) {
  .workflow-section .badge {
    font-size: 12px;
    padding: 8px 18px;
    margin-bottom: 10px;
  }
  .workflow-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }

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

/* ---------------------
   Stats section
--------------------- */

.stats-section {
  background: var(--green);
  padding: 48px 0px;
}

.stats-container {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  text-align: center;
}

.stats-container .stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: end;
}

.stats-container .stat-number {
  font-size: 34px;
  margin: 0 0 8px;
}

.stats-container .stat-label {
  color: #d1e5d3;
}

@media (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------------
   Products section
--------------------- */

.products-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.products-section .badge {
  background: var(--bg);
  color: var(--emerald-text);
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 9px 18px;
  margin-bottom: 20px;
}

.products-section h2 {
  font-size: 36px;
  color: var(--dark-green);
  margin-bottom: 32px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #e5e7eb;
  opacity: 0;
  transform: translateY(14px);
  animation: cardIn 0.45s ease forwards;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
}

.product-card-overlay span {
  color: #e8edf7;
  font-size: 14.5px;
  line-height: 1.3;
  font-family: "Geist-Medium";
  font-weight: 500;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.load-more-btn {
  background: transparent;
  border: 1.5px solid var(--dark-green);
  color: var(--dark-green);
  font-size: 14px;
  font-family: "Geist-Bold";
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.load-more-btn:hover,
.load-more-btn:focus-visible {
  background: var(--dark-green);
  color: #ffffff;
}

.load-more-wrap.hidden {
  display: none;
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.work-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
  }
 
  .work-product-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    background-size: cover;
    background-position: center;
  }
 
  .work-product-card:focus-visible {
    box-shadow: 0 0 0 3px var(--amber);
  }
 
  /* decorative pill icon */
  .work-product-card .work-product-icon {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 160px;
    height: 160px;
    color: rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease, color 0.5s ease;
  }
  .work-product-card:hover .work-product-icon,
  .work-product-card:focus-visible .work-product-icon {
    transform: translateY(-50%) rotate(45deg) scale(1.1);
    color: rgba(255, 255, 255, 0.14);
  }
 
  /* base scrim so text stays legible */
  .work-product-card .work-product-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(10, 8, 6, 0.92) 0%,
      rgba(10, 8, 6, 0.55) 40%,
      rgba(10, 8, 6, 0.05) 70%
    );
  }
 
  /* extra darkening on hover */
  .work-product-card .work-product-scrim-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .work-product-card:hover .work-product-scrim-hover,
  .work-product-card:focus-visible .work-product-scrim-hover {
    opacity: 1;
  }
 
  .work-product-card .work-product-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
  }
 
  /* featured tile: flat solid card, content anchored top instead of
     bottom, no product photo/icon — visually distinct from the photo
     tiles so it doesn't get lost in the grid */
  .work-product-card.work-product-featured {
    background: linear-gradient(155deg, #4a4038 0%, #1e1a16 100%) !important;
  }
  .work-product-card.work-product-featured .work-product-icon,
  .work-product-card.work-product-featured .work-product-scrim,
  .work-product-card.work-product-featured .work-product-scrim-hover {
    display: none;
  }
  .work-product-card.work-product-featured .work-product-content {
    justify-content: flex-start;
    padding-top: 24px;
  }
  .work-product-card.work-product-featured .work-product-name {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .work-product-card.work-product-featured .work-product-arrow-btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
    margin-top: 0;
  }
 
  .work-product-card .work-product-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(252, 211, 130, 0.9);
    margin-bottom: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .work-product-card.work-product-featured .work-product-eyebrow {
    opacity: 1;
  }
  .work-product-card:hover .work-product-eyebrow,
  .work-product-card:focus-visible .work-product-eyebrow {
    opacity: 1;
  }
 
  .work-product-card .work-product-name {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
  }
 
  /* description panel: collapses to 0fr, expands on hover/focus, always open if featured */
  .work-product-card .work-product-desc-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
  }
  .work-product-card.work-product-featured .work-product-desc-wrap {
    grid-template-rows: 1fr;
  }
  .work-product-card:hover .work-product-desc-wrap,
  .work-product-card:focus-visible .work-product-desc-wrap {
    grid-template-rows: 1fr;
  }
 
  .work-product-card .work-product-desc-inner {
    overflow: hidden;
  }
 
  .work-product-card .work-product-desc {
    padding-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    max-width: 90%;
    margin: 0;
  }
 
  .work-product-card .work-product-arrow-btn {
    margin-top: 12px;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .work-product-card .work-product-arrow-btn:hover {
    transform: scale(1.08);
  }
  .work-product-card .work-product-arrow-btn:active {
    transform: scale(0.95);
  }
 
  .work-product-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
  }
 
  .work-product-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--teal);
    background: #fff;
    color: var(--teal);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .work-product-load-more:hover {
    background: var(--teal);
    color: #fff;
  }

   .work-product-wrap{
    max-width:1080px;
    margin:0 auto;
    padding: 40px 0px;
}
 
  .work-product-badge{
    display:inline-block;
    background:var(--emerald-light);
    color:var(--emerald-text);
    font-size:12px;
    font-weight:700;
    letter-spacing:.08em;
    padding:7px 16px;
    border-radius:20px;
    margin-bottom:18px;
  }
 
  h1{
    color:var(--dark-green);
    font-size:44px;
    font-weight:800;
    margin:0 0 32px;
    letter-spacing:-0.5px;
  }
 
  .work-product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
  }
 
  /* ---- Card ---- */
  .work-product-card{
    position:relative;
    aspect-ratio:1/1.25;
    border-radius:16px;
    overflow:hidden;
    cursor:pointer;
    background-size:cover;
    background-position:center;
    box-shadow:0 1px 3px rgba(0,0,0,.1);
    animation:fadeIn .4s ease both;
  }
 
  /* background image layer (swap via inline style or img) */
  .work-product-card .work-product-bg-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
  }
  .work-product-card:hover .work-product-bg-img{
    transform:scale(1.06);
  }
 
  /* dark gradient overlay, deepens on hover */
  .work-product-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
      rgba(10,10,10,.85) 0%,
      rgba(10,10,10,.55) 32%,
      rgba(10,10,10,.05) 60%,
      rgba(10,10,10,0) 75%);
    transition:background .35s ease;
    z-index:1;
  }
  .work-product-card:hover::before{
    background:linear-gradient(to top,
      rgba(8,8,8,.92) 0%,
      rgba(8,8,8,.78) 45%,
      rgba(8,8,8,.35) 70%,
      rgba(8,8,8,.05) 100%);
  }
 
  .work-product-card-content{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:2;
    color:#fff;
    display:flex;
    flex-direction:column;
  }
 
  .work-product-card-content h3{
    margin:0;
    font-size:22px;
    font-weight:400;
    letter-spacing:-0.2px;
    text-shadow:0 1px 4px rgba(0,0,0,.4);
    font-family:"Geist-Regular";
  }
 
  .work-product-card-content p{
    margin:10px 0 0;
    font-size:13.5px;
    line-height:1.55;
    color:rgba(255,255,255,.9);
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:max-height .4s ease, opacity .35s ease .05s, margin .4s ease;
    font-family:"Geist-Regular";
  }
 
  .work-product-card:hover .work-product-card-content p{
    max-height:160px;
    opacity:1;
    margin-bottom:16px;
  }
 
  .work-product-arrow-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--orange);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:3;
    opacity:0;
    max-height:0;
    transform:translateY(10px) scale(.85);
    transition:opacity .3s ease, transform .3s ease, max-height .4s ease;
    box-shadow:0 4px 10px rgba(0,0,0,.25);
    overflow:hidden;
    margin-left: auto;
  }
  .work-product-card:hover .work-product-arrow-btn{
    opacity:1;
    max-height:42px;
    transform:translateY(0) scale(1);
  }
  .work-product-arrow-btn svg{width:18px;height:18px;flex-shrink:0;}
 
  @keyframes fadeIn{
    from{opacity:0; transform:translateY(8px);}
    to{opacity:1; transform:translateY(0);}
  }
 
  .work-product-load-more-wrap{
    display:flex;
    justify-content:center;
    margin-top:44px;
  }
 
  .work-product-load-more{
    display:inline-block;
    border:1.5px solid var(--dark-green);
    color:var(--dark-green);
    background:transparent;
    font-weight:700;
    font-size:14px;
    padding:12px 30px;
    border-radius:24px;
    cursor:pointer;
    text-decoration:none;
    transition:background .15s ease, color .15s ease;
  }
  .work-product-load-more:hover{
    background:var(--dark-green);
    color:#fff;
  }
  .work-product-load-more:disabled{
    opacity:.45;
    cursor:default;
    background:transparent;
    color:var(--dark-green);
  }
 
  @media (max-width:900px){
    .work-product-grid{grid-template-columns:repeat(2,1fr);}
    h1{font-size:34px;}
  }
  @media (max-width:520px){
    .work-product-grid{grid-template-columns:1fr;}
    /* on touch devices, show description by default since there's no hover */
    .work-product-card-content p{max-height:160px;opacity:1;margin-bottom:16px;}
    .work-product-arrow-btn{opacity:1;max-height:42px;transform:none;}
  }

/* ---------------------
   Footer and carousel
--------------------- */

.logo-carousel-section,
.footer-main,
.footer-card,
.footer-col,
.footer-bottom {
  box-sizing: border-box;
}

.footer-card p{
  color: var(--black);
  font-size: 16px;
  font-family: "Geist-Light";
  font-weight: 600;
  line-height: 1.6;
}

.logo-carousel-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  background: #111111;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.carousel-arrow:hover {
  background: #2a2a2a;
}

.carousel-arrow:active {
  transform: scale(0.94);
}

.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

.logo-slide img,
.logo-slide .logo-text {
  max-height: 42px;
  width: auto;
  filter: grayscale(0%);
  opacity: 0.95;
}

.site-footer {
  background: var(--orange);
}

.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  display: grid;
  grid-template-columns: 300px repeat(1, 1fr);
  gap: 100px;
  align-items: center;
}

.footer-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-card-logo-container {
  max-width: 130px;
  margin-bottom: 20px;
}

.footer-card-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-col-container {
  display: grid;
  grid-template-columns: 150px repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-logo {
  width: 110px;
  margin: 0 auto 4px;
  display: block;
}

.footer-wordmark {
  font-size: 30px;
  font-family: "Geist-Bold";
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: 0.5px;
  margin: 4px 0 0;
  line-height: 1;
}

.footer-subtag {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--dark-green);
  text-transform: lowercase;
  margin: 2px 0 18px;
}

.footer-col address,
.footer-col p,
.footer-col a.footer-email {
  color: var(--bg);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 20px;
  font-family: "Geist-Light";
  font-weight: 600;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 21px;
  font-family: "Geist-Bold";
  font-weight: 700;
  margin: 0 0 20px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li a,
.footer-col a.footer-email {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.footer-col ul li a:hover,
.footer-col a.footer-email:hover {
  text-decoration: underline;
}

.footer-bottom {
  background: var(--dark-green);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col-container {
    grid-template-columns: 1fr;
  }
}

/* ---------------------
   Responsive breakpoints
--------------------- */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 54px;
  }

  .hero-content p {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .hero-slider {
    height: 520px;
  }

  .hero-content {
    left: 8%;
    right: 8%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .slider-btn {
    width: 55px;
    height: 55px;
    bottom: 4%;
    transform: unset;
    top: unset;
  }

  .prev {
    transform: rotate(180deg) !important;
  }

  .top-header {
    gap: 20px;
    padding: 24px 24px 20px;
  }

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

  .logo-section h1 {
    font-size: 12px;
  }

  .navbar ul {
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 430px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .prev {
    left: 15px;
    transform: rotate(180deg) !important;
  }

  .next {
    right: 15px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .mail-section {
    flex-direction: column;
    text-align: center;
  }

  .mail-icon {
    margin: 0;
  }

  .navbar ul {
    padding: 15px 0;
  }

  .offer-row {
    flex-direction: column;
    height: auto;
  }

  .offer-card {
    height: 140px;
    flex-grow: 0 !important;
  }

  .offer-card.is-active {
    height: 420px;
  }

  .about-image-wrap .about-image-main {
    height: 100vw;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    height: 380px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .slider-dots {
    bottom: 24px;
    gap: 10px;
    padding: 8px 12px;
  }

  .slider-dots span {
    width: 8px;
    height: 8px;
  }

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

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

  .stats-container {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .logo-slide {
    padding: 0 18px;
  }

  .logo-slide img,
  .logo-slide .logo-text {
    max-height: 30px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 320px;
  }

  .top-header {
    padding: 18px 18px 16px;
  }

  .navbar ul {
    gap: 16px;
  }

  .about-container {
    padding: 40px 18px;
  }
}

.page-hero {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
 
  .page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
 
  .page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
  }
 
  .page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px 32px;
    max-width: 1100px;
    min-width: 1110px;
    margin: 0 auto;
  }
 
  .breadcrumb {
    position: absolute;
    top: 22px;
    left: calc(100vw - 1332px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
  }
 
  .breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
  }
 
  .breadcrumb a:hover {
    text-decoration: underline;
  }
 
  .breadcrumb .sep {
    color: rgba(255,255,255,0.7);
  }
 
  .breadcrumb .current {
    color: #ffffff;
    font-family: "Geist-Bold";
    font-weight: 700;
  }
 
  .page-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
  }
 
  @media (max-width: 640px) {
    .page-hero { height: 180px; }
    .page-hero h1 { font-size: 38px; }
    .breadcrumb { top: 16px; left: 20px; font-size: 14px; }
    .page-hero-content { padding: 0 20px 24px; }
  }

  .products-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 24px 64px;
  }
 
  /* Top controls */
  .controls-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
 
  .search-box {
    display: flex;
    align-items: center;
    border: 1.5px solid #d1d5db;
    border-radius: 9999px;
    padding: 6px 6px 6px 18px;
    min-width: 260px;
  }
 
  .search-box input {
    border: none;
    outline: none;
    font-size: 14px;
    flex: 1;
    color: #111827;
    background: transparent;
  }
 
  .search-box input::placeholder {
    color: #9ca3af;
  }
 
  .search-btn {
    width: 34px;
    height: 34px;
    border-radius: 9999px;
    background: var(--dark-green);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .search-btn svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.4;
  }
 
  .sort-box {
    position: relative;
  }

 
  .sort-box::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #374151;
    border-bottom: 2px solid #374151;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
  }

  
.custom-select-wrapper {
  position: relative;
    width: 132px;
}

.select-trigger {
  padding: 15px 16px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #fff;
  border-radius: 999px;
}

/* Dropdown Container: White Background + Rounded Corners */
.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 12px;
  margin-top: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: none;
  z-index: 10;
  overflow: hidden;
}

.custom-select.open .custom-options {
  display: block;
}

.custom-option {
  padding: 10px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover State: Green */
.custom-option:hover {
  background-color: var(--dark-green);
  color: #ffffff;
}

/* Selected State: Orange + White Text */
.custom-option.selected {
  background-color: var(--orange);
  color: #ffffff;
}
 
  .no-results {
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    padding: 40px 0;
    display: none;
  }
 
  .no-results.visible { display: block; }
 
  /* Grid */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
 
  @media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
  }
 
  @media (min-width: 900px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
  }
 
  .product-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 4.6;
    background: #d9d2c7;
    cursor: pointer;
  }
 
  .product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 
  .product-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 100%);
  }
 
  .product-card-body {
    width: 100%;
  }
 
  .product-card-title {
    color: #ffffff;
    font-size: 15.5px;
    font-family: "Geist-SemiBold";
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
  }
 
  .product-card-desc {
    color: rgba(255,255,255,0.88);
    font-size: 12px;
    line-height: 1.5;
    margin: 8px 0 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
  }
 
  .product-card-arrow {
    width: 30px;
    height: 30px;
    border-radius: 9999px;
    background: var(--orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-left: auto;
  }
 
  .product-card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  /* Hover reveal for all cards */
  .product-card:hover .product-card-desc {
    max-height: 120px;
    opacity: 1;
    margin-top: 8px;
  }
 
  .product-card:hover .product-card-arrow {
    opacity: 1;
    transform: translateY(0);
  }
 
  /* Load more */
  .load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
  }
 
  .load-more-wrap.hidden { display: none; }
 
  .load-more-btn {
    background: transparent;
    border: 1.5px solid var(--dark-green);
    color: var(--dark-green);
    font-size: 14px;
    font-family: "Geist-Bold";
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
 
  .load-more-btn:hover {
    background: var(--dark-green);
    color: #ffffff;
  }

  .about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px;
  }
 
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .about-section-double-img {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px;
  }
 
  @media (max-width: 800px) {
    .about-grid {
      grid-template-columns: 1fr;
    }

    .about-section {
      padding: unset;
    }
  }
 
  /* Image column */
  .about-image-wrap {
    position: relative;
    max-width: 420px;
  }
 
  .about-image-main {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
 
  .about-image-floating {
    position: absolute;
    bottom: 50px;
    right: -32px;
    width: 46%;
    height: 70%;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid #ffffff;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }
 
  @media (max-width: 500px) {
    .about-image-floating {
      right: 30px;
      bottom: -36px;
      width: 50%;
    }
  }
 
  /* Text column */
  .about-text {
    padding-top: 8px;
  }
 
  .badge {
    display: inline-block;
    background: var(--emerald-light);
    color: var(--emerald-text);
    font-size: 12px;
    font-family: "Geist-Bold";
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 9999px;
    margin-bottom: 20px;
  }
 
  .about-text h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    color: #111827;
    margin: 0 0 22px 0;
  }
 
  .about-text h2 .accent {
    color: var(--orange);
  }
 
  .about-text p {
    color: #6b7280;
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 0 18px 0;
  }
 
  .about-text p strong {
    color: #374151;
    font-family: "Geist-Bold";
    font-weight: 700;
  }
 
  @media (min-width: 800px) {
    .about-text h2 { font-size: 34px; }
  }

  .faq-section {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 24px 64px;
  }
 
  .faq-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px 0;
  }
 
  .faq-heading .accent {
    color: var(--dark-green);
  }
 
  .faq-subheading {
    text-align: center;
    font-size: 15.5px;
    color: #6b7280;
    margin: 0 0 40px 0;
  }
 
  .faq-list {
    border-top: 1px solid #e5e7eb;
  }
 
  .faq-item {
    border-bottom: 1px solid #e5e7eb;
  }
 
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-size: 17px;
    font-family: "Geist-Bold";
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
  }

  .faq-question span {
    font-family: "Geist-Regular";
    font-weight: 400;
    font-size: 20px;
  }
 
  .faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
  }
 
  .faq-icon::before,
  .faq-icon::after {
    content: "";
    position: absolute;
    background: #111827;
    top: 50%;
    left: 50%;
  }
 
  .faq-icon::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
  }
 
  .faq-icon::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease;
  }
 
  .faq-item.is-open .faq-icon::after {
    opacity: 0;
  }
 
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
 
  .faq-answer p {
    font-family: "Geist-Regular";
    font-weight: 400;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.2;
    margin: 0 4px 22px;
    max-width: 640px;
  }
 
  .faq-item.is-open .faq-answer {
    max-height: 200px;
  }

  .steps-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px 72px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
 
  @media (min-width: 860px) {

    .steps-grid {
      grid-template-columns: 0.85fr 1.15fr;
      align-items: center;
    }

    .steps-section {
      flex-direction: column;
    }
  }
 
  /* Left column */
  .steps-intro h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin: 0 0 18px 0;
  }
 
  .steps-intro p {
    font-size: 15.5px;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 28px 0;
    max-width: 320px;
  }
 
  .get-started-btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--orange);
    color: var(--orange);
    font-size: 14px;
    font-family: "Geist-Bold";
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
 
  .get-started-btn:hover {
    background: var(--orange);
    color: #ffffff;
  }
 
  /* Right column - timeline + single active card */
  .steps-timeline {
    position: relative;
    display: flex;
    gap: 28px;
  }
 
  .timeline-rail {
    position: relative;
    width: 12px;
    flex-shrink: 0;
    padding: 6px 0;
  }
 
  .timeline-line {
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background-image: linear-gradient(var(--orange) 60%, transparent 40%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
    z-index: 0;
  }
 
  .timeline-dot {
    position: relative;
    z-index: 1;
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    background: #ffffff;
    border: 2px solid var(--orange);
    cursor: pointer;
    padding: 0;
    margin-bottom: 0;
    transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease, height 0.25s ease;
  }
 
  .timeline-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
 
  .timeline-dot.is-active {
    background: var(--orange);
    width: 16px;
    height: 16px;
    transform: translateX(-2px);
  }
 
  .timeline-dot:hover {
    transform: scale(1.15);
  }
 
  /* Card area */
  .step-card-area {
    flex: 1;
    max-width: 420px;
    position: relative;
    min-height: 360px;
  }
 
  .step-card {
    background: var(--orange);
    border-radius: 22px;
    padding: 16px 16px 28px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
 
  .step-card.is-transitioning {
    opacity: 0;
    transform: translateY(10px);
  }
 
  .step-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    margin-bottom: 18px;
  }
 
  .step-badge {
    display: inline-block;
    background: #ffffff;
    color: var(--orange);
    font-size: 12px;
    font-family: "Geist-Bold";
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: 14px;
  }
 
  .step-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-family: "Geist-Bold";
    font-weight: 700;
    margin: 0 0 10px 0;
  }
 
  .step-card p {
    color: rgba(255,255,255,0.92);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
  }

  .testimonial-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 56px 24px;
  }
 
  .testimonial-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
  }
 
  .carousel-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 9999px;
    background: #111111;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
  }
 
  .carousel-arrow:hover { background: #2a2a2a; }
  .carousel-arrow:active { transform: scale(0.94); }
 
  .carousel-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  .testimonial-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 18px;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
 
  .testimonial-card {
    background: var(--green);
    border-radius: 18px;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    min-height: 340px;
    opacity: 1;
    transition: opacity 0.35s ease;
  }
 
  .testimonial-card.is-transitioning {
    opacity: 0;
  }
 
  .testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  .testimonial-body {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
 
  .testimonial-quote {
    color: #eaf6ec;
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0 0 24px 0;
  }
 
  .testimonial-name {
    color: #ffffff;
    font-size: 16px;
    font-family: "Geist-Bold";
    font-weight: 700;
    margin: 0 0 2px 0;
  }
 
  .testimonial-title {
    color: #bfe3c4;
    font-size: 13px;
    margin: 0;
  }
 
  .quote-mark {
    position: absolute;
    right: 28px;
    bottom: -35px;
    width: 146px;
    height: 146px;
    border-radius: 9999px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .quote-mark img {
    width: 70px;
    height: 50px;
  }
 
  @media (max-width: 700px) {
    .faq-section {
      padding: 38px 24px 38px;
    }
    .steps-section {
      padding: 38px 24px 38px;
    }
    .about-section-double-img {
      padding: 38px 24px 38px;
    }
    .steps-intro h2 {
      font-size: 28px;
    }

    .testimonial-wrap {
      gap: 0;
    }

    .carousel-arrow {
      display: none;
    }

    .testimonial-card {
      grid-template-columns: 1fr;
    }
    .testimonial-photo {
      height: 220px;
    }
    .quote-mark {
      right: 20px;
      width: 90px;
      height: 90px;
      bottom: -20px;
    }
    .quote-mark img {
      width: 50px;
      height: 50px;
    }

    .testimonial-body {
      padding: 24px 20px;
      padding-bottom: 90px;
    }
  }

  .contact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 64px;
  }
 
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
 
  @media (min-width: 900px) {
    .contact-grid {
      grid-template-columns: 1fr 0.95fr;
    }
  }
 
  /* Heading */
  .contact-form-col h1 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px 0;
  }
 
  .contact-intro {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 32px 0;
    font-family: "Geist-Regular";
    line-height: 1.7;
  }
 
  .contact-intro a {
    color: var(--orange);
    font-family: "Geist-Bold";
    font-weight: 700;
    text-decoration: none;

  }
 
  .contact-intro a:hover { text-decoration: underline; }
 
  /* Form */
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 22px;
  }
 
  @media (min-width: 520px) {
    .form-row.two-col {
      grid-template-columns: 1fr 1fr;
    }
  }
 
  .form-field label {
    display: block;
    font-size: 14.5px;
    font-family: "Geist-Bold";
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
  }
 
  .input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--black);
    border-radius: 9999px;
    overflow: hidden;
  }

  .input-wrap #firstName::placeholder,
  .input-wrap #lastName::placeholder,
  .input-wrap #email::placeholder,
  .input-wrap #phone::placeholder,
  .input-wrap #message::placeholder{
    color: var(--black);
    font-family: "Geist-Regular";
    font-size: 16px;
  }
 
  .input-wrap.textarea-wrap {
    border-radius: 16px;
    align-items: flex-start;
  }
 
  .input-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 9999px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
  }

  .input-icon img {
    width: 16px;
    height: 16px;
  }
 
  .input-wrap.textarea-wrap .input-icon {
    margin-top: 12px;
  }
 
  .input-icon svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .form-field textarea {
    border: none;
    outline: none;
    font-size: 14.5px;
    color: #111827;
    padding: 12px 16px;
    width: 100%;
    font-family: inherit;
    background: transparent;
  }
 
  .form-field input {
    border: none;
    outline: none;
    font-size: 14.5px;
    color: #111827;
    padding: 12px 16px 12px 4px;
    width: 100%;
    font-family: inherit;
    background: transparent;
  }
 
  .form-field textarea {
    resize: vertical;
    min-height: 110px;
    padding-top: 12px;
  }
 
  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: #9ca3af;
  }
 
  .field-error {
    color: #dc2626;
    font-size: 12.5px;
    margin: 6px 0 0 4px;
    display: none;
  }
 
  .form-field.has-error .input-wrap {
    border-color: #dc2626;
  }
 
  .form-field.has-error .field-error {
    display: block;
  }
 
  /* Submit button */
  .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #111111;
    border: none;
    border-radius: 9999px;
    padding: 6px 6px 6px 26px;
    cursor: pointer;
    margin-top: 8px;
    margin-left: auto;
  }
 
  .submit-btn span {
    color: #ffffff;
    font-size: 15px;
    font-family: "Geist-Bold";
    font-weight: 700;
  }
 
  .submit-btn .arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 9999px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .submit-btn .arrow-circle img {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  .form-status {
    margin-top: 16px;
    font-size: 14px;
    color: #166534;
    display: none;
  }
 
  .form-status.visible { display: block; }
 
  /* Map */
  .map-col {
    border-radius: 18px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    background: #f3f4f6;
  }
 
  .map-col .map-canvas,
  .map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
    flex: 1;
  }

  .map-canvas img{
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;

  }


  .map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: #111827;
    color: #ffffff;
    font-size: 14px;
    font-family: "Geist-Bold";
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .map-link:hover {
    background: var(--orange);
  }

  #contactForm {
    display: flex;
    flex-direction: column;
  }

  .services-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px 72px;
  }
 
  .service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .service-row:last-child {
    margin-bottom: 0;
  }

  .service-row:not(.reverse) .service-text {
    padding-right: 50px;
    display: flex;
    flex-direction: column;
  }
  
  .service-row.reverse .service-text {
    padding-left: 50px;
    order: 2;
    display: flex;
    flex-direction: column;
  }

  .service-row.reverse .service-image {
    order: 1;
  }
 
  .service-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin: 0 0 18px 0;
  }
 
  .service-text p {
    font-size: 15px;
    color: var(--black);
    line-height: 1.7;
    margin: 0;
  }
 
  .service-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }
 
  @media (max-width: 760px) {
    .service-row,
    .service-row.reverse {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-bottom: 44px;
    }
    .service-row .service-image {
      order: -1;
    }
    .service-image img {
      height: 220px;
    }
    .service-row.reverse .service-text {
      padding-left: 0;
    }
  }
 
  .popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
  }

  .popup-overlay[hidden] {
    display: none !important;
  }
 
  .popup-modal{
    display:flex;
    background:#fff;
    max-width:900px;
    width:90%;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.35);
  }
  .popup-form-panel{
    flex:1 1 50%;
    padding:56px 48px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:20px;
  }
  .popup-form-panel h2{
    margin:0;
    font-size:34px;
    font-weight:800;
    color:var(--black);
  }
  .popup-form-panel h2 span{
    font-weight:400;
  }
  .popup-field{
    width: 90%;
    padding:14px 16px;
    border:2px solid var(--black);
    border-radius:15px;
    font-size:15px;
    outline:none;
    color:var(--orange);
  }
  .popup-field::placeholder{
    color: var(--black);
    font-size: 18px;
    font-family:"Geist-Regular";
  }
  .popup-field:focus{
    border-color:var(--gold);
    box-shadow:0 0 0 3px rgba(169,122,47,0.15);
  }
  .popup-submit-row{
    display:flex;
    justify-content:flex-end;
    margin-top: 12px;
  }
  .popup-submit-btn{
    width:52px;height:52px;
    border-radius:50%;
    background:#111;
    color:#fff;
    border:none;
    font-size:20px;
    cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:transform .15s ease, background .15s ease;
  }

  .popup-submit-btn img {
    width: 20px;
    height: 20px;
  }

  .popup-submit-btn:hover{background:var(--orange); transform:scale(1.05);}
  .popup-submit-btn:active{transform:scale(0.95);}
 
  .popup-image{
    flex:1 1 45%;
    position:relative;
    min-height:460px;
    background-size:cover;
    background-position:center;
  }
  .popup-close-btn{
    position:absolute;
    top:16px;right:16px;
    width:32px;height:32px;
    border-radius:6px;
    background:rgba(0,0,0,0.55);
    color:#fff;
    border:none;
    font-size:18px;
    line-height:1;
    cursor:pointer;
    display:flex;align-items:center;justify-content:center;
  }
  .popup-close-btn:hover{background:rgba(0,0,0,0.75);}
 
  .popup-error-msg{
    font-size:13px;
    color:#b3261e;
    min-height:16px;
    margin-top:10px;
  }
  .popup-success-msg{
    font-size:14px;
    color:var(--dark-green);
    font-weight:600;
  }
 
  @media (max-width:720px){
    .popup-modal{flex-direction:column;max-width:420px;}
    .popup-image{min-height:220px;order:-1;}
    .popup-form-panel{padding:32px 28px;}
  }