/* ========================================
   Font Face Declarations
   ======================================== */

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/playfair/PlayfairDisplay-normal-400.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/playfair/PlayfairDisplay-normal-500.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/playfair/PlayfairDisplay-normal-600.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/playfair/PlayfairDisplay-normal-700.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/playfair/PlayfairDisplay-normal-800.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("fonts/playfair/PlayfairDisplay-normal-900.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/playfair/PlayfairDisplay-italic-400.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/playfair/PlayfairDisplay-italic-700.woff2") format("woff2");
}

/* Helvetica Now - Local font face.
   Place HelveticaNow-Regular.woff2, HelveticaNow-Bold.woff2, etc. in fonts/ directory.
   Falls back to Helvetica Neue / Arial if not available. */

@font-face {
  font-family: "Helvetica Now";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/HelveticaNow-Light.woff2") format("woff2"),
    local("Helvetica Neue Light"), local("HelveticaNeue-Light"),
    local("Helvetica"), local("Arial");
}

@font-face {
  font-family: "Helvetica Now";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/HelveticaNow-Regular.woff2") format("woff2"),
    local("Helvetica Neue"), local("HelveticaNeue"), local("Helvetica"),
    local("Arial");
}

@font-face {
  font-family: "Helvetica Now";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/HelveticaNow-Medium.woff2") format("woff2"),
    local("Helvetica Neue Medium"), local("HelveticaNeue-Medium"),
    local("Helvetica"), local("Arial");
}

@font-face {
  font-family: "Helvetica Now";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/HelveticaNow-Bold.woff2") format("woff2"),
    local("Helvetica Neue Bold"), local("HelveticaNeue-Bold"),
    local("Helvetica Bold"), local("Arial Bold");
}

/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

:root {
  --color-primary: #14440c;
  --color-primary-dark: #0d2d07;
  --color-primary-light: #1a5a10;
  --color-white: #ffffff;
  --color-off-white: #f8f8f8;
  --color-light-gray: #f2f2f2;
  --color-gray: #999999;
  --color-dark-gray: #555555;
  --color-text: #000;
  --color-text-light: #666666;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Helvetica Now", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-width: 1440px;
  --section-padding: 100px 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 60px);
}

.container--full {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

/* ========================================
   Header / Navigation
   ======================================== */

/* ===========================
   HEADER
=========================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(24px, 5vw, 90px);
  background: #fff;
  transition: all 0.35s ease;
}

/* ===========================
   LOGO
=========================== */

.logo img {
  height: clamp(55px, 8vw, 95px);
  transition: height 0.35s ease;
}

/* ===========================
   NAVIGATION
=========================== */

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(20px, 4vw, 70px);
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 24px;

  transition: font-size 0.35s ease, color 0.25s ease;
  font-weight: 500;
  font-family: var(--font-body);
  color: #111;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #0b4a10;
}

/* ===========================
   BUTTON
=========================== */

.btn-nav {
  text-decoration: none;
  background: #0b4a10;
  color: white;
  padding: 12px clamp(18px, 2vw, 30px);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  border-radius: 40px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s ease;
  transition: padding 0.35s ease, font-size 0.35s ease, background 0.25s ease;
}

.btn-nav:hover {
  background: #08370c;
}

.header.scrolled {
  padding: 12px clamp(24px, 5vw, 90px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled .logo img {
  height: 65px;
}

.header.scrolled .nav-links a {
  font-size: 20px;
}

.header.scrolled .btn-nav {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ===========================
   MOBILE TOGGLE
=========================== */

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .btn-nav {
    font-size: 1rem;
    padding: 14px 28px;
  }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  overflow: hidden;
  height: clamp(500px, 75vh, 850px);
}

/* Image decides hero height */

.hero-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text sits over image */

.hero .container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--max-width));
  height: 100%;
  z-index: 2;
  padding-inline: clamp(16px, 4vw, 60px);
}

.hero-content {
  max-width: 600px;
  padding-top: clamp(60px, 10vh, 120px);
}

.hero-explore {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-explore a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-primary);
  transition: opacity 0.3s ease;
}

