:root {
  --navy: #061c3a;
  --blue: #0046c0;
  --gold: #e5b128;
  --cream: #f7f4ed;
  --ink: #10233e;
  --muted: #5e6d7e;
  --line: #dce3eb;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}
section {
  scroll-margin-top: 88px;
}
.topbar {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid #e8edf3;
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  width: 230px;
  height: 62px;
  object-fit: contain;
}
.topbar nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #46576d;
}
.topbar nav a:hover {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  padding: 15px 22px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 70, 192, 0.2);
}
.button:hover {
  background: #00399e;
  transform: translateY(-2px);
}
.button-small {
  padding: 11px 17px;
  font-size: 13px;
  box-shadow: none;
}
.button-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: none;
}
.button-gold:hover {
  background: #f0c249;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  background: linear-gradient(120deg, #f8fafc 0%, #fff 65%);
  overflow: hidden;
}
.hero-copy {
  padding: clamp(70px, 8vw, 120px) clamp(30px, 6vw, 92px);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 22px;
}
.hero h1 {
  font:
    400 clamp(45px, 5.2vw, 76px)/1.04 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 760px;
  color: var(--navy);
}
.hero h1 em {
  color: var(--blue);
}
.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
  color: #66778a;
  font-size: 12px;
}
.hero-visual {
  position: relative;
  min-height: 600px;
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, transparent 28%),
    linear-gradient(0deg, rgba(6, 28, 58, 0.45), transparent 60%);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.floating-card {
  position: absolute;
  z-index: 2;
  left: 6%;
  bottom: 8%;
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 18px 50px rgba(4, 26, 60, 0.24);
  max-width: 370px;
}
.floating-card strong,
.floating-card small {
  display: block;
}
.floating-card small {
  color: var(--muted);
  margin-top: 4px;
}
.pulse {
  color: #23a567;
}
.statement {
  padding: 84px clamp(30px, 8vw, 130px);
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 50px;
}
.statement p {
  color: #9cb1c9;
  margin: 8px 0;
}
.statement h2 {
  font:
    400 clamp(31px, 4vw, 55px)/1.2 Georgia,
    serif;
  margin: 0;
  max-width: 930px;
}
.statement h2 span {
  color: var(--gold);
  font-style: italic;
}
.section {
  padding: 100px clamp(28px, 7vw, 110px);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}
