
:root {
  --bg: #fff8df;
  --bg-soft: #fff2b8;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #ffffff;
  --panel-soft: #fff6cf;
  --text: #211a07;
  --muted: #66572b;
  --line: rgba(79, 60, 10, 0.14);
  --brand: #f2c200;
  --brand-strong: #ffcf1f;
  --brand-deep: #d9ab00;
  --brand-soft: #fff0a6;
  --accent: #1d1a14;
  --accent-2: #332b16;
  --success: #1f8f43;
  --shadow: 0 18px 40px rgba(110, 87, 18, 0.12);
  --shadow-soft: 0 10px 24px rgba(110, 87, 18, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1160px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 207, 31, 0.34), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(180deg, #fff9e7 0%, #fff3bc 52%, #fff9eb 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 84px 0; }
.section-tight { padding: 60px 0; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 14px; }
.section-copy { max-width: 760px; color: var(--muted); margin: 0 0 28px; }
.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(242, 194, 0, 0.16);
  border: 1px solid rgba(79, 60, 10, 0.12);
  color: #694d00;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(255, 247, 212, 0.88);
  border-bottom: 1px solid rgba(79, 60, 10, 0.10);
  box-shadow: 0 10px 30px rgba(110, 87, 18, 0.06);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 22px;
}

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

.brand-logo-wrap {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #141414 0%, #050505 100%);
  border: 1px solid rgba(242, 194, 0, 0.26);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-copy strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
  color: #1e1808;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-copy span {
  display: block;
  color: #6e5b21;
  font-size: 0.90rem;
  margin-top: 4px;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(79, 60, 10, 0.08);
  border-radius: 999px;
  padding: 8px 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  padding: 12px 18px;
  border-radius: 999px;
  color: #2b230f;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(242, 194, 0, 0.12);
  color: #15110a;
  transform: translateY(-1px);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2c200, #ffd84f);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.nav-link.active {
  background: linear-gradient(180deg, rgba(255, 223, 96, 0.30), rgba(242, 194, 0, 0.16));
  color: #1c1607;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.nav-link-cta {
  background: linear-gradient(135deg, #fff2b0 0%, #ffd95e 55%, #efbf1f 100%);
  color: #2a210c;
  border: 1px solid rgba(184, 138, 7, 0.18);
  box-shadow:
    0 12px 26px rgba(242, 194, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.55);
  white-space: nowrap;
  min-width: 132px;
  text-align: center;
  flex-shrink: 0;
}

.nav-link-cta:hover {
  background: linear-gradient(135deg, #fff6c9 0%, #ffe37a 55%, #f4c92f 100%);
  color: #1d1607;
  box-shadow:
    0 16px 30px rgba(242, 194, 0, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

.nav-link-cta.active {
  background: linear-gradient(135deg, #fff2b0 0%, #ffd95e 55%, #efbf1f 100%);
  color: #2a210c;
}

.nav-link-cta::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(79, 60, 10, 0.12);
  color: var(--accent);
  font-size: 1.1rem;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 0 16px;
  gap: 10px;
  position: relative;
  z-index: 20;
}

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

.mobile-nav .nav-link {
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(79, 60, 10, 0.08);
}

.language-switcher {
  position: relative;
  z-index: 30;
}

.language-trigger {
  border: 1px solid rgba(201, 154, 14, 0.18);
  background: linear-gradient(135deg, #fffdf4 0%, #fff4c6 52%, #ffe48a 100%);
  color: #2a210c;
  border-radius: 999px;
  padding: 12px 18px;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  box-shadow:
    0 12px 28px rgba(242, 194, 0, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.65);
  transition: all 0.25s ease;
}

.language-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 154, 14, 0.28);
  box-shadow:
    0 16px 30px rgba(242, 194, 0, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #2a210c;
}

.language-chevron {
  font-size: 0.9rem;
  color: #8c6d10;
  transition: transform 0.25s ease;
}

.flag {
  position: relative;
  display: inline-block;
  width: 22px;
  min-width: 22px;
  height: 15px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.flag-ms {
  background:
    repeating-linear-gradient(
      to bottom,
      #c9152b 0 2px,
      #ffffff 2px 4px
    );
}

.flag-ms::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 8px;
  background: #0c2d83;
}

.flag-ms::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  box-shadow: 2px 0 0 0 #f5d24a;
  border: 1.5px solid #f5d24a;
  border-right-color: transparent;
  background: transparent;
}

.flag-en {
  background:
    linear-gradient(to right, transparent 0 8px, #ffffff 8px 14px, transparent 14px),
    linear-gradient(to bottom, transparent 0 5px, #ffffff 5px 10px, transparent 10px),
    linear-gradient(to right, transparent 0 9px, #cf142b 9px 13px, transparent 13px),
    linear-gradient(to bottom, transparent 0 6px, #cf142b 6px 9px, transparent 9px),
    #012169;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  display: none;
  flex-direction: column;
  min-width: 230px;
  background: linear-gradient(180deg, #fffdf7 0%, #fff4cf 100%);
  border: 1px solid rgba(201, 154, 14, 0.16);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 42px rgba(110, 87, 18, 0.16);
  padding: 10px;
}

.language-menu.is-open {
  display: flex;
}

.language-switcher:has(.language-menu.is-open) .language-chevron {
  transform: rotate(180deg);
}

.language-option {
  width: 100%;
  background: transparent;
  border: 0;
  color: #2a210c;
  text-align: left;
  padding: 14px 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s ease;
}

.language-option:hover,
.language-option.is-active {
  background: linear-gradient(135deg, rgba(255, 239, 167, 0.88), rgba(255, 220, 91, 0.62));
  transform: translateX(2px);
}

.language-option.is-active {
  color: #1f1704;
  box-shadow: inset 0 0 0 1px rgba(201, 154, 14, 0.16);
}

.language-option.is-active::after {
  content: "✓";
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(47, 34, 8, 0.92);
  color: #fff7d4;
  font-size: 0.78rem;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand-deep));
  color: #1e1707;
  box-shadow: 0 14px 28px rgba(242, 194, 0, 0.28);
}
.btn-secondary {
  background: rgba(29, 26, 20, 0.92);
  color: #fff7d4;
  border: 1px solid rgba(29, 26, 20, 0.2);
}
.btn-gold {
  background: linear-gradient(135deg, #fff0a6, #f2c200);
  color: #1c1610;
}

.hero {
  padding: 88px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.hero-grid > * {
  min-width: 0;
}
.hero-card, .glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,248,223,0.92));
  border: 1px solid rgba(79, 60, 10, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.hero-content {
  padding: clamp(28px, 5vw, 52px);
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.hero p { color: var(--muted); font-size: 1.04rem; max-width: 760px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  align-items: stretch;
}
.trust-pill {
  min-height: 76px;
  padding: 15px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffef9 0%, #fff2c4 100%);
  border: 1px solid rgba(201, 154, 14, 0.22);
  color: #34280e;
  text-align: center;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 22px rgba(110, 87, 18, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.trust-pill-link {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.trust-pill-link::after {
  content: "↗";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.78rem;
  opacity: 0.68;
}

.trust-pill-link:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #fff8df 0%, #ffe38f 100%);
  border-color: rgba(201, 154, 14, 0.36);
  color: #241b09;
  box-shadow:
    0 16px 30px rgba(110, 87, 18, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

.trust-pill-link:active {
  transform: translateY(0);
}

.trust-pill-link:focus-visible {
  outline: 3px solid rgba(242, 194, 0, 0.30);
  outline-offset: 3px;
}

.hero-visual {
  overflow: hidden;
  position: relative;
  min-height: 100%;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 221, 87, 0.08) 0%, rgba(18,15,9,0.08) 100%);
  z-index: 1;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(23, 19, 11, 0.78);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff8dd;
  z-index: 2;
}
.hero-overlay strong { font-size: 1.15rem; display: block; }
.hero-overlay p {
  margin: 6px 0 0;
  font-size: 0.89rem;
  line-height: 1.58;
  color: rgba(255, 248, 230, 0.92);
}

.hero-content-premium {
  position: relative;
  overflow: hidden;
}

.hero-content-premium::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 0, 0.22), rgba(242, 194, 0, 0));
  pointer-events: none;
}

.hero-lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.78;
  max-width: 680px;
}

.hero-selling-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.selling-point {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,247,214,0.94));
  border: 1px solid rgba(79, 60, 10, 0.10);
  box-shadow: 0 10px 22px rgba(110, 87, 18, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.selling-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  line-height: 1.3;
  color: #241c0a;
}

.selling-point span {
  display: block;
  color: var(--muted);
  font-size: 0.90rem;
  line-height: 1.5;
}

.hero-goal-box {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,247,209,0.96), rgba(255,228,120,0.55));
  border: 1px solid rgba(201, 154, 14, 0.18);
  box-shadow: 0 16px 30px rgba(242, 194, 0, 0.12);
}

.hero-goal-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #3a2c08;
}

.hero-goal-copy p {
  margin: 0;
  color: #5c4b1c;
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-visual-premium {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,243,191,0.88));
}

.hero-visual-premium img {
  border-radius: 24px;
  min-height: 620px;
  filter: saturate(1.03) contrast(1.02);
}

.hero-visual-topbar {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visual-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(79, 60, 10, 0.10);
  box-shadow: 0 10px 22px rgba(110, 87, 18, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
  color: #2b230f;
  backdrop-filter: blur(10px);
}

.visual-chip-dark {
  background: rgba(24,20,12,0.80);
  color: #fff8db;
  border-color: rgba(255,255,255,0.12);
}

.hero-floating-info {
  position: absolute;
  left: 18px;
  top: 82px;
  width: min(220px, calc(100% - 36px));
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 249, 233, 0.94);
  border: 1px solid rgba(79, 60, 10, 0.10);
  box-shadow: 0 18px 34px rgba(110, 87, 18, 0.14);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.hero-floating-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(242, 194, 0, 0.14);
  color: #7a5a00;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-floating-info strong {
  display: block;
  line-height: 1.32;
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: #241c0a;
}

.hero-floating-info p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-overlay {
  inset: auto 16px 16px 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26,19,8,0.82), rgba(61,44,11,0.70));
  backdrop-filter: blur(12px);
}

