:root {
  --green-950: #06170f;
  --green-900: #0a2618;
  --green-850: #0b2f1d;
  --green-800: #123a24;
  --green-700: #17502f;
  --green-600: #1f7a45;
  --green-500: #2ca45f;
  --gold-600: #a8843f;
  --gold-500: #c6a35c;
  --gold-400: #dec478;
  --cream-25: #fffdf8;
  --cream-50: #fbf8ef;
  --cream-100: #f3eddb;
  --slate-950: #121a15;
  --slate-800: #26362d;
  --slate-700: #45544c;
  --slate-500: #6b776f;
  --white: #ffffff;
  --black: #000000;
  --shadow-xs: 0 10px 28px rgba(13, 38, 25, .08);
  --shadow-sm: 0 18px 48px rgba(13, 38, 25, .12);
  --shadow-md: 0 26px 80px rgba(13, 38, 25, .18);
  --shadow-lg: 0 34px 120px rgba(0, 0, 0, .28);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --radius-xl: 52px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--slate-950);
  background: var(--cream-50);
  overflow-x: hidden;
}
body.mobile-menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold-400); color: var(--green-950); }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-400), var(--green-500));
  z-index: 9999;
  box-shadow: 0 0 18px rgba(222, 196, 120, .65);
}
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  left: -140px;
  top: -140px;
  background: radial-gradient(circle, rgba(222,196,120,.18), rgba(31,122,69,.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate3d(var(--mouse-x, -999px), var(--mouse-y, -999px), 0);
  transition: transform .15s linear;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  color: rgba(255,255,255,.78);
  padding: 12px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(8px);
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar i { color: var(--gold-400); margin-right: 6px; }
.topbar a { transition: color .2s ease; }
.topbar a:hover { color: var(--gold-400); }

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 18px 0;
  transition: all .28s ease;
}
@media (min-width: 992px) { .fixed-nav { top: 45px; } }
.fixed-nav.nav-scrolled {
  top: 0;
  background: rgba(255, 253, 248, .91);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-xs);
  padding: 10px 0;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-wrap {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(198, 163, 92, .45);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0,0,0,.15);
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-logo { width: 48px; height: 48px; object-fit: contain; }
.brand-logo-fallback {
  display: none;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--gold-400);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  line-height: 1.05;
  font-weight: 900;
  text-align: center;
  letter-spacing: .04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: var(--white); font-size: 17px; font-weight: 900; letter-spacing: -.03em; }
.brand-text small { color: rgba(255,255,255,.68); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-top: 5px; }
.nav-scrolled .brand-text strong { color: var(--green-900); }
.nav-scrolled .brand-text small { color: var(--slate-500); }
.navbar .nav-link {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px !important;
  border-radius: 999px;
  transition: all .2s ease;
}
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--white); background: rgba(255,255,255,.12); }
.nav-scrolled .nav-link { color: var(--slate-700); }
.nav-scrolled .nav-link:hover, .nav-scrolled .nav-link.active { color: var(--green-900); background: rgba(31, 122, 69, .09); }
.navbar-toggler { border: 0; box-shadow: none !important; background: rgba(255,255,255,.9); border-radius: 14px; padding: 10px; }

