/* ══════════════════════════════════════════
   RAPID TACTICAL — CONTACT.CSS
   "Contact Screen Light" — pixel-perfect
   Figma match
══════════════════════════════════════════ */

/* ────────────────────────────
   CONTACT SECTION
   Full layout wrapper that sits
   inside .bg-img (textured bg).
   Two-column split: left copy +
   right form.
──────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0;
  min-height: 480px;
  padding: 88px 80px 80px 80px;
  position: relative;
}

/* ── Left column: headline + subtext + email ── */
.contact-left {
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 16px;
}

.contact-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: var(--heading-size);
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #0d0d0d;
  margin-bottom: 20px;
}

.contact-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--content-size);
  color: #555;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 36px;
}

/* Email link with globe icon */
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: var(--content-size);
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact-email-link:hover {
  color: #8b1a1a;
}

/* ── Right column: the form panel ── */
.contact-right {
  background: transparent;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Form group ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--content-size);
  font-weight: 600;
  color: #222;
  letter-spacing: 0.1px;
}

.form-required {
  color: #8b1a1a;
  margin-left: 2px;
}

/* Base input / textarea */
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: var(--content-size);
  font-weight: 400;
  color: #222;
  background: #ffffff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.form-input:focus {
  border-color: #8b1a1a;
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.10);
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* ── Validation States ── */
.contact-form .form-error {
  display: none !important;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #8b1a1a;
  margin-top: 4px;
  font-weight: 500;
}

.contact-form .has-error .form-error {
  display: block !important;
}

.contact-form .has-error .form-input,
.contact-form .has-error .phone-input-wrap {
  border-color: #8b1a1a !important;
}

body.dark .contact-form .form-error {
  color: #ff4d4d;
}

/* ── Phone row: flag + code + number ── */
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.phone-input-wrap:focus-within {
  border-color: #8b1a1a;
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.10);
}

/* Country selector pill */
.phone-country {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-right: 1px solid #e8e8e8;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.phone-country:hover {
  background: #fafafa;
}

.phone-flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.phone-code {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.phone-chevron {
  color: #999;
  flex-shrink: 0;
}

/* Phone number input — no individual border (parent has it) */
.phone-number-input {
  border: none;
  border-radius: 0;
  flex: 1;
  padding: 13px 14px;
  box-shadow: none !important;
}

.phone-number-input:focus {
  border-color: transparent;
  box-shadow: none;
}

/* ── Submit button ── */
.form-submit-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8b1a1a;
  color: #ffffff;
  border: none;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.30);
}

.contact-submit-btn:hover {
  background: #7a1616;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.40);
}

.contact-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139, 26, 26, 0.25);
}

/* ────────────────────────────
   BRAND SECTION
   Large centered RAPID TACTICAL
   wordmark (SVG logo) above footer
──────────────────────────── */
.contact-brand-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 80px 48px 80px;
}

.contact-brand-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.contact-brand-logo-img {
  width: 560px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ────────────────────────────
   DARK MODE OVERRIDES
──────────────────────────── */
body.dark .contact-heading {
  color: #f0f0f0;
}

body.dark .contact-subtext {
  color: #888;
}

body.dark .contact-email-link {
  color: #999;
}

body.dark .contact-email-link:hover {
  color: #e03030;
}

body.dark .form-label {
  color: #d0d0d0;
}

body.dark .form-input {
  background: #1e1e1e;
  border-color: #2e2e2e;
  color: #e8e8e8;
}

body.dark .form-input::placeholder {
  color: #555;
}

body.dark .form-input:focus {
  border-color: #8b1a1a;
  box-shadow: 0 0 0 3px rgba(139, 26, 26, 0.15);
}

body.dark .phone-input-wrap {
  background: #1e1e1e;
  border-color: #2e2e2e;
}

body.dark .phone-input-wrap:focus-within {
  border-color: #8b1a1a;
}

body.dark .phone-country {
  border-right-color: #333;
}

body.dark .phone-country:hover {
  background: #252525;
}

body.dark .phone-code {
  color: #ccc;
}

body.dark .phone-number-input {
  background: #1e1e1e;
  color: #e8e8e8;
}

/* ────────────────────────────
   RESPONSIVE
──────────────────────────── */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 56px 32px 48px 32px;
    gap: 40px;
  }

  .contact-left {
    padding-right: 0;
  }

  .contact-heading {
    font-size: 28px;
  }

  .contact-brand-section {
    padding: 48px 32px 36px 32px;
  }

  .contact-brand-logo-img {
    width: 280px;
  }

  .form-submit-wrap {
    justify-content: stretch;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════
   RAPID TACTICAL — PRODUCTS.CSS
   Products page layout, matching Figma
   References: HOME SCREEN LIGHT Figma
══════════════════════════════════════════ */

/* ────────────────────────────
   PRODUCTS HERO BANNER
   Full-bleed real image, cover fit,
   subtle bottom gradient like Figma
──────────────────────────── */
.prod-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #111;
  /* fallback while image loads */
}

/* The actual image — fills the section and crops cleanly */
.prod-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

