:root {
  --sky: #7fa9cc;
  --sky-deep: #6c97bd;
  --sky-soft: #dce9f3;
  --navy: #0f4e80;
  --navy-soft: #2d6796;
  --text: #243341;
  --muted: #5f7182;
  --line: #d5e1eb;
  --white: #ffffff;
  --bg: #edf3f8;
  --accent: #66ff00;
  --shadow: 0 18px 40px rgba(10, 38, 63, 0.14);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #f4f7fb;
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--navy);
  border-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 24px rgba(10, 38, 63, 0.16);
}

.nav {
  min-height: 86px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  min-width: 290px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 4px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

.brand-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
}

.tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.96);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: rgba(255,255,255,0.95);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 90px;
  justify-content: flex-end;
}

.header-icon {
  color: rgba(255,255,255,0.96);
  font-size: 1.2rem;
  line-height: 1;
}

.page-hero {
  padding: 32px 0 18px;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #eef5fb);
  border: 1px solid rgba(213, 225, 235, 0.9);
  box-shadow: 0 20px 42px rgba(20, 48, 78, 0.1);
}

.hero-visual {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  min-height: auto;
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(236px, 100%);
  height: auto;
  object-fit: contain;
}

.hero-copy {
  display: grid;
  gap: 14px;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  color: var(--white);
  padding-bottom: 36px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.42) 48%, rgba(0,0,0,0.28) 100%),
    url("deposito-industria.webp") center/cover no-repeat;
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.home-hero-content {
  max-width: 760px;
  padding: 60px 0 72px;
  background: linear-gradient(135deg, rgba(5, 20, 33, 0.78), rgba(11, 43, 69, 0.56));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
  padding: 34px 36px;
  backdrop-filter: blur(6px);
}

.home-hero .eyebrow {
  color: rgba(255,255,255,0.9);
}

.home-hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  max-width: 900px;
  margin-bottom: 16px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.28);
}

.home-hero p {
  color: rgba(255,255,255,0.96);
  font-size: 1.12rem;
  max-width: 760px;
  margin: 0 0 28px;
  line-height: 1.55;
}

.brand-strip-section {
  background: #ffffff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 14px 0;
  overflow: hidden;
}

.brand-strip-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: brand-scroll 24s linear infinite;
}

.brand-strip-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.brand-logo {
  min-width: 138px;
  height: 58px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.02);
}

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

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

.cta-primary {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #163300;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--navy-soft);
}

h1, h2, h3 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.08;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero-copy p,
.section-head p,
.content-copy p,
.card p {
  color: var(--muted);
  margin: 0;
}

.hero-copy p {
  font-size: 1.04rem;
  max-width: 860px;
  text-align: center;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}

.hero-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(169, 195, 220, 0.22);
  border: 1px solid rgba(49, 86, 125, 0.12);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.main-content section {
  padding: 24px 0 40px;
}

.section-divider {
  display: flex;
  justify-content: center;
  padding: 6px 0 0;
}

.section-divider span {
  width: min(180px, 26vw);
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(127, 169, 204, 0.12), rgba(15, 78, 128, 0.6), rgba(127, 169, 204, 0.12));
}

.about-main {
  padding-bottom: 10px;
}

.about-story-hero {
  padding: 38px 0 12px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 30px;
  align-items: center;
}

.about-story-copy {
  display: grid;
  gap: 16px;
}

.about-story-copy h1 {
  font-size: clamp(2.6rem, 4.3vw, 4.4rem);
  max-width: 720px;
}

.about-story-copy p {
  max-width: 700px;
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0;
}

.about-story-badges {
  justify-content: flex-start;
}

.about-story-visual {
  position: relative;
  padding-bottom: 28px;
}

.about-story-visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 24px 48px rgba(18, 47, 76, 0.18);
}

.about-story-float {
  position: absolute;
  left: -26px;
  bottom: 0;
  width: min(86%, 320px);
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(15, 78, 128, 0.94);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(8, 30, 52, 0.24);
}

.about-story-float strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.about-story-float p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.about-journey-section {
  padding-top: 18px;
}

.about-story-head {
  margin-bottom: 32px;
}

.about-story-head h2,
.about-story-head p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.about-journey-grid,
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-journey-card {
  padding: 28px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f2f7fb);
  border: 1px solid rgba(213, 225, 235, 0.9);
  box-shadow: 0 18px 34px rgba(20, 48, 78, 0.08);
}

