:root {
  --green-900: #034a12;
  --green-800: #055f18;
  --green-700: #087323;
  --green-600: #0a852a;
  --green-soft: #ecf8ed;
  --yellow: #ffd207;
  --yellow-dark: #e5ad00;
  --ink: #0d1214;
  --muted: #596166;
  --line: #e7dfcf;
  --cream: #fffdf6;
  --shadow: 0 18px 45px rgba(2, 61, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #f7f7f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  max-width: 1740px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.08);
}

.container {
  width: min(1468px, calc(100% - 72px));
  margin: 0 auto;
}

.top-bar {
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.top-bar__inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.welcome,
.top-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  white-space: nowrap;
}

.top-icon {
  color: var(--yellow);
  font-size: 14px;
}

.top-meta > span {
  position: relative;
}

.top-meta > span + span::before,
.socials::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  margin-left: -15px;
  background: rgba(255, 255, 255, 0.18);
}

.socials {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-800);
  font-size: 14px;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 10px 28px rgba(14, 54, 25, 0.08);
}

.header__inner {
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(470px, 1fr) 230px;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: min(100%, 360px);
  height: auto;
}

.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 32%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(145deg, #096a1e, #043e14);
  border: 4px solid var(--yellow);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.12), 0 12px 26px rgba(6, 71, 22, 0.22);
  overflow: hidden;
}

.brand__vb {
  color: var(--yellow);
  font-size: 37px;
  font-weight: 900;
  letter-spacing: 0;
  z-index: 1;
}

.brand__fruit,
.brand__fruit::before,
.brand__fruit::after {
  position: absolute;
  display: block;
  width: 40px;
  height: 14px;
  border-radius: 50%;
  border-bottom: 8px solid var(--yellow);
  transform: rotate(-25deg);
}

.brand__fruit {
  left: 12px;
  bottom: 19px;
}

.brand__fruit::before {
  content: "";
  left: 12px;
  bottom: 8px;
}

.brand__fruit::after {
  content: "";
  left: 24px;
  bottom: 16px;
}

.brand__copy strong {
  display: block;
  color: var(--green-800);
  font-size: clamp(29px, 2.25vw, 39px);
  line-height: 1;
  font-weight: 900;
}

.brand__copy em {
  display: block;
  color: var(--green-700);
  margin-top: 9px;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 1.55vw, 30px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 40px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 31px;
  height: 3px;
  transform: scaleX(0);
  background: var(--yellow);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-700);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.call-card,
.quote-btn,
.btn,
.footer-whatsapp,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 7px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.call-card {
  width: 230px;
  min-width: 230px;
  padding: 18px 22px;
  background: var(--yellow);
  color: var(--green-800);
  box-shadow: 0 10px 25px rgba(255, 190, 0, 0.26);
}

.call-card__icon {
  font-size: 29px;
  line-height: 1;
}

.call-card small {
  display: block;
  color: #111;
  font-size: 13px;
  margin-bottom: 2px;
}

.call-card strong {
  display: block;
  font-size: 22px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--green-800);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 552px;
  overflow: hidden;
  background: #f8f2df;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 244, 0.98) 0%, rgba(255, 253, 244, 0.93) 31%, rgba(255, 253, 244, 0.24) 52%, rgba(255, 253, 244, 0) 100%),
    url("../images/hero-bananas.png") 60% center / cover no-repeat;
}

.hero__inner {
  position: relative;
  min-height: 552px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 0 34px;
}

.hero__content {
  width: min(585px, 47%);
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 3.85vw, 66px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--green-800);
  margin-top: 8px;
}

.hero h2 {
  margin: 18px 0 0;
  width: max-content;
  max-width: 100%;
  padding-bottom: 13px;
  border-bottom: 3px solid var(--yellow);
  font-size: clamp(18px, 1.38vw, 23px);
  line-height: 1.25;
  font-weight: 900;
}

.hero p {
  margin: 18px 0 0;
  max-width: 548px;
  color: #1e292e;
  font-size: 17px;
  line-height: 1.68;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 25px;
}