/* Gradient overlay — darkens bottom edge like Figma */
.prod-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.10) 45%,
      rgba(0, 0, 0, 0.55) 85%,
      rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ────────────────────────────
   DEPLOYMENT CAPABILITY ROW
   Two-column: left card + right text
──────────────────────────── */
.prod-deploy-section {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 64px 64px 48px 64px;
  background: transparent;
}

/* Left card: kit image + brand label */
.prod-deploy-left {
  flex: 0 0 auto;
  background: #ffffff;
  border-radius: 14px;
  overflow: visible;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  margin-right: 48px;
  align-self: flex-start;
  height: auto;
  width: 450px;
  min-height: 280px;
}

/* Single authoritative .prod-deploy-kit-label rule */
.prod-deploy-kit-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0d0d0d;
  letter-spacing: 0.2px;
  margin-top: 12px;
  padding: 0;
}

/* Kit image wrapper — fixed height so label always has room below */
.prod-deploy-kit-img-wrap {
  width: 100%;
  flex: 0 0 220px;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.prod-deploy-kit-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 8px;
}


.prod-deploy-kit-placeholder {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  /* background: linear-gradient(135deg, #e8e0d0 0%, #c8bca4 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  border: 1.5px dashed #b0a090;
  letter-spacing: 0.5px;
  background-image: url("../../images/product_kit-type.png");
}

/* Right: text panel */
.prod-deploy-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.prod-deploy-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #0d0d0d;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
  text-shadow: none;
  /* no text shadow needed here */
}

.prod-deploy-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  color: #444;
  line-height: 1.75;
  max-width: 520px;
}

/* ────────────────────────────
   PRODUCTS GRID SECTION
──────────────────────────── */
.prod-grid-section {
  padding: 0 64px 64px 64px;
}

/* Filter + sort toolbar */
.prod-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  margin-bottom: 32px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.prod-filter-btn,
.prod-sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.prod-filter-btn:hover,
.prod-sort-btn:hover {
  border-color: #8b1a1a;
  color: #8b1a1a;
  background: rgba(139, 26, 26, 0.04);
}

.prod-showing-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.prod-showing-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
}

.prod-showing-count {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.3px;
}

/* Product cards 3-column grid */
.prod-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Individual Product Card */
.prod-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: auto;
  /* was 652px — fixed height caused dead white space */
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

/* Card image wrapper */
.prod-card-img-wrap {
  width: 100%;
  height: 300px;
  /* was 560px — far too tall */
  overflow: hidden;
  position: relative;
}

/* Image placeholder fills the wrapper */
.prod-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Actual product image fills the wrap fully */
.prod-card-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.prod-card-img-placeholder--dark {
  background: linear-gradient(145deg, #3a3530 0%, #2a2520 100%);
}

.prod-card-img-placeholder--red {
  background: linear-gradient(145deg, #8b1a1a 0%, #6a1212 100%);
}

.prod-card-placeholder-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
}

.prod-placeholder-box {
  width: 120px;
  height: 160px;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* CFAK backpack shape — olive/military green */
.prod-placeholder-cfak {
  background: linear-gradient(160deg, #7a7a50 0%, #5a5a38 60%, #4a4a2a 100%);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.prod-placeholder-cfak::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* IFAK Medium — darker tactical bag */
.prod-placeholder-ifak-m {
  background: linear-gradient(160deg, #4a4a38 0%, #3a3a28 60%, #2a2a18 100%);
  color: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.25);
  width: 100px;
  height: 140px;
  position: relative;
}

.prod-placeholder-ifak-m::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 40px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* IFAK Small — red accent bag */
.prod-placeholder-ifak-s {
  background: linear-gradient(160deg, #c0302a 0%, #8b1a1a 60%, #6a1212 100%);
  color: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(139, 26, 26, 0.3);
  width: 90px;
  height: 120px;
  position: relative;
}

.prod-placeholder-ifak-s::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 32px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Card body — title, description, link */
.prod-card-body {
  padding: 20px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.prod-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0d0d0d;
  letter-spacing: 0.1px;
  line-height: 1.2;
}

.prod-card-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  flex: 1;
}

.prod-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #0d0d0d;
  text-decoration: none;
  transition: color 0.15s ease;
  margin-top: 4px;
  width: fit-content;
}

.prod-card-link:hover {
  color: #8b1a1a;
}

/* Featured card subtle top border accent */
.prod-card--featured {
  border-top: 3px solid #8b1a1a;
}

.prod-card--accent {
  border-top: 3px solid #c0302a;
}

/* ────────────────────────────
   MOBILE APP SECTION
   Left: phone placeholder
   Right: description
──────────────────────────── */
.prod-app-section {
  display: flex;
  align-items: center;
  gap: 52px;
  padding: 32px 64px 72px 64px;
}

/* Phone placeholder */
.prod-app-img-wrap {
  flex: 0 0 220px;
}

.prod-app-phone-placeholder {
  width: 160px;
  height: 260px;
  background: #0d0d0d;
  border-radius: 28px;
  border: 8px solid #232323;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.prod-app-phone-screen {
  flex: 1;
  background: #f2f2f2;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px 16px 10px;
  gap: 8px;
  overflow: hidden;
}

.prod-app-phone-notch {
  width: 48px;
  height: 6px;
  background: #d0d0d0;
  border-radius: 3px;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.prod-app-phone-content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.prod-app-screen-bar {
  width: 100%;
  height: 8px;
  background: #d8d8d8;
  border-radius: 4px;
}

.prod-app-screen-bar--short {
  width: 65%;
  align-self: flex-start;
}

.prod-app-screen-bar--medium {
  width: 80%;
  align-self: flex-start;
}

.prod-app-screen-icon {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 26, 26, 0.08);
  border-radius: 10px;
  width: 52px;
  height: 52px;
}

/* App section body text */
.prod-app-body {
  flex: 1;
  max-width: 480px;
}

.prod-app-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0d0d0d;
  letter-spacing: 0.1px;
  margin-bottom: 12px;
}

.prod-app-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 18px;
}

.prod-app-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0d0d0d;
  text-decoration: none;
  transition: color 0.15s ease;
}