.hero-overlay strong {
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-product-name {
  display: inline-flex;
  align-items: center;
  margin: 14px 0 16px;
  padding: 11px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,247,210,0.98), rgba(255,231,128,0.82));
  border: 1px solid rgba(186, 142, 13, 0.18);
  box-shadow:
    0 10px 22px rgba(242, 194, 0, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.55);
  color: #6f5100;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-content-premium h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.7rem, 5.1vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
  color: #1d1708;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.52),
    0 14px 28px rgba(103, 79, 13, 0.08);
}

.hero-content-premium .hero-lead {
  margin-top: 2px;
  max-width: 36ch;
  font-size: 1.02rem;
  line-height: 1.82;
  color: #5d4b1d;
}

.hero-selling-points {
  margin-top: 22px;
}

.selling-point {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,247,214,0.94));
  border: 1px solid rgba(79, 60, 10, 0.10);
  box-shadow: 0 10px 22px rgba(110, 87, 18, 0.06);
}

.hero-goal-box {
  background: linear-gradient(135deg, rgba(255,247,210,0.98), rgba(255,228,120,0.56));
  border: 1px solid rgba(186, 142, 13, 0.16);
  box-shadow: 0 14px 28px rgba(242, 194, 0, 0.10);
}

.hero-visual-premium img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: contain;
  object-position: center center;
  padding: 52px 18px 86px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.22), transparent 34%),
    linear-gradient(180deg, #4b3213 0%, #2c1d0d 100%);
}