.btn { border-radius: 999px; font-weight: 900; letter-spacing: -.01em; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: all .22s ease; }
.btn-primary { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); border: 0; color: var(--green-950); box-shadow: 0 16px 34px rgba(198, 163, 92, .28); }
.btn-primary:hover, .btn-primary:focus { background: linear-gradient(135deg, #edd78f, #caa45a); color: var(--green-950); transform: translateY(-2px); box-shadow: 0 22px 48px rgba(198, 163, 92, .38); }
.btn-outline-light { border-color: rgba(255,255,255,.38); color: var(--white); background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.btn-outline-light:hover { background: var(--white); color: var(--green-900); }
.nav-cta { padding: 10px 18px; }

.hero-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(222,196,120,.28), transparent 28%),
    radial-gradient(circle at 16% 36%, rgba(44,164,95,.22), transparent 28%),
    linear-gradient(142deg, #06170f 0%, #0b2b1a 48%, #123a24 100%);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    url('../img/pattern-grain.svg');
  background-size: 58px 58px, 58px 58px, 260px 260px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.86), rgba(0,0,0,.16));
}
.hero-noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255,255,255,.07), transparent 52%);
  opacity: .8;
}
.hero-section::before {
  content: '';
  position: absolute;
  width: 760px;
  height: 760px;
  right: -250px;
  bottom: -350px;
  border-radius: 50%;
  background: rgba(222,196,120,.16);
  filter: blur(8px);
}
.min-vh-hero { min-height: 900px; padding-top: 150px; padding-bottom: 80px; }
.hero-copy { position: relative; z-index: 3; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px);
  font-weight: 800;
  font-size: 13px;
}
.pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 0 rgba(222,196,120,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(222,196,120,0); } 100% { box-shadow: 0 0 0 0 rgba(222,196,120,0); } }
.hero-title {
  max-width: 780px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.065em;
  margin: 0 0 26px;
}
.hero-subtitle { max-width: 650px; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.85; margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-proof .proof-item {
  min-height: 112px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
}
.proof-item strong { display: block; color: var(--gold-400); font-size: 34px; line-height: 1; font-weight: 900; letter-spacing: -.05em; }
.proof-item span { display: block; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 750; margin-top: 10px; }

.hero-showcase { position: relative; min-height: 640px; z-index: 2; }
.glass-frame {
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.hero-main-image { position: absolute; inset: 44px 22px 88px 38px; transform: rotate(1.5deg); }
.hero-main-image img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  min-width: 270px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: var(--shadow-md);
  color: var(--green-900);
}
.floating-card img { width: 74px; height: 64px; object-fit: cover; border-radius: 18px; background: var(--cream-50); }
.floating-card span { display: block; color: var(--slate-500); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { display: block; color: var(--green-900); font-size: 15px; font-weight: 900; margin-top: 4px; }
.floating-product { left: 0; bottom: 100px; transform: rotate(-2deg); }
.floating-delivery { right: 0; top: 70px; transform: rotate(2deg); }
.hero-status-panel {
  position: absolute;
  right: 40px;
  bottom: 0;
  max-width: 400px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 28px;
  background: rgba(7, 29, 18, .88);
  border: 1px solid rgba(222,196,120,.3);
  box-shadow: var(--shadow-md);
}
.status-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--green-500); margin-top: 4px; box-shadow: 0 0 0 8px rgba(44,164,95,.14); }
.hero-status-panel span { display: block; color: var(--gold-400); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.hero-status-panel strong { display: block; color: var(--white); font-size: 15px; line-height: 1.5; margin-top: 7px; }

.trust-section { position: relative; z-index: 2; margin-top: -46px; padding-bottom: 34px; }
.trust-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 24px 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(198,163,92,.22);
  box-shadow: var(--shadow-sm);
}
.trust-title { color: var(--green-900); font-weight: 900; letter-spacing: -.03em; }
.trust-items { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }
.trust-items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31,122,69,.08);
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 800;
}
.trust-items i { color: var(--green-600); }

.section { position: relative; padding: 112px 0; overflow: hidden; }
.section-light { background: var(--cream-50); }
.section-dark { background: linear-gradient(138deg, var(--green-950), var(--green-800)); color: var(--white); }
.section-dark::before, .quality-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(222,196,120,.14), transparent 28%), radial-gradient(circle at 90% 10%, rgba(44,164,95,.18), transparent 30%);
  pointer-events: none;
}
.eyebrow {
  display: inline-block;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow.gold { color: var(--gold-400); }
.section-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.055em;
  margin: 0;
  color: var(--green-950);
}
.section-heading { max-width: 830px; }
.section-heading p, .section-lead { color: var(--slate-700); font-size: 17px; line-height: 1.8; }
.text-white-60 { color: rgba(255,255,255,.64) !important; }

.image-story-card {
  position: relative;
  min-height: 610px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--green-900);
}
.image-story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.image-story-card:hover img { transform: scale(1.04); }
.image-story-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,23,15,.82), rgba(6,23,15,.05) 62%); }
.image-story-content { position: absolute; left: 34px; right: 34px; bottom: 34px; z-index: 2; color: var(--white); }
.image-story-content span { color: var(--gold-400); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.image-story-content h3 { font-size: clamp(25px, 3vw, 38px); line-height: 1.12; font-weight: 900; letter-spacing: -.04em; margin: 10px 0 12px; }
.image-story-content p { color: rgba(255,255,255,.72); line-height: 1.75; margin: 0; }
.stacked-capabilities { display: grid; gap: 18px; }
.capability-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(198,163,92,.18);
  box-shadow: var(--shadow-xs);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.capability-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(31,122,69,.25); }