.prod-app-link:hover {
  color: #8b1a1a;
}

/* ────────────────────────────
   BRAND STATEMENT SECTION
   Large centred logo + tagline
   Matches Figma "RAPID TACTICAL"
   wordmark with TM + tagline below
──────────────────────────── */
.prod-brand-section {
  padding: 80px 64px 60px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prod-brand-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.prod-brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-brand-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.prod-brand-logo-img {
  width: 480px;
  max-width: 100%;
  height: auto;
  display: block;
}

.prod-brand-tagline {
  display: none;
  /* tagline is already embedded in the SVG logo */
}

/* ────────────────────────────
   DARK MODE OVERRIDES
   Products page sections
──────────────────────────── */

/* Deploy section */
body.dark .prod-deploy-left {
  background: #1e1e1e;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

body.dark .prod-deploy-kit-label {
  color: #f0f0f0;
}

body.dark .prod-deploy-kit-placeholder {
  background: linear-gradient(135deg, #2a2520 0%, #1e1a14 100%);
  border-color: #4a3a28;
  color: #888;
}

body.dark .prod-deploy-heading {
  color: #f0f0f0;
}

body.dark .prod-deploy-desc {
  color: #888;
}

/* Filter bar */
body.dark .prod-filter-bar {
  border-color: #2a2a2a;
}

body.dark .prod-filter-btn,
body.dark .prod-sort-btn {
  border-color: #333;
  color: #ccc;
}

body.dark .prod-filter-btn:hover,
body.dark .prod-sort-btn:hover {
  border-color: #8b1a1a;
  color: #8b1a1a;
  background: rgba(139, 26, 26, 0.08);
}

body.dark .prod-showing-title {
  color: #e0e0e0;
}

body.dark .prod-showing-count {
  color: #666;
}

/* Product cards */
body.dark .prod-card {
  background: #1e1e1e;
  border-color: #2a2a2a;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

body.dark .prod-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

body.dark .prod-card-title {
  color: #f0f0f0;
}

body.dark .prod-card-desc {
  color: #888;
}

body.dark .prod-card-link {
  color: #ddd;
}

body.dark .prod-card-link:hover {
  color: #e03030;
}

/* App section */
body.dark .prod-app-phone-placeholder {
  border-color: #1e1e1e;
}

body.dark .prod-app-phone-screen {
  background: #2a2a2a;
}

body.dark .prod-app-phone-notch {
  background: #1a1a1a;
}

body.dark .prod-app-screen-bar {
  background: #3a3a3a;
}

body.dark .prod-app-title {
  color: #f0f0f0;
}

body.dark .prod-app-desc {
  color: #888;
}

body.dark .prod-app-link {
  color: #ddd;
}

body.dark .prod-app-link:hover {
  color: #e03030;
}

/* Brand section */
body.dark .prod-brand-tagline {
  color: #444;
}

/* ────────────────────────────
   RESPONSIVE — compact at 768px
──────────────────────────── */
@media (max-width: 900px) {

  .prod-hero {
    height: 340px;
  }

  .prod-deploy-section {
    flex-direction: column;
    padding: 32px 24px 28px;
    gap: 24px;
  }

  .prod-deploy-left {
    margin-right: 0;
    flex: none;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .prod-deploy-kit-img-wrap {
    flex: 0 0 200px;
    height: 200px;
    width: 100%;
  }

  .prod-deploy-kit-label {
    font-size: 15px;
    margin-top: 10px;
  }

  .prod-deploy-right {
    max-width: 100%;
  }

  .prod-deploy-heading {
    font-size: 26px;
  }

  .prod-deploy-desc {
    font-size: 14px;
  }


  .prod-grid-section {
    padding: 0 32px 48px 32px;
  }

  .prod-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prod-app-section {
    flex-direction: column;
    padding: 32px 32px 48px 32px;
    gap: 32px;
  }

  .prod-brand-section {
    padding: 48px 32px 40px 32px;
  }

  .prod-brand-logo-img {
    width: 280px;
  }

  .kit-medium-left,
  .kit-medium-right,
  .kit-tiny {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .prod-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}