*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0D1F3C;
    --navy-mid: #162d52;
    --gold: #C8952A;
    --gold-light: #e8b048;
    --offwhite: #F7F5F0;
    --slate: #4A6080;
    --silver: #E2E8F0;
    --text: #1a1a2e;
    --muted: #6b7a8d;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--offwhite);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(13, 31, 60, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200,149,42,0.2);
  }

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

  .nav-logo img {
    height: 52px;
    width: auto;
    display: block;
    background: #fff;
    border-radius: 6px;
    padding: 3px 8px;
    flex-shrink: 0;
  }

  .nav-logo-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .nav-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .nav-logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
  }

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

  .nav-links a {
    font-size: 13px; font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

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

  .hero-bg-number {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(260px, 28vw, 420px);
    font-weight: 700;
    color: rgba(200,149,42,0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -10px;
  }

  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,149,42,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,149,42,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-content {
    position: relative; z-index: 3;
    max-width: 680px;
  }

  .hero-eyebrow {
    font-size: 11px; font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 600;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 28px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-body {
    font-size: 16px; font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .btn-ghost {
    color: rgba(255,255,255,0.8);
    font-size: 13px; font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }

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

  .btn-ghost::after { content: '→'; font-size: 16px; transition: transform 0.2s; }
  .btn-ghost:hover::after { transform: translateX(4px); }

  .hero-stats {
    position: absolute;
    right: 5%; bottom: 60px;
    display: flex; gap: 48px;
    z-index: 3;
  }

  .hero-stat-item { text-align: right; }

  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
  }

  .hero-stat-label {
    font-size: 10px; font-weight: 400;
    color: rgba(255,255,255,0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
  }

  /* TICKER */
  .ticker {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .ticker-track {
    display: inline-flex; gap: 0;
    animation: ticker 28s linear infinite;
  }

  .ticker-item {
    font-size: 11px; font-weight: 600;
    color: var(--navy);
    letter-spacing: 2px; text-transform: uppercase;
    padding: 0 32px;
    display: flex; align-items: center; gap: 16px;
  }

  .ticker-item::before { content: '◆'; font-size: 6px; }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* SECTIONS COMMON */
  section { padding: 96px 5%; }

  .section-eyebrow {
    font-size: 10px; font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }

  .section-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.12;
    letter-spacing: -0.5px;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  /* ABOUT */
  .about {
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-visual-main {
    background: var(--navy);
    border-radius: 4px;
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
  }

  .about-visual-watermark {
    position: absolute;
    bottom: -20px; right: -10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 140px; font-weight: 700;
    color: rgba(200,149,42,0.1);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .about-milestone {
    position: relative; z-index: 1;
    margin-bottom: 32px;
  }

  .about-milestone:last-child { margin-bottom: 0; }

  .about-milestone-year {
    font-size: 10px; font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 6px;
  }

  .about-milestone-text {
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    border-left: 2px solid rgba(200,149,42,0.35);
    padding-left: 16px;
  }

  .about-tag {
    position: absolute;
    bottom: -20px; left: 32px;
    background: var(--gold);
    padding: 14px 24px;
    border-radius: 3px;
    display: flex; align-items: baseline; gap: 8px;
  }

  .about-tag-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 700;
    color: var(--navy);
    line-height: 1;
  }

  .about-tag-label {
    font-size: 11px; font-weight: 600;
    color: var(--navy);
    letter-spacing: 1px; text-transform: uppercase;
  }

  .about-text { padding-top: 20px; }

  .about-text .section-title { margin-bottom: 24px; }

  .about-body {
    font-size: 15px; font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-values {
    margin-top: 36px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-value-item {
    padding: 16px;
    border: 1px solid var(--silver);
    border-radius: 3px;
    background: var(--offwhite);
  }

  .about-value-title {
    font-size: 13px; font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .about-value-desc {
    font-size: 12px; font-weight: 300;
    color: var(--muted);
    line-height: 1.5;
  }

  /* SERVICES */
  .services { background: var(--offwhite); }

  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: end;
    margin-bottom: 64px;
  }

  .services-intro {
    font-size: 15px; font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 4px;
    border: 1px solid var(--silver);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,31,60,0.1); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 48px; height: 48px;
    background: rgba(13,31,60,0.06);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 13px; font-weight: 300;
    color: var(--slate);
    line-height: 1.75;
  }

  .service-card.featured {
    background: var(--navy);
    border-color: var(--navy);
  }

  .service-card.featured .service-icon { background: rgba(200,149,42,0.15); }
  .service-card.featured .service-title { color: #fff; }
  .service-card.featured .service-desc { color: rgba(255,255,255,0.65); }

  .service-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: 9px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
  }

  /* EXPORT BAND */
  .export-band {
    background: var(--navy);
    padding: 96px 5%;
    position: relative;
    overflow: hidden;
  }

  .export-band-bg {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8952A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .export-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  .export-content .section-eyebrow { color: var(--gold); }
  .export-content .section-eyebrow::before { background: var(--gold); }
  .export-content .section-title { color: #fff; margin-bottom: 24px; }

  .export-body {
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .export-features {
    display: flex; flex-direction: column; gap: 16px;
    margin-bottom: 40px;
  }

  .export-feature {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,149,42,0.15);
    border-radius: 3px;
  }

  .export-feature-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(200,149,42,0.15);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }

  .export-feature-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.6; }
  .export-feature-text strong { color: #fff; font-weight: 500; display: block; margin-bottom: 2px; font-size: 14px; }

  .export-visual {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .export-metric {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(200,149,42,0.2);
    border-radius: 4px;
    padding: 28px 20px;
    text-align: center;
  }

  .export-metric.accent { background: var(--gold); border-color: var(--gold); grid-column: span 2; }

  .export-metric-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px; font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
  }

  .export-metric.accent .export-metric-num { color: var(--navy); }

  .export-metric-label {
    font-size: 11px; font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-top: 6px;
    display: block;
  }

  .export-metric.accent .export-metric-label { color: rgba(13,31,60,0.7); }

  /* PRODUCTS */
  .products { background: #fff; }
  .products-header { margin-bottom: 56px; max-width: 600px; }
  .products-header .section-title { margin-bottom: 16px; }
  .products-note { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.6; }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .product-item {
    background: #fff;
    border: 1px solid var(--silver);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(13,31,60,0.09);
  }

  .product-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background: var(--silver);
  }

  .product-img-placeholder {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
  }

  .product-body {
    padding: 20px 18px;
  }

  .product-category {
    font-size: 9px; font-weight: 600;
    color: var(--gold);
    letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 6px;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .product-form {
    font-size: 11px; font-weight: 300;
    color: var(--muted);
    line-height: 1.5;
  }

  /* WHY US */
  .why { background: var(--offwhite); }

  .why-header { margin-bottom: 64px; max-width: 680px; }
  .why-header .section-title { margin-bottom: 0; }

  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .why-item {
    padding: 0;
  }

  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px; font-weight: 700;
    color: rgba(13,31,60,0.07);
    line-height: 1;
    margin-bottom: 16px;
  }

  .why-title {
    font-size: 16px; font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .why-desc {
    font-size: 13px; font-weight: 300;
    color: var(--slate);
    line-height: 1.75;
  }

  .why-divider {
    width: 32px; height: 2px;
    background: var(--gold);
    margin-bottom: 20px;
  }

  /* CONTACT */
  .contact {
    background: var(--navy);
    padding: 96px 5%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }

  .contact-content .section-eyebrow { color: var(--gold); }
  .contact-content .section-eyebrow::before { background: var(--gold); }
  .contact-content .section-title { color: #fff; margin-bottom: 24px; }

  .contact-body {
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
  }

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

  .contact-detail {
    display: flex; align-items: flex-start; gap: 16px;
  }

  .contact-detail-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border: 1px solid rgba(200,149,42,0.3);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }

  .contact-detail-label {
    font-size: 10px; font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 4px;
  }

  .contact-detail-value {
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
  }

  .contact-detail-value a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(200,149,42,0.45);
    transition: color 0.2s, border-color 0.2s;
  }

  .contact-detail-value a:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
  }

  /* CONTACT FORM */
  .contact-form { display: flex; flex-direction: column; gap: 16px; }

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

  .form-group { display: flex; flex-direction: column; gap: 6px; }

  .form-label {
    font-size: 10px; font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px; text-transform: uppercase;
  }

  .form-input, .form-select, .form-textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 3px;
    padding: 12px 16px;
    font-size: 14px; font-weight: 300;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
  }

  .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }

  .form-select { appearance: none; cursor: pointer; color: rgba(255,255,255,0.6); }
  .form-select option { background: var(--navy); color: #fff; }

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

  .form-submit {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 14px 32px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
    align-self: flex-start;
  }

  .form-submit:hover { background: var(--gold-light); }

  /* FOOTER */
  footer {
    background: #070f1e;
    padding: 48px 5% 32px;
    border-top: 1px solid rgba(200,149,42,0.15);
  }

  .footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 24px;
    margin-bottom: 32px;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: #fff;
  }

  .footer-logo span { color: var(--gold); }

  .footer-tagline {
    font-size: 12px; font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    margin-top: 3px;
  }

  .footer-links {
    display: flex; gap: 28px; flex-wrap: wrap;
    list-style: none;
  }

  .footer-links a {
    font-size: 12px; font-weight: 400;
    color: rgba(255,255,255,0.45);
    text-decoration: none; letter-spacing: 0.5px;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
  }

  .footer-copy {
    font-size: 11px; font-weight: 300;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
  }

  .footer-cert {
    font-size: 11px; font-weight: 400;
    color: var(--gold);
    letter-spacing: 1px;
    opacity: 0.7;
  }

  /* MOBILE */
  @media (max-width: 900px) {
    .about, .export-inner, .contact { grid-template-columns: 1fr; gap: 48px; }
    .services-header, .services-grid, .why-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .hero-stats { position: static; margin-top: 40px; justify-content: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .about-tag { position: static; margin-top: 24px; display: inline-flex; }
    .about-visual { padding-bottom: 0; }
    .export-visual { grid-template-columns: 1fr 1fr; }
    .hero {
      min-height: unset;
      align-items: flex-start;
      padding: 100px 5% 56px;
      flex-direction: column;
    }
    .hero-bg-number { font-size: 160px; right: -5%; top: 30%; }
  }

  @media (max-width: 600px) {
    section { padding: 56px 5%; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .export-visual { grid-template-columns: 1fr; }
    .export-metric.accent { grid-column: span 1; }
    .hero { padding: 88px 5% 48px; }
    .hero h1 { font-size: 38px; }
    .hero-body { font-size: 14px; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 32px; }
    .hero-stat-item { text-align: left; }
    .hero-bg-number { display: none; }
    /* nav-logo-tagline visible on all screens */
    .nav-logo img { height: 40px; }
    .nav-logo-name { font-size: 15px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
    * { transition: none !important; animation: none !important; }
  }

  /* ── Pharma Hero Animation ── */
  .hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }

  .pharma-pill {
    position: absolute;
    border-radius: 50px;
    opacity: 0;
    animation: pillFloat linear infinite;
  }

  .pharma-pill.type-capsule {
    display: flex;
    overflow: hidden;
    border-radius: 50px;
  }

  .pill-half {
    flex: 1;
    height: 100%;
  }

  .pharma-molecule {
    position: absolute;
    opacity: 0;
    animation: moleculeFloat linear infinite;
  }

  .pharma-molecule circle {
    fill: none;
    stroke: rgba(200,149,42,0.25);
    stroke-width: 1.5;
  }

  .pharma-molecule line {
    stroke: rgba(200,149,42,0.2);
    stroke-width: 1;
  }

  .pharma-cross {
    position: absolute;
    opacity: 0;
    animation: crossPulse ease-in-out infinite;
    color: rgba(200,149,42,0.18);
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    user-select: none;
  }

  @keyframes pillFloat {
    0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
    8%   { opacity: 0.55; }
    90%  { opacity: 0.35; }
    100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
  }

  @keyframes moleculeFloat {
    0%   { transform: translateY(105vh) scale(0.7); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-15vh) scale(1.1);  opacity: 0; }
  }

  @keyframes crossPulse {
    0%, 100% { transform: scale(1);   opacity: 0.18; }
    50%       { transform: scale(1.4); opacity: 0.08; }
  }

/* MULTI-PAGE ENHANCEMENTS */
body{animation:siteFadeIn .55s ease both}main{background:var(--offwhite)}.nav-links a{position:relative}.nav-links a:after{content:'';position:absolute;left:0;right:0;bottom:-9px;height:1px;background:var(--gold);transform:scaleX(0);transition:transform .28s ease}.nav-links a:hover:after,.nav-links a.active:after{transform:scaleX(1)}.nav-links a.active{color:var(--gold-light)}.nav-logo img{transition:transform .35s ease,box-shadow .35s ease}.nav-logo:hover img{transform:translateY(-1px) scale(1.02);box-shadow:0 12px 30px rgba(0,0,0,.18)}.page-hero{min-height:58vh;padding:150px 5% 90px;background:var(--navy);position:relative;overflow:hidden;display:flex;align-items:end}.page-hero:after{content:'';position:absolute;inset:auto 0 0;height:42%;background:linear-gradient(180deg,rgba(13,31,60,0),rgba(13,31,60,.88));pointer-events:none}.page-hero-content{position:relative;z-index:2;max-width:760px}.page-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(42px,6vw,72px);font-weight:600;line-height:1.06;color:#fff;letter-spacing:-1px;margin-bottom:24px}.page-hero h1 em{color:var(--gold)}.page-hero p:not(.hero-eyebrow){color:rgba(255,255,255,.68);line-height:1.75;max-width:620px;font-weight:300}.page-hero-number{position:absolute;right:3%;bottom:-4%;font-family:'Cormorant Garamond',serif;font-size:clamp(160px,22vw,300px);font-weight:700;color:rgba(200,149,42,.075);line-height:.8;pointer-events:none}.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}.reveal.is-visible{opacity:1;transform:translateY(0)}.service-card,.product-item,.why-item,.export-feature,.about-milestone,.contact-detail{will-change:transform}.service-card:hover,.product-item:hover,.why-item:hover,.process-step:hover{transform:translateY(-6px)}.product-img{transition:transform .7s ease,filter .7s ease}.product-item:hover .product-img{transform:scale(1.06);filter:saturate(1.08) contrast(1.03)}.export-visual,.about-tag{animation:softFloat 5.5s ease-in-out infinite alternate}.process-band{padding:110px 5%;background:#fff}.process-heading{max-width:740px;margin-bottom:48px}.process-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.process-step{border:1px solid var(--silver);border-radius:8px;padding:28px;background:linear-gradient(180deg,#fff,#fafafa);transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease}.process-step:hover{border-color:rgba(200,149,42,.42);box-shadow:0 18px 45px rgba(13,31,60,.08)}.process-step span{display:block;font-family:'Cormorant Garamond',serif;color:var(--gold);font-size:34px;margin-bottom:18px}.process-step h3{font-size:16px;color:var(--navy);margin-bottom:12px}.process-step p{color:var(--muted);font-size:14px;line-height:1.65}@keyframes siteFadeIn{from{opacity:0}to{opacity:1}}@keyframes softFloat{from{transform:translateY(0)}to{transform:translateY(-10px)}}@media(max-width:900px){.page-hero{min-height:52vh;padding-top:130px}.process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.page-hero{padding:120px 6% 70px}.process-grid{grid-template-columns:1fr}}@media(prefers-reduced-motion:reduce){*,*:before,*:after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #082414;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 18px 42px rgba(7, 94, 84, 0.32);
  border: 1px solid rgba(255,255,255,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #32e276;
  box-shadow: 0 22px 52px rgba(7, 94, 84, 0.4);
}

.whatsapp-float-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

.whatsapp-float-icon svg {
  width: 22px;
  height: 22px;
  fill: #128C4A;
  display: block;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px 11px 12px;
    min-height: 48px;
    font-size: 12px;
  }
}