.hero-floating-info {
  background: rgba(255, 249, 233, 0.90);
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(26,19,8,0.86), rgba(61,44,11,0.74));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,249,236,0.98));
  border: 1px solid rgba(92, 72, 17, 0.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(96, 76, 16, 0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(96, 76, 16, 0.16);
  border-color: rgba(214, 173, 28, 0.25);
}

.card-featured {
  border-color: rgba(214, 173, 28, 0.28);
  box-shadow: 0 18px 36px rgba(183, 140, 0, 0.16);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(180deg, #fff4bb 0%, #ffe46b 100%);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,244,205,0.95));
  color: #5f4500;
  border: 1px solid rgba(201, 154, 14, 0.22);
  box-shadow:
    0 10px 22px rgba(88, 69, 12, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.card-badge::before {
  content: "★";
  color: #d39b00;
  font-size: 0.82rem;
  line-height: 1;
}

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

.card-body {
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card .price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,232,163,0.95), rgba(247,221,116,0.95));
  color: #7a5800;
  font-weight: 800;
  font-size: 0.94rem;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.38rem;
  line-height: 1.2;
  color: #1f1808;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0 0 18px;
  color: #6a5730;
  line-height: 1.72;
  font-size: 1rem;
  flex: 1;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.card .btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.card .btn-primary {
  box-shadow: 0 10px 20px rgba(242, 194, 0, 0.18);
}

.card .btn-secondary {
  background: #2e281c;
  color: #fff8e4;
  border: 1px solid rgba(46, 40, 28, 0.92);
}

.card .btn-secondary:hover {
  background: #1f1a12;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .card h3 {
    font-size: 1.28rem;
  }

  .card p {
    font-size: 0.98rem;
  }

  .card-actions {
    flex-direction: column;
  }

  .card-actions .btn {
    width: 100%;
    justify-content: center;
  }

    .card-badge {
    top: 12px;
    left: 12px;
    padding: 7px 11px;
    font-size: 0.78rem;
  }
}

.feature-grid, .stats-grid, .share-grid, .contact-grid {
  display: grid;
  gap: 20px;
}

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.share-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.feature, .stat, .share-card, .contact-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,249,235,0.96));
  border: 1px solid rgba(79, 60, 10, 0.10);
  box-shadow: 0 14px 28px rgba(110, 87, 18, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature:hover,
.stat:hover,
.share-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(110, 87, 18, 0.14);
  border-color: rgba(201, 154, 14, 0.22);
}

.feature h3, .share-card h3, .contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
  line-height: 1.3;
  color: #201808;
}

.feature p, .share-card p, .contact-card p {
  color: #6a5730;
  margin: 0;
  line-height: 1.72;
}

.stat {
  text-align: left;
}

.stat strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: #6c5200;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.stat span {
  color: #6a5730;
  line-height: 1.68;
}

.page-hero { padding: 76px 0 34px; }
.page-hero .glass-card { padding: clamp(24px, 4vw, 44px); }
.page-hero h1 { margin: 0 0 12px; font-size: clamp(2.1rem, 4vw, 4rem); }
.page-hero p { color: var(--muted); max-width: 760px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.step {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(79, 60, 10, 0.10);
  box-shadow: var(--shadow-soft);
}
.step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(242,194,0,0.22);
  margin-bottom: 14px;
  font-weight: 800;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 24px;
}
.form-card, .info-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(79, 60, 10, 0.10);
  box-shadow: var(--shadow-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(79, 60, 10, 0.12);
  background: #fffdf5;
  color: var(--text);
  padding: 14px 16px;
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.95rem; }