.hero-explore a:hover {
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 200;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(1),
.hero h1 span:nth-child(2) {
  color: var(--color-text);
}

.hero h1 span:nth-child(3) {
  color: var(--color-primary);
}

.hero-description {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: #000;
  margin-bottom: 40px;
  max-width: 680px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(20, 68, 12, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(20, 68, 12, 0.3);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
  transform: translateX(4px);
}

/* ========================================
   Who We Are Section
   ======================================== */

.who-we-are {
  padding: 100px 0;
  background: var(--color-white);
  height: 300px;
  display: flex;
}

.who-we-are .container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.who-left {
  width: 40%;
  height: 100%;
  padding-right: 60px;
  position: relative;
  display: flex;
  align-items: center;
}

.who-left h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
}

.who-left::after {
  content: "";
  position: absolute;
  top: -30px;
  /* move up */
  right: 15px;
  width: 2px;
  height: 160px;
  /* set any height you want */
  background: var(--color-dark-gray);
}

.who-right {
  display: flex;
  align-items: center;
}

.who-right p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  font-family: var(--font-body);
}

/* ========================================
   Solutions Section (End-to-End)
   ======================================== */

.solutions {
  padding: clamp(80px, 10vw, 120px) 0;
  background: #fff;
}

.solutions-header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 70px);
}

.solutions-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: inherit;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.solution-image {
  overflow: hidden;
  aspect-ratio: 1 / 0.9;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-card:hover img {
  transform: scale(1.08);
}

.solution-content {
  background: #efefef;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.solution-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.solution-content p {
  color: #333;
  line-height: 1.6;
  margin-bottom: auto;
}

.solution-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  font-weight: 600;
}

.solution-link span {
  transition: 0.3s;
}

.solution-card:hover .solution-link span {
  transform: translateX(8px);
}

.tech-img {
  object-fit: cover;
  object-position: right center;
}

/* ========================================
   Featured Partnership Section
   ======================================== */

.featured {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.featured .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
}

.featured-content {
  max-width: 500px;
}

.featured h2 {
  font-weight: 700;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1;
  margin-bottom: 8px;
}

.featured-content p {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  padding: 12px 28px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 99px;
}

.featured-btn:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(20, 68, 12, 0.2);
}

.featured-visual {
  position: relative;
  min-height: 620px;
}

.featured-logo {
  position: absolute;
  top: 100px;
  right: 20px;
  width: 230px;
  height: auto;
  z-index: 3;
  object-fit: contain;
}

.featured-machine {
  position: absolute;
  right: -10px;
  width: 105%;
  z-index: 2;
}

.featured-image {
  position: relative;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.featured-strip {
  position: absolute;
  left: 0;
  width: 100%;
  height: 95px;
  bottom: 65px;
  background: #0b4a10;
  z-index: 0;
}

/* ========================================
   Partner CTA Section (Dark Green)
   ======================================== */

.partner-cta {
  padding: 50px 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

/* .partner-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
} */

.partner-cta .container {
  /* text-align: center; */
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 140px;
}

.partner-cta .left-cta:before{
  content: "";
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.partner-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 100;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.partner-cta p {
  font-size: 1.40rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 18px;
}

.cta-contact{
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-email-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background-color: #fff;
  border-radius: 50%;
}

.cta-email-icon img {
  width: 24px;
  height: 16px;
}

.cta-contact a{
  display: flex;
  align-items: center;
}

.partner-cta .email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-white);
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.5); */
  transition: border-color 0.3s ease;
}

.partner-cta .email-link:hover {
  border-color: var(--color-white);
}

/* ========================================
   Why Work With Us Section
   ======================================== */

.why-us {
  padding: clamp(80px, 9vw, 120px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  width: 100%;
}

.why-us-header {
  text-align: center;
  margin-bottom: 54px;
}

.why-us-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.1;
}

.why-us-header p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.why-us-card {
  padding: 34px 20px 28px;
  border-radius: 18px;
  /* border: 1px solid rgba(20, 68, 12, 0.08); */
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04); */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}

.why-us-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    width: 2px;
    height: 90%;
    background: var(--color-text-light);
}

/* .why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(20, 68, 12, 0.12);
  border-color: rgba(20, 68, 12, 0.2);
} */

.why-us-icon {
  width: 128px;
  height: 128px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.why-us-icon img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.why-us-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  /* margin-bottom: 14px; */
  min-height: 2em;
}

.why-us-card p {
  font-size: 0.8rem;
  line-height: 1.1;
  color: var(--color-text);
  max-width: 240px;
  margin: 0 auto;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  padding: 40px 0 0;
  background: var(--color-white);
  color: var(--color-text)
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand .footer-logo img {
  width: 164px;
  height: 164px;
}

.footer-brand .footer-contact {
  margin-top: 20px;
}

.footer-brand .footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--color-text)
}