.about-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f4e80, #6f9fc8);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.about-journey-card h3,
.about-pillar-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.about-journey-card p,
.about-pillar-card p {
  margin: 0;
  color: var(--muted);
}

.about-narrative-section {
  padding-top: 10px;
}

.about-narrative-stack {
  display: grid;
  gap: 26px;
}

.about-narrative-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(213, 225, 235, 0.92);
  box-shadow: 0 22px 42px rgba(20, 48, 78, 0.1);
}

.about-narrative-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-narrative-text {
  padding: 38px 38px 34px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.about-narrative-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-pillars-section {
  padding-top: 12px;
}

.about-pillars-shell {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(13, 47, 77, 0.98), rgba(24, 87, 133, 0.94));
  box-shadow: 0 22px 44px rgba(13, 42, 69, 0.18);
}

.about-pillars-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.about-pillars-intro .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.about-pillars-intro h2,
.about-pillars-intro p {
  color: #ffffff;
}

.about-pillars-intro p {
  margin: 0;
  opacity: 0.9;
}

.about-pillar-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
}

.about-pillar-card h3,
.about-pillar-card p {
  color: #ffffff;
}

.about-pillar-card p {
  opacity: 0.88;
}

.about-closing-section {
  padding-top: 8px;
}

.about-hero {
  padding: 38px 0 24px;
}

.about-hero-card {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.98), rgba(231, 241, 250, 0.96)),
    radial-gradient(circle at top right, rgba(127, 169, 204, 0.16), transparent 36%);
}

.about-hero-visual {
  min-height: 100%;
}

.about-hero-visual img {
  width: 100%;
  min-height: 360px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(18, 47, 76, 0.18);
}

.about-hero-copy {
  text-align: left;
}

.about-hero-copy p {
  max-width: 620px;
  text-align: left;
  font-size: 1.05rem;
}

.about-badges {
  justify-content: flex-start;
}

.about-intro-section {
  padding-top: 10px;
}

.about-intro-grid,
.about-band,
.about-gallery-grid,
.about-values-grid {
  display: grid;
  gap: 24px;
}

.about-intro-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.about-story-card,
.about-photo-card {
  height: 100%;
}

.about-story-card .content-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  height: 100%;
}

.about-story-card p + p {
  margin-top: 0;
}

