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

:root {
  --brand-50: #e6f5ff;
  --brand-300: #0082cc;
  --brand-400: #0073b8;
  --brand-500: #0066a6;
  --brand-600: #005082;
  --accent-400: #0099cc;
  --accent-500: #00b89e;
  --bg: #f5f7fc;
  --text-muted: rgba(20, 30, 60, 0.6);
  --surface: rgba(245, 247, 252, 0.9);
}

.peptidedropship-page {
  background: var(--bg);
  color: #3a4260;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

.peptidedropship-page * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.peptidedropship-page html {
  scroll-behavior: smooth;
}

.peptidedropship-page ::selection {
  background: rgba(0, 102, 166, 0.15);
  color: #0066a6;
}

.peptidedropship-page a {
  color: inherit;
  text-decoration: none;
}

.peptidedropship-page img {
  max-width: 100%;
  height: auto;
}

#products {
  display: none;
}

/* Utilities */
.peptidedropship-page .text-gradient-brand {
  background: linear-gradient(135deg, #0066a6 0%, #0099cc 50%, #00b89e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.peptidedropship-page .text-gradient-white {
  background: linear-gradient(180deg, #1a2240 0%, rgba(30, 40, 80, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.peptidedropship-page .perspective-1200 {
  perspective: 1200px;
}

.peptidedropship-page .preserve-3d {
  transform-style: preserve-3d;
}

.peptidedropship-page .glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 102, 166, 0.1);
}

.peptidedropship-page .glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 252, 0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 102, 166, 0.08);
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.peptidedropship-page .glass-card:hover {
  border-color: rgba(0, 102, 166, 0.2);
  box-shadow: 0 8px 40px rgba(0, 102, 166, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.peptidedropship-page .glow-button {
  box-shadow: 0 4px 24px rgba(0, 102, 166, 0.25), 0 0 0 1px rgba(0, 102, 166, 0.1);
}

.peptidedropship-page .glow-button:hover {
  box-shadow: 0 8px 40px rgba(0, 102, 166, 0.35), 0 0 0 1px rgba(0, 102, 166, 0.2);
}

.peptidedropship-page .grid-bg {
  background-image:
    linear-gradient(rgba(0, 102, 166, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 166, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.peptidedropship-page .hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 166, 0.08) 0%, rgba(0, 102, 166, 0.02) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.peptidedropship-page .card-3d {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.peptidedropship-page .card-3d-wrap {
  position: relative;
  transform-style: preserve-3d;
}

@keyframes float3d {

  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }

  25% {
    transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
  }

  50% {
    transform: translateY(-25px) rotateX(-1deg) rotateY(3deg);
  }

  75% {
    transform: translateY(-10px) rotateX(1deg) rotateY(-1deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

  50% {
    transform: scale(1.15);
    opacity: 0.15;
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.peptidedropship-page .animate-fade-in-up {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.peptidedropship-page .animate-fade-in-scale {
  animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.peptidedropship-page .animate-spin-slow {
  animation: spinSlow 30s linear infinite;
}

.peptidedropship-page .animate-pulse-ring {
  animation: pulseRing 3s ease-in-out infinite;
}

.peptidedropship-page .animate-orb-float {
  animation: orbFloat 10s ease-in-out infinite;
}

.peptidedropship-page .animate-orb-float-2 {
  animation: orbFloat 12s ease-in-out 3s infinite;
}

.peptidedropship-page .animate-orb-float-3 {
  animation: orbFloat 14s ease-in-out 6s infinite;
}

.peptidedropship-page .ping-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.peptidedropship-page .ping-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--brand-400);
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.peptidedropship-page .ping-dot span {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--brand-500);
}

.peptidedropship-page .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.peptidedropship-page .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.peptidedropship-page .reveal-delay-1 {
  transition-delay: 0.1s;
}

.peptidedropship-page .reveal-delay-2 {
  transition-delay: 0.2s;
}

.peptidedropship-page .reveal-delay-3 {
  transition-delay: 0.3s;
}

.peptidedropship-page .reveal-delay-4 {
  transition-delay: 0.4s;
}

.peptidedropship-page .reveal-delay-5 {
  transition-delay: 0.5s;
}

/* Layout */
.peptidedropship-page main {
  position: relative;
  z-index: 10;
}

.peptidedropship-page .container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.peptidedropship-page .container-narrow {
  max-width: 72rem;
}

/* Nav */
.peptidedropship-page .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: padding 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
  padding: 1.25rem 0;
  background: transparent;
}

.peptidedropship-page .nav.is-scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 102, 166, 0.1);
  box-shadow: 0 4px 24px rgba(0, 60, 120, 0.08);
}

.peptidedropship-page .nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.peptidedropship-page .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.peptidedropship-page .nav-logo-icon-wrap {
  position: relative;
}

.peptidedropship-page .nav-logo-icon {
  width: 2rem;
  height: 2rem;
  color: var(--brand-500);
  transition: transform 0.7s ease;
}

.peptidedropship-page .nav-logo:hover .nav-logo-icon {
  transform: rotate(90deg) scale(1.1);
}

.peptidedropship-page .nav-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1a2240;
}

.peptidedropship-page .nav-logo-text .accent {
  color: var(--brand-500);
}

.peptidedropship-page .nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .peptidedropship-page .nav-links {
    display: flex;
  }
}

.peptidedropship-page .nav-link {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.55);
  transition: color 0.3s ease;
  position: relative;
}

.peptidedropship-page .nav-link:hover {
  color: #1a2240;
}

.peptidedropship-page .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--brand-500), var(--accent-400));
  transition: width 0.3s ease;
}

