@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --ink: #0b1f18;
  --muted: #5e6b64;
  --blue: #123a78;
  --blue-2: #1f5fa8;
  --gold: #c7800e;
  --paper: #f4f8fc;
  --line: #d8e2ee;
  --white: #fff;
  --navy: #102d5b;
  --pale-blue: #eef5fb;
  --pale-line: #d6e5f2;
  --shadow: 0 24px 60px rgba(7, 31, 61, 0.16);
  --font-heading:
    "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.primary-nav,
.nav-cta,
.button,
.eyebrow {
  font-family: var(--font-heading);
}

p,
li,
td,
th {
  font-size: 16px;
  text-align: justify;
}

small,
.caption,
.eyebrow,
.primary-nav,
.nav-cta,
.button {
  font-size: 14px;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(5, 24, 49, 0.68),
    rgba(5, 24, 49, 0)
  );
  border-bottom: 0;
}

.nav-shell {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  max-width: 1360px;
  min-height: 104px;
  margin: 0 auto;
  padding: 0 28px;
}

.brand {
  display: inline-grid;
  justify-items: center;
  gap: 4px;
  width: max-content;
}

.brand-text {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-indent: 0.18em;
  white-space: nowrap;
}

.brand img {
  width: auto;
  height: 60px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.18));
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  user-select: none;
}

.primary-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 0;
}

.primary-nav > a:hover,
.nav-item > a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 14px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 230px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 46px rgba(7, 31, 61, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-dropdown-wide {
  grid-template-columns: 1fr 1fr;
  min-width: 440px;
}

.nav-dropdown a {
  padding: 10px 12px;
  color: var(--blue);
  border-radius: 0;
}

.nav-dropdown a:hover {
  background: var(--paper);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 900;
}

.nav-cta,
.button-primary {
  color: var(--white);
  background: var(--blue);
}

.nav-cta {
  box-shadow: 0 14px 34px rgba(0, 95, 174, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 31, 24, 0.12);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(5, 24, 49, 0.96),
      rgba(5, 24, 49, 0.7) 43%,
      rgba(5, 24, 49, 0.18)
    ),
    linear-gradient(0deg, rgba(5, 24, 49, 0.78), rgba(5, 24, 49, 0) 48%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -70px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 128px 28px 88px;
  margin-left: max(28px, calc((100vw - 1320px) / 2));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 70px);
}

h2 {
  font-size: clamp(34px, 4vw, 60px);
}

h3 {
  font-size: 24px;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  position: absolute;
  right: max(28px, calc((100vw - 1320px) / 2));
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  width: min(720px, calc(100vw - 56px));
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.hero-panel div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.ticker-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.ticker-band a {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  color: var(--blue);
  font-weight: 900;
}

.ticker-band a::after,
.text-link::after {
  content: " →";
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 92px 28px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  gap: 70px;
  align-items: start;
}

.section-copy {
  color: var(--muted);
  font-size: 20px;
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
}

.journey-section,
.hatchery-section,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.founder-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.founder-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.journey-section p,
.hatchery-section p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

.dark-section {
  max-width: none;
  padding-inline: max(28px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.business-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.business-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #0f3158;
}

.business-card img {
  width: 100%;
  height: 220px;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(230, 243, 252, 0.92)
  );
  opacity: 1;
}

.business-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    0deg,
    rgba(5, 24, 49, 0.9),
    rgba(5, 24, 49, 0.08)
  );
}

.business-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 26px;
}

.business-card span,
.service-card span,
.csr-cards span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.business-card p {
  color: rgba(255, 255, 255, 0.78);
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.product-links a {
  padding: 12px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  font-weight: 800;
}

.services-section {
  max-width: none;
  padding-inline: max(28px, calc((100vw - 1320px) / 2));
  background: var(--paper);
}

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

.service-card {
  display: grid;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  height: 250px;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #f2f8fc;
}

.service-card div {
  padding: 28px;
}

.service-card h3 {
  margin-top: 8px;
  color: var(--blue);
}

.service-card p {
  color: var(--muted);
}

.hatchery-section {
  align-items: stretch;
}

.hatchery-section > div:first-child,
.contact-section > div {
  padding: 48px;
  background: var(--paper);
}

.hatchery-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--line);
}