.about-photo-card .card-image,
.about-photo-card .card-image img {
  min-height: 100%;
  height: 100%;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.about-mini-stat {
  padding: 22px 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(213, 225, 235, 0.9);
  box-shadow: 0 12px 28px rgba(20, 48, 78, 0.07);
}

.about-mini-stat strong {
  display: block;
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.about-mini-stat p {
  margin: 0;
  color: var(--muted);
}

.about-values-section {
  background: linear-gradient(180deg, #edf4fa, #f6f9fc);
}

.about-section-head {
  margin-bottom: 30px;
}

.about-section-head h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.about-section-head p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

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

.about-value-card {
  padding: 28px 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(213, 225, 235, 0.9);
  box-shadow: 0 16px 34px rgba(20, 48, 78, 0.08);
}

.about-value-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.about-value-card p {
  margin: 0;
  color: var(--muted);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f4e80, #5f88b0);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(15, 78, 128, 0.18);
}

.about-band-section {
  padding-top: 12px;
}

.about-band {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(14, 49, 80, 0.98), rgba(25, 86, 132, 0.94));
  box-shadow: 0 22px 44px rgba(13, 42, 69, 0.18);
}

.about-band-copy .eyebrow,
.about-cta-card .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.about-band-copy h2,
.about-band-copy p,
.about-feature-list {
  color: #ffffff;
}

.about-band-copy p {
  opacity: 0.92;
}

.about-feature-list {
  opacity: 0.94;
}

.about-band-visual {
  display: flex;
  justify-content: flex-end;
}

.about-band-image-shell {
  width: min(100%, 460px);
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-band-image-shell img {
  width: 100%;
  min-height: 310px;
  object-fit: cover;
  border-radius: 22px;
}

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

.about-gallery-card .card-copy h3 {
  font-size: 1.14rem;
}

.about-gallery-card .card-copy p {
  color: var(--muted);
}

.about-cta-card {
  padding: 34px;
}

.about-cta-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.about-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.intro-band {
  background: #ffffff;
  padding: 0 0 48px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  align-items: stretch;
}

.overview-card {
  display: block;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 38px rgba(20, 48, 78, 0.12);
  border: 1px solid #e6eef4;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(20, 48, 78, 0.16);
}

.overview-card img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  display: block;
}

.overview-body {
  padding: 18px 26px 24px;
}

.overview-body h3 {
  color: #0f4e80;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.overview-body p {
  color: #687a8d;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

.products-intro {
  padding: 46px 0 28px;
  background: #ffffff;
}

.products-intro-link {
  display: block;
  text-decoration: none;
}

.products-intro-copy {
  max-width: none;
  width: 100%;
}

.products-intro-copy h2 {
  color: #113b61;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 14px;
}

.products-intro-copy p {
  font-size: 1.06rem;
  line-height: 1.7;
  color: #5f7182;
  margin: 0;
  max-width: none;
}

.products-intro-link:hover .products-intro-copy h2 {
  color: #0b3354;
}

.brand-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #7fa9cc;
  color: #163653;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.industries-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(12, 44, 73, 0.98), rgba(22, 84, 128, 0.92));
  box-shadow: 0 24px 44px rgba(13, 42, 69, 0.18);
}

.industries-showcase-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.industries-showcase-copy .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.industries-showcase-copy h2,
.industries-showcase-copy p {
  color: #ffffff;
}

.industries-showcase-copy p {
  margin: 0;
  opacity: 0.92;
  font-size: 1.02rem;
}

.industries-showcase .brand-cta {
  background: #ffffff;
  color: #113b61;
  box-shadow: 0 16px 28px rgba(7, 29, 50, 0.18);
}

.industries-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.industry-chip-card {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.industry-chip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 30px rgba(7, 29, 50, 0.18);
}

.industry-chip-card strong,
.industry-chip-card span {
  display: block;
  color: #ffffff;
}

.industry-chip-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.industry-chip-card span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.section-head {
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-head p {
  font-size: 1rem;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
}

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

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

.card,
.content-card,
.contact-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(20, 48, 78, 0.08);
  border: 1px solid rgba(213, 225, 235, 0.75);
  overflow: hidden;
}

.card,
.content-card,
.contact-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover,
.content-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(20, 48, 78, 0.12);
}

.card-image {
  min-height: 250px;
}

.card-image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.card:hover .card-image img,
.content-card:hover .card-image img {
  transform: scale(1.03);
}

.card-copy,
.content-copy,
.contact-copy {
  padding: 28px;
}

.content-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.simple-text-block {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.icon-heading {
  display: grid;
  grid-template-columns: 10% 18% 72%;
  gap: 0;
  align-items: start;
}

.icon-heading-graphic {
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.icon-heading-graphic span {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(22, 58, 99, 0.16);
}

.icon-heading-title {
  padding-top: 2px;
}

.icon-heading-copy p {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 8px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: #f6f9fc;
  border: 1px solid var(--line);
}

.contact-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.manual-link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 700;
  color: var(--navy);
}

.cta-card {
  background: linear-gradient(120deg, rgba(22,58,99,0.94), rgba(49,86,125,0.88));
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
  color: var(--white);
}

.cta-card h3,
.cta-card p {
  color: var(--white);
  margin: 0;
}

.cta-card p {
  opacity: 0.9;
  margin-top: 10px;
}

.site-footer {
  background: #0f4e80;
  color: rgba(255,255,255,0.92);
}

.site-footer p {
  margin: 0;
}

.site-footer-large {
  padding-top: 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px minmax(320px, 1fr) 220px;
  gap: 46px;
  align-items: start;
  padding-bottom: 34px;
}

.footer-links {
  display: grid;
  gap: 16px;
  justify-items: center;
  align-content: start;
}

.footer-links a,
.footer-contact a,
.footer-social a {
  color: rgba(255,255,255,0.96);
}

.footer-links a {
  font-size: 1.05rem;
}

.footer-contact {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.footer-contact strong {
  letter-spacing: 0.04em;
}

.footer-social {
  display: grid;
  gap: 16px;
  justify-items: end;
}

.footer-brand-block {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.footer-brand-mark {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background: #ffffff;
  padding: 6px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.footer-brand-block p {
  max-width: 180px;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}

.footer-mail-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.22);
  padding: 18px 0 22px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: transparent;
  display: grid;
  place-items: center;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  text-indent: 120px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 40;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  text-decoration: none;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23fff' d='M54.88 9.12A31.78 31.78 0 0 0 32.2 0C14.57 0 .2 14.35.2 31.98c0 5.63 1.48 11.13 4.29 15.98L0 64l16.45-4.32a32.01 32.01 0 0 0 15.72 4.02h.01c17.63 0 31.99-14.35 31.99-31.99 0-8.55-3.33-16.58-9.29-22.59ZM32.19 58.3h-.01a26.7 26.7 0 0 1-13.59-3.72l-.98-.58-9.76 2.56 2.61-9.52-.64-1a26.6 26.6 0 0 1-4.08-14.48C5.74 17 17.64 5.1 32.21 5.1c7.05 0 13.68 2.74 18.67 7.74 4.98 4.99 7.72 11.61 7.72 18.66 0 14.57-11.9 26.8-26.41 26.8Z'/%3E%3Cpath fill='%23fff' d='M46.9 38.32c-.8-.4-4.71-2.33-5.44-2.59-.73-.27-1.26-.4-1.8.4-.53.8-2.07 2.59-2.54 3.12-.47.53-.93.6-1.73.2-.8-.4-3.37-1.24-6.42-3.95-2.38-2.12-3.98-4.74-4.45-5.54-.46-.8-.05-1.23.35-1.62.36-.36.8-.93 1.2-1.4.4-.47.53-.8.8-1.33.27-.53.13-1-.07-1.4-.2-.4-1.8-4.32-2.46-5.92-.65-1.56-1.31-1.35-1.8-1.37l-1.53-.03c-.53 0-1.4.2-2.13 1-.73.8-2.8 2.73-2.8 6.66s2.87 7.72 3.27 8.25c.4.53 5.64 8.62 13.67 12.08 1.91.83 3.4 1.32 4.56 1.69 1.92.61 3.67.52 5.06.31 1.55-.23 4.71-1.93 5.38-3.79.67-1.86.67-3.46.47-3.79-.2-.33-.73-.53-1.53-.93Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 54%;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.26);
}

.about-premium-hero {
  padding: 46px 0 24px;
  background:
    radial-gradient(circle at top right, rgba(127, 169, 204, 0.24), transparent 28%),
    linear-gradient(180deg, #edf4fb 0%, #dfeaf5 100%);
}

.about-premium-main section {
  padding: 34px 0 42px;
}

.about-divider {
  padding-top: 0;
  padding-bottom: 2px;
}

.about-premium-hero-grid,
.about-story-layout,
.about-trust-grid {
  display: grid;
  gap: 30px;
}

.about-premium-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
}

.about-premium-copy {
  display: grid;
  gap: 16px;
}

.about-premium-copy h1 {
  font-size: clamp(2.75rem, 4.8vw, 4.8rem);
  max-width: 760px;
  letter-spacing: -0.03em;
}

.about-premium-copy p {
  margin: 0;
  max-width: 720px;
  font-size: 1.08rem;
  color: var(--muted);
}

.premium-secondary-cta {
  min-height: 58px;
  padding: 0 26px;
  background: #ffffff;
  border: 1px solid rgba(49, 86, 125, 0.16);
  box-shadow: 0 14px 28px rgba(19, 44, 72, 0.08);
  display: inline-flex;
  align-items: center;
}

.about-premium-image-stack {
  position: relative;
  padding-bottom: 24px;
}

.about-premium-main-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 28px 48px rgba(16, 42, 69, 0.2);
}

.about-premium-overlay-card {
  position: absolute;
  right: -12px;
  bottom: 0;
  width: min(78%, 300px);
  padding: 22px;
  border-radius: 24px;
  background: rgba(12, 50, 81, 0.94);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(11, 32, 51, 0.22);
}

.about-premium-overlay-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}

