/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #EEF0EC;
  color: #101510;
  line-height: 1.6;
}

/* HEADER */
.floating-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #101510;
  font-weight: 600;
}

.brand-mark {
  background: #C9F13A;
  padding: 6px 10px;
  border-radius: 6px;
  margin-right: 8px;
}

.nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #101510;
  font-size: 14px;
}

.header-contact {
  background: #C9F13A;
  padding: 8px 14px;
  border-radius: 30px;
  text-decoration: none;
  color: #101510;
  font-size: 14px;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854') center/cover no-repeat;
  border-radius: 30px;
  margin: 20px;
}

.hero-content {
  position: relative;
  max-width: 600px;
  margin-left: 80px;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 46, 29, 0.7);
  border-radius: 30px;
  margin: 20px;
}

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

.pill {
  background: #C9F13A;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
  color: #101510;
}

.hero-actions {
  margin-top: 20px;
}

/* BUTTONS */
.btn {
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  margin-right: 10px;
}

.btn-lime {
  background: #C9F13A;
  color: #101510;
}

.btn-light {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* TRUST */
.trust {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
  padding: 40px;
}

.trust-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}

.trust-card.lime {
  background: #C9F13A;
}

/* SECTION */
.section {
  padding: 80px 60px;
}

.section-tag {
  font-size: 12px;
  color: #2E6F57;
  margin-bottom: 10px;
}

/* SPLIT */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* BENTO */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.bento-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}

.bento-card.large {
  grid-column: span 2;
}

.bento-card.dark {
  background: #062E1D;
  color: #fff;
}

.bento-card.lime-card {
  background: #C9F13A;
}

.image-card {
  background-size: cover;
  border-radius: 20px;
}

.produce {
  background-image: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399');
}

/* PROCESS */
.dark-panel {
  background: #062E1D;
  color: #fff;
}

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

.process-card {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 20px;
}

.process-card.active {
  background: #C9F13A;
  color: #101510;
}

/* ACCORDION */
.accordion-list div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

/* SERVE */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

.serve-grid div {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 15px;
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 20px;
}

/* CONTACT */
.contact-card {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card a {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #101510;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .split-section,
  .bento-grid,
  .process-grid,
  .serve-grid,
  .trust {
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
  }
}
.contact-card.contact-actions {
  display: grid;
  gap: 16px;
}

.contact-action {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  color: #101510;
  padding: 18px;
  border-radius: 22px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(6, 46, 29, 0.08);
  transition: 0.25s ease;
}

.contact-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(6, 46, 29, 0.14);
}

.contact-action.highlight {
  background: #C9F13A;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 16px;
  background: #EEF0EC;
  display: grid;
  place-items: center;
}

.contact-action.highlight .contact-icon {
  background: #ffffff;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: #062E1D;
}

.contact-action small {
  display: block;
  font-size: 12px;
  color: rgba(16, 21, 16, 0.55);
  margin-bottom: 2px;
}

.contact-action strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.hero h1,
.hero p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
}
h1, h2 {
  line-height: 1.2;
}
/* ELITE TYPOGRAPHY UPGRADE */

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: inherit;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 700;
  max-width: 780px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 650;
  max-width: 760px;
}

h3 {
  font-size: 1.35rem;
  font-weight: 650;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(16, 21, 16, 0.72);
}

.hero-content p {
  max-width: 620px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.section-tag,
.pill {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a,
.header-contact,
.btn {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card-number,
.trust-card span,
.process-card span {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.accordion-list div,
.serve-grid div {
  font-weight: 700;
  letter-spacing: -0.02em;
}

footer p {
  font-size: 0.9rem;
  color: rgba(16, 21, 16, 0.65);
}
/* FIX SERVICE CARDS READABILITY */

.bento-card.dark {
  background: #ffffff;
  color: #101510;
}

.bento-card.dark p {
  color: rgba(16, 21, 16, 0.72);
}

.bento-card.dark h3 {
  color: #101510;
}

/* UPGRADE TRUST STRIP FONT */

.trust-card {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-card span {
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(16, 21, 16, 0.55);
}

.trust-card p {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #101510;
}

.trust-card.lime p {
  color: #101510;
}

/* MAKE SERVICE CARD TEXT CLEARER */

.bento-card p {
  color: rgba(16, 21, 16, 0.72);
}

.bento-card h3 {
  color: #101510;
}
/* HERO UPGRADE */

.hero {
  min-height: 92vh;
  align-items: flex-end;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-image {
  border-radius: 34px;
  margin: 18px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: 18px;
  border-radius: 34px;
  background:
    linear-gradient(
      90deg,
      rgba(6, 46, 29, 0.88) 0%,
      rgba(6, 46, 29, 0.66) 42%,
      rgba(6, 46, 29, 0.25) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 46, 29, 0.25) 0%,
      rgba(6, 46, 29, 0.88) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: 70px;
  margin-bottom: 30px;
  color: #fff;
}

.hero-content .pill {
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(201, 241, 58, 0.22);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
}

.hero-content p:not(.pill) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-actions .btn {
  margin-right: 0;
  padding: 13px 22px;
  font-weight: 800;
}

.hero-actions .btn-light {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.hero::before {
  content: "Structured supply • Quality control • Reliable delivery";
  position: absolute;
  right: 48px;
  bottom: 55px;
  z-index: 3;
  max-width: 310px;
  background: rgba(255, 255, 255, 0.88);
  color: #101510;
  padding: 18px 20px;
  border-radius: 22px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .hero {
    min-height: 86vh;
    padding-bottom: 45px;
  }

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

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.5rem);
  }
}
.bento-card:hover,
.trust-card:hover,
.contact-action:hover {
  transform: translateY(-6px);
  transition: 0.25s ease;
}
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}