.footer-column .icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  opacity: 0.7;
}

.footer-brand .footer-desc {
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--color-text);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li:last-child {
  margin-bottom: 0;
}

.footer-column ul li a {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--color-text);
}

.footer {
  position: relative;
}

.footer-bottom {
  position: relative;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text);
  width: 100%;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.footer-bottom a {
  color: var(--color-text);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-text);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-right{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-right h4 {
  margin-bottom: 12px;
}

.footer-right h4 + h4 {
  margin-top: 24px;
}

.footer-right > ul {
  margin-bottom: 8px;
}

.footer-right > ul li a {
  margin-bottom: 12px;
}


/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .who-we-are .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .who-left {
    width: 100%;
    padding-right: 0;
  }

  .who-left::after {
    display: none;
  }

  .who-left h2 {
    font-size: 2.2rem;
  }

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

  .featured .container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
  }

  .featured-content {
    text-align: center;
    padding: 0 20px;
  }

  .featured-content p {
    font-size: 1rem;
  }

  .featured-visual {
    min-height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
  }

  .featured-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: auto;
    object-fit: contain;
  }

  .featured-machine {
    position: relative;
    right: 0;
    width: 100%;
    max-width: 500px;
  }

  .featured-btn {
    justify-self: center;
  }

  .featured-strip {
    height: 60px;
    bottom: 40px;
  }

  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav.active .nav-links {
    display: flex;
  }

  .nav .btn-nav {
    display: none;
  }

  .nav.active .btn-nav {
    display: inline-block;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 0;
    position: relative;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    height: 350px;
    margin-top: 0;
  }

  .hero .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    height: 100%;
    padding-top: 0;
    display: flex;
    /* align-items: center;  */
    justify-content: flex-start;
    pointer-events: none;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: auto;
  }

  .hero-content h1{
    margin-top: 20px;
  }

  .hero-description {
    position: relative;
    bottom: auto;
    left: auto;
    font-size: 0.95rem;
    padding: 24px;
    background: #fff;
    max-width: 100%;
  }

  .hero-explore {
    flex-direction: column;
    gap: 12px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .featured .container {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 30px;
  }

  .featured-content {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .featured h2 {
    font-size: 1.8rem;
  }

  .featured-content p {
    font-size: 0.95rem;
  }

  .featured-visual {
    position: relative;
    min-height: auto;
    display: block;
    padding: 0;
  }

  .featured-machine {
    width: 100%;
    height: auto;
    display: block;
  }

  .featured-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: auto;
    object-fit: contain;
  }

  .featured-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 24px auto 30px;
    text-align: center;
  }

  .featured-strip {
    display: none;
  }

  .who-we-are {
    height: auto;
    padding: 60px 0;
  }

  .who-we-are .container {
    gap: 20px;
  }

  .who-left h2 {
    font-size: 2rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .partner-cta .container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .partner-cta .left-cta::before {
    display: none;
  }

  .partner-cta h2 {
    font-size: 2.2rem;
  }

  .partner-cta p {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }

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

  .why-us-card:not(:last-child)::after {
    display: none;
  }

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

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

  .footer-right > ul li a {
    display: block;
    margin-bottom: 12px;
  }

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

  .footer-brand .footer-logo {
    justify-content: center;
  }

  .footer-brand .footer-contact p {
    justify-content: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .who-we-are {
    padding: 50px 0;
  }

  .who-left h2 {
    font-size: 1.8rem;
  }

  .who-right p {
    font-size: 0.95rem;
  }

  .solutions-header h2,
  .why-us-header h2 {
    font-size: 1.8rem;
  }

  .solution-content {
    padding: 20px;
  }

  .solution-content h3 {
    font-size: 1.3rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-card {
    min-height: auto;
    padding: 28px 20px;
  }

  .why-us-card:not(:last-child)::after {
    display: none;
  }

  .featured h2 {
    font-size: 1.6rem;
  }

  .featured-logo {
    width: 110px;
    bottom: 15px;
    right: -20px;
  }

  .featured-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    margin: 20px auto 24px;
  }

  .partner-cta {
    padding: 40px 0;
  }

  .partner-cta h2 {
    font-size: 1.8rem;
  }

  .partner-cta p {
    font-size: 1rem;
  }

  .footer-column h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .footer-column ul li a {
    font-size: 0.85rem;
  }

  .footer-brand .footer-logo img {
    width: 120px;
    height: 120px;
  }

  .footer-brand .footer-desc {
    font-size: 0.75rem;
  }
}