/* ==========================================================================
   Ekara Biotech Pvt Ltd — Design System
   ========================================================================== */

:root {
  /* Brand accent — matches the site's Tailwind brand-600/700/50 palette */
  --brand: #4F35D2;
  --brand-dark: #3D25B8;
  --brand-soft: #F4F2FF;
  --navy: #120B3B;
  --navy-dark: #0a0726;
  --navy-soft: #3D25B8;
  /* Reserved for destructive/error states only — kept apart from --brand
     so delete buttons and error alerts stay visually distinct from the
     purple brand accent. */
  --red: #c8102e;
  --red-dark: #a10d25;
  --red-soft: #fdecef;
  --ink: #1c2530;
  --muted: #5b6472;
  --line: #e7eaef;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(18, 11, 59, 0.08);
  --shadow-lg: 0 20px 50px rgba(18, 11, 59, 0.14);
  --container: 1200px;
  --font-head: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  --font-script: "Caveat", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 130px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-navy p {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brand);
  margin-bottom: 8px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 5px;
}

/* Standalone script heading — replaces eyebrow+h2 pairing for narrative sections */
.heading-script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--brand);
  margin: 0 0 20px;
  line-height: 1.25;
}

.section-navy .heading-script {
  color: #fff;
}

/* Bold caps label with icon — single heading for listing sections */
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}

.section-label .icon-star {
  color: var(--brand);
  display: inline-flex;
}

.section-navy .section-label {
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--navy);
}

.btn-ghost:hover {
  border-color: var(--navy);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.btn-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-circle svg {
  width: 11px;
  height: 11px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(11, 36, 71, 0.08);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg,
.logo img.brand-logo {
  height: 60px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: inline-block;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}

.header-phone .icon-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy) url('../img/hero-photo.jpg') no-repeat right center / cover;
  overflow: hidden;
  padding: 128px 0 76px;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 23, 48, 0.96) 0%, rgba(11, 36, 71, 0.92) 32%, rgba(11, 36, 71, 0.58) 58%, rgba(11, 36, 71, 0.22) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 90%, rgba(255, 255, 255, 0.06), transparent 35%);
}

.hero-inner {
  position: relative;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 54px);
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff5c73;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat-row div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--navy);
}

.stat-row div span {
  color: var(--muted);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge {
  position: absolute;
  right: 7%;
  bottom: 140px;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}

.hero-badge .icon-dot {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--navy);
}

.hero-badge span {
  font-size: 12px;
  color: var(--muted);
}

/* ==========================================================================
   Intro / About cards
   ========================================================================== */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.intro-art {
  position: relative;
}

.section.overlap-hero {
  padding-top: 0;
}

.section.overlap-hero .intro-art {
  margin-top: -160px;
  position: relative;
  z-index: 2;
}

.wave-section {
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 130px;
}

.wave-top,
.wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.wave-top {
  top: -1px;
}

.wave-bottom {
  bottom: -1px;
}

.wave-top svg,
.wave-bottom svg {
  width: 100%;
  height: 90px;
  display: block;
}

.intro-art .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}

.intro-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--brand);
}

.intro-badge span {
  font-size: 13px;
  color: var(--muted);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 500;
}

.check-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   Cards: features / why-us / industries
   ========================================================================== */
.grid {
  display: grid;
  gap: 28px;
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 19px;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 14.5px;
}

.section-navy .feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-navy .feature-icon {
  background: rgba(200, 16, 46, 0.18);
  color: #ff8b9a;
}

.section-navy .feature-card h3 {
  color: #fff;
}

.industry-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.industry-pill:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.industry-pill .feature-icon {
  margin: 0 auto 16px;
}

.industry-pill h4 {
  font-size: 15px;
  margin-bottom: 0;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 6px;
}