.hero-badges div {
  text-align: center;
  color: var(--green-900);
}

.hero-badges strong,
.hero-badges small {
  display: block;
}

.hero-badges strong {
  font-size: 13px;
  line-height: 1.25;
}

.hero-badges small {
  margin-top: 4px;
  color: #06471a;
  font-size: 13px;
  line-height: 1.35;
}

.badge-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-800);
  border: 3px solid var(--green-700);
  background: rgba(255, 255, 255, 0.8);
}

.badge-icon::before {
  font-size: 31px;
  color: var(--green-700);
}

.natural::before { content: "\2713"; }
.sack::before { content: "\20B9"; font-weight: 900; }
.truck::before { content: "\21A0"; font-weight: 900; }
.shield::before { content: "\2605"; font-weight: 900; }

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
}

.btn--green {
  background: var(--green-800);
  color: #fff;
}

.btn--yellow {
  background: var(--yellow);
  color: #111;
}

.quality-seal {
  align-self: flex-start;
  margin-top: 34px;
  margin-right: 18px;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  text-align: center;
  background: var(--green-800);
  color: #fffbe5;
  border: 5px solid var(--yellow);
  outline: 5px solid rgba(5, 95, 24, 0.35);
  box-shadow: var(--shadow);
}

.quality-seal span {
  color: var(--yellow);
  font-size: 14px;
}

.quality-seal strong {
  display: block;
  font-size: 21px;
  line-height: 1.08;
}

.stats-strip {
  background: linear-gradient(90deg, var(--green-900), var(--green-700));
  color: #fff;
}

.stats__inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.35fr 220px;
  align-items: center;
  gap: 18px;
}

.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 15px;
  align-items: center;
  min-width: 0;
  min-height: 58px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-icon {
  grid-row: span 2;
  color: var(--yellow);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.stat-card strong {
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
}

.stat-card small {
  margin-top: 4px;
  font-size: 15px;
}

.quote-btn {
  min-width: 220px;
  min-height: 62px;
  background: var(--yellow);
  color: #111;
  font-size: 18px;
}

.section {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 34px;
}

.section-title span,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0;
}

.section-title h2,
.split h2,
.gallery-band h2,
.contact-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.1;
  font-weight: 900;
}

.bananas {
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 210, 7, 0.12), transparent 18%),
    linear-gradient(180deg, #fff, #fffdf7);
}

.banana-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.banana-card {
  min-height: 342px;
  padding: 16px 15px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 65, 22, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.banana-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 133, 42, 0.36);
  box-shadow: var(--shadow);
}

.banana-photo {
  width: 100%;
  height: 128px;
  margin-bottom: 14px;
  background-image: url("../images/banana-varieties.png");
  background-repeat: no-repeat;
  background-size: 245%;
  filter: drop-shadow(0 8px 9px rgba(0, 0, 0, 0.12));
}

.banana-photo--green { background-position: 2% 5%; }
.banana-photo--yellow { background-position: 96% 4%; }
.banana-photo--ripe { background-position: 3% 94%; }
.banana-photo--nendran { background-position: 96% 94%; }
.banana-photo--yelakki { background-position: 48% 96%; background-size: 210%; }
.banana-photo--monthan { background-position: 54% 6%; background-size: 210%; }

.banana-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.subtitle {
  margin: 5px 0 8px;
  font-size: 16px;
  color: #111;
}

.bulk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid #9de5a8;
  background: #edfdef;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}

.banana-card > p:last-of-type {
  min-height: 64px;
  margin: 12px 0 14px;
  color: #263136;
  line-height: 1.45;
  font-size: 15px;
}

.banana-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--green-800);
  color: #fff;
  font-weight: 800;
}

