.apotekets-page .main-wrapper img {
  display: block;
  max-width: 100%;
  height: auto;
}

.apotekets-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 82px;
  color: var(--text-on-dark);
  text-align: center;
  background:
    radial-gradient(ellipse 44% 64% at 28% 45%, rgba(128, 223, 220, 0.15) 0%, transparent 100%),
    radial-gradient(ellipse 38% 56% at 72% 24%, rgba(0, 68, 254, 0.11) 0%, transparent 100%),
    var(--bg-dark);
}

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

.apotekets-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.apotekets-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.2);
}

.apotekets-logo-card img {
  width: min(230px, 62vw);
  height: auto;
}

.apotekets-hero h1 {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.apotekets-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted-dark);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
}

.apotekets-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted-dark);
  font-size: 13px;
  font-weight: 500;
}

.apotekets-hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #80dfdc;
  box-shadow: 0 0 8px rgba(128, 223, 220, 0.9);
}

.apotekets-order-section {
  padding: 88px 0 120px;
  background: var(--bg);
}

.apotekets-order-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: start;
}

.apotekets-order-text .section-label {
  text-align: left;
}

.apotekets-order-text h2 {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.apotekets-order-text p {
  margin-bottom: 28px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.apotekets-product-card {
  width: min(100%, 330px);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
  box-shadow: 0 12px 38px rgba(10, 10, 10, 0.08);
}

.apotekets-product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.apotekets-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.apotekets-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.apotekets-contact-links a:hover {
  color: var(--text-primary);
}

.apotekets-contact-links svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.apotekets-form-wrapper {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: 0 14px 44px rgba(10, 10, 10, 0.06);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
}

.required-marker {
  color: #e46a4f;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  outline: none;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 68, 254, 0.08);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-help {
  margin: -4px 0 8px;
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.5;
}

.apotekets-form-wrapper .btn-primary {
  width: 100%;
  justify-content: center;
}

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

@media (max-width: 640px) {
  .apotekets-hero {
    padding: 130px 0 64px;
  }

  .apotekets-order-section {
    padding: 64px 0 88px;
  }

  .apotekets-product-card {
    width: 100%;
  }
}