.peptidedropship-page .nav-link:hover::after {
  width: 100%;
}

.peptidedropship-page .nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .peptidedropship-page .nav-actions {
    display: flex;
  }
}

.peptidedropship-page .nav-contact {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.5);
  transition: color 0.3s ease;
}

.peptidedropship-page .nav-contact:hover {
  color: #1a2240;
}

.peptidedropship-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: var(--brand-500);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.peptidedropship-page .btn:hover {
  background: var(--brand-400);
}

.peptidedropship-page .btn-glow {
  box-shadow: 0 4px 24px rgba(0, 102, 166, 0.25), 0 0 0 1px rgba(0, 102, 166, 0.1);
}

.peptidedropship-page .btn-glow:hover {
  box-shadow: 0 8px 40px rgba(0, 102, 166, 0.35), 0 0 0 1px rgba(0, 102, 166, 0.2);
}

.peptidedropship-page .nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  background: none;
  border: none;
  color: #1a2240;
  cursor: pointer;
}

@media (max-width: 768px) {
  .peptidedropship-page .section {
    padding: 4rem 0 !important;
  }
}

@media (min-width: 768px) {
  .peptidedropship-page .nav-toggle {
    display: none;
  }
}

.peptidedropship-page .nav-mobile {
  display: none;
  margin: 0.5rem 1rem 0;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 102, 166, 0.1);
  box-shadow: 0 8px 32px rgba(0, 60, 120, 0.1);
}

.peptidedropship-page .nav-mobile.is-open {
  display: block;
  animation: fadeInScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.peptidedropship-page .nav-mobile a {
  display: block;
  padding: 0.5rem 0;
  color: rgba(26, 34, 64, 0.6);
  transition: color 0.3s ease;
}

.peptidedropship-page .nav-mobile a:hover {
  color: #1a2240;
}

.peptidedropship-page .nav-mobile hr {
  border: none;
  border-top: 1px solid rgba(0, 60, 120, 0.08);
  margin: 1rem 0;
}

.peptidedropship-page .nav-mobile .btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* Hero */
.peptidedropship-page .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #eef4fb 0%, #f5f7fc 50%, #eaf6f4 100%);
}

.peptidedropship-page .hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;

}

.peptidedropship-page .hero-glow-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 10s ease-in-out infinite;
}

.peptidedropship-page .hero-glow-tl {
  top: -10rem;
  left: -10rem;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 153, 204, 0.08) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out 3s infinite;
}