.wholesale {
  background: var(--green-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.split p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 17px;
}

.supply-list,
.why-grid {
  display: grid;
  gap: 16px;
}

.supply-list {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.supply-list span {
  display: flex;
  align-items: center;
  padding: 17px 18px;
  border-radius: 8px;
  background: #fff;
  border-left: 5px solid var(--yellow);
  box-shadow: 0 10px 26px rgba(5, 95, 24, 0.08);
  font-weight: 800;
}

.why {
  background: #fff;
}

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

.why-grid article {
  padding: 26px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fffdf7);
  box-shadow: 0 10px 28px rgba(16, 65, 22, 0.06);
  min-height: 168px;
}

.why-grid span {
  color: var(--yellow-dark);
  font-size: 13px;
  font-weight: 900;
}

.why-grid h3 {
  margin: 10px 0 8px;
  color: var(--green-800);
  font-size: 20px;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.gallery {
  background: #fffdf6;
  padding-top: 0;
}

.gallery-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 38px;
  padding: 36px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
}

.gallery-band .eyebrow {
  color: var(--yellow);
}

.gallery-photo {
  min-height: 270px;
  border-radius: 12px;
  background: url("../images/hero-bananas.png") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(3, 74, 18, 0.96), rgba(8, 115, 35, 0.94)),
    url("../images/hero-bananas.png") center / cover no-repeat;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.contact-panel {
  color: #fff;
}

.contact-panel .eyebrow,
.contact-panel p {
  color: #fff9cf;
}

.contact-phone {
  display: block;
  width: max-content;
  margin-top: 16px;
  color: var(--yellow);
  font-size: 33px;
  font-weight: 900;
}

.contact-phone.secondary {
  margin-top: 8px;
  font-size: 23px;
}

.contact-meta {
  margin-top: 28px;
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 900;
}

.quote-form .full,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d9dece;
  border-radius: 7px;
  background: #fffdf8;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(10, 133, 42, 0.12);
}

.quote-form button {
  min-height: 54px;
  border: 0;
  background: var(--yellow);
  color: #111;
  cursor: pointer;
  font-size: 17px;
}

.site-footer {
  border-top: 5px solid var(--green-900);
  background: linear-gradient(90deg, #fff8dd, #fffdf1 48%, #fff8dd);
  color: #07140b;
  padding: 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1.05fr;
  gap: 52px;
  align-items: start;
  padding: 22px 0 18px;
  text-align: left;
}

.footer-brand p {
  margin: 11px 0 0;
  color: #07140b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.brand--footer {
  gap: 13px;
  align-items: center;
}

.brand--footer .brand__mark {
  width: 90px;
  height: 90px;
}

.brand--footer .brand__vb {
  font-size: 34px;
}

.brand--footer .brand__copy strong {
  font-size: 32px;
}

.brand--footer .brand__copy em {
  margin-top: 5px;
  font-size: 13px;
}

.footer-column {
  padding-left: 28px;
  border-left: 1px solid rgba(6, 72, 22, 0.08);
}

.footer-column h3 {
  position: relative;
  margin: 0 0 18px;
  color: #073e16;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 2px;
  background: var(--yellow);
}

.footer-links {
  display: grid;
  gap: 10px 34px;
  font-size: 14px;
  font-weight: 500;
}

.footer-links--two {
  grid-template-columns: repeat(2, max-content);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--green-700);
}

.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #07140b;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-contact span {
  display: inline-flex;
  justify-content: center;
  min-width: 17px;
  color: var(--green-800);
  font-size: 15px;
}

.footer-whatsapp {
  min-height: 54px;
  padding: 0 26px;
  background: var(--yellow);
  color: #111;
  width: max-content;
}

.footer-bottom {
  background: linear-gradient(90deg, var(--green-900), var(--green-800));
  color: #fff;
}

.footer-bottom__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__inner div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom__inner div > * + * {
  position: relative;
}

.footer-bottom__inner div > * + *::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-50%);
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #08a52a;
  color: #fff;
  box-shadow: 0 12px 28px rgba(3, 93, 24, 0.3);
  font-size: 13px;
}

.floating-whatsapp span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 3px solid #fff;
  font-size: 22px;
}

