test123/* ── TOM Pharmacy — Shared Styles ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1B3A5C;
  --teal: #0D7377;
  --teal-hover: #0b6164;
  --dark: #0f1f30;
  --body: #475569;
  --muted: #64748b;
  --hint: #94a3b8;
  --border: #e2e8f0;
  --light-bg: #f8fafb;
  --white: #ffffff;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--body); line-height: 1.7; background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, #1B3A5C, #0D7377);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.logo-text { line-height: 1.1; }
.logo-name { color: white; font-weight: 700; font-size: 17px; letter-spacing: -0.3px; }
.logo-tag { color: rgba(255,255,255,0.45); font-size: 11px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: white; }
.nav-cta {
  background: var(--teal); color: white !important; padding: 8px 20px;
  border-radius: 8px; font-weight: 600; font-size: 14px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-hover); }
.mobile-menu { display: none; background: none; border: none; cursor: pointer; }

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, #0f1f30 0%, #1B3A5C 38%, #164a56 68%, #0D7377 100%);
  padding: 96px 24px 88px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,115,119,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-light { background: var(--white); padding: 80px 24px 64px; text-align: center; }
.hero-light h1 { color: var(--navy); font-size: 44px; font-weight: 700; line-height: 1.15; letter-spacing: -1px; max-width: 640px; margin: 0 auto 20px; }
.hero-light .hero-sub { color: var(--muted); }
.pill {
  display: inline-block; background: rgba(13,115,119,0.18);
  border: 1px solid rgba(13,115,119,0.28); border-radius: 24px;
  padding: 6px 18px; color: #5ec4c8; font-size: 13px; font-weight: 500; margin-bottom: 28px;
}
.hero h1 {
  color: white; font-size: 48px; font-weight: 700; line-height: 1.1;
  letter-spacing: -1px; max-width: 640px; margin: 0 auto 20px;
}
.hero-sub {
  color: rgba(255,255,255,0.6); font-size: 18px; line-height: 1.7;
  max-width: 540px; margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.btn-primary {
  background: var(--teal); color: white; padding: 14px 34px; border-radius: 10px;
  font-size: 16px; font-weight: 600; font-family: var(--font); border: none;
  cursor: pointer; transition: background 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--teal-hover); }
.btn-outline {
  background: transparent; color: white; padding: 14px 34px; border-radius: 10px;
  font-size: 16px; font-weight: 600; font-family: var(--font);
  border: 1.5px solid rgba(255,255,255,0.22); cursor: pointer;
  transition: border-color 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.45); }
.btn-navy {
  background: var(--navy); color: white; padding: 14px 34px; border-radius: 10px;
  font-size: 16px; font-weight: 600; display: inline-block; transition: background 0.2s;
}
.btn-navy:hover { background: #162f4a; }
.hero-hint { color: rgba(255,255,255,0.35); font-size: 13px; }

/* ── Sections ── */
.section { padding: 88px 24px; }
.section-light { background: var(--light-bg); }
.section-label {
  color: var(--teal); font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; text-align: center; margin-bottom: 10px;
}
.section-heading {
  font-size: 32px; font-weight: 700; color: var(--navy);
  text-align: center; letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.2;
}
.section-sub {
  text-align: center; color: var(--muted); font-size: 16px; margin-bottom: 52px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ── Cards ── */
.product-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; transition: border-color 0.2s;
}
.product-card:hover { border-color: #cbd5e1; }
.problem-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px;
}
.problem-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.problem-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.problem-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Feature lists ── */
.dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.dot-teal { background: var(--teal); }
.dot-navy { background: var(--navy); }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--body); }

/* ── CTA ── */
.cta { background: var(--navy); padding: 80px 24px; text-align: center; }
.cta h2 { color: white; font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; }
.cta-sub { color: rgba(255,255,255,0.55); font-size: 17px; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: var(--dark); padding: 56px 24px 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1100px; margin: 0 auto;
}
.footer-brand .logo-name { font-size: 20px; }
.footer-brand-desc { color: rgba(255,255,255,0.4); font-size: 13px; line-height: 1.6; margin-top: 12px; max-width: 260px; }
.footer-col h4 {
  color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu { display: block; }
  .hero { padding: 64px 20px 56px; }
  .hero h1 { font-size: 32px; }
  .hero-light h1 { font-size: 28px; }
  .hero-sub { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline, .btn-navy { width: 100%; max-width: 320px; text-align: center; }
  .section { padding: 56px 20px; }
  .section-heading { font-size: 26px; }
  .cta h2 { font-size: 26px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