.about-premium-overlay-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.about-story-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #eef4fa);
  border: 1px solid rgba(213, 225, 235, 0.9);
  box-shadow: 0 20px 38px rgba(20, 48, 78, 0.08);
}

.about-story-text {
  display: grid;
  gap: 14px;
}

.about-story-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.about-story-side-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(213, 225, 235, 0.92);
  box-shadow: 0 22px 42px rgba(20, 48, 78, 0.1);
}

.about-story-side-card img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-story-side-copy {
  padding: 24px 26px 26px;
}

.about-story-side-copy h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.about-story-side-copy p {
  margin: 0;
  color: var(--muted);
}

.about-stats-section {
  padding-top: 8px;
  background: linear-gradient(180deg, #e9f2f9 0%, #f5f9fc 100%);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-stat-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #0f4e80, #184e7a);
  color: #ffffff;
  box-shadow: 0 20px 36px rgba(16, 47, 74, 0.18);
}

.about-stat-card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  margin-bottom: 10px;
}

.about-stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.about-why-section {
  background:
    radial-gradient(circle at top left, rgba(127, 169, 204, 0.14), transparent 22%),
    linear-gradient(180deg, #edf4fa, #f7f9fc);
}

.about-why-grid,
.about-industries-grid {
  display: grid;
  gap: 20px;
}

.about-why-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.about-why-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(213, 225, 235, 0.92);
  box-shadow: 0 16px 34px rgba(20, 48, 78, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-why-card:hover,
.about-industries-grid span:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(20, 48, 78, 0.12);
}

.about-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f4e80, #79a7d0);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.about-why-card h3 {
  font-size: 1.14rem;
  margin-bottom: 10px;
}