.site-footer {
  padding: 56px 0 42px;
  margin-top: 28px;
  border-top: 1px solid rgba(201, 154, 14, 0.16);
  background:
    radial-gradient(circle at top left, rgba(255, 210, 67, 0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(184, 134, 11, 0.12), transparent 24%),
    linear-gradient(180deg, #3a2608 0%, #241807 52%, #181006 100%);
  color: #fff4cf;
}

.footer-shell {
  padding-top: 8px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-brand-block {
  padding-right: 10px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(242, 194, 0, 0.14);
  border: 1px solid rgba(255, 216, 95, 0.14);
  color: #ffd86e;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-title {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  line-height: 1.02;
  color: #fff8db;
  letter-spacing: -0.03em;
}

.footer-desc {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 246, 207, 0.76);
  line-height: 1.82;
  font-size: 1rem;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.footer-cta:hover {
  transform: translateY(-1px);
}

.footer-cta-primary {
  background: linear-gradient(135deg, #ffd64e, #eab700);
  color: #1e1707;
  box-shadow: 0 14px 28px rgba(242, 194, 0, 0.22);
}

.footer-cta-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff4c1;
  border: 1px solid rgba(255, 216, 95, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.footer-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.footer-column {
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 245, 214, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 214, 102, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 10px 28px rgba(0, 0, 0, 0.12);
  min-height: 100%;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: #fff7dc;
  font-size: 1.08rem;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-links span,
.footer-links strong {
  color: rgba(255, 244, 207, 0.84);
  line-height: 1.75;
}

.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffe38d;
  transform: translateX(2px);
}

.footer-contact-link {
  display: inline-flex;
  align-items: flex-start;
  width: 100%;
}

.footer-address-link {
  color: #ffe7a5 !important;
}

.footer-address-link:hover {
  color: #fff1bf !important;
}

.footer-hours-label {
  margin-top: 6px;
  color: rgba(255, 216, 95, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-contact-list strong {
  color: #ffe7a5;
  font-weight: 700;
}

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

.footer-points span {
  display: block;
  color: rgba(255, 246, 207, 0.78);
  line-height: 1.72;
  padding-left: 18px;
  position: relative;
}

.footer-points span::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd451;
  font-weight: 900;
}

.footer-bottom-premium {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 216, 95, 0.14);
  color: rgba(255, 246, 207, 0.72);
  font-size: 0.94rem;
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1040px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .footer-grid-premium .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 42px 0 34px;
    background:
      radial-gradient(circle at top left, rgba(255, 210, 67, 0.14), transparent 24%),
      linear-gradient(180deg, #332108 0%, #1f1507 100%);
  }

  .footer-grid-premium {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-grid-premium .footer-column:last-child {
    grid-column: auto;
  }

  .footer-column {
    padding: 18px 18px;
    border-radius: 20px;
  }

  .footer-cta-row {
    flex-direction: column;
    gap: 10px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-title {
    font-size: 2.1rem;
    line-height: 1.05;
  }

  .footer-desc {
    font-size: 0.97rem;
    line-height: 1.75;
  }

  .footer-bottom-premium {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 1040px) {
  .header-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand language"
      "nav nav";
    align-items: center;
    gap: 16px 18px;
    min-height: auto;
    padding: 14px 0;
  }

  .brand {
    grid-area: brand;
    align-items: center;
    min-width: 0;
  }

  .brand-logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 1.05rem;
    line-height: 1.15;
    margin-bottom: 4px;
  }

  .brand-copy span {
    font-size: 0.80rem;
    line-height: 1.45;
    max-width: 260px;
  }

  .desktop-nav {
    grid-area: nav;
    width: 100%;
    justify-content: center;
    padding: 8px;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 11px 16px;
    font-size: 0.95rem;
  }

  .nav-link-cta {
    min-width: 122px;
  }

  .header-actions {
    grid-area: language;
    justify-self: end;
  }

  .language-trigger {
    min-width: 200px;
    padding: 11px 16px;
  }

  .hero-grid,
  .form-wrap,
  .card-grid,
  .feature-grid,
  .stats-grid,
  .share-grid,
  .contact-grid,
  .steps,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual img { min-height: 400px; }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,247,212,0.98));
    box-shadow:
      0 10px 22px rgba(110, 87, 18, 0.10),
      inset 0 1px 0 rgba(255,255,255,0.72);
  }

  .header-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions";
    gap: 14px;
    padding: 12px 0 10px;
    min-height: auto;
  }

  .brand {
    grid-area: brand;
    width: 100%;
    align-items: flex-start;
    gap: 12px;
  }

  .brand-logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    padding: 5px;
  }

  .brand-copy {
    min-width: 0;
    flex: 1;
  }

  .brand-copy strong {
    font-size: 0.98rem;
    line-height: 1.2;
    margin-bottom: 3px;
  }

  .brand-copy span {
    font-size: 0.78rem;
    line-height: 1.45;
    max-width: none;
  }

  .header-actions {
    grid-area: actions;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .language-switcher {
    flex: 1;
    min-width: 0;
  }

  .language-trigger {
    width: 100%;
    min-width: 0;
    padding: 11px 14px;
    font-size: 0.95rem;
    border-radius: 18px;
  }

  .language-current {
    gap: 8px;
    overflow: hidden;
  }

  .language-current span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-menu {
    width: 100%;
    min-width: 0;
    border-radius: 18px;
  }

  .mobile-nav {
  display: none;
  margin-top: 10px;
  padding: 12px;
  gap: 10px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(79, 60, 10, 0.10);
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(110, 87, 18, 0.10);
  position: relative;
  z-index: 20;
}

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

  .mobile-nav .nav-link {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 16px;
    font-size: 0.96rem;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(79, 60, 10, 0.08);
  }

  .mobile-nav .nav-link.active {
    background: linear-gradient(180deg, rgba(255, 223, 96, 0.30), rgba(242, 194, 0, 0.16));
  }

  .mobile-nav .nav-link-cta {
    min-width: 0;
    width: 100%;
  }

  .hero,
  .section,
  .page-hero {
    padding-top: 56px;
  }

  .hero-grid,
  .form-wrap,
  .card-grid,
  .feature-grid,
  .stats-grid,
  .share-grid,
  .contact-grid,
  .steps,
  .trust-row,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    line-height: 1.02;
  }

  .hero-overlay {
    inset: auto 16px 16px 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .site-header {
    backdrop-filter: blur(16px);
  }

  .brand {
    gap: 10px;
  }

  .brand-logo-wrap {
    width: 52px;
    height: 52px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy span {
    font-size: 0.74rem;
    line-height: 1.4;
  }

  .language-trigger {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .mobile-menu-button {
    width: 44px;
    height: 44px;
  }

  .hero-card,
  .glass-card {
    border-radius: 24px;
  }

  .hero-content {
    padding: 22px;
  }

  .badge {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .trust-pill {
    font-size: 0.90rem;
    padding: 12px 14px;
  }
}

@media (max-width: 1040px) {
  .hero-selling-points {
    grid-template-columns: 1fr;
  }

  .hero-visual-topbar {
    top: 22px;
    left: 22px;
    right: 22px;
  }

  .hero-floating-info {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: 132px;
    width: auto;
  }

  .hero-visual-premium img {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .hero-lead {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-selling-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-goal-box {
    padding: 16px;
  }

  .hero-visual-premium {
    padding: 14px;
  }

  .hero-visual-topbar {
    top: 18px;
    left: 18px;
    right: 18px;
    gap: 8px;
  }

  .visual-chip {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .hero-floating-info {
    left: 18px;
    right: 18px;
    bottom: 110px;
    top: auto;
    width: auto;
    padding: 16px;
  }

  .hero-visual-premium img {
    min-height: 440px;
  }

  .trust-row {
    margin-top: 22px;
  }
}

@media (max-width: 480px) {
  .hero-selling-points {
    margin-top: 20px;
  }

  .selling-point {
    padding: 14px;
    border-radius: 18px;
  }

  .hero-goal-box {
    margin-top: 20px;
    border-radius: 20px;
  }

  .hero-visual-premium {
    padding: 12px;
  }

  .hero-visual-premium img {
    min-height: 380px;
    border-radius: 20px;
  }

  .hero-visual-topbar {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .hero-floating-info {
    left: 14px;
    right: 14px;
    bottom: 100px;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-floating-info strong {
    font-size: 0.98rem;
  }

  .hero-floating-info p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero-overlay {
    inset: auto 14px 14px 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .hero-overlay strong {
    font-size: 0.98rem;
  }

  .hero-overlay p {
    font-size: 0.85rem;
  }
}

@media (max-width: 1040px) {
  .hero-content-premium h1 {
    max-width: 9.5ch;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
  }

  .hero-product-name {
    font-size: 0.92rem;
  }

  .hero-content-premium .hero-lead {
    max-width: 42ch;
  }
}

@media (max-width: 760px) {
  .hero-content-premium h1 {
  max-width: none;
  font-size: clamp(2.25rem, 9.5vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

  .hero-product-name {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin: 12px 0;
    font-size: 0.90rem;
    padding: 10px 12px;
  }

  .hero-content-premium .hero-lead {
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-visual-premium img {
  min-height: 320px;
  object-fit: contain;
  object-position: center center;
  padding: 48px 12px 82px;
  box-sizing: border-box;
}

  .hero-card,
  .hero-content,
  .hero-visual-premium,
  .hero-floating-info,
  .hero-overlay,
  .hero-product-name,
  .selling-point,
  .hero-goal-box,
  .trust-pill {
    max-width: 100%;
  }

  .hero-actions > * {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content-premium h1 {
  font-size: clamp(2.05rem, 10.2vw, 3rem);
  line-height: 0.98;
}

  .hero-product-name {
    font-size: 0.86rem;
    border-radius: 16px;
  }

  .hero-content-premium .hero-lead {
    font-size: 0.95rem;
  }

  .hero-visual-premium img {
  min-height: 280px;
  object-fit: contain;
  object-position: center center;
  padding: 44px 10px 80px;
  box-sizing: border-box;
}
  .hero-visual-topbar {
    top: 12px;
    left: 12px;
    right: 12px;
    gap: 6px;
  }

  .visual-chip {
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  .hero-floating-info {
  left: 10px;
  right: 10px;
  top: 64px;
  bottom: auto;
  width: auto;
  max-width: 230px;
  padding: 11px;
}

  .hero-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* =========================================================
   MOBILE HERO IMAGE FIX
   Susun semula hero visual supaya gambar tidak ditutup teks
   ========================================================= */
@media (max-width: 760px) {
  .hero-visual-premium,
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    align-items: stretch;
  }

  .hero-visual-topbar {
    order: 1;
    position: static !important;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    z-index: auto;
  }

  .hero-floating-info {
    order: 2;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 0;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(79, 60, 10, 0.10);
  }

  .hero-visual-premium img,
  .hero-visual img {
    order: 3;
    position: static !important;
    width: 100%;
    height: auto !important;
    min-height: auto !important;
    aspect-ratio: 4 / 3;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, #5a3a17 0%, #2e1d0d 100%);
    display: block;
  }

  .hero-overlay {
    order: 4;
    position: static !important;
    inset: auto !important;
    width: 100%;
    margin: 0;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(26,19,8,0.92), rgba(61,44,11,0.82));
    box-shadow: 0 12px 24px rgba(20, 15, 8, 0.18);
  }

  .hero-overlay strong {
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-overlay p {
    margin-top: 8px;
    font-size: 0.94rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .hero-visual-premium,
  .hero-visual {
    gap: 10px;
    padding: 10px;
  }

  .hero-floating-info {
    padding: 14px;
    border-radius: 16px;
  }

  .hero-visual-premium img,
  .hero-visual img {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .hero-overlay {
    padding: 14px;
    border-radius: 16px;
  }

  .hero-overlay strong {
    font-size: 0.98rem;
  }

  .hero-overlay p {
    font-size: 0.92rem;
  }
}

/* =========================================================
   IPAD HERO VISUAL POLISH
   Kemas untuk tablet supaya gambar lebih besar dan teks tidak bertindih
   ========================================================= */
@media (min-width: 761px) and (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
    align-items: stretch;
  }

  .hero-visual-premium,
  .hero-visual {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 12px;
    padding: 12px;
    align-items: start;
  }

  .hero-visual-topbar {
    position: static !important;
    order: 1;
    margin: 0;
    gap: 8px;
  }

  .hero-floating-info {
    position: static !important;
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 0;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-visual-premium img,
  .hero-visual img {
    order: 3;
    position: static !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 10px;
    border-radius: 20px;
    background:
      radial-gradient(circle at top, rgba(255,255,255,0.16), transparent 34%),
      linear-gradient(180deg, #5a3a17 0%, #2e1d0d 100%);
    box-sizing: border-box;
  }

  .hero-overlay {
    position: static !important;
    order: 4;
    inset: auto !important;
    width: 100%;
    margin: 0;
    padding: 14px 15px;
    border-radius: 18px;
  }

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

/* =========================================================
   FINAL FIX - TRUST BUTTONS + IPAD HERO RIGHT BLOCK
   Paste this at the VERY BOTTOM of assets/css/styles.css
   ========================================================= */

/* 1) 4 kotak bawah jadikan jelas seperti tombol oren */
.trust-row.trust-row-links .trust-pill-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 15px 16px;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand-deep));
  color: #1e1707;
  border: 0;
  box-shadow: 0 14px 28px rgba(242, 194, 0, 0.28);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.trust-row.trust-row-links .trust-pill-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(242, 194, 0, 0.34);
}

.trust-row.trust-row-links .trust-pill-link:active {
  transform: translateY(0);
}

.trust-row.trust-row-links .trust-pill-link:focus-visible {
  outline: 3px solid rgba(242, 194, 0, 0.28);
  outline-offset: 3px;
}

/* hilangkan rupa kotak info biasa pada 4 tombol bawah */
.trust-row.trust-row-links .trust-pill-link::after {
  display: none;
}

/* 2) iPad / tablet - rapikan block kanan gambar */
@media (min-width: 761px) and (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
  }

  .hero-content {
    padding: 28px;
  }

  .hero-visual,
  .hero-visual-premium {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    align-items: stretch;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual-topbar {
    position: static !important;
    order: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    z-index: auto;
  }

  .hero-visual-premium img,
  .hero-visual img {
    order: 2;
    position: static !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 3;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 12px;
    border-radius: 22px;
    background:
      radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 34%),
      linear-gradient(180deg, #6a4517 0%, #2f1d0c 100%);
    box-sizing: border-box;
  }

  .hero-floating-info {
    order: 3;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 0;
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(79, 60, 10, 0.10);
  }

  .hero-overlay {
    order: 4;
    position: static !important;
    inset: auto !important;
    width: 100%;
    margin: 0;
    padding: 14px 15px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(26,19,8,0.92), rgba(73,50,14,0.82));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 24px rgba(20, 15, 8, 0.18);
  }

  .hero-overlay strong {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .hero-overlay p {
    margin-top: 8px;
    font-size: 0.90rem;
    line-height: 1.58;
  }

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

/* =========================================================
   WHY + STATS PUBLIC POLISH
   ========================================================= */
.feature-grid-premium .feature-premium {
  position: relative;
  overflow: hidden;
}

.feature-grid-premium .feature-premium::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 0, 0.14), rgba(242, 194, 0, 0));
  pointer-events: none;
}

.feature-grid-premium .feature-premium h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.stats-grid-premium .stat-premium {
  position: relative;
  overflow: hidden;
}

.stats-grid-premium .stat-premium::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 0, 0.12), rgba(242, 194, 0, 0));
  pointer-events: none;
}

.stats-grid-premium .stat-premium strong {
  margin-bottom: 14px;
}

/* =========================================================
   CONTACT + DELIVERY PREMIUM SECTION
   ========================================================= */
.section-contact-premium .section-copy {
  max-width: 820px;
}

.contact-grid-primary {
  margin-bottom: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.contact-card-action::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 0, 0.12), rgba(242, 194, 0, 0));
  pointer-events: none;
}

.contact-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,244,198,0.95), rgba(255,224,105,0.85));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
  font-size: 1.2rem;
}

.contact-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 194, 0, 0.14);
  color: #755600;
  font-size: 0.82rem;
  font-weight: 800;
  border: 1px solid rgba(201, 154, 14, 0.16);
}

.contact-card-action h3 {
  margin: 0 0 10px;
  font-size: 1.26rem;
  line-height: 1.2;
}

.contact-card-action p {
  margin: 0 0 18px;
  color: #68562b;
  line-height: 1.72;
}

.contact-link-text {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(29, 26, 20, 0.92);
  color: #fff7d4;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 12px 24px rgba(29, 26, 20, 0.14);
}

.contact-card-whatsapp {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,245,199,0.98));
  border-color: rgba(201, 154, 14, 0.18);
}

.delivery-note {
  margin: 8px 0 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,248,221,0.98), rgba(255,234,145,0.52));
  border: 1px solid rgba(201, 154, 14, 0.18);
  box-shadow: 0 12px 24px rgba(242, 194, 0, 0.10);
}

.delivery-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #352809;
}