.peptidedropship-page .hero-glow-br {
  bottom: -10rem;
  right: -10rem;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 184, 158, 0.06) 0%, transparent 70%);
  animation: orbFloat 14s ease-in-out 6s infinite;
}

.peptidedropship-page .hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.peptidedropship-page .hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 15rem;
  background: linear-gradient(to top, #f5f7fc, transparent);
  z-index: 1;
  pointer-events: none;
}

.peptidedropship-page .hero-inner {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 12rem 1.5rem 5rem;
}

.peptidedropship-page .hero-content {
  text-align: center;
  transform-style: preserve-3d;
}

.peptidedropship-page .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  animation-delay: 0.1s;
}

.peptidedropship-page .hero-badge span:last-child {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.peptidedropship-page .hero h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
  animation-delay: 0.25s;
  color: #0f1830;
}

.peptidedropship-page .hero-lead {
  max-width: 42rem;
  margin: 0 auto 3rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(26, 34, 64, 0.55);
  line-height: 1.6;
  animation-delay: 0.4s;
}

.peptidedropship-page .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation-delay: 0.55s;
}

@media (min-width: 640px) {
  .peptidedropship-page .hero-cta {
    flex-direction: row;
  }
}

.peptidedropship-page .btn-xl {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  width: 100%;
}

@media (min-width: 640px) {
  .peptidedropship-page .btn-xl {
    width: auto;
  }
}

.peptidedropship-page .btn-outline-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(26, 34, 64, 0.15);
  color: #1a2240;
  transition: border-color 0.3s ease, background 0.3s ease;
  width: 100%;
}

@media (min-width: 640px) {
  .peptidedropship-page .btn-outline-hero {
    width: auto;
  }
}

.peptidedropship-page .btn-outline-hero:hover {
  border-color: rgba(0, 102, 166, 0.3);
  background: rgba(0, 102, 166, 0.04);
}

.peptidedropship-page .btn-outline-hero .play-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(26, 34, 64, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.peptidedropship-page .btn-outline-hero:hover .play-wrap {
  border-color: rgba(0, 102, 166, 0.4);
  background: rgba(0, 102, 166, 0.08);
}

.peptidedropship-page .hero-stats {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  animation-delay: 0.7s;
}

.peptidedropship-page .hero-stat {
  text-align: center;
}

.peptidedropship-page .hero-stat-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0f1830;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.peptidedropship-page .hero-stat-label {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.4);
  font-weight: 500;
}

/* Sections */
.peptidedropship-page .section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.peptidedropship-page .section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin-bottom: 1rem;
}

.peptidedropship-page .section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #0f1830;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.peptidedropship-page .section-lead {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: rgba(26, 34, 64, 0.45);
  line-height: 1.6;
}

.peptidedropship-page .text-center {
  text-align: center;
}

.peptidedropship-page .mb-20 {
  margin-bottom: 5rem;
}

/* How it works */
.peptidedropship-page .hiw-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0, 102, 166, 0.03);
  filter: blur(100px);
  pointer-events: none;
}

.peptidedropship-page .steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .peptidedropship-page .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .peptidedropship-page .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.peptidedropship-page .step-card-inner {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
}

.peptidedropship-page .step-num-bg {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(0, 60, 120, 0.04);
  user-select: none;
  line-height: 1;
}

.peptidedropship-page .step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(0, 102, 166, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand-500);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.peptidedropship-page .step-card-inner:hover .step-icon {
  background: rgba(0, 102, 166, 0.15);
  box-shadow: 0 0 20px rgba(0, 102, 166, 0.12);
}

.peptidedropship-page .step-card-inner h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f1830;
  margin: 0 0 0.75rem;
}

.peptidedropship-page .step-card-inner p {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.5);
  line-height: 1.6;
  margin: 0;
}

/* Products */
.peptidedropship-page .products-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.peptidedropship-page .products-stack {
  max-width: 32rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.peptidedropship-page .product-card-inner {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}

.peptidedropship-page .product-glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.7s ease;
  background: rgba(0, 102, 166, 0.08);
}

