@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --navy: #1d3461;
  --navy-dark: #142448;
  --navy-light: #2a4a85;
  --navy-pale: #e8edf5;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --border: #e2e6ee;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --amazon: #e47911;
  --ebay-blue: #0064d2;
  --tiktok: #ff0050;
  --tiktok-cyan: #00f2ea;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy); }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(29,52,97,0.06);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  display: block;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--navy-pale);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  padding: 9px 20px !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: var(--navy-dark) !important;
  color: var(--white) !important;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  min-width: 175px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(29,52,97,0.12);
  border-radius: 0 0 8px 8px;
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 11px 18px !important;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem !important;
  color: var(--text) !important;
  background: transparent !important;
  border-radius: 0 !important;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--navy-pale) !important; color: var(--navy) !important; }

.platform-icon {
  width: 22px; height: 22px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; flex-shrink: 0;
}
.platform-icon.amz { background: #fff3e0; color: var(--amazon); }
.platform-icon.ebay-i { background: #e3f0fb; color: var(--ebay-blue); }
.platform-icon.ttok { background: #ffe5ec; color: var(--tiktok); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 22px; height: 2px; background: var(--navy); transition: all 0.3s; display: block; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--navy); }
.mobile-menu .sub-link { padding-left: 20px; font-size: 0.88rem; color: var(--text-muted); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(29,52,97,0.25); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }

.btn-white {
  background: white;
  color: var(--navy);
  font-weight: 700;
}
.btn-white:hover { background: var(--navy-pale); }

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ─── LAYOUT ─── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 48px; }
section { padding: 80px 0; }
.bg-light { background: var(--off-white); }

.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 10px;
}

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; color: var(--text); }
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 0.95rem; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 48px 60px;
  position: relative;
  overflow: hidden;
}

