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

:root {
  --bg: #f7f7f2;
  --bg-soft: #fffdf8;
  --white: #ffffff;
  --navy: #15314b;
  --navy-2: #244c6b;
  --text: #1f2937;
  --muted: #2e2f31;
  --line: #e8e3d8;
  --blue: #275df2;
  --blue-soft: #edf3ff;
  --gold: #c9902f;
  --gold-soft: #fff3dd;
  --green: #22a06b;
  --orange: #f59e0b;
  --purple: #8256d0;
  --shadow-sm: 0 8px 24px rgba(25, 45, 80, .06);
  --shadow-md: 0 16px 50px rgba(25, 45, 80, .10);
  --shadow-lg: 0 28px 80px rgba(25, 45, 80, .16);
  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 14px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 144, 47, .08), transparent 30%),
    radial-gradient(circle at top right, rgba(39, 93, 242, .06), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.section {
  padding: 60px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid #f0dfba;
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-tag.light {
  background: rgba(255, 255, 255, .82);
  color: var(--navy);
  border-color: rgba(255, 255, 255, .95);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-title.light {
  color: var(--navy);
}

.section-sub,
.about-text,
.quality-text,
.contact-text,
.prod-card-desc,
.pack-card p,
.why-card p,
.product-body p {
  color: var(--muted);
  font-size: 1.02rem;
  
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .96rem;
  transition: .28s ease;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 68%, #4b7dff 100%);
  box-shadow: 0 14px 32px rgba(39, 93, 242, .24);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(39, 93, 242, .28);
}

.btn-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(21, 49, 75, .10);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: #fff;
}

.btn-outline {
  color: var(--blue);
  border: 1.5px solid rgba(39, 93, 242, .2);
  background: #fff;
}

.btn-outline:hover {
  transform: translateY(-2px);
  background: var(--blue-soft);
}

.btn-full {
  width: 100%;
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: .3s ease;
}

.navbar.scrolled {
  background: rgba(255, 253, 248, .86);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(20, 45, 70, .08);
  padding: 12px 0;
}

.nav-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-weight: 800;
  color: var(--navy);
}

.logo-sub {
  font-size: .76rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy);
}

.nav-links a:hover,
.nav-links a.active {
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: #000;
}

.nav-links .nav-cta {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.nav-links .nav-cta:hover {
  color: #000;
}
.nav-links .nav-cta:active {
  color: #000 !important;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  width: 42px;
  height: 42px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 7px 0;
  border-radius: 2px;
  transition: .2s ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 20px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, .92) 0%, rgba(255, 250, 243, .78) 42%, rgba(255, 250, 243, .42) 70%, rgba(255, 250, 243, .64) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .30));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 40px 50%;
  width: min(1100px, calc(100% - 40px));
  height: 140px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 247, 242, 1));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(21, 49, 75, .08);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 18px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #58d3a3);
  box-shadow: 0 0 0 5px rgba(34, 160, 107, .12);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.03em;
  color: var(--navy);
  /* max-width: 760px; */
}

.hero-subtitle {
  /* max-width: 620px; */
  color: #4f6172;
  font-size: 1.1rem;
  margin-top: 22px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 18px 22px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(21, 49, 75, .08);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}

.stat-label {
  font-size: .88rem;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 42px;
  background: var(--line);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--muted);
  font-size: .82rem;
}

.scroll-line {
  width: 2px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(39, 93, 242, 0), rgba(39, 93, 242, .8));
}

.clients-strip {
  padding: 20px 0 0;
}

.clients-strip .container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 20px 24px;
}

.clients-label {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.clients-logos span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
  font-size: .94rem;
}

.about-grid,
.quality-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 44px;
  align-items: center;
}

.img-stack {
  position: relative;
  min-height: 560px;
}

.img-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .85);
}

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

.img-card--main {
  left: 0;
  top: 0;
  width: 78%;
  height: 470px;
}

.img-card--accent {
  right: 0;
  bottom: 0;
  width: 50%;
  height: 300px;
}

.img-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-sm);
}

.img-badge-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.img-badge-text {
  font-size: .86rem;
  color: var(--muted);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 28px;
}

.highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.highlight-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.highlight-icon.green {
  background: var(--green);
}

.highlight-icon.blue {
  background: var(--blue);
}

.highlight-icon.orange {
  background: var(--orange);
}

.highlight-icon.purple {
  background: var(--purple);
}

.production {
  position: relative;
  overflow: hidden;
}

.production-bg {
  position: absolute;
  inset: 0;
}

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

.production-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 247, 242, .96), rgba(247, 247, 242, .78));
}

.production .container {
  position: relative;
  z-index: 2;
}

.production-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

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

.prod-card {
  padding: 28px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-md);
}

.prod-card--featured {
  background: linear-gradient(180deg, #fff, #eef4ff);
  transform: translateY(-10px);
}

.prod-card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.prod-card-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}

.prod-card-label {
  font-weight: 700;
  color: var(--navy-2);
  margin: 12px 0 10px;
}

.products-header,
.packing-header,
.why-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

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