.peptidedropship-page .product-card-inner:hover .product-glow {
  opacity: 1;
}

.peptidedropship-page .product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.peptidedropship-page .product-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 166, 0.08);
  color: var(--brand-500);
}

.peptidedropship-page .product-card-inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f1830;
  margin: 0 0 1.5rem;
}

.peptidedropship-page .product-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.peptidedropship-page .product-tag {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.5);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(0, 60, 120, 0.04);
  border: 1px solid rgba(0, 60, 120, 0.07);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.peptidedropship-page .product-tag:hover {
  border-color: rgba(0, 102, 166, 0.18);
  color: rgba(26, 34, 64, 0.75);
}

.peptidedropship-page .link-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-500);
  transition: color 0.3s ease;
}

.peptidedropship-page .link-brand:hover {
  color: var(--brand-400);
}

.peptidedropship-page .link-brand svg {
  transition: transform 0.3s ease;
}

.peptidedropship-page .link-brand:hover svg {
  transform: translateX(4px);
}

/* Why us */
.peptidedropship-page .why-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(0, 102, 166, 0.03);
  filter: blur(120px);
  pointer-events: none;
}

.peptidedropship-page .why-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .peptidedropship-page .why-layout {
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
  }
}

.peptidedropship-page .why-sidebar {
  flex: 1;
}

@media (min-width: 1024px) {
  .peptidedropship-page .why-sidebar {
    flex: 0 0 33.333%;
    position: sticky;
    top: 8rem;
  }
}

.peptidedropship-page .why-sidebar p {
  font-size: 1.125rem;
  color: rgba(26, 34, 64, 0.5);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.peptidedropship-page .why-grid {
  flex: 1.5;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .peptidedropship-page .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.peptidedropship-page .feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  height: 100%;
}

.peptidedropship-page .feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(0, 102, 166, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--brand-500);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.peptidedropship-page .feature-card:hover .feature-icon {
  background: rgba(0, 102, 166, 0.15);
  box-shadow: 0 0 15px rgba(0, 102, 166, 0.1);
}

.peptidedropship-page .feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1830;
  margin: 0 0 0.5rem;
}

.peptidedropship-page .feature-card p {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.45);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.peptidedropship-page .testimonials-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}

.peptidedropship-page .testimonials-glow {
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 184, 158, 0.03);
  filter: blur(100px);
  pointer-events: none;
}

.peptidedropship-page .testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .peptidedropship-page .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.peptidedropship-page .t-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.peptidedropship-page .t-card .quote-icon {
  color: rgba(0, 102, 166, 0.15);
  margin-bottom: 1rem;
}

.peptidedropship-page .stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.peptidedropship-page .stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-400);
  fill: var(--brand-400);
}

.peptidedropship-page .t-card p {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.5);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.peptidedropship-page .t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.peptidedropship-page .t-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, rgba(0, 102, 166, 0.1), rgba(0, 184, 158, 0.1));
  border: 1px solid rgba(0, 102, 166, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-500);
}

.peptidedropship-page .t-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f1830;
}

.peptidedropship-page .t-role {
  font-size: 0.75rem;
  color: rgba(26, 34, 64, 0.35);
}

/* CTA */
.peptidedropship-page .cta-section {
  position: relative;
  overflow: hidden;
}

.peptidedropship-page .cta-glow-a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(0, 102, 166, 0.05);
  filter: blur(120px);
  animation: pulseRing 3s ease-in-out infinite;
}

.peptidedropship-page .cta-glow-b {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 153, 204, 0.04);
  filter: blur(80px);
}

.peptidedropship-page .cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}

.peptidedropship-page .cta-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