.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-circles span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-circles span:nth-child(1) { width: 500px; height: 500px; top: -100px; right: -100px; }
.hero-circles span:nth-child(2) { width: 300px; height: 300px; bottom: -80px; left: -80px; }
.hero-circles span:nth-child(3) { width: 200px; height: 200px; top: 50%; right: 15%; background: rgba(255,255,255,0.02); }

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero logo card */
.hero-logo-card {
  background: var(--white);
  border-radius: 16px;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.hero-logo-card img {
  width: 220px;
  max-width: 100%;
}

.hero-platform-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-platform-tag {
  padding: 7px 14px;
  background: var(--navy-pale);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ─── STATS ─── */
.stats-strip {
  background: var(--navy-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 48px;
}
.stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label { font-size: 0.73rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ─── PLATFORM CARDS ─── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px;
  text-decoration: none;
  display: block;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.platform-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 10px 10px 0 0;
}
.platform-card.amazon::after { background: var(--amazon); }
.platform-card.ebay::after { background: linear-gradient(90deg, var(--ebay-blue), #e53238, #f5af02, #86b817); }
.platform-card.tiktok::after { background: linear-gradient(90deg, var(--tiktok-cyan), var(--tiktok)); }

.platform-card:hover { box-shadow: 0 8px 32px rgba(29,52,97,0.12); transform: translateY(-4px); border-color: transparent; }

.platform-icon-lg { font-size: 2.2rem; margin-bottom: 16px; }
.platform-card h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 8px; }
.platform-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.card-link { font-size: 0.78rem; font-weight: 600; }
.platform-card.amazon .card-link { color: var(--amazon); }
.platform-card.ebay .card-link { color: var(--ebay-blue); }
.platform-card.tiktok .card-link { color: var(--tiktok); }

/* ─── WHY CARDS ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.2s;
}
.why-card:hover { box-shadow: 0 6px 20px rgba(29,52,97,0.1); transform: translateY(-2px); }
.why-icon { font-size: 1.8rem; margin-bottom: 12px; }
.why-card h4 { font-size: 0.95rem; margin-bottom: 7px; color: var(--text); }
.why-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--navy);
  padding: 120px 48px 60px;
}
.page-header-inner { max-width: 1300px; margin: 0 auto; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.78rem; }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.25); font-size: 0.78rem; }
.breadcrumb .current { color: rgba(255,255,255,0.85); font-size: 0.78rem; }

.page-header h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: white; margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.72); font-size: 0.97rem; line-height: 1.7; max-width: 540px; }
.page-btns { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.product-card:hover { box-shadow: 0 8px 28px rgba(29,52,97,0.12); transform: translateY(-3px); border-color: transparent; }

.product-img {
  aspect-ratio: 1;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform 0.3s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-placeholder { font-size: 2.5rem; opacity: 0.2; }

.product-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 9px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 4px;
}
.badge-amazon { background: #fff3e0; color: var(--amazon); }
.badge-ebay { background: #e3f0fb; color: var(--ebay-blue); }

.product-info { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.product-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; color: var(--text);
  line-height: 1.45; margin-bottom: 10px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }

.product-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.2s;
}
.product-card.amz-card .product-cta-btn { background: #fff3e0; color: var(--amazon); }
.product-card.amz-card:hover .product-cta-btn { background: var(--amazon); color: white; }
.product-card.ebay-card .product-cta-btn { background: #e3f0fb; color: var(--ebay-blue); }
.product-card.ebay-card:hover .product-cta-btn { background: var(--ebay-blue); color: white; }

/* Loading */
.loading-wrap { padding: 60px; text-align: center; color: var(--text-muted); }
.loading-spinner { width: 32px; height: 32px; border: 3px solid var(--border); border-top-color: var(--navy); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 14px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── STORE CTA BOX ─── */
.store-cta-box {
  background: var(--navy-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.store-cta-box h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 5px; }
.store-cta-box p { color: var(--text-muted); font-size: 0.84rem; }

/* Info box */
.info-box {
  background: var(--navy-pale);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex; gap: 10px; align-items: flex-start;
}
.info-box span { color: var(--navy); flex-shrink: 0; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-logo-wrap {
  background: var(--navy);
  border-radius: 14px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  padding: 48px;
}
.about-logo-wrap img { width: 100%; max-width: 240px; filter: brightness(0) invert(1); }

.about-content h2 { font-size: 2.2rem; margin-bottom: 18px; }
.about-content .lead { font-size: 1rem; color: var(--navy); margin-bottom: 18px; font-style: italic; font-weight: 500; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; font-size: 0.92rem; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.value-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  border-top: 3px solid var(--navy);
}
.value-card h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.value-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-icon { width: 40px; height: 40px; background: var(--navy-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 0.95rem; flex-shrink: 0; }
.contact-detail h4 { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.contact-detail p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

.platform-links { display: flex; flex-direction: column; gap: 8px; margin-top: 28px; }
.platform-link-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.platform-link-item:hover { border-color: var(--navy); background: var(--navy-pale); }
.platform-link-item .pl-icon { width: 26px; height: 26px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.platform-link-item .pl-name { font-size: 0.86rem; font-weight: 500; color: var(--text); flex: 1; }
.platform-link-item .pl-arrow { color: var(--text-light); font-size: 0.75rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { font-size: 0.75rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 10px 13px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(29,52,97,0.08); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { min-height: 120px; }

/* ─── TIKTOK ─── */
.tiktok-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.2s;
}
.step-card:hover { box-shadow: 0 6px 20px rgba(29,52,97,0.1); transform: translateY(-2px); }
.step-num { width: 40px; height: 40px; background: var(--navy); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.95rem; margin: 0 auto 14px; }
.step-card h4 { font-size: 0.95rem; margin-bottom: 7px; color: var(--text); }
.step-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* ─── MAP ─── */
.map-wrap { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 56px 48px 32px;
}
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; text-decoration: none;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.18); color: white; }

.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: white; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.76rem; }
.legal-links { display: flex; gap: 18px; }
.legal-links a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.73rem; transition: color 0.2s; }
.legal-links a:hover { color: white; }

/* ─── ANIMATIONS ─── */
[data-anim] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-anim].visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .container { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-card { display: none; }
  footer { padding: 48px 24px 28px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 0; }
  .page-header { padding: 100px 24px 48px; }
  .stats-strip { padding: 28px 24px; }
  .platforms-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tiktok-steps { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