.product-card,
.product-card--custom,
.spec-table-wrap,
.pack-card,
.why-card,
.contact-form-wrap,
.contact-info,
.quality-step,
.q-badge {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.product-card,
.product-card--custom {
  border-radius: 24px;
  overflow: hidden;
}

.product-card:hover,
.product-card--custom:hover,
.pack-card:hover,
.why-card:hover,
.contact-form-wrap:hover,
.spec-table-wrap:hover {
  transform: translateY(-4px);
  transition: .25s ease;
  box-shadow: var(--shadow-md);
}

.product-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 16px;
  background: linear-gradient(180deg, rgba(20, 40, 70, .10), rgba(20, 40, 70, 0));
}

.product-tag {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--navy);
  font-weight: 700;
  font-size: .8rem;
}

.product-body {
  padding: 22px;
}

.product-body h3,
.product-card--custom h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.spec {
  padding: 12px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.spec-label {
  display: block;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  font-weight: 800;
}

.spec-val {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-weight: 700;
}

.product-card--custom {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #fff7ea, #ffffff);
}

.product-custom-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.custom-list {
  margin: 16px 0 22px;
  display: grid;
  gap: 10px;
}

.custom-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.custom-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.spec-table-wrap {
  margin-top: 30px;
  border-radius: 26px;
  padding: 28px;
}

.spec-table-title {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.spec-table {
  display: grid;
  gap: 10px;
}

.spec-row {
  display: grid;
  grid-template-columns: 1.1fr .7fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.spec-row--head {
  background: linear-gradient(90deg, #eff4ff, #fff7ea);
  color: var(--navy);
  font-weight: 800;
}

.spec-highlight {
  color: var(--blue);
  font-weight: 800;
}

.quality-steps {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.quality-step {
  border-radius: 22px;
  padding: 18px;
  display: flex;
  gap: 16px;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-soft), #fff);
  color: var(--blue);
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--navy);
  margin-bottom: 6px;
}

.quality-visual {
  position: relative;
}

.quality-img-wrap {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.quality-img-wrap img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.quality-badges {
  position: absolute;
  right: -16px;
  bottom: -150px;
  display: grid;
  gap: 14px;
}

.q-badge {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
}

.q-badge-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  border-radius: 16px;
  font-size: 1.4rem;
}

.q-badge-title {
  font-weight: 800;
  color: var(--navy);
}

.q-badge-sub {
  font-size: .9rem;
  color: var(--muted);
}

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

.pack-card,
.why-card {
  border-radius: 24px;
  padding: 24px;
}

.pack-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.pack-card h4,
.why-card h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.why {
  position: relative;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(39, 93, 242, .08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(201, 144, 47, .08), transparent 20%),
    linear-gradient(180deg, #fffdf8, #f5f7fb);
}

.why-overlay {
  position: absolute;
  inset: 0;
}

.why .container {
  position: relative;
  z-index: 1;
}

.why-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef4ff, #fff7ea);
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.contact-info,
.contact-form-wrap {
  border-radius: 30px;
  padding: 30px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.contact-label {
  font-size: .84rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-value {
  font-weight: 700;
  color: var(--navy);
}

.contact-note {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(90deg, #eff4ff, #fff8ec);
  color: var(--navy);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9deea;
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: .2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #98b6ff;
  box-shadow: 0 0 0 4px rgba(39, 93, 242, .08);
}

.form-success {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ecfdf3;
  border: 1px solid #c9f1da;
  color: #0b7a44;
  font-weight: 700;
}

.footer {
  background: linear-gradient(180deg, #17324c, #11263a);
  color: rgba(255, 255, 255, .84);
  padding: 0px 0 18px;
  margin-top: 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 30px;
}

.footer-brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, .72);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-col h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col li,
.footer-col a {
  color: rgba(255, 255, 255, .72);
}

.footer-col a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
}

.footer-bottom {
  /* margin-top: 34px; */
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .92rem;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 1080px) {

  .production-cards,
  .packing-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .img-stack {
    min-height: 500px;
  }

  .quality-badges {
    position: static;
    margin-top: 18px;
  }

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

@media (max-width: 820px) {
  .navbar {
    padding: 12px 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 20px;
    width: min(280px, calc(100% - 40px));
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero {
    min-height: auto;
    padding: 130px 20px 70px;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-stats {
    gap: 14px;
    width: 100%;
  }

  .stat-divider {
    display: none;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .form-row,
  .products-grid,
  .production-cards,
  .packing-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .img-stack {
    min-height: auto;
    display: grid;
    gap: 20px;
  }

  .img-card {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 260px;
  }

  .img-card--main,
  .img-card--accent {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .quality-img-wrap img {
    min-height: 320px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {

  .container,
  .nav-container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 40px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-scroll {
    display: none;
  }

  .contact-info,
  .contact-form-wrap,
  .spec-table-wrap,
  .pack-card,
  .why-card,
  .prod-card {
    padding: 22px;
  }
}

/* Premium Success Popup */
.premium-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 9999;
}

.premium-success.show {
  opacity: 1;
  pointer-events: all;
}

.success-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  transform: translateY(30px) scale(0.9);
  transition: 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.premium-success.show .success-card {
  transform: translateY(0) scale(1);
}

.checkmark {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #00c853, #43e97b);
  color: white;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop 0.5s ease;
}

@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}