.hatchery-logos img {
  margin: auto;
  max-height: 260px;
  object-fit: contain;
}

.csr-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.csr-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.csr-cards a {
  min-height: 170px;
  padding: 28px;
  color: var(--blue);
  background: var(--pale-blue);
  border: 1px solid var(--pale-line);
}

.csr-cards strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.2;
}

.contact-section > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.mega-footer {
  background: var(--white);
}

.footer-quicklinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 70px 28px 56px;
}

.footer-quicklinks a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 28px 26px 28px 34px;
  color: var(--blue);
  background: var(--pale-blue);
  border: 1px solid var(--pale-line);
  border-radius: 10px;
  font-size: 24px;
  font-weight: 900;
}

.footer-quicklinks strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--blue);
  border: 2px solid var(--blue-2);
  border-radius: 0;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  padding: 52px max(28px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: var(--navy);
}

.social-block p {
  margin: 0 0 28px;
  font-size: 21px;
  font-weight: 900;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 58px;
  align-content: start;
}

.footer-columns a {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
}

.footer-bluebar {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 26px max(28px, calc((100vw - 1320px) / 2));
  color: var(--white);
  background: var(--blue);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 46px;
  font-size: 19px;
  font-weight: 800;
}

.footer-bluebar p {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-office {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 26px max(28px, calc((100vw - 1320px) / 2));
  color: var(--blue);
  background: var(--pale-blue);
  border-top: 1px solid var(--pale-line);
  font-size: 15px;
}

.footer-office p {
  margin: 5px 0;
}

.footer-office a {
  color: var(--blue);
  text-decoration: underline;
}

.product-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: 560px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 70%);
  overflow: hidden;
}

.product-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 16% 22%,
    rgba(199, 128, 14, 0.32),
    transparent 32%
  );
  pointer-events: none;
}

.product-page-hero .hero-copy-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 130px max(28px, calc((100vw - 1320px) / 2)) 86px;
}

.product-page-hero h1 {
  max-width: 720px;
  margin: 14px 0 22px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.product-page-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.7;
}

.product-page-hero .hero-image {
  min-height: 560px;
}

.product-page-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page-hero .hero-image.logo-stage {
  display: grid;
  place-items: center;
  padding: 72px;
  background: #f6f9ff;
}

.product-page-hero .hero-image.logo-stage img {
  width: min(430px, 78%);
  height: auto;
  object-fit: contain;
}

.product-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  padding: 88px max(28px, calc((100vw - 1320px) / 2));
  background: var(--white);
}

.product-summary h2,
.product-section h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.product-summary p,
.product-section p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.78;
}

.product-section {
  padding: 88px max(28px, calc((100vw - 1320px) / 2));
  background: var(--pale-blue);
}

.product-section.white {
  background: var(--white);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 38px;
}

.product-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(16, 45, 91, 0.08);
}

.product-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-feature-card div {
  padding: 26px;
}

.product-feature-card span,
.product-stat span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-feature-card h3 {
  margin: 10px 0 12px;
  color: var(--blue);
  font-size: 25px;
}

.product-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.product-stat {
  padding: 24px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
}

.product-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  padding: 20px 22px;
  color: var(--blue);
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
}

.generated-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 420px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

.generated-hero-content {
  align-self: center;
  padding: 126px max(28px, calc((100vw - 1320px) / 2)) 72px;
}

