:root {
  --brand-dark: #0b2e4f;
  --brand-dark-soft: #123a61;
  --accent: #0e6ba8;
  --accent-strong: #005f94;
  --accent-soft: #e3f0fb;
  --cyan: #00a5e5;
  --gold: #f7a500;
  --gold-dark: #cf8a00;
  --gold-soft: #fff3d6;
  --bg-main: #f6f9fc;
  --bg-alt: #ffffff;
  --text-dark: #16222b;
  --text-muted: #56626d;
  --border-light: #e6ebf1;
  --radius-card: 16px;
  --shadow-card: 0 12px 32px rgba(11, 46, 79, 0.08);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
  scroll-margin-top: 72px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
}

.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background-color: var(--gold);
  color: #3a2a00;
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(247, 165, 0, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  background-color: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 46, 79, 0.08);
}

.btn-nav {
  background-color: var(--gold);
  color: #3a2a00;
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-nav:hover {
  background-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(247, 165, 0, 0.3);
}

.btn-light {
  background-color: #ffffff;
  color: var(--brand-dark);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  position: relative;
  background-color: var(--brand-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
  transition: box-shadow 0.25s ease;
}

@supports (backdrop-filter: blur(12px)) or
  (-webkit-backdrop-filter: blur(12px)) {
  .navbar {
    background-color: rgba(11, 46, 79, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

.navbar.is-scrolled {
  box-shadow: 0 8px 24px rgba(11, 46, 79, 0.3);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo img {
  height: 30px;
  width: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #ffffff;
  border-radius: 8px;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-toggle-line {
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle-line-top {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line-middle {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line-bottom {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 16px 20px 28px;
  background-color: var(--brand-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(11, 46, 79, 0.35);
}

.nav-menu.is-open {
  display: flex;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 10px 4px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

@media (min-width: 940px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 0;
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
  }

  .nav-links {
    flex-direction: row;
    gap: 24px;
  }

  .nav-links a {
    padding: 4px 0;
  }

  .nav-links a::after {
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(165deg, #0b2e4f 0%, #123a61 58%, #0c3358 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 520px at 88% 12%, rgba(0, 165, 229, 0.2), transparent 70%),
    radial-gradient(circle 420px at 6% 96%, rgba(247, 165, 0, 0.12), transparent 70%),
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 22px 22px;
}

.hero .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
  text-align: left;
}

.hero .eyebrow {
  color: #4cc3f0;
}

.hero h1 {
  color: #ffffff;
}

.hero-lead {
  max-width: 560px;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.hero-lead strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-mail {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.hero-mail:hover {
  color: #ffffff;
}

.hero-panel {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
  .hero-panel {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

.hero-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(0, 165, 229, 0.16);
  color: var(--cyan);
}

.hero-emblem svg {
  width: 28px;
  height: 28px;
}

.hero-panel-title {
  font-weight: 600;
  color: #ffffff;
}

.hero-panel-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.cred-list {
  display: flex;
  flex-direction: column;
}

.cred {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cred:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cred-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(247, 165, 0, 0.16);
  color: var(--gold);
}

.cred-mark svg {
  width: 17px;
  height: 17px;
}

.cred-text strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.cred-text span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (min-width: 940px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
  }

  .hero-panel {
    padding: 32px;
  }
}

.claims {
  padding: 56px 0;
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.claims-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.claim {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.claim-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--accent-soft);
  color: var(--accent);
}

.claim-icon svg {
  width: 22px;
  height: 22px;
}

.claim-title {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.claim-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .claims-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (min-width: 1100px) {
  .claims-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-dark {
  background-color: var(--brand-dark);
  color: #ffffff;
}

.section-dark .section-header h2 {
  color: #ffffff;
}

.section-dark .eyebrow {
  color: var(--gold);
}

.section-dark .section-header .lead {
  color: rgba(255, 255, 255, 0.78);
}

.about-lead {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about-lead p {
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-quote {
  max-width: 640px;
  margin: 32px auto 0;
  padding: 22px 28px;
  border-left: 4px solid var(--gold);
  background-color: var(--accent-soft);
  border-radius: 0 12px 12px 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brand-dark);
  text-align: left;
}

.partner-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.partner-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(11, 46, 79, 0.04);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.partner-chip svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.chip-logo {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  background-color: var(--brand-dark);
  border-radius: 7px;
}

.chip-logo img {
  display: block;
  height: 15px;
  width: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.badge-seniat {
  background-color: var(--gold-soft);
  color: #7a5300;
  border: 1px solid rgba(247, 165, 0, 0.35);
}

.badge svg {
  width: 16px;
  height: 16px;
}

.seniat-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 32px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 165, 0, 0.12), transparent 65%),
    var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
}

.seniat-banner h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--brand-dark);
}

.seniat-banner p {
  max-width: 620px;
  font-weight: 300;
  color: var(--text-muted);
}

.seniat-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.seniat-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.seniat-point svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.profit-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.profit-brand img {
  height: 52px;
  width: auto;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 12px rgba(11, 46, 79, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.mini-card h3 {
  font-size: 1.1rem;
}

.mini-card > p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
}

.mini-card .tag {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--gold-soft);
  color: #7a5300;
}

.card-link {
  margin-top: 4px;
  align-self: flex-start;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: var(--accent-strong);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--accent-soft);
  color: var(--accent);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-icon img {
  width: 28px;
  height: 28px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}

.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
}

.card-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e6ba8' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 700px) {
  .mini-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1000px) {
  .mini-cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 12px rgba(11, 46, 79, 0.04);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 30%, #ffffff, var(--bg-main));
  border-bottom: 1px solid var(--border-light);
}

.product-media img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(11, 46, 79, 0.14));
}

.product-media-service {
  background:
    radial-gradient(circle at 50% 30%, var(--accent-soft), var(--bg-main));
}

.service-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  color: var(--accent);
  box-shadow: 0 10px 22px rgba(11, 46, 79, 0.08);
}

.service-emblem svg {
  width: 34px;
  height: 34px;
}

.product-flag {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background-color: var(--brand-dark);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(11, 46, 79, 0.25);
}

.product-flag.flag-gold {
  background-color: var(--gold);
  color: #3a2a00;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.product-body h3 {
  font-size: 1.15rem;
}

.product-kind {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.product-body > p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.spec-chip {
  padding: 5px 12px;
  background-color: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-strong);
}

.product-ideal {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-ideal strong {
  color: var(--text-dark);
  font-weight: 600;
}

@media (min-width: 700px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.recommend {
  max-width: 880px;
  margin: 48px auto 0;
  padding: 32px 24px;
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
}

.section-alt .recommend {
  background-color: var(--bg-main);
}

.recommend h3 {
  margin-bottom: 20px;
  text-align: center;
  color: var(--brand-dark);
}

.recommend-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.recommend-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 14px 18px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.recommend-need {
  flex: 1;
  min-width: 200px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.recommend-pick {
  padding: 6px 14px;
  background-color: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7a5300;
  white-space: nowrap;
}

@media (min-width: 700px) {
  .recommend {
    padding: 40px;
  }
}

.opsen-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 36px 24px;
  background: linear-gradient(150deg, var(--brand-dark-soft), var(--brand-dark));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
}

.opsen-card > * {
  min-width: 0;
}

.opsen-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opsen-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.opsen-logo-row img {
  height: 34px;
  width: auto;
}

.opsen-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 14px;
  background-color: rgba(247, 165, 0, 0.16);
  border: 1px solid rgba(247, 165, 0, 0.4);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.opsen-copy h3 {
  color: #ffffff;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.opsen-copy > p {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.opsen-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.opsen-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

.opsen-feature svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--cyan);
}

.opsen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 560px) {
  .opsen-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .opsen-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 48px;
    padding: 56px;
  }
}

.opsen-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 165, 229, 0.22), transparent 65%);
  border-radius: 18px;
}

.opsen-visual img {
  width: 100%;
  max-width: 300px;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.why-bullets {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-bullets p {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--text-muted);
}

.why-bullets strong {
  color: var(--text-dark);
  font-weight: 600;
}

.bullet-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border-radius: 50%;
  background-color: var(--accent-soft);
  color: var(--accent);
}

.bullet-icon svg {
  width: 16px;
  height: 16px;
}

.why-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 44px 32px;
  text-align: center;
  background:
    radial-gradient(circle 320px at 50% 0%, rgba(0, 165, 229, 0.16), transparent 70%),
    linear-gradient(160deg, var(--brand-dark-soft), var(--brand-dark));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.trust-seal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 26px;
  background-color: rgba(247, 165, 0, 0.14);
  border: 1px solid rgba(247, 165, 0, 0.3);
  color: var(--gold);
}

.trust-seal-badge svg {
  width: 44px;
  height: 44px;
}

.trust-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.trust-text {
  max-width: 360px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.76);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-chip {
  padding: 7px 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.trust-note {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 900px) {
  .why-split {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background-color: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--accent-soft);
  color: var(--accent);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h3 {
  font-size: 1.05rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-list a,
.contact-list span {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--accent-strong);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-final {
  background: linear-gradient(150deg, var(--brand-dark-soft), var(--brand-dark));
  color: #ffffff;
  text-align: center;
}

.cta-final h2 {
  color: #ffffff;
}

.cta-final-lead {
  max-width: 580px;
  margin: 16px auto 32px;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
}

.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta-final-mail {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cta-final-mail:hover {
  color: #ffffff;
}

.site-footer {
  background-color: var(--brand-dark);
  padding: 44px 0 30px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 30px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 340px;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.footer-col h3 {
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a,
.footer-col span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  font-size: 0.82rem;
  text-align: center;
}

.footer-partners {
  color: rgba(255, 255, 255, 0.5);
}

.footer-powered {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.powered-by:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.06);
}

.powered-by img {
  height: 18px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.powered-by:hover img {
  opacity: 1;
}

@media (min-width: 760px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-cols {
    grid-template-columns: repeat(3, auto);
    gap: 48px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 100px 0;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .section-header .lead {
    font-size: 1.15rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 32px;
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: hero-rise 0.6s ease-out both;
  }

  .hero-copy h1 {
    animation-delay: 90ms;
  }

  .hero-lead {
    animation-delay: 180ms;
  }

  .hero-actions {
    animation-delay: 260ms;
  }

  .hero-mail {
    animation-delay: 330ms;
  }

  .hero-panel {
    animation: hero-rise 0.7s ease-out 220ms both;
  }
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease-out,
    transform 0.55s ease-out;
}

html.js .reveal-d1 {
  transition-delay: 80ms;
}

html.js .reveal-d2 {
  transition-delay: 160ms;
}

html.js .reveal-d3 {
  transition-delay: 240ms;
}

html.js .reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .mini-card,
  .product-card,
  .contact-card,
  .nav-links a::after,
  .nav-toggle-line {
    transition: none;
  }
}