.section-heading h2,
.about h2,
.steps h2,
.partners h2 {
  font:
    400 clamp(36px, 4vw, 56px)/1.1 Georgia,
    serif;
  color: var(--navy);
  margin: 0;
}
.section-heading > p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.solution-card {
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 14px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  transition: 0.2s ease;
}
.solution-card:hover {
  border-color: #9ebce6;
  box-shadow: 0 18px 45px rgba(16, 35, 62, 0.08);
  transform: translateY(-3px);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #edf4ff;
  color: var(--blue);
  font:
    24px Georgia,
    serif;
}
.tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #748397;
}
.solution-card h3 {
  font:
    24px Georgia,
    serif;
  margin: 28px 0 10px;
  color: var(--navy);
}
.solution-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 26px;
}
.solution-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
.professionals {
  padding: 100px clamp(28px, 7vw, 110px);
  background: linear-gradient(135deg, #003c9f, #061c3a);
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}
.light {
  color: #a9c7ff;
}
.professional-copy h2 {
  font:
    400 clamp(38px, 4.4vw, 62px)/1.1 Georgia,
    serif;
  margin: 0 0 25px;
}
.professional-copy > p:not(.eyebrow) {
  color: #c1cede;
  line-height: 1.8;
}
.professional-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.professional-copy li {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 13px;
  font-size: 12px;
}
.professional-copy li span {
  color: var(--gold);
  margin-right: 7px;
}
.risk-card {
  background: #fff;
  color: var(--ink);
  padding: 38px;
  border-radius: 16px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}
.risk-card > p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  font-weight: 800;
}
.risk-card blockquote {
  font:
    28px/1.4 Georgia,
    serif;
  margin: 14px 0 30px;
  color: var(--navy);
}
.risk-card > div {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.risk-card > div > span {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
}
.risk-card p {
  margin: 0;
}
.risk-card strong,
.risk-card small {
  display: block;
}
.risk-card small {
  color: var(--muted);
  margin-top: 3px;
}
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 9vw;
}
.about-copy > p {
  font-size: 19px;
  line-height: 1.8;
  color: #4f5f70;
  margin: 0 0 42px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.values span {
  border-top: 3px solid var(--gold);
  padding-top: 15px;
}
.values strong,
.values small {
  display: block;
}
.values small {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 7px;
}
.partners {
  padding: 95px clamp(28px, 7vw, 110px);
  background: #fff;
}
.partner-heading {
  max-width: 880px;
}
.partner-heading > p:last-child {
  color: var(--muted);
  line-height: 1.8;
  max-width: 720px;
}
.partner-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 42px 0;
}
.partner-list span {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: var(--navy);
  font-weight: 800;
  background: #fafcff;
}
.credentials {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 22px 26px;
}
.credentials strong {
  color: var(--gold);
}
.credentials span {
  font-size: 14px;
}
.steps {
  padding: 100px clamp(28px, 7vw, 110px);
  text-align: center;
  background: var(--cream);
}
.steps > h2 {
  max-width: 760px;
  margin: 0 auto 55px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: auto;
  border-top: 1px solid var(--line);
}
.steps article {
  padding: 32px 22px;
  border-right: 1px solid var(--line);
}
.steps article:last-child {
  border: 0;
}
.steps b {
  color: var(--gold);
  font:
    32px Georgia,
    serif;
}
.steps h3 {
  font-size: 17px;
  color: var(--navy);
}
.steps article p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.cta {
  padding: 70px clamp(28px, 7vw, 110px);
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cta h2 {
  font:
    400 clamp(35px, 4vw, 55px) Georgia,
    serif;
  margin: 0;
}
.cta > div > p:last-child {
  color: #ccdcf7;
  margin-bottom: 0;
}
footer {
  background: #04152c;
  color: #fff;
  padding: 55px clamp(28px, 7vw, 110px) 25px;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 35px;
  font-size: 13px;
}
.footer-brand img {
  width: 230px;
  height: auto;
}
.footer-brand {
  align-self: start;
}
footer > div:not(.brand) strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}
footer p {
  color: #a7b6c8;
  margin: 8px 0;
}
.legal {
  grid-column: 1/-1;
  border-top: 1px solid #20344e;
  padding-top: 22px;
  color: #8293a8;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #20b866;
  color: #fff;
  font-size: 28px;
  z-index: 20;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}