.generated-hero h1 {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.generated-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.generated-hero-media {
  min-height: 420px;
  background: #f6f9ff;
}

.generated-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.generated-main {
  padding: 72px max(28px, calc((100vw - 1320px) / 2));
  background: var(--pale-blue);
}

.generated-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.generated-content,
.generated-side {
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(16, 45, 91, 0.08);
}

.generated-content {
  padding: clamp(28px, 4vw, 52px);
}

.generated-content h1,
.generated-content h2,
.generated-content h3,
.generated-content h4 {
  color: var(--blue);
  letter-spacing: 0;
}

.generated-content h1 {
  font-size: clamp(34px, 4vw, 52px);
}

.generated-content h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.generated-content p,
.generated-content li,
.generated-content td,
.generated-content th {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.generated-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.generated-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 8px;
}

.generated-content th,
.generated-content td {
  padding: 14px 16px;
  border: 1px solid var(--pale-line);
  vertical-align: top;
}

.generated-content th {
  color: var(--blue);
  background: var(--pale-blue);
}

.generated-side {
  position: sticky;
  top: 118px;
  padding: 24px;
}

.generated-side h2 {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 22px;
}

.generated-side a {
  display: block;
  padding: 14px 0;
  color: var(--gold);
  border-top: 1px solid var(--pale-line);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .primary-nav {
    display: none;
  }

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

  .split-section,
  .journey-section,
  .hatchery-section,
  .csr-section,
  .contact-section,
  .product-page-hero,
  .product-summary,
  .generated-hero,
  .generated-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .brand img {
    width: 92px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 128px 22px 34px;
    margin: 0;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: auto;
    margin: 0 22px 28px;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ticker-band,
  .business-grid,
  .service-grid,
  .csr-cards,
  .founder-images,
  .hatchery-logos,
  .product-feature-grid,
  .product-stat-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

  .product-page-hero .hero-copy-panel {
    padding: 128px 22px 40px;
  }

  .product-page-hero .hero-image {
    min-height: 320px;
  }

  .generated-hero-content,
  .generated-main {
    padding-inline: 22px;
  }

  .generated-hero-media {
    min-height: 280px;
  }

  .section {
    padding: 64px 22px;
  }

  .hatchery-section > div:first-child,
  .contact-section > div {
    padding: 28px;
  }

  .footer-quicklinks,
  .footer-main,
  .footer-bluebar,
  .footer-office {
    grid-template-columns: 1fr;
  }

  .footer-quicklinks {
    padding: 42px 22px;
    gap: 16px;
  }

  .footer-main,
  .footer-bluebar,
  .footer-office {
    padding-inline: 22px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bluebar {
    flex-direction: column;
  }

  .footer-tabs {
    gap: 18px;
  }
}

/* Requested compact corporate typography scale */
body h1,
.hero-content h1,
.product-page-hero h1,
.generated-hero h1,
.generated-content h1 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

body h2,
.section-heading h2,
.product-summary h2,
.product-section h2,
.generated-content h2,
.generated-side h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

body h3,
.product-feature-card h3,
.service-card h3,
.generated-content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

body h4,
.generated-content h4 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

body,
body p,
body li,
body td,
body th,
.hero-copy,
.product-page-hero p,
.product-summary p,
.product-section p,
.generated-hero p,
.generated-content,
.generated-content p {
  font-family: var(--font-body);
  font-size: 16px;
}

small,
.caption,
.eyebrow,
.primary-nav,
.nav-cta,
.button,
.product-feature-card span,
.product-stat span {
  font-size: 14px;
}

@media (max-width: 720px) {
  body h1,
  .hero-content h1,
  .product-page-hero h1,
  .generated-hero h1,
  .generated-content h1 {
    font-size: 38px;
  }

  body h2,
  .section-heading h2,
  .product-summary h2,
  .product-section h2,
  .generated-content h2,
  .generated-side h2 {
    font-size: 30px;
  }
}

/* Compact two-row header, lighter footer and single-column product heroes */
.site-header {
  position: sticky;
  top: 0;
  right: auto;
  left: auto;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.utility-bar {
  position: absolute;
  top: 12px;
  right: max(28px, calc((100vw - 1320px) / 2));
  left: max(210px, calc((100vw - 1320px) / 2 + 190px));
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  min-height: 28px;
  color: #4f6271;
  font-size: 14px;
  white-space: nowrap;
}

.market-company {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-shell {
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: end;
  min-height: 100px;
  padding: 8px 28px 10px;
}

.brand img {
  width: auto;
  height: 60px;
  filter: none;
}

.primary-nav {
  align-self: end;
  transform: translateY(16px);
  color: var(--blue);
  text-transform: uppercase;
}

.nav-cta {
  align-self: end;
}

.primary-nav > a:hover,
.nav-item > a:hover {
  background: var(--pale-blue);
}

.nav-item > a {
  gap: 7px;
}

.nav-item > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown a {
  text-transform: none;
}

.product-page-hero {
  display: block;
  min-height: 350px;
  background: linear-gradient(
    135deg,
    rgba(16, 45, 91, 0.96),
    rgba(18, 58, 120, 0.88)
  );
}

.product-page-hero .hero-copy-panel {
  max-width: 920px;
  padding: 74px max(28px, calc((100vw - 1320px) / 2)) 60px;
}

.product-page-hero .hero-image {
  position: absolute;
  inset: 0;
  min-height: 0;
  opacity: 0.18;
  pointer-events: none;
}

.product-page-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.product-page-hero .hero-image.logo-stage {
  padding: 0;
  background: transparent;
}

.product-summary {
  grid-template-columns: 1fr;
  gap: 24px;
}

.generated-hero {
  display: block;
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.generated-hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: 74px max(28px, calc((100vw - 1320px) / 2)) 58px;
}

.generated-hero-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  opacity: 0.16;
  pointer-events: none;
}

.generated-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.footer-quicklinks a,
.social-block p,
.social-icons a,
.footer-columns a,
.footer-tabs,
.footer-bluebar p,
.footer-office,
.footer-office strong {
  font-weight: 400;
}

.footer-quicklinks a,
.social-block p {
  font-size: 21px;
}

.footer-columns a,
.footer-bluebar p {
  font-size: 16px;
}

.mega-footer {
  background: #103f7b;
  color: #f6f8fb;
}

.footer-quicklinks {
  position: relative;
  background: #f4f9fd;
  padding: 56px 28px 44px;
}

.footer-quicklinks::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  content: "";
  background: #f4f9fd;
  transform: translateX(-50%);
}

.footer-quicklinks a {
  position: relative;
  z-index: 1;
  min-height: 94px;
  background: #eaf4fc;
  border: 1px solid #d5e8f5;
  color: #143d6f;
  border-radius: 0;
}

.footer-quicklinks strong {
  border-color: #35a7df;
  color: #103f7b;
  border-radius: 0;
}

.footer-main {
  background: #103f7b;
  color: #f6f8fb;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 58px;
  padding-bottom: 58px;
}

.footer-main-columns {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.35fr 0.75fr;
  gap: 44px;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
}

.footer-column a,
.footer-column p,
.social-block p,
.footer-columns a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 400;
}

.footer-column p {
  margin: 0;
  line-height: 1.75;
}

.footer-address {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 34px;
}

.footer-social-column {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 34px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  color: #f6f8fb;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  font-size: 17px;
}

.footer-columns {
  gap: 18px 56px;
}

.footer-column a:hover,
.footer-columns a:hover,
.social-icons a:hover {
  color: #35a7df;
}

.footer-bluebar {
  justify-content: center;
  background: #0b3264;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 26px;
  padding-bottom: 26px;
}

.footer-tabs {
  display: none;
}

.footer-bluebar p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-office {
  background: #103f7b;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-office a,
.footer-office strong {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 720px) {
  .utility-bar {
    position: static;
    justify-content: flex-start;
    padding: 8px 22px;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 10px 22px;
  }

  .product-page-hero {
    min-height: 300px;
  }

  .product-page-hero .hero-copy-panel {
    padding: 54px 22px 44px;
  }

  .generated-hero {
    min-height: 280px;
  }

  .generated-hero-content {
    padding: 54px 22px 44px;
  }

  .footer-main {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .footer-main-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .social-block {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding-right: 0;
    padding-bottom: 26px;
  }

  .footer-address,
  .footer-social-column {
    border-left: 0;
    padding-left: 0;
  }
}

/* Quiet interaction polish */
a,
button,
.button,
.nav-cta,
.product-links a,
.footer-quicklinks a,
.business-card,
.service-card,
.csr-cards a,
.product-feature-card,
.footer-column a,
.social-icons a {
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}

a {
  cursor: pointer;
}

.button:hover,
.nav-cta:hover,
.product-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 49, 92, 0.16);
}

.button-primary:hover,
.nav-cta:hover {
  background: #0b3264;
}

.button-secondary:hover {
  border-color: #35a7df;
  color: #103f7b;
}

.business-card:hover,
.service-card:hover,
.csr-cards a:hover,
.product-feature-card:hover,
.footer-quicklinks a:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(7, 38, 78, 0.12);
}

.service-card:hover img,
.business-card:hover img,
.product-feature-card:hover img {
  opacity: 0.96;
}

.footer-quicklinks a:hover {
  border-color: #35a7df;
  background: #e2f1fb;
}

.footer-quicklinks a:hover strong {
  transform: translateX(4px);
}

.footer-column a:hover,
.social-icons a:hover {
  transform: translateX(3px);
}

.button:focus-visible,
.nav-cta:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(53, 167, 223, 0.32);
  outline-offset: 4px;
}