/* Video Section */
.peptidedropship-page .video-section {
  background: linear-gradient(160deg, #eef4fb 0%, #f5f7fc 100%);
}

.peptidedropship-page .video-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.peptidedropship-page .video-wrapper {
  /* max-width: 56rem;
    /* margin: 0 auto; */
  max-width: 70rem;
  margin: 0 auto;
}

.peptidedropship-page .video-frame {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  height: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 166, 0.12);
  box-shadow:
    0 25px 60px rgba(0, 60, 120, 0.12),
    0 0 0 1px rgba(0, 102, 166, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.9);
}

.peptidedropship-page .video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .peptidedropship-page .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.peptidedropship-page .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.peptidedropship-page .cta-badge svg {
  color: var(--brand-500);
}

.peptidedropship-page .cta-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-500);
}

.peptidedropship-page .cta-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f1830;
  margin: 0 0 1.5rem;
  line-height: 1.15;
}

.peptidedropship-page .cta-copy>p {
  font-size: 1.125rem;
  color: rgba(26, 34, 64, 0.5);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.peptidedropship-page .cta-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.peptidedropship-page .cta-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.45);
  margin-bottom: 1rem;
}

.peptidedropship-page .cta-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--brand-500);
  flex-shrink: 0;
}

/* Form */
.peptidedropship-page .contact-form {
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .peptidedropship-page .contact-form {
    padding: 2.5rem;
  }
}

.peptidedropship-page .contact-form .field {
  margin-bottom: 1.25rem;
}

.peptidedropship-page .input {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 60, 120, 0.12);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #0f1830;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.peptidedropship-page .input::placeholder {
  color: rgba(26, 34, 64, 0.35);
}

.peptidedropship-page .input:focus {
  border-color: rgba(0, 102, 166, 0.4);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 102, 166, 0.08);
}

.peptidedropship-page textarea.input {
  resize: none;
  min-height: 5rem;
}


.peptidedropship-page .form-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  background: var(--brand-500);
  color: white;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.peptidedropship-page .form-submit:hover {
  background: var(--brand-400);
}

.peptidedropship-page .form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.peptidedropship-page .form-success {
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
}

.peptidedropship-page .form-success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #059669;
}

.peptidedropship-page .form-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f1830;
  margin: 0 0 0.75rem;
}

.peptidedropship-page .form-success p {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.5);
  max-width: 24rem;
  margin: 0 auto;
  line-height: 1.6;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.peptidedropship-page .spinner {
  animation: spin 0.7s linear infinite;
  transform-origin: center;
  width: 16px;
  height: 16px;
}

/* Footer */
.peptidedropship-page .footer {
  position: relative;
  border-top: 1px solid rgba(0, 60, 120, 0.08);
  background: #eef2f9;
}

.peptidedropship-page .footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .peptidedropship-page .footer-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.peptidedropship-page .footer-brand {
  grid-column: span 2;
}

.peptidedropship-page .footer-brand p {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.4);
  line-height: 1.6;
  max-width: 20rem;
  margin: 0 0 1.5rem;
}

.peptidedropship-page .footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.4);
}

.peptidedropship-page .status-dot-wrap {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.peptidedropship-page .status-dot-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: #059669;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.peptidedropship-page .status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #059669;
}

.peptidedropship-page .footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f1830;
  margin: 0 0 1rem;
}

.peptidedropship-page .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.peptidedropship-page .footer-col li {
  margin-bottom: 0.75rem;
}

.peptidedropship-page .footer-col a {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.4);
  transition: color 0.3s ease;
}

.peptidedropship-page .footer-col a:hover {
  color: var(--brand-500);
}

.peptidedropship-page .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 60, 120, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .peptidedropship-page .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.peptidedropship-page .footer-copy {
  font-size: 0.875rem;
  color: rgba(26, 34, 64, 0.3);
  margin: 0;
}

.peptidedropship-page .footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(26, 34, 64, 0.25);
  margin: 0;
}

/* Card 3D glow overlay */
.peptidedropship-page .card-3d-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.peptidedropship-page .card-3d-wrap.is-hovered .card-3d-glow {
  opacity: 1;
}

.peptidedropship-page .card-3d-inner {
  position: relative;
  z-index: 1;
}

/* Hidden attribute */
[hidden] {
  display: none;
}