.about-why-card p {
  margin: 0;
  color: var(--muted);
}

.about-industries-shell {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(12, 44, 73, 0.98), rgba(24, 83, 127, 0.94));
  box-shadow: 0 24px 44px rgba(14, 42, 65, 0.18);
}

.about-trust-section {
  background: linear-gradient(180deg, #f7fbff 0%, #edf4fa 100%);
}

.about-industries-copy {
  max-width: 760px;
  margin-bottom: 24px;
}

.about-industries-copy .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.about-industries-copy h2,
.about-industries-copy p {
  color: #ffffff;
}

.about-industries-copy p {
  margin: 0;
  opacity: 0.9;
}

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

.about-industries-grid span {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-trust-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.about-trust-quote {
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(213, 225, 235, 0.92);
  box-shadow: 0 22px 40px rgba(20, 48, 78, 0.1);
}

.about-trust-quote blockquote {
  margin: 0;
  color: #113b61;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.26;
  letter-spacing: -0.03em;
}

.about-trust-media img {
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 22px 40px rgba(20, 48, 78, 0.14);
}

.about-premium-cta {
  padding: 38px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-story-section,
.about-why-section,
.about-trust-section {
  position: relative;
}

.about-story-section::before,
.about-why-section::before,
.about-trust-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 78, 128, 0.22), transparent);
}

.manuals-hero {
  padding: 44px 0 24px;
  background:
    radial-gradient(circle at top right, rgba(127, 169, 204, 0.2), transparent 28%),
    linear-gradient(180deg, #eef5fb 0%, #dfeaf5 100%);
}

.manuals-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 30px;
  align-items: center;
}

.manuals-hero-copy {
  display: grid;
  gap: 16px;
}

.manuals-hero-copy h1 {
  font-size: clamp(2.55rem, 4.5vw, 4.45rem);
  max-width: 780px;
  letter-spacing: -0.03em;
}

.manuals-hero-copy p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.manuals-hero-visual {
  position: relative;
}

.manuals-hero-visual img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 28px 48px rgba(16, 42, 69, 0.18);
}

.manuals-hero-note {
  position: absolute;
  right: -12px;
  bottom: 24px;
  width: min(80%, 280px);
  padding: 22px;
  border-radius: 24px;
  background: rgba(12, 50, 81, 0.94);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(10, 31, 51, 0.22);
}

.manuals-hero-note strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}

.manuals-hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.manuals-main section {
  padding: 34px 0 40px;
}

.manuals-tools-section {
  background: linear-gradient(180deg, #f8fbfe 0%, #edf4fa 100%);
}

.manuals-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(213, 225, 235, 0.92);
  box-shadow: 0 18px 34px rgba(20, 48, 78, 0.08);
}

.manuals-toolbar-copy p {
  margin: 0;
  color: var(--muted);
}

.manuals-toolbar-controls {
  display: grid;
  gap: 16px;
  align-content: center;
}

.manuals-search {
  display: grid;
  gap: 8px;
}

.manuals-search-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #56758f;
  font-weight: 700;
}

.manuals-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(160, 182, 203, 0.68);
  background: #f7fbfe;
  color: #173b5d;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.manuals-search input:focus {
  border-color: rgba(15, 78, 128, 0.44);
  box-shadow: 0 0 0 4px rgba(127, 169, 204, 0.18);
}