.icon-box, .product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(31,122,69,.09);
  color: var(--green-700);
  font-size: 24px;
  margin-bottom: 18px;
}
.capability-card h3, .product-card h3, .process-card h3 { font-size: 21px; font-weight: 900; letter-spacing: -.035em; color: var(--green-950); margin-bottom: 10px; }
.capability-card p, .process-card p { color: var(--slate-700); line-height: 1.75; margin: 0; }

.product-card {
  height: 100%;
  min-height: 430px;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  box-shadow: 0 20px 70px rgba(0,0,0,.16);
  overflow: hidden;
  position: relative;
  transition: transform .28s ease, background .28s ease;
}
.product-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.12); }
.product-media { height: 190px; border-radius: 28px; overflow: hidden; margin-bottom: 24px; background: rgba(255,255,255,.12); }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-card .product-icon { background: rgba(222,196,120,.16); color: var(--gold-400); }
.product-content span { color: var(--gold-400); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { color: var(--white); margin-top: 10px; font-size: 25px; }
.product-card p { color: rgba(255,255,255,.68); line-height: 1.75; }
.product-card ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.product-card li { color: rgba(255,255,255,.8); font-weight: 750; font-size: 14px; display: flex; gap: 9px; align-items: center; }
.product-card li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); flex: 0 0 auto; }
.product-visual { padding-top: 20px; }

.delivery-visual.light { background: rgba(255,255,255,.9); border-color: rgba(198,163,92,.22); box-shadow: var(--shadow-md); }
.delivery-visual img { width: 100%; height: auto; }
.timeline-list { display: grid; gap: 18px; }
.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(198,163,92,.18);
  box-shadow: var(--shadow-xs);
}
.timeline-item > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-900);
  color: var(--gold-400);
  font-weight: 900;
}
.timeline-item strong { color: var(--green-950); font-size: 18px; font-weight: 900; }
.timeline-item p { color: var(--slate-700); line-height: 1.7; margin: 7px 0 0; }

.quality-section { background: linear-gradient(135deg, var(--green-950), var(--green-850)); color: var(--white); }
.quality-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.quality-grid div {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.quality-grid i { color: var(--gold-400); font-size: 26px; }
.quality-grid strong { display: block; margin-top: 14px; font-weight: 900; }
.quality-grid span { display: block; margin-top: 8px; color: rgba(255,255,255,.63); line-height: 1.6; font-size: 14px; }
.dashboard-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-lg);
  transform: rotate(1deg);
}
.dashboard-visual img { width: 100%; }

.process-card {
  min-height: 300px;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(198,163,92,.18);
  box-shadow: var(--shadow-xs);
  transition: all .28s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.process-card > span { display: inline-flex; color: var(--gold-600); font-size: 42px; font-weight: 900; letter-spacing: -.06em; margin-bottom: 24px; }

.cta-section { padding: 0 0 48px; background: var(--cream-50); }
.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 46px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 15%, rgba(222,196,120,.28), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  color: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.cta-card h2 { max-width: 760px; font-size: clamp(30px, 4vw, 50px); line-height: 1.05; font-weight: 900; letter-spacing: -.055em; margin: 0 0 12px; }
.cta-card p { color: rgba(255,255,255,.66); margin: 0; line-height: 1.7; }

.contact-section { background: var(--cream-25); }
.contact-info { display: grid; gap: 12px; }
.contact-info a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(198,163,92,.18);
  box-shadow: var(--shadow-xs);
  font-weight: 800;
  color: var(--green-900);
  transition: all .22s ease;
}
.contact-info a:hover { transform: translateX(4px); border-color: rgba(31,122,69,.28); }
.contact-info i { color: var(--green-600); font-size: 20px; }
.small-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 20px;
  background: rgba(198,163,92,.12);
  color: var(--slate-700);
  line-height: 1.6;
  font-size: 14px;
}
.inquiry-form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(198,163,92,.2);
}
.form-label { font-weight: 850; color: var(--green-950); font-size: 14px; }
.form-control, .form-select {
  border-radius: 16px;
  border: 1px solid rgba(69,84,76,.18);
  padding: 13px 15px;
  min-height: 52px;
  font-weight: 650;
  color: var(--slate-800);
  background-color: #fffdf8;
}
.form-control:focus, .form-select:focus { border-color: var(--green-600); box-shadow: 0 0 0 .25rem rgba(31,122,69,.12); }
textarea.form-control { min-height: 140px; }