@media (max-width: 950px) {
  .topbar nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 430px;
  }
  .statement,
  .section-heading,
  .professionals,
  .about {
    grid-template-columns: 1fr;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partner-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .topbar {
    height: 72px;
    padding: 0 18px;
  }
  .topbar > .button {
    display: none;
  }
  .brand img {
    width: 185px;
  }
  .hero-copy {
    padding: 58px 22px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .lead {
    font-size: 17px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-visual {
    min-height: 350px;
  }
  .floating-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
  }
  .statement,
  .section,
  .professionals,
  .about,
  .steps,
  .partners {
    padding: 70px 22px;
  }
  .statement {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .solutions-grid,
  .values,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    min-height: 260px;
  }
  .partner-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .credentials {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .cta {
    padding: 58px 22px;
    align-items: flex-start;
    flex-direction: column;
  }
  .cta .button {
    width: 100%;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 48px 22px 24px;
  }
  .legal {
    grid-column: 1;
  }
  .professional-copy h2 {
    font-size: 39px;
  }
  .risk-card {
    padding: 26px;
  }
  .risk-card blockquote {
    font-size: 24px;
  }
}
.online-hero {
  padding: 85px clamp(28px, 8vw, 125px);
  background: linear-gradient(135deg, #0046c0, #061c3a);
  color: #fff;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 8vw;
  align-items: end;
}
.online-hero h1 {
  font:
    400 clamp(46px, 5.5vw, 76px)/1.05 Georgia,
    serif;
  margin: 0;
}
.online-hero > div > p:last-child {
  font-size: 18px;
  color: #c6d6ed;
  line-height: 1.75;
  max-width: 720px;
}
.secure-note {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  border-radius: 14px;
  display: flex;
  gap: 16px;
}
.secure-note > span {
  color: var(--gold);
  font-weight: 900;
}
.secure-note p {
  margin: 0;
  color: #d4dfef;
  font-size: 14px;
}
.secure-note strong {
  display: block;
  color: #fff;
  margin-bottom: 5px;
}
.online-section {
  padding: 95px clamp(28px, 8vw, 125px);
}
.online-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 50px;
}
.online-intro h2 {
  font:
    400 clamp(36px, 4.5vw, 58px)/1.1 Georgia,
    serif;
  color: var(--navy);
  margin: 0;
}
.online-intro > p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.online-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.online-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.online-card:hover {
  border-color: #9ebce6;
  box-shadow: 0 18px 45px rgba(16, 35, 62, 0.08);
  transform: translateY(-3px);
}
.online-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #edf4ff;
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 25px;
}
.online-card > span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #748397;
  font-weight: 800;
}
.online-card h2 {
  font:
    25px Georgia,
    serif;
  color: var(--navy);
  margin: 14px 0 9px;
}
.online-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.online-card a {
  margin-top: auto;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  padding: 13px 15px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}