@keyframes quietFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.generated-hero-content,
.product-page-hero .hero-copy-panel,
.business-card,
.service-card,
.csr-cards a,
.product-feature-card,
.footer-quicklinks a {
  animation: quietFadeUp 0.7s ease both;
}

.business-card:nth-child(2),
.service-card:nth-child(2),
.footer-quicklinks a:nth-child(2) {
  animation-delay: 0.06s;
}

.business-card:nth-child(3),
.service-card:nth-child(3),
.footer-quicklinks a:nth-child(3) {
  animation-delay: 0.12s;
}

.business-card:nth-child(4),
.footer-quicklinks a:nth-child(4) {
  animation-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* css added by shubham-------------------------------------------------------------------------------------------- */
.heroSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.heroSwiper .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 20px;
  background: #20549c;
  opacity: 1;
}

@media (max-width: 991px) {
  .heroSwiper h1 {
    font-size: 2.5rem;
  }

  .heroSwiper .vh-100 {
    height: 50vh !important;
  }
}

.board-director {
  transition: 0.35s;
}

.board-director:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.12) !important;
}

/* Custom Financial Tabs */
.custom-fin-tabs .nav-link {
  border: 1px solid #d9d9d9;
  border-radius: 50px;
  background: #fff;
  color: #212529;
  font-weight: 600;
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.custom-fin-tabs .nav-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f8fbff;
}