.footer { padding: 42px 0; background: var(--green-950); color: var(--white); }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo-wrap { width: 58px; height: 58px; border-radius: 20px; }
.footer-brand strong { font-size: 20px; font-weight: 900; letter-spacing: -.03em; }
.footer-brand p { margin: 6px 0 0; color: rgba(255,255,255,.6); max-width: 620px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.72); font-weight: 800; font-size: 14px; }
.footer-links a:hover { color: var(--gold-400); }
.footer small { color: rgba(255,255,255,.5); }

.reveal-up, .reveal-scale { opacity: 0; transform: translateY(26px); }
.reveal-scale { transform: translateY(20px) scale(.98); }
.no-js .reveal-up, .no-js .reveal-scale, .is-visible { opacity: 1 !important; transform: none !important; }

@media (max-width: 1199px) {
  .hero-showcase { min-height: 590px; }
  .floating-delivery { right: -10px; }
  .floating-product { left: -10px; }
}
@media (max-width: 991.98px) {
  html { scroll-padding-top: 78px; }
  .fixed-nav { background: rgba(255,253,248,.93); backdrop-filter: blur(18px); box-shadow: var(--shadow-xs); padding: 10px 0; }
  .brand-text strong { color: var(--green-900); }
  .brand-text small { color: var(--slate-500); }
  .navbar-collapse { margin-top: 14px; padding: 16px; border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
  .navbar .nav-link, .nav-scrolled .nav-link { color: var(--slate-700); }
  .navbar .nav-link:hover, .navbar .nav-link.active { color: var(--green-900); background: rgba(31,122,69,.08); }
  .min-vh-hero { min-height: auto; padding-top: 130px; padding-bottom: 78px; }
  .hero-showcase { min-height: 560px; margin-top: 20px; }
  .trust-card, .cta-card { flex-direction: column; align-items: flex-start; }
  .trust-items { justify-content: flex-start; }
  .section { padding: 84px 0; }
  .image-story-card { min-height: 520px; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 767.98px) {
  .brand-logo-wrap { width: 52px; height: 52px; border-radius: 17px; }
  .brand-logo { width: 42px; height: 42px; }
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 9px; }
  .hero-title { font-size: clamp(38px, 13vw, 56px); }
  .hero-subtitle { font-size: 16px; line-height: 1.75; }
  .btn-lg { width: 100%; padding: 13px 18px; }
  .hero-showcase { min-height: 500px; }
  .hero-main-image { inset: 20px 0 106px 0; border-radius: 34px; transform: none; }
  .floating-card { min-width: 226px; padding: 10px; border-radius: 22px; }
  .floating-card img { width: 58px; height: 52px; }
  .floating-card strong { font-size: 13px; }
  .floating-card span { font-size: 10px; }
  .floating-delivery { top: 8px; right: 4px; }
  .floating-product { left: 4px; bottom: 92px; }
  .hero-status-panel { left: 0; right: 0; bottom: 0; max-width: none; padding: 18px; }
  .trust-section { margin-top: -28px; }
  .trust-card { padding: 22px; }
  .section-title { font-size: clamp(30px, 10vw, 44px); }
  .section-heading p, .section-lead { font-size: 16px; }
  .image-story-card { min-height: 480px; border-radius: 34px; }
  .image-story-content { left: 24px; right: 24px; bottom: 24px; }
  .product-card { min-height: 390px; }
  .quality-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 30px; border-radius: 34px; }
  .inquiry-form { padding: 22px; border-radius: 30px; }
  .footer-brand { align-items: flex-start; }
}
@media (max-width: 420px) {
  .hero-showcase { min-height: 470px; }
  .floating-card { min-width: 205px; }
  .floating-product { bottom: 100px; }
  .proof-item strong { font-size: 30px; }
  .hero-proof .proof-item { padding: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal-up, .reveal-scale { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}