.online-card a:hover {
  background: #00399e;
}
.online-card small {
  text-align: center;
  color: #8090a2;
  margin-top: 9px;
  font-size: 10px;
}
.online-help {
  padding: 70px clamp(28px, 8vw, 125px);
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.online-help h2 {
  font:
    400 clamp(36px, 4vw, 54px) Georgia,
    serif;
  margin: 0;
}
.online-help > div > p:last-child {
  color: #b9c8db;
}
.online-disclaimer {
  margin: 55px clamp(28px, 8vw, 125px);
  border-left: 4px solid var(--gold);
  padding: 22px 28px;
  background: #fffaf0;
  display: grid;
  grid-template-columns: 0.25fr 1fr;
  gap: 28px;
}
.online-disclaimer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}
@media (max-width: 900px) {
  .online-hero,
  .online-intro {
    grid-template-columns: 1fr;
  }
  .online-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .online-hero,
  .online-section {
    padding: 60px 22px;
  }
  .online-hero h1 {
    font-size: 44px;
  }
  .online-grid {
    grid-template-columns: 1fr;
  }
  .online-help {
    padding: 58px 22px;
    align-items: flex-start;
    flex-direction: column;
  }
  .online-help .button {
    width: 100%;
  }
  .online-disclaimer {
    margin: 42px 22px;
    grid-template-columns: 1fr;
  }
  .online-card {
    min-height: 315px;
  }
}
.privacy-hero {
  padding: 70px clamp(28px, 8vw, 125px);
  background: var(--navy);
  color: #fff;
}
.privacy-hero h1 {
  font:
    400 clamp(44px, 5vw, 70px) Georgia,
    serif;
  margin: 0;
}
.privacy-hero > p:last-child {
  color: #aebdd0;
}
.privacy-layout {
  padding: 80px clamp(28px, 8vw, 125px);
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 7vw;
  align-items: start;
}
.privacy-layout > aside {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13px;
}
.privacy-layout > aside strong {
  color: var(--navy);
  margin-bottom: 8px;
}
.privacy-layout > aside a {
  color: var(--muted);
}
.privacy-layout > aside a:hover {
  color: var(--blue);
}
.privacy-content {
  max-width: 840px;
}
.privacy-intro {
  font-size: 19px;
  line-height: 1.8;
  color: #4f6073;
  margin-top: 0;
}
.privacy-content section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.privacy-content h2 {
  font:
    30px Georgia,
    serif;
  color: var(--navy);
  margin: 0 0 16px;
}
.privacy-content p,
.privacy-content li {
  color: #536478;
  line-height: 1.8;
}
.privacy-content li {
  margin: 7px 0;
}
.privacy-content a {
  color: var(--blue);
  text-decoration: underline;
}
.legal-review {
  margin-top: 34px;
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
  background: #fffaf0;
}
.legal-review p {
  margin-bottom: 0;
  font-size: 13px;
}
.legal a {
  text-decoration: underline;
}
.legal a:hover {
  color: #fff;
}
@media (max-width: 800px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .privacy-layout > aside {
    position: static;
  }
  .privacy-content {
    max-width: none;
  }
}
@media (max-width: 620px) {
  .privacy-hero,
  .privacy-layout {
    padding: 55px 22px;
  }
  .privacy-hero h1 {
    font-size: 43px;
  }
  .privacy-content h2 {
    font-size: 27px;
  }
  .privacy-intro {
    font-size: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.all-products {
  text-align: center;
  margin-top: 38px;
}
.product-hero {
  padding: 80px clamp(28px, 8vw, 125px);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 8vw;
  background: linear-gradient(135deg, #f8fbff, #eef4fd);
  align-items: center;
}
.back-link {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.product-hero h1,
.catalog-hero h1 {
  font:
    400 clamp(44px, 5.4vw, 76px)/1.05 Georgia,
    serif;
  color: var(--navy);
  margin: 0;
}
.product-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 780px;
  margin: 28px 0;
}
.product-hero aside {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(6, 28, 58, 0.2);
}
.product-hero aside span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.product-hero aside strong {
  display: block;
  font:
    26px/1.35 Georgia,
    serif;
  margin: 18px 0;
}
.product-hero aside p {
  color: #becbdd;
  line-height: 1.7;
  font-size: 14px;
}
.product-content {
  padding: 95px clamp(28px, 8vw, 125px);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 9vw;
}
.product-content h2,
.product-steps h2 {
  font:
    400 clamp(34px, 4vw, 52px)/1.12 Georgia,
    serif;
  color: var(--navy);
  margin: 0 0 34px;
}
.check-list {
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.check-list span {
  color: var(--blue);
  font-weight: 900;
}
.benefit-panel {
  padding: 38px;
  background: var(--cream);
  border-radius: 14px;
}
.benefit-panel ul {
  padding-left: 20px;
  margin: 0;
}
.benefit-panel li {
  padding: 13px 0;
  color: #4f5f70;
  line-height: 1.6;
}
.product-steps {
  padding: 85px clamp(28px, 8vw, 125px);
  background: #f7faff;
}
.product-steps > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-steps article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}
.product-steps b {
  color: var(--gold);
  font:
    30px Georgia,
    serif;
}
.product-steps article p {
  color: var(--muted);
  line-height: 1.7;
}
.attention {
  margin: 65px clamp(28px, 8vw, 125px);
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: #fffaf0;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 28px;
}
.attention strong {
  color: var(--navy);
}
.attention p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.catalog-hero {
  padding: 85px clamp(28px, 8vw, 125px);
  background: var(--navy);
  color: #fff;
}
.catalog-hero h1 {
  color: #fff;
  max-width: 950px;
}
.catalog-hero > p:last-child {
  color: #b9c8db;
  font-size: 18px;
  max-width: 720px;
  line-height: 1.7;
}
.catalog-grid {
  padding: 75px clamp(28px, 8vw, 125px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.catalog-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
}
.catalog-card:hover {
  transform: translateY(-3px);
  border-color: #9ebce6;
  box-shadow: 0 16px 40px rgba(16, 35, 62, 0.08);
}
.catalog-card > span {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 800;
}
.catalog-card h2 {
  font:
    27px Georgia,
    serif;
  color: var(--navy);
  margin: 18px 0 10px;
}
.catalog-card p {
  color: var(--muted);
  line-height: 1.7;
}
.catalog-card b {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
}
@media (max-width: 850px) {
  .product-hero,
  .product-content {
    grid-template-columns: 1fr;
  }
  .product-steps > div {
    grid-template-columns: 1fr;
  }
  .attention {
    grid-template-columns: 1fr;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .product-hero,
  .product-content,
  .product-steps,
  .catalog-hero,
  .catalog-grid {
    padding: 60px 22px;
  }
  .product-hero h1,
  .catalog-hero h1 {
    font-size: 42px;
  }
  .product-hero aside,
  .benefit-panel {
    padding: 25px;
  }
  .attention {
    margin: 45px 22px;
  }
  .catalog-card {
    min-height: 220px;
  }
}

.newsletter-modal{position:fixed;inset:0;z-index:1000;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(1,13,28,.72);backdrop-filter:blur(5px)}
.newsletter-modal.is-open{display:flex}.newsletter-dialog{position:relative;width:min(520px,100%);padding:32px;border-radius:24px;background:#fff;color:#132238;box-shadow:0 24px 80px rgba(0,0,0,.28)}
.newsletter-dialog h2{margin:8px 0 10px;font-size:clamp(1.6rem,4vw,2.25rem);line-height:1.08}.newsletter-close{position:absolute;top:12px;right:16px;border:0;background:transparent;color:#24364d;font-size:2rem;cursor:pointer}
.newsletter-form{display:grid;gap:14px;margin-top:20px}.newsletter-form label{display:grid;gap:6px;font-weight:700}.newsletter-form input[type=text],.newsletter-form input[type=email]{width:100%;padding:12px;border:1px solid #cbd5df;border-radius:10px;font:inherit}
.newsletter-form .newsletter-consent{display:block;font-size:.82rem;font-weight:400;line-height:1.5}.newsletter-trap{position:absolute!important;left:-9999px!important}.newsletter-form .button{border:0;cursor:pointer}

.cookie-consent{position:fixed;z-index:1200;left:18px;right:18px;bottom:18px;display:flex;align-items:center;justify-content:space-between;gap:24px;max-width:1120px;margin:auto;padding:20px 22px;border:1px solid rgba(255,255,255,.16);border-radius:16px;background:#031326;color:#fff;box-shadow:0 18px 55px rgba(0,0,0,.35)}
.cookie-consent[hidden],.cookie-preferences[hidden]{display:none}.cookie-consent strong{display:block;margin-bottom:5px;font-size:1rem}.cookie-consent p{max-width:720px;margin:0;color:#d6e0ec;font-size:.9rem;line-height:1.55}.cookie-consent a{color:#f4c44e;text-decoration:underline}.cookie-actions{display:flex;flex-shrink:0;gap:10px}.cookie-actions button,.cookie-preferences{min-height:44px;border-radius:10px;padding:10px 16px;font:inherit;font-weight:700;cursor:pointer}.cookie-reject{border:1px solid #8493a6;background:transparent;color:#fff}.cookie-accept{border:1px solid #e5b128;background:#e5b128;color:#071529}.cookie-preferences{position:fixed;z-index:1100;left:14px;bottom:14px;border:1px solid #c8d3df;background:#fff;color:#25364d;box-shadow:0 8px 30px rgba(0,0,0,.16);font-size:.8rem}
@media(max-width:720px){.cookie-consent{align-items:stretch;flex-direction:column;gap:15px}.cookie-actions{display:grid;grid-template-columns:1fr 1fr}.cookie-actions button{padding-inline:10px}.cookie-preferences{max-width:190px}}