.custom-fin-tabs .nav-link.active,
.custom-fin-tabs .show > .nav-link {
  background: var(--blue) !important;
  color: #fff !important;
  border-color: var(--blue) !important;
  box-shadow: none;
}

.custom-fin-tabs .nav-link:focus,
.custom-fin-tabs .nav-link:focus-visible {
  outline: none;
  box-shadow: none;
}

.custom-fin-tabs .nav-link:not(.active) {
  background: #fff;
}


.custom-year-tabs .nav-link{
    color:var(--blue);
    border:1px solid #dee2e6;
    background:#fff;
    transition:0.3s;
}

.custom-year-tabs .nav-link:hover{
    border-color:var(--blue);
    color:var(--blue);
}

.custom-year-tabs .nav-link.active{
    color:var(--blue) !important;
    background:#fff !important;
    border:2px solid var(--blue) !important;
    font-weight:600;
}

.custom-year-tabs .nav-link:focus{
    box-shadow:none;
}


.custom-fin-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.custom-fin-tabs .nav-item {
    flex: 0 0 16.66%; /* 6 items per row */
    max-width: 16.66%;
}

.custom-fin-tabs .nav-link {
    width: 100%;
    text-align: center;
    border-radius: 50rem;
    border: 1px solid #dee2e6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
    .custom-fin-tabs .nav-item {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 767.98px) {
    .custom-fin-tabs .nav-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.icon-color{
    background-color: #20549c !important;
}
.icon{
    color: #20549c !important;
}

  .stresvel-hero {
    background: linear-gradient(135deg, #20549c, #163d73);
    border-radius: 1rem;
    overflow: hidden;
  }
  .stresvel-hero-badge {
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    font-weight: 600;
  }
  .stresvel-stat-pill {
    background-color: rgba(255,255,255,0.12);
  }
  .stresvel-hero-btn {
    background-color: #ffffff;
    color: #20549c;
    font-weight: 700;
  }
  .stresvel-hero-img {
    max-height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.35));
  }

  .stresvel-sidebar-sticky {
    position: sticky;
    top: 120px;
  }
  .stresvel-feature-card {
    background-color: #f8f9fb;
    border-left: 4px solid #20549c;
    box-shadow: 0 8px 20px rgba(32,84,156,0.06);
  }
  .stresvel-icon-circle {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #20549c, #163d73);
  }
  .stresvel-check-icon {
    color: #20549c;
  }
  .stresvel-usage-card {
    background: linear-gradient(135deg, #20549c, #163d73);
  }
  .stresvel-presentation-card {
    background-color: #ffffff;
    border: 2px solid #eef1f6;
  }
  .stresvel-badge-soft {
    background-color: rgba(32,84,156,0.1);
    color: #20549c;
    font-weight: 700;
  }

  .stresvel-section-badge {
    background-color: rgba(32,84,156,0.1);
    color: #20549c;
    font-weight: 600;
  }
  .stresvel-table-wrap {
    box-shadow: 0 10px 25px rgba(32,84,156,0.1);
  }
  .stresvel-table thead th {
    background-color: #20549c;
    color: #ffffff;
  }
  .stresvel-table tbody tr:nth-child(odd) { background-color: #ffffff; }
  .stresvel-table tbody tr:nth-child(even) { background-color: #f8f9fb; }
  .stresvel-table td {
    color: #20549c;
    font-weight: 700;
  }
  .stresvel-table td:first-child {
    color: #1a1a1a;
    font-weight: 600;
  }
  .stresvel-dot {
    width: 8px;
    height: 8px;
    background-color: #20549c;
  }

  .stresvel-info-card {
    background-color: #f8f9fb;
    box-shadow: 0 8px 20px rgba(32,84,156,0.06);
  }

  .stresvel-cta-card {
    background-color: #f8f9fb;
    border: 1px dashed #20549c;
  }
  .stresvel-cta-btn {
    background: linear-gradient(135deg, #20549c, #1a4380);
    color: #ffffff;
    font-weight: 700;
  }

  .journey-intro h2,
.journey-timeline-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: 0;
}

.journey-intro p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.78;
}

.journey-timeline-section {
  padding: 76px max(28px, calc((100vw - 1320px) / 2));
  background: var(--pale-blue);
}

.journey-timeline {
  position: relative;
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 74px;
  width: 3px;
  background: linear-gradient(#0b64b1, #f2b544);
  opacity: .5;
}

.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.journey-year {
  position: relative;
  z-index: 2;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 66px;
  color: #003e75;
  background: #ffffff;
  border: 3px solid #0b64b1;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 79, 145, .18);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
}

.journey-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: center;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--pale-line);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(13, 54, 93, .08);
}

.journey-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.18;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.journey-logo {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 12px;
  background: #f8fbff;
  border: 1px solid var(--pale-line);
  border-radius: 8px;
}

.journey-logo img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}