.delivery-note p {
  margin: 0;
  color: #5e4c1d;
  line-height: 1.72;
}

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

.delivery-card {
  min-height: 220px;
}

.delivery-card h3 {
  margin: 0 0 10px;
}

.delivery-card .contact-link-text {
  background: linear-gradient(135deg, var(--brand-strong), var(--brand-deep));
  color: #1e1707;
  box-shadow: 0 12px 24px rgba(242, 194, 0, 0.22);
}

.contact-card-action:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(110, 87, 18, 0.14);
  border-color: rgba(201, 154, 14, 0.22);
}

@media (max-width: 1040px) {
  .delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .contact-grid-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid-primary .contact-card-action:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .contact-grid-primary,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-action,
  .delivery-card {
    min-height: auto;
  }

  .contact-link-text {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================================
   CONTACT BRAND POLISH - FINAL
   ========================================================= */
.contact-card-brand {
  position: relative;
  overflow: hidden;
  gap: 18px;
  min-height: 300px;
  padding: 26px;
  border-radius: 26px;
}

.contact-card-brand::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  border-radius: 26px 26px 0 0;
}

.contact-card-brand::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  opacity: 0.14;
  pointer-events: none;
}

.contact-brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  flex-shrink: 0;
}

.contact-brand-mark svg {
  width: 31px;
  height: 31px;
  display: block;
}

