:root {
  --navy: #083a5a;
  --navy-2: #0f5c7a;
  --ink: #173044;
  --muted: #667784;
  --line: #d9e6ec;
  --paper: #f4f8fb;
  --white: #ffffff;
  --orange: #ff8a00;
  --orange-deep: #e26f00;
  --teal: #0a9ab0;
  --green: #4f8f5b;
  --gold: #c6a247;
  --shadow: 0 18px 48px rgba(8, 58, 90, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
.brand-wordmark {
  color: var(--navy);
  font-weight: 750;
  letter-spacing: 0;
}

h1 {
  color: var(--white);
  font-size: 6.4rem;
  line-height: 0.96;
  max-width: 980px;
  overflow-wrap: break-word;
}

h2 {
  font-size: 3.65rem;
  line-height: 1.05;
  margin-bottom: 0;
  overflow-wrap: break-word;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

p {
  margin-bottom: 1rem;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 700;
  gap: 0.55rem;
  justify-content: center;
  letter-spacing: 0;
  min-height: 44px;
  white-space: normal;
}

.btn-primary {
  --bs-btn-bg: var(--orange);
  --bs-btn-border-color: var(--orange);
  --bs-btn-hover-bg: var(--orange-deep);
  --bs-btn-hover-border-color: var(--orange-deep);
  --bs-btn-active-bg: var(--orange-deep);
  --bs-btn-active-border-color: var(--orange-deep);
  --bs-btn-color: var(--navy);
  --bs-btn-hover-color: var(--white);
  --bs-btn-active-color: var(--white);
}

.btn-outline-light {
  --bs-btn-border-color: rgba(255, 255, 255, 0.72);
  --bs-btn-hover-color: var(--navy);
}

.btn-secondary-outline {
  border: 1px solid rgba(6, 26, 47, 0.18);
  color: var(--navy);
}

.btn-secondary-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.section-pad {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-kicker,
.eyebrow {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-note {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 0;
}

.site-header {
  z-index: 1030;
}

.top-bar {
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  padding: 0.45rem 0;
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.top-contact a,
.top-note {
  align-items: center;
  display: inline-flex;
  gap: 0.35rem;
}

.top-contact a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-decoration: none;
}

.top-contact a:hover {
  color: var(--orange);
}

.site-nav {
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(8, 58, 90, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(6, 26, 47, 0.1);
}

.navbar-brand {
  flex: 1 1 auto;
  max-width: calc(100% - 64px);
  min-width: 0;
}

.brand-logo {
  border: 0;
  border-radius: 0;
  height: auto;
  max-width: min(218px, 58vw);
  object-fit: contain;
  width: 218px;
}

.brand-wordmark {
  color: var(--navy);
  display: none;
  font-size: 1.15rem;
  line-height: 1.1;
}

.navbar-nav .nav-link {
  color: var(--navy);
  font-weight: 700;
  padding: 0.7rem 0.9rem;
}

.navbar-toggler {
  align-items: center;
  border: 1px solid rgba(8, 58, 90, 0.18);
  border-radius: 8px;
  display: inline-flex !important;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(10, 154, 176, 0.22);
}

.navbar-toggler-icon {
  background-image: none;
  height: 2px;
  position: relative;
  width: 22px;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  background: var(--navy);
  border-radius: 999px;
  display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 22px;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link,
.navbar-nav .nav-link:hover {
  color: var(--orange-deep);
}

.dropdown-menu {
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(6, 26, 47, 0.14);
  padding: 0.5rem;
}

.dropdown-item {
  border-radius: 6px;
  color: var(--navy);
  font-weight: 700;
  padding: 0.55rem 0.75rem;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
  background: rgba(245, 130, 31, 0.12);
  color: var(--orange-deep);
}

.nav-cta {
  color: var(--navy);
  padding-inline: 1rem;
}

.hero-section {
  background-image: linear-gradient(90deg, rgba(6, 35, 54, 0.78) 0%, rgba(8, 58, 90, 0.6) 44%, rgba(8, 58, 90, 0.12) 100%), url("../images/cargo-ship.jpg");
  background-position: center;
  background-size: cover;
  min-height: clamp(590px, 82vh, 770px);
  position: relative;
  display: flex;
  align-items: center;
}

.page-hero {
  background-image: linear-gradient(90deg, rgba(6, 35, 54, 0.76) 0%, rgba(8, 58, 90, 0.62) 58%, rgba(8, 58, 90, 0.24) 100%), url("../images/cargo-ship.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 12rem 0 6rem;
}

.page-hero h1 {
  font-size: 4.8rem;
  margin-bottom: 1rem;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  max-width: 760px;
}

.hero-content {
  padding-top: 5.5rem;
  position: relative;
  z-index: 2;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.38rem;
  max-width: 780px;
  margin: 1.5rem 0 2rem;
  overflow-wrap: break-word;
}

.hero-actions .btn {
  min-width: min(100%, 225px);
}

.stats-band {
  background: #eef6fa;
  color: var(--ink);
}

.stats-grid {
  border-left: 1px solid rgba(8, 58, 90, 0.1);
}

.stat-item {
  border-right: 1px solid rgba(8, 58, 90, 0.1);
  min-height: 150px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item i {
  color: var(--orange);
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.stat-value {
  color: var(--navy);
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.stat-label {
  color: var(--muted);
  display: block;
  font-size: 0.93rem;
  line-height: 1.35;
  margin-top: 0.35rem;
}

.about-section {
  background: var(--paper);
}

.about-section p:not(.section-kicker) {
  color: #3f4e5c;
  font-size: 1.08rem;
}

.product-section {
  background: var(--white);
}

.product-tabs {
  gap: 0.75rem;
}

.product-tabs .nav-link {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  display: inline-flex;
  font-weight: 800;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.72rem 1rem;
}

.product-tabs .nav-link.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.category-card {
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 210px;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  text-decoration: none;
}

.category-card::after {
  background: linear-gradient(180deg, rgba(6, 35, 54, 0.26), rgba(6, 35, 54, 0.84));
  border-radius: 0;
  bottom: 0;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.category-card i {
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

.category-card span {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.category-card small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.category-card:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card-wide {
  max-width: 860px;
}

.product-card-head {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 1rem;
  min-height: 132px;
  padding: 1.5rem;
}

.product-card-head h3,
.product-card-head p {
  color: var(--white);
}

.product-card-head p {
  margin-bottom: 0;
  opacity: 0.82;
}

.product-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 54px;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.product-icon i {
  font-size: 1.6rem;
}

.rice-basmati {
  background: linear-gradient(135deg, #164a35, #8d7028);
}

.rice-non-basmati {
  background: linear-gradient(135deg, #0a5470, #5f7d47);
}

.makhana {
  background: linear-gradient(135deg, #46545f, #c39a4a);
}

.lentils {
  background: linear-gradient(135deg, #782e3b, #d47724);
}

.kesar {
  background: linear-gradient(135deg, #842a1f, #d49b21);
}

.onions {
  background: linear-gradient(135deg, #5c305c, #a64f6c);
}

.category-card.rice-basmati {
  background-image: url("../images/rice.jpg");
  background-position: center;
  background-size: cover;
}

.category-card.rice-non-basmati {
  background-image: url("../images/cargo-ship1.jpg");
  background-position: center;
  background-size: cover;
}

.category-card.makhana {
  background-image: url("../images/makhana1.jpeg");
  background-position: center;
  background-size: cover;
}

.category-card.lentils {
  background-image: url("../images/urad.jpeg");
  background-position: center;
  background-size: cover;
}

.category-card.kesar {
  background-image: url("../images/kesar1.jpeg");
  background-position: center;
  background-size: cover;
}

.category-card.onions {
  background-image: url("../images/onion.jpeg");
  background-position: center;
  background-size: cover;
}

.section-logo-panel {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(8, 58, 90, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(8, 58, 90, 0.1);
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 1.35rem;
}

.section-logo-panel img {
  width: min(100%, 460px);
}

.product-visual-section {
  background: var(--white);
  padding: 3rem 0 0;
}

.product-photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-photo-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

.product-photo {
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.product-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-photo figcaption {
  background: linear-gradient(180deg, rgba(6, 35, 54, 0), rgba(6, 35, 54, 0.82));
  bottom: 0;
  color: var(--white);
  font-weight: 850;
  left: 0;
  padding: 3rem 1rem 1rem;
  position: absolute;
  right: 0;
}

.rice-variety-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 1.25rem;
}

.rice-variety-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 58, 90, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.rice-variety-card img {
  aspect-ratio: 4 / 3;
  background: var(--paper);
  display: block;
  object-fit: cover;
  width: 100%;
}

.rice-variety-card span {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-weight: 850;
  line-height: 1.22;
  min-height: 64px;
  padding: 0.85rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1.4rem;
}

.chip-list span {
  background: #f5f8f7;
  border: 1px solid #e1ebe8;
  border-radius: 999px;
  color: #263b47;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.58rem 0.85rem;
}

.info-panel {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 8px;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 1.5rem;
}

.info-panel h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.info-panel p {
  color: #445464;
  margin-bottom: 0;
}

.markets-section {
  background: var(--paper);
}

.markets-section p:not(.section-kicker),
.logistics-section p:not(.section-kicker),
.contact-section p:not(.section-kicker) {
  color: #445464;
}

.market-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.market-tile {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 8px;
  display: flex;
  gap: 0.9rem;
  min-height: 104px;
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(6, 26, 47, 0.08);
}

.market-tile i {
  color: var(--teal);
  font-size: 1.55rem;
}

.market-tile span {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
}

.market-wide {
  grid-column: 1 / -1;
}

.logistics-section {
  background: var(--white);
}

.process-list {
  border-left: 2px solid var(--line);
  display: grid;
  gap: 1.2rem;
  padding-left: 1.6rem;
}

.process-step {
  align-items: flex-start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 58px 1fr;
  position: relative;
}

.process-step::before {
  background: var(--orange);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(245, 130, 31, 0.32);
  content: "";
  height: 18px;
  left: -31px;
  position: absolute;
  top: 0.4rem;
  width: 18px;
}

.process-step > span {
  color: var(--orange-deep);
  font-weight: 900;
  line-height: 1.2;
}

.process-step h3 {
  margin-bottom: 0.2rem;
}

.process-step p {
  margin-bottom: 0;
}

.why-section {
  background: var(--paper);
}

.why-section h2,
.why-section .reason-card h3 {
  color: var(--navy);
}

.why-section .section-note,
.why-section .reason-card p {
  color: #445464;
}

.reason-card {
  background: var(--white);
  border: 1px solid rgba(8, 58, 90, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(8, 58, 90, 0.08);
  height: 100%;
  padding: 1.5rem;
}

.reason-card i {
  color: var(--orange);
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1.1rem;
}

.reason-card p {
  margin-bottom: 0;
}

.profile-tile {
  background: var(--white);
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(6, 26, 47, 0.08);
  height: 100%;
  padding: 1.5rem;
}

.profile-tile i {
  color: var(--teal);
  display: block;
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.profile-tile p {
  color: #445464;
  margin-bottom: 0;
}

.testimonial-card,
.achievement-card {
  background: var(--white);
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(6, 26, 47, 0.08);
  height: 100%;
  padding: 1.5rem;
}

.testimonial-card i,
.achievement-card i {
  color: var(--orange);
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.testimonial-card p,
.achievement-card p {
  color: #445464;
}

.testimonial-card strong {
  color: var(--navy);
}

.logo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-grid div {
  align-items: center;
  background: var(--white);
  border: 1px dashed rgba(6, 26, 47, 0.24);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  font-weight: 800;
  justify-content: center;
  min-height: 110px;
  padding: 1rem;
  text-align: center;
}

.certificate-panel {
  background: var(--white);
  border: 1px dashed rgba(6, 26, 47, 0.24);
  border-radius: 8px;
  padding: 2rem;
}

.certificate-panel h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.certificate-panel p {
  color: #445464;
  margin-bottom: 0;
}

.cta-band {
  background: var(--paper);
  padding: 4.5rem 0;
}

.cta-band h2 {
  max-width: 850px;
}

.contact-section {
  background: var(--paper);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-list a,
.contact-list > span {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-weight: 800;
  gap: 0.75rem;
  text-decoration: none;
}

.contact-list i {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 8px;
  color: var(--teal);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.map-frame {
  border: 1px solid rgba(6, 26, 47, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  display: block;
  height: 380px;
  width: 100%;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 12px 30px rgba(6, 26, 47, 0.22);
  color: var(--white);
  display: inline-flex;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 22px;
  text-decoration: none;
  width: 56px;
  z-index: 1040;
}

.whatsapp-float:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.whatsapp-float i {
  font-size: 1.65rem;
}

.enquiry-form {
  background: var(--white);
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 4vw, 2rem);
}

.form-label {
  color: var(--navy);
  font-weight: 800;
}

.form-control,
.form-select {
  border-color: #d9e2e6;
  border-radius: 8px;
  min-height: 48px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 0.22rem rgba(0, 141, 160, 0.16);
}

.site-footer {
  background: #eef6fa;
  border-top: 1px solid rgba(8, 58, 90, 0.1);
  color: #526676;
  padding: 3.5rem 0 1.5rem;
}

.footer-logo {
  max-width: min(230px, 100%);
  margin-right: 0.65rem;
  width: 230px;
}

.footer-brand {
  color: var(--navy);
  display: none;
  font-weight: 800;
}

.footer-brand-wrap {
  align-items: center;
  display: flex;
  margin-bottom: 1rem;
}

.footer-text {
  color: #526676;
  max-width: 330px;
}

.site-footer h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer a,
.site-footer .col-lg-3 > span {
  color: #415767;
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(8, 58, 90, 0.12);
  color: #6f808c;
  font-size: 0.92rem;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #415767;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--orange);
}

.copyright {
  font-size: 0.92rem;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3rem;
  }

  .site-nav .navbar-collapse {
    background: var(--white);
    border: 1px solid rgba(8, 58, 90, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(8, 58, 90, 0.14);
    margin-top: 0.75rem;
    max-height: calc(100vh - 128px);
    overflow-y: auto;
    padding: 0.65rem;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .navbar-nav .nav-link {
    border-radius: 8px;
    padding: 0.7rem 0.85rem;
  }

  .dropdown-menu {
    background: #f4f8fb;
    border: 0;
    box-shadow: none;
    margin: 0.2rem 0 0.6rem;
    padding: 0.35rem;
  }

  .nav-cta {
    margin-top: 0.35rem;
    width: 100%;
  }

  .hero-section {
    background-image: linear-gradient(90deg, rgba(6, 35, 54, 0.84) 0%, rgba(8, 58, 90, 0.68) 62%, rgba(8, 58, 90, 0.36) 100%), url("../images/cargo-ship.jpg");
  }

  .page-hero {
    padding: 11rem 0 5rem;
  }

  .page-hero h1 {
    font-size: 4rem;
  }

  .product-tabs {
    overflow-x: auto;
    padding-bottom: 0.35rem;
    flex-wrap: nowrap;
  }

  .product-tabs .nav-link {
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-lede {
    font-size: 1.18rem;
  }

  .stat-value {
    font-size: 1.55rem;
  }

  .brand-wordmark {
    max-width: 170px;
  }

  .brand-logo {
    max-width: min(198px, 58vw);
    width: 198px;
  }

  .top-contact {
    gap: 0.4rem 0.85rem;
  }

  .top-note {
    display: none;
  }

  .hero-section {
    min-height: 720px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stat-item {
    min-height: 142px;
    padding: 1.1rem;
  }

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

  .process-list {
    padding-left: 1.1rem;
  }

  .process-step {
    grid-template-columns: 44px 1fr;
  }

  .process-step::before {
    left: -25px;
  }

  .info-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section-pad {
    padding: 4rem 0;
  }

  .product-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 10.5rem 0 4rem;
  }

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

  .page-hero p:not(.eyebrow) {
    font-size: 1.08rem;
  }

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

  .brand-logo {
    max-width: 176px;
    width: 176px;
  }

  .product-photo-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 16px;
    height: 50px;
    right: 16px;
    width: 50px;
  }
}