.manuals-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.manual-filter {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(171, 194, 214, 0.72);
  background: #ffffff;
  color: #244566;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.manual-filter.active,
.manual-filter:hover {
  background: #0f4e80;
  border-color: #0f4e80;
  color: #ffffff;
  transform: translateY(-1px);
}

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

.manual-card {
  padding: 24px 22px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f5f9fc);
  border: 1px solid rgba(213, 225, 235, 0.92);
  box-shadow: 0 16px 32px rgba(20, 48, 78, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.manual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 38px rgba(20, 48, 78, 0.12);
}

.manual-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.manual-card-header img {
  width: auto;
  max-width: 118px;
  max-height: 42px;
  object-fit: contain;
}

.manual-brand-mark {
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  background: #edf4fa;
  color: #0f4e80;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.manual-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(127, 169, 204, 0.16);
  color: #205279;
  font-size: 0.84rem;
  font-weight: 700;
}

.manual-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.manual-card p {
  margin: 0;
  color: var(--muted);
  min-height: 96px;
}

.manual-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.manual-link {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0f4e80;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.manual-link.secondary {
  background: #edf4fa;
  color: #17476f;
}

.manuals-empty {
  margin-top: 18px;
  padding: 34px 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(213, 225, 235, 0.92);
  text-align: center;
  box-shadow: 0 16px 32px rgba(20, 48, 78, 0.08);
}

.manuals-empty h3 {
  margin-bottom: 10px;
}

.manuals-empty p {
  margin: 0 0 18px;
  color: var(--muted);
}

.manuals-service-band {
  background: linear-gradient(180deg, #eef5fb 0%, #f7fbfe 100%);
}

.manuals-service-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(13, 47, 77, 0.98), rgba(22, 83, 128, 0.94));
  box-shadow: 0 22px 42px rgba(12, 39, 61, 0.18);
}

.manuals-service-copy .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.manuals-service-copy h2,
.manuals-service-copy p {
  color: #ffffff;
}

.manuals-service-copy p {
  margin: 0;
  opacity: 0.9;
}

.manuals-service-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.manuals-point {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.manuals-point strong,
.manuals-point span {
  display: block;
  color: #ffffff;
}

.manuals-point strong {
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}

.manuals-point span {
  color: rgba(255, 255, 255, 0.84);
}

.manuals-simple-hero {
  padding: 42px 0 20px;
  background:
    radial-gradient(circle at top right, rgba(127, 169, 204, 0.18), transparent 28%),
    linear-gradient(180deg, #eef5fb 0%, #dfeaf5 100%);
}

.manuals-simple-hero-grid,
.brand-library-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.manuals-simple-copy p,
.brand-library-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
}

.manuals-simple-visual img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 22px 40px rgba(20, 48, 78, 0.14);
}

.manuals-brand-main section {
  padding: 34px 0 42px;
}

.manuals-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.manual-brand-card {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(213, 225, 235, 0.92);
  box-shadow: 0 18px 34px rgba(20, 48, 78, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.manual-brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px rgba(20, 48, 78, 0.12);
}

.manual-brand-photo {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #edf4fa);
}

.manual-brand-photo img {
  width: auto;
  max-width: 80%;
  max-height: 110px;
  object-fit: contain;
}

.manual-brand-photo-text {
  background: linear-gradient(135deg, #0f4e80, #6f9fc8);
}

.manual-brand-photo-text strong {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.06em;
}

.manual-brand-footer {
  padding: 18px 20px 20px;
  text-align: center;
}

.manual-brand-footer span {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #edf4fa;
  color: #14476f;
  font-weight: 700;
}

.brand-library-main section {
  padding: 34px 0 42px;
}

.brand-library-hero {
  background: linear-gradient(180deg, #eef5fb 0%, #f7fbfe 100%);
}

.brand-library-copy {
  display: grid;
  gap: 14px;
}

.manual-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #205279;
  font-weight: 700;
  margin-bottom: 6px;
}

.brand-library-mark {
  min-height: 260px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff, #edf4fa);
  border: 1px solid rgba(213, 225, 235, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 34px rgba(20, 48, 78, 0.08);
}

.brand-library-mark img {
  width: auto;
  max-width: 70%;
  max-height: 110px;
  object-fit: contain;
}

.brand-library-mark-text {
  background: linear-gradient(135deg, #0f4e80, #6f9fc8);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
}

.brand-pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.brand-pdf-card {
  padding: 26px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f4f9fc);
  border: 1px solid rgba(213, 225, 235, 0.92);
  box-shadow: 0 18px 34px rgba(20, 48, 78, 0.08);
}

.brand-pdf-card h3 {
  font-size: 1.14rem;
  margin-bottom: 10px;
}

.brand-pdf-card p {
  margin: 0 0 18px;
  color: var(--muted);
  min-height: 70px;
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    flex-direction: column;
    padding: 16px 0;
  }

  .brand-wrap {
    min-width: auto;
  }

  .header-actions {
    display: none;
  }

  .hero-card,
  .grid-2,
  .grid-3,
  .content-card,
  .icon-heading {
    grid-template-columns: 1fr;
  }

  .about-intro-grid,
  .about-values-grid,
  .about-band,
  .about-gallery-grid,
  .about-mini-stats,
  .industries-showcase,
  .industries-showcase-grid,
  .manuals-hero-grid,
  .manuals-simple-hero-grid,
  .manuals-brand-grid,
  .manuals-toolbar,
  .manuals-grid,
  .brand-library-hero-grid,
  .brand-pdf-grid,
  .manuals-service-shell,
  .manuals-service-points,
  .about-story-grid,
  .about-journey-grid,
  .about-narrative-block,
  .about-pillars-grid,
  .about-premium-hero-grid,
  .about-story-layout,
  .about-stats-grid,
  .about-why-grid,
  .about-industries-grid,
  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: center;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-copy {
    text-align: center;
  }

  .about-hero-copy,
  .about-hero-copy p {
    text-align: center;
  }

  .about-badges {
    justify-content: center;
  }

  .about-story-badges {
    justify-content: center;
  }

  .about-premium-copy,
  .about-premium-copy p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .manuals-hero-copy,
  .manuals-hero-copy p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .manuals-simple-copy,
  .manuals-simple-copy p,
  .brand-library-copy,
  .brand-library-copy p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-story-copy,
  .about-story-copy p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-premium-image-stack {
    padding-bottom: 0;
  }

  .about-premium-overlay-card {
    position: relative;
    right: 0;
    width: 100%;
    margin-top: -26px;
  }

  .manuals-hero-note {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: -26px;
  }

  .manual-back-link {
    justify-content: center;
  }

  .about-story-float {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: -26px;
  }

  .about-band-visual {
    justify-content: center;
  }

  .home-hero {
    min-height: 78vh;
    padding-bottom: 28px;
  }

  .home-hero-content {
    padding: 24px;
  }

  .brand-logo {
    min-width: 118px;
    height: 52px;
  }

  .brand-logo img {
    max-width: 100%;
    max-height: 100%;
  }

  .products-intro-copy {
    max-width: none;
  }

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

  .footer-links,
  .footer-contact,
  .footer-social {
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .hero-card,
  .card-copy,
  .content-copy,
  .contact-copy,
  .cta-card {
    padding: 22px;
  }

  .about-hero {
    padding-top: 22px;
  }

  .about-hero-visual img {
    min-height: 250px;
  }

  .about-value-card,
  .about-mini-stat,
  .about-band,
  .about-cta-card {
    padding: 22px;
  }

  .about-band-image-shell {
    padding: 10px;
  }

  .about-band-image-shell img {
    min-height: 220px;
  }

  .about-story-visual img {
    min-height: 320px;
  }

  .about-story-copy h1 {
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .about-premium-copy h1 {
    font-size: clamp(2.2rem, 8vw, 3.3rem);
  }

  .about-premium-main-image {
    min-height: 360px;
  }

  .manuals-hero-visual img {
    min-height: 360px;
  }

  .manuals-simple-visual img,
  .brand-library-mark {
    min-height: 280px;
  }

  .industries-showcase {
    padding: 24px;
  }

  .about-narrative-text,
  .about-pillars-shell {
    padding: 24px;
  }

  .about-premium-hero {
    padding-top: 28px;
  }

  .about-premium-overlay-card,
  .about-trust-quote,
  .about-industries-shell,
  .about-premium-cta,
  .about-story-side-copy,
  .manuals-toolbar,
  .manuals-service-shell,
  .manuals-empty {
    padding: 22px;
  }

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

  .brand-strip-section {
    padding-top: 20px;
  }

  .brand-logo {
    min-width: 104px;
    height: 46px;
  }

  .brand-logo img {
    max-width: 100%;
    max-height: 100%;
  }

  .manual-card p {
    min-height: auto;
  }

  .brand-pdf-card p {
    min-height: auto;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}