.cta-band h2.heading-script {
  font-size: clamp(30px, 3.6vw, 40px);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.cta-band .btn-navy {
  background: #fff;
  color: var(--brand);
}

.cta-band .btn-navy:hover {
  background: var(--navy);
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid h5 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-grid .logo svg,
.footer-grid .logo img.brand-logo {
  height: 40px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  margin-top: 16px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14.5px;
  align-items: flex-start;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--brand);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row a:hover {
  background: var(--brand);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-header {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
  padding: 64px 0;
  color: #fff;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 10px;
  font-size: clamp(28px, 3.6vw, 40px);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
  color: #fff;
}

/* ==========================================================================
   Products
   ========================================================================== */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.filter-pill {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-thumb {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.product-thumb img {
  max-height: 100%;
  object-fit: contain;
}

.product-badge {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.product-body {
  padding: 32px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.product-cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin-bottom: 8px;
}

.product-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-body p {
  font-size: 14px;
  flex: 1;
}

.product-body .btn {
  margin-top: 14px;
  align-self: center;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
}

/* Product detail */
.pd-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.pd-gallery-main {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.pd-gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-gallery-thumbs button {
  width: 74px;
  height: 74px;
  border-radius: 10px;
  border: 2px solid var(--line);
  background: var(--bg-alt);
  padding: 10px;
  cursor: pointer;
}

.pd-gallery-thumbs button.active {
  border-color: var(--brand);
}

.pd-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 18px;
}

.pd-title-row h1 {
  font-size: 30px;
  margin-bottom: 8px;
}

.pd-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pd-tags span {
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pd-block {
  margin-bottom: 28px;
}

.pd-block h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--line);
}

.spec-table td {
  padding: 12px 0;
  font-size: 14.5px;
}

.spec-table td:first-child {
  color: var(--navy);
  font-weight: 700;
  width: 40%;
}

.spec-table td:last-child {
  color: var(--muted);
}

.pd-cta {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 10px;
}

.pd-cta h4 {
  margin-bottom: 6px;
}

/* ==========================================================================
   About
   ========================================================================== */
.value-card {
  text-align: center;
  padding: 30px 22px;
}

.timeline {
  position: relative;
  padding-left: 34px;
  border-left: 2px solid var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--brand);
}

.timeline-item strong {
  color: var(--brand);
  font-family: var(--font-head);
  display: block;
  margin-bottom: 6px;
}

.leader-card {
  text-align: center;
}

.leader-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 30px;
}

.leader-card h4 {
  margin-bottom: 2px;
}

.leader-card span {
  color: var(--brand);
  font-size: 13.5px;
  font-weight: 600;
}

/* ==========================================================================
   Career
   ========================================================================== */
.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--muted);
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-card h3 {
  margin-bottom: 0;
  font-size: 18px;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--bg-alt);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
}

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

.form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.alert {
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 14.5px;
  font-weight: 600;
}

.alert-success {
  background: #e8f7ee;
  color: #1a7a3d;
  border: 1px solid #bfe8cd;
}

.alert-error {
  background: #fdeceb;
  color: var(--red-dark);
  border: 1px solid #f5c6cb;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 20px;
}

.contact-info-card .item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}

.contact-info-card .item:last-child {
  margin-bottom: 0;
}

.contact-info-card .icon-dot {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.25);
  color: #ff8b9a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h5 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Accessibility: keyboard focus states
   ========================================================================== */
a:focus-visible,
button:focus-visible,
.filter-pill:focus-visible,
.pd-gallery-thumbs button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.btn:focus-visible {
  outline-color: var(--navy);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {

  .intro-grid,
  .pd-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 44px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    background-position: 80% center;
  }

  .hero-badge {
    right: 5%;
    bottom: 110px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 76px 0;
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 90;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .main-nav a {
    padding: 16px;
    font-size: 15px;
    border-bottom: none;
    border-left: 3px solid transparent;
    border-radius: 0;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: var(--brand-soft);
    border-left-color: var(--brand);
  }

  .nav-toggle {
    display: flex;
  }

  .header-phone span.txt {
    display: none;
  }

  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 26px;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .pd-title-row {
    flex-direction: column;
  }

  .hero {
    padding: 110px 0 64px;
    background-position: 88% center;
  }

  .hero-badge {
    position: static;
    margin-top: 32px;
    max-width: 260px;
    padding: 12px 16px;
  }
}

/* ==========================================================================
   Rich text (admin editor output — product description/composition/indications)
   ========================================================================== */
.rich-content p { margin: 0 0 12px; }
.rich-content p:last-child { margin-bottom: 0; }
.rich-content h2, .rich-content h3 { font-weight: 700; color: #120B3B; margin: 20px 0 10px; line-height: 1.3; }
.rich-content h2 { font-size: 1.2em; }
.rich-content h3 { font-size: 1.08em; }
.rich-content h2:first-child, .rich-content h3:first-child { margin-top: 0; }
.rich-content ul, .rich-content ol { margin: 0 0 12px; padding-left: 1.3em; }
.rich-content ul { list-style-type: disc; }
.rich-content ol { list-style-type: decimal; }
.rich-content li { margin-bottom: 4px; }
.rich-content blockquote { margin: 0 0 12px; padding-left: 14px; border-left: 3px solid #B6A6FB; color: inherit; font-style: italic; }
.rich-content strong { font-weight: 700; }