.contact-brand-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.contact-card-brand h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
  line-height: 1.22;
  color: #201808;
}

.contact-card-brand p {
  margin: 0;
  color: #5d4d28;
  line-height: 1.78;
}

.contact-card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.contact-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* WhatsApp */
.contact-card--whatsapp {
  background: linear-gradient(180deg, #ffffff 0%, #effff5 100%);
  border-color: rgba(37, 211, 102, 0.22);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.12);
}

.contact-card--whatsapp::before {
  background: linear-gradient(90deg, #128C7E, #25D366);
}

.contact-card--whatsapp::after {
  background: #25D366;
}

.contact-card--whatsapp .contact-brand-mark {
  box-shadow: inset 0 0 0 1px rgba(37, 211, 102, 0.16), 0 10px 22px rgba(37, 211, 102, 0.16);
}

.contact-card--whatsapp .contact-brand-badge {
  background: rgba(37, 211, 102, 0.12);
  color: #11753c;
  border: 1px solid rgba(37, 211, 102, 0.18);
}

.contact-card--whatsapp .contact-card-button {
  background: linear-gradient(90deg, #128C7E, #25D366);
}

/* Google Maps */
.contact-card--maps {
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  border-color: rgba(66, 133, 244, 0.18);
  box-shadow: 0 18px 34px rgba(66, 133, 244, 0.10);
}

.contact-card--maps::before {
  background: linear-gradient(90deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
}

.contact-card--maps::after {
  background: #4285F4;
}

.contact-card--maps .contact-brand-mark {
  box-shadow: inset 0 0 0 1px rgba(66, 133, 244, 0.16), 0 10px 22px rgba(66, 133, 244, 0.16);
}

.contact-card--maps .contact-brand-badge {
  background: rgba(66, 133, 244, 0.10);
  color: #2459b7;
  border: 1px solid rgba(66, 133, 244, 0.18);
}

.contact-card--maps .contact-card-button {
  background: linear-gradient(90deg, #4285F4, #34A853);
}

/* Booking */
.contact-card--booking {
  background: linear-gradient(180deg, #fffdf7 0%, #fff4d8 100%);
  border-color: rgba(184, 134, 11, 0.20);
  box-shadow: 0 18px 34px rgba(184, 134, 11, 0.10);
}

.contact-card--booking::before {
  background: linear-gradient(90deg, #b88700, #f0c63c);
}

.contact-card--booking::after {
  background: #f0c63c;
}

.contact-card--booking .contact-brand-mark {
  box-shadow: inset 0 0 0 1px rgba(184, 134, 11, 0.16), 0 10px 22px rgba(184, 134, 11, 0.14);
}

.contact-card--booking .contact-brand-badge {
  background: rgba(240, 198, 60, 0.18);
  color: #8b6500;
  border: 1px solid rgba(184, 134, 11, 0.18);
}

.contact-card--booking .contact-card-button {
  background: linear-gradient(90deg, #b88700, #f0c63c);
}

@media (max-width: 760px) {
  .contact-card-brand {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .contact-card-brand h3 {
    font-size: 1.24rem;
  }

  .contact-card-button,
  .contact-link-text {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================================
   DELIVERY PLATFORM BRAND POLISH
   ========================================================= */
.delivery-note-premium {
  margin: 8px 0 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 244, 199, 0.78), rgba(255, 239, 177, 0.96));
  border: 1px solid rgba(214, 174, 28, 0.16);
  box-shadow: 0 10px 24px rgba(110, 87, 18, 0.06);
}

.delivery-note-premium strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #5c4500;
}

.delivery-note-premium p {
  margin: 0;
  color: #745d1f;
  line-height: 1.7;
}

.delivery-grid-branded {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.delivery-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 292px;
  padding: 22px;
  border-radius: 24px;
  text-decoration: none;
  border: 1px solid rgba(79, 60, 10, 0.10);
  box-shadow: 0 14px 30px rgba(110, 87, 18, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(110, 87, 18, 0.14);
}

.delivery-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
}

.delivery-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  opacity: 0.12;
  pointer-events: none;
}

.delivery-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.delivery-logo-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 10px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.delivery-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.delivery-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.delivery-card h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.2;
  color: #201808;
  position: relative;
  z-index: 1;
}

.delivery-card p {
  margin: 0;
  color: #66572b;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

.delivery-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  width: fit-content;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

/* GrabFood */
.delivery-card--grab {
  background: linear-gradient(180deg, #ffffff 0%, #f0fff6 100%);
  border-color: rgba(0, 177, 79, 0.18);
}
.delivery-card--grab::before {
  background: linear-gradient(90deg, #00B14F, #1ccf6f);
}
.delivery-card--grab::after {
  background: #00B14F;
}
.delivery-card--grab .delivery-chip {
  background: rgba(0, 177, 79, 0.10);
  color: #0a7c3d;
  border: 1px solid rgba(0, 177, 79, 0.18);
}
.delivery-card--grab .delivery-btn {
  background: linear-gradient(90deg, #00B14F, #12c864);
  color: #fff;
}

/* ShopeeFood */
.delivery-card--shopee {
  background: linear-gradient(180deg, #ffffff 0%, #fff2ea 100%);
  border-color: rgba(238, 77, 45, 0.18);
}
.delivery-card--shopee::before {
  background: linear-gradient(90deg, #EE4D2D, #ff8b44);
}
.delivery-card--shopee::after {
  background: #EE4D2D;
}
.delivery-card--shopee .delivery-chip {
  background: rgba(238, 77, 45, 0.10);
  color: #bf3d21;
  border: 1px solid rgba(238, 77, 45, 0.18);
}
.delivery-card--shopee .delivery-btn {
  background: linear-gradient(90deg, #EE4D2D, #ff8b44);
  color: #fff;
}

/* Foodpanda */
.delivery-card--foodpanda {
  background: linear-gradient(180deg, #ffffff 0%, #fff0f7 100%);
  border-color: rgba(214, 23, 105, 0.18);
}
.delivery-card--foodpanda::before {
  background: linear-gradient(90deg, #D61869, #ff4b98);
}
.delivery-card--foodpanda::after {
  background: #D61869;
}
.delivery-card--foodpanda .delivery-chip {
  background: rgba(214, 23, 105, 0.10);
  color: #a01050;
  border: 1px solid rgba(214, 23, 105, 0.18);
}
.delivery-card--foodpanda .delivery-btn {
  background: linear-gradient(90deg, #D61869, #ff4b98);
  color: #fff;
}

/* Misi Rakyat */
.delivery-card--misi {
  background: linear-gradient(180deg, #fffef7 0%, #fff6cc 100%);
  border-color: rgba(238, 198, 17, 0.22);
}
.delivery-card--misi::before {
  background: linear-gradient(90deg, #f0c400, #ffd94f);
}
.delivery-card--misi::after {
  background: #f0c400;
}
.delivery-card--misi .delivery-chip {
  background: rgba(240, 196, 0, 0.16);
  color: #856400;
  border: 1px solid rgba(184, 134, 11, 0.18);
}
.delivery-card--misi .delivery-btn {
  background: linear-gradient(90deg, #cfa400, #f0c400);
  color: #1f1700;
}

@media (max-width: 1040px) {
  .delivery-grid-branded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .delivery-grid-branded {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    min-height: auto;
  }

  .delivery-btn {
    width: 100%;
  }
}

/* =========================================================
   HOME CONTACT + DELIVERY FINAL RESPONSIVE FIX
   ========================================================= */

.section-contact-premium {
  position: relative;
  overflow: hidden;
}

.section-contact-premium .container {
  max-width: 1180px;
}

.section-contact-premium .badge,
.section-contact-premium .section-title,
.section-contact-premium .section-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-grid-primary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin: 30px 0 22px;
}

.contact-card-brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 330px;
  padding: 24px;
  border-radius: 26px;
}

.contact-card-brand .contact-card-top {
  margin-bottom: 18px;
}

.contact-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 17px;
}

.contact-brand-mark svg {
  width: 30px;
  height: 30px;
}

.contact-brand-badge {
  max-width: 145px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-card-brand h3 {
  font-size: clamp(1.18rem, 1.5vw, 1.42rem);
}

.contact-card-brand p {
  font-size: 0.96rem;
  line-height: 1.7;
}

.contact-card-footer {
  margin-top: auto;
  gap: 12px;
}

.contact-link-text {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.contact-card-button {
  width: fit-content;
}

.delivery-note-premium {
  max-width: 100%;
  margin: 26px 0 18px;
}

.delivery-grid-branded {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.delivery-card {
  min-width: 0;
  min-height: 280px;
  padding: 22px;
  border-radius: 24px;
}

.delivery-card-top {
  gap: 12px;
}

.delivery-logo-wrap {
  width: 54px;
  height: 54px;
  border-radius: 17px;
}

.delivery-chip {
  max-width: 132px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.delivery-card h3 {
  font-size: clamp(1.14rem, 1.4vw, 1.34rem);
}

.delivery-card p {
  font-size: 0.94rem;
  line-height: 1.68;
}

.delivery-btn {
  min-height: 44px;
}

@media (max-width: 1180px) {
  .delivery-grid-branded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .contact-grid-primary {
    grid-template-columns: 1fr;
  }

  .contact-card-brand {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .section-contact-premium .section-title,
  .section-contact-premium .section-copy {
    text-align: left;
  }

  .contact-grid-primary {
    gap: 14px;
    margin-top: 22px;
  }

  .contact-card-brand {
    padding: 18px;
    border-radius: 22px;
    gap: 14px;
  }

  .contact-card-brand .contact-card-top,
  .delivery-card-top {
    align-items: flex-start;
  }

  .contact-brand-mark,
  .delivery-logo-wrap {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .contact-brand-mark svg {
    width: 27px;
    height: 27px;
  }

  .contact-brand-badge,
  .delivery-chip {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 0.78rem;
  }

  .contact-card-brand h3,
  .delivery-card h3 {
    font-size: 1.12rem;
  }

  .contact-card-brand p,
  .delivery-card p {
    font-size: 0.91rem;
    line-height: 1.62;
  }

  .contact-link-text,
  .contact-card-button,
  .delivery-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .delivery-note-premium {
    margin-top: 20px;
    padding: 16px;
    border-radius: 18px;
  }

  .delivery-grid-branded {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .delivery-card {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
    gap: 13px;
  }
}

/* =========================================================
   FOOTER DESKTOP OVERFLOW FIX
   ========================================================= */

.site-footer {
  overflow: hidden;
}

.footer-shell,
.footer-top,
.footer-brand-block,
.footer-grid-premium,
.footer-column {
  min-width: 0;
}

.footer-top {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  width: 100%;
}

.footer-grid-premium {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.footer-column {
  padding: 20px 18px;
  overflow: hidden;
}

.footer-column h3,
.footer-links a,
.footer-links span,
.footer-links strong,
.footer-points span {
  overflow-wrap: break-word;
  word-break: normal;
}

.footer-contact-link,
.footer-address-link {
  max-width: 100%;
  overflow-wrap: break-word;
}

.footer-points span {
  padding-left: 16px;
}

@media (max-width: 1280px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid-premium {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .footer-grid-premium {
    grid-template-columns: 1fr;
  }
}