.call-card:hover,
.quote-btn:hover,
.btn:hover,
.footer-whatsapp:hover,
.quote-form button:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(4, 70, 20, 0.2);
}

@media (min-width: 1181px) and (max-width: 1366px) {
  .container {
    width: min(1280px, calc(100% - 48px));
  }

  .header__inner {
  grid-template-columns: 330px minmax(500px, 1fr) 210px;
    gap: 18px;
  }

  .brand__mark {
    width: 86px;
    height: 86px;
  }

  .brand__logo {
    width: 318px;
  }

  .brand__vb {
    font-size: 32px;
  }

  .brand__fruit,
  .brand__fruit::before,
  .brand__fruit::after {
    width: 34px;
    height: 12px;
    border-bottom-width: 7px;
  }

  .brand__copy strong {
    font-size: 32px;
  }

  .brand__copy em {
    font-size: 15px;
    margin-top: 7px;
  }

  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .call-card {
    width: 230px;
    min-width: 210px;
    padding: 10px 18px;
  }

  .call-card strong {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero h2 {
    font-size: 19px;
  }

  .hero p {
    font-size: 16px;
  }

  .banana-grid {
    gap: 14px;
  }

  .banana-card {
    padding-left: 12px;
    padding-right: 12px;
  }

  .banana-card h3 {
    font-size: 16px;
  }

  .subtitle {
    font-size: 14px;
  }

  .banana-card > p:last-of-type {
    font-size: 13px;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 48px, 1120px);
  }

  .header__inner {
    min-height: 112px;
    grid-template-columns: 1fr auto auto;
  }

  .brand__mark {
    width: 82px;
    height: 82px;
  }

  .brand__logo {
    width: 300px;
  }

  .brand__vb {
    font-size: 31px;
  }

  .main-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 12px;
    border-bottom: 1px solid #f0eadc;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .call-card {
    min-width: 178px;
    padding: 15px 17px;
  }

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

  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 0;
  }

  .quote-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  body {
    background: #fff;
  }

  .top-bar__inner,
  .top-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
    white-space: normal;
  }

  .top-meta > span + span::before,
  .socials::before {
    display: none;
  }

  .header__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 15px 0;
  }

  .brand__copy strong {
    font-size: 28px;
  }

  .brand__copy em {
    font-size: 15px;
  }

  .call-card {
    display: none;
  }

  .hero__bg {
    background:
      linear-gradient(180deg, rgba(255, 253, 244, 0.98) 0%, rgba(255, 253, 244, 0.94) 56%, rgba(255, 253, 244, 0.42) 100%),
      url("../images/hero-bananas.png") 62% bottom / cover no-repeat;
  }

  .hero__inner,
  .hero {
    min-height: 760px;
  }

  .hero__inner {
    align-items: flex-start;
    padding-top: 44px;
  }

  .hero__content {
    width: 100%;
    max-width: 620px;
  }

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

  .quality-seal {
    position: absolute;
    right: 12px;
    bottom: 28px;
    width: 116px;
    height: 116px;
  }

  .quality-seal strong {
    font-size: 16px;
  }

  .split,
  .why-grid,
  .gallery-band,
  .quote-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom__inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    text-align: center;
  }

  .footer-bottom__inner div {
    flex-wrap: wrap;
    justify-content: center;
  }

  .supply-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, 560px);
  }

  .top-bar {
    display: none;
  }

  .brand {
    gap: 12px;
  }

  .brand__mark {
    width: 62px;
    height: 62px;
    border-width: 3px;
  }

  .brand__logo {
    width: 235px;
  }

  .brand__vb {
    font-size: 23px;
  }

  .brand__fruit,
  .brand__fruit::before,
  .brand__fruit::after {
    width: 25px;
    height: 10px;
    border-bottom-width: 6px;
  }

  .brand__fruit {
    left: 8px;
    bottom: 12px;
  }

  .brand__copy strong {
    font-size: 21px;
  }

  .brand__copy em {
    font-size: 13px;
    margin-top: 5px;
  }

  .menu-toggle {
    width: 42px;
    height: 40px;
  }

  .call-card {
    min-height: 54px;
    padding: 11px 14px;
  }

  .call-card__icon {
    font-size: 24px;
  }

  .call-card small {
    font-size: 12px;
  }

  .call-card strong {
    font-size: 18px;
  }

  .main-nav {
    left: 15px;
    right: 15px;
    padding: 8px;
  }

  .main-nav a {
    padding: 13px 10px;
    font-size: 13px;
  }

  .hero,
  .hero__inner {
    min-height: 810px;
  }

  .hero__inner {
    padding-top: 34px;
    padding-bottom: 260px;
  }

  .hero__bg {
    background:
      linear-gradient(180deg, rgba(255, 253, 244, 0.99) 0%, rgba(255, 253, 244, 0.95) 55%, rgba(255, 253, 244, 0.3) 100%),
      url("../images/hero-bananas.png") 68% bottom / auto 42% no-repeat;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .hero h2 {
    width: auto;
    font-size: 16px;
    padding-bottom: 10px;
    margin-top: 14px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-badges {
    gap: 10px;
    margin: 22px 0 20px;
  }

  .hero-badges small,
  .hero-badges strong {
    font-size: 12px;
  }

  .hero-badges div {
    padding: 12px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 18px rgba(5, 95, 24, 0.07);
  }

  .badge-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
    border-width: 2px;
  }

  .badge-icon::before {
    font-size: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .quality-seal {
    right: 16px;
    bottom: 154px;
    width: 94px;
    height: 94px;
    border-width: 4px;
    outline-width: 3px;
  }

  .quality-seal span {
    font-size: 10px;
  }

  .quality-seal strong {
    font-size: 13px;
  }

  .stats__inner,
  .banana-grid {
    grid-template-columns: 1fr;
  }

  .stats__inner {
    gap: 0;
    padding: 18px 0;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 0;
  }

  .stat-card:first-child {
    padding-top: 0;
  }

  .stat-card strong {
    font-size: 25px;
  }

  .quote-btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    margin-top: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title h2,
  .split h2,
  .gallery-band h2,
  .contact-panel h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .banana-photo {
    height: 150px;
    background-size: 210%;
  }

  .banana-card {
    min-height: 0;
    padding: 18px 16px 20px;
  }

  .banana-card > p:last-of-type {
    min-height: 0;
  }

  .split {
    gap: 26px;
  }

  .supply-list span,
  .why-grid article {
    min-height: 0;
  }

  .gallery-band {
    padding: 22px;
    gap: 22px;
  }

  .gallery-photo {
    min-height: 190px;
  }

  .quote-layout {
    gap: 28px;
  }

  .contact-phone {
    font-size: 27px;
  }

  .contact-phone.secondary {
    font-size: 20px;
  }

  .quote-form {
    padding: 20px;
    gap: 14px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    padding: 12px 13px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 24px;
    text-align: left;
  }

  .brand--footer .brand__mark {
    width: 74px;
    height: 74px;
  }

  .brand--footer .brand__logo {
    width: 255px;
  }

  .brand--footer .brand__vb {
    font-size: 28px;
  }

  .brand--footer .brand__copy strong {
    font-size: 26px;
  }

  .brand--footer .brand__copy em {
    font-size: 12px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-column {
    padding-left: 0;
    border-left: 0;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-links--two {
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
  }

  .footer-contact a,
  .footer-contact p {
    font-size: 14px;
  }

  .footer-bottom__inner div {
    gap: 10px 18px;
    font-size: 13px;
  }

  .footer-bottom__inner div > * + *::before {
    left: -10px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    padding: 10px 13px;
  }
}

@media (max-width: 380px) {
  .brand__copy strong {
    font-size: 18px;
  }

  .brand__logo {
    width: 205px;
  }

  .brand__copy em {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero h2 {
    font-size: 15px;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero__inner {
    min-height: 920px;
  }
}
