:root {
  --sf-blue: #00479d;
  --sf-navy: #0b2854;
  --sf-ink: #14213a;
  --sf-yellow: #ffc804;
  --sf-red: #ff0056;
  --sf-green: #00a98f;
  --sf-muted: #5c6a7d;
  --sf-line: #dce3ec;
  --sf-paper: #f5f7fa;
  --sf-white: #ffffff;
  --sf-container: 1240px;
  --sf-radius: 8px;
  --sf-header: 88px;
  --sf-font: "Arial", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sf-font);
  color: var(--sf-ink);
  background: var(--sf-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.sf-menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

[v-cloak] {
  display: none;
}

::selection {
  color: var(--sf-white);
  background: var(--sf-blue);
}

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

/* Announcement */
.sf-announcement {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 52px;
  color: var(--sf-yellow);
  background: var(--sf-blue);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.sf-announcement-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sf-announcement-close {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  color: var(--sf-yellow);
  background: transparent;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

/* Header */
.sf-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--sf-header);
  color: var(--sf-blue);
  background: var(--sf-yellow);
  border-bottom: 1px solid rgba(0, 71, 157, 0.18);
}

.sf-nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 100%;
}

.sf-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.sf-logo img {
  width: auto;
  height: 50px;
}

.sf-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  min-width: 0;
}

.sf-menu-item {
  position: relative;
  padding: 10px 0;
  color: var(--sf-blue);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.sf-menu-item::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 3px;
  background: var(--sf-red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.sf-menu-item:hover::after,
.sf-menu-item.active::after {
  transform: scaleX(1);
}

.sf-menu-item.active {
  color: var(--sf-red);
}

.sf-lang-switch {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid rgba(0, 71, 157, 0.28);
  border-radius: var(--sf-radius);
  background: rgba(255, 255, 255, 0.7);
}

.sf-lang-item {
  padding: 6px 10px;
  border-radius: 5px;
  color: var(--sf-blue);
  font-size: 13px;
  font-weight: 700;
}

.sf-lang-item:hover {
  background: rgba(0, 71, 157, 0.08);
}

.sf-lang-item.active {
  color: var(--sf-white);
  background: var(--sf-blue);
}

.sf-burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(0, 71, 157, 0.28);
  border-radius: var(--sf-radius);
  color: var(--sf-blue);
  background: rgba(255, 255, 255, 0.66);
}

.sf-burger span,
.sf-burger span::before,
.sf-burger span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.sf-burger span {
  position: relative;
}

.sf-burger span::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.sf-burger span::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.sf-menu-mobile {
  display: none;
}

/* Shared content blocks */
.sf-section {
  padding: 104px 0;
}

.sf-section + .sf-section {
  padding-top: 0;
}

.sf-section-tight {
  padding-top: 72px;
}

.sf-section-paper {
  background: var(--sf-paper);
}

.sf-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.sf-section-head-center {
  display: block;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.sf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--sf-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sf-eyebrow::before {
  width: 28px;
  height: 3px;
  background: var(--sf-red);
  content: "";
}

.sf-section-head-center .sf-eyebrow::before {
  display: none;
}

.sf-section-title {
  max-width: 800px;
  color: var(--sf-blue);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.sf-section-sub {
  max-width: 620px;
  color: var(--sf-muted);
  font-size: 16px;
}

.sf-section-head-center .sf-section-sub {
  margin: 20px auto 0;
}

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--sf-radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease,
    color 160ms ease, transform 160ms ease;
}

.sf-btn:hover {
  transform: translateY(-2px);
}

.sf-btn-yellow {
  color: var(--sf-blue);
  background: var(--sf-yellow);
}

.sf-btn-yellow:hover {
  background: #ffd83a;
}

.sf-btn-blue {
  color: var(--sf-white);
  background: var(--sf-blue);
}

.sf-btn-blue:hover {
  background: #0657b5;
}

.sf-btn-red {
  color: var(--sf-white);
  background: var(--sf-red);
}

.sf-btn-red:hover {
  background: #e0004d;
}

.sf-btn-outline {
  color: var(--sf-white);
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.sf-btn-outline:hover {
  border-color: var(--sf-white);
  background: rgba(255, 255, 255, 0.1);
}

.sf-btn-outline-blue {
  color: var(--sf-blue);
  border-color: var(--sf-blue);
  background: transparent;
}

.sf-btn-outline-blue:hover {
  color: var(--sf-white);
  background: var(--sf-blue);
}

.sf-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sf-blue);
  font-size: 14px;
  font-weight: 800;
}

.sf-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.sf-arrow:hover svg {
  transform: translateX(4px);
}

/* Hero */
.sf-hero {
  position: relative;
  min-height: min(780px, calc(100vh - var(--sf-header)));
  overflow: hidden;
  color: var(--sf-white);
  background: var(--sf-navy);
}

.sf-hero-media,
.sf-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sf-hero-media img {
  object-fit: cover;
  object-position: center;
}

.sf-hero-media::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 52, 0.52);
  content: "";
}

.sf-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  width: min(calc(100% - 48px), var(--sf-container));
  min-height: min(780px, calc(100vh - var(--sf-header)));
  margin: 0 auto;
  padding: 104px 0 92px;
}

.sf-hero-copy {
  max-width: 780px;
}

.sf-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--sf-yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sf-hero-kicker::before {
  width: 34px;
  height: 3px;
  background: var(--sf-yellow);
  content: "";
}

.sf-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.24);
}

.sf-hero-subtitle {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.sf-hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 10px 14px;
  color: var(--sf-white);
  background: var(--sf-red);
  border-radius: var(--sf-radius);
  font-size: 13px;
  font-weight: 800;
}

.sf-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Highlights */
.sf-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.sf-highlight {
  min-width: 0;
  padding-top: 24px;
  border-top: 3px solid var(--sf-yellow);
}

.sf-highlight:nth-child(2) {
  border-top-color: var(--sf-blue);
}

.sf-highlight:nth-child(3) {
  border-top-color: var(--sf-red);
}

.sf-highlight:nth-child(4) {
  border-top-color: var(--sf-green);
}

.sf-highlight-index {
  display: block;
  margin-bottom: 24px;
  color: var(--sf-red);
  font-size: 12px;
  font-weight: 800;
}

.sf-highlight:nth-child(2) .sf-highlight-index {
  color: var(--sf-blue);
}

.sf-highlight:nth-child(3) .sf-highlight-index {
  color: var(--sf-red);
}

.sf-highlight:nth-child(4) .sf-highlight-index {
  color: var(--sf-green);
}

.sf-highlight h3 {
  margin-bottom: 10px;
  color: var(--sf-blue);
  font-size: 19px;
  line-height: 1.3;
}

.sf-highlight p {
  color: var(--sf-muted);
  font-size: 14px;
}

/* Image-led cards */
.sf-size-grid,
.sf-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sf-size-card,
.sf-service-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--sf-line);
  border-radius: var(--sf-radius);
  background: var(--sf-white);
  transition: border-color 160ms ease, transform 160ms ease;
}

.sf-size-card:hover,
.sf-service-card:hover {
  border-color: var(--sf-blue);
  transform: translateY(-4px);
}

.sf-size-media,
.sf-service-media {
  overflow: hidden;
  background: var(--sf-paper);
}

.sf-size-media img,
.sf-service-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.sf-size-body,
.sf-service-body {
  padding: 24px;
}

.sf-size-code {
  display: block;
  margin-bottom: 8px;
  color: var(--sf-red);
  font-size: 12px;
  font-weight: 800;
}

.sf-size-card h3,
.sf-service-card h3 {
  margin-bottom: 6px;
  color: var(--sf-blue);
  font-size: 22px;
  line-height: 1.25;
}

.sf-size-area,
.sf-service-desc {
  color: var(--sf-muted);
  font-size: 14px;
}

.sf-size-price {
  margin-top: 18px;
  color: var(--sf-blue);
  font-size: 13px;
  font-weight: 800;
}

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

.sf-service-media img {
  height: 260px;
}

/* Features */
.sf-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--sf-line);
  border-left: 1px solid var(--sf-line);
}

.sf-feature {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--sf-line);
  border-bottom: 1px solid var(--sf-line);
  background: var(--sf-white);
}

.sf-feature-index {
  display: block;
  margin-bottom: 18px;
  color: var(--sf-yellow);
  font-size: 12px;
  font-weight: 800;
}

.sf-feature:nth-child(4n + 2) .sf-feature-index {
  color: var(--sf-blue);
}

.sf-feature:nth-child(4n + 3) .sf-feature-index {
  color: var(--sf-red);
}

.sf-feature:nth-child(4n + 4) .sf-feature-index {
  color: var(--sf-green);
}

.sf-feature h3 {
  margin-bottom: 8px;
  color: var(--sf-blue);
  font-size: 17px;
}

.sf-feature p {
  color: var(--sf-muted);
  font-size: 14px;
}

/* Value-added services */
.sf-valueadd-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.sf-valueadd {
  min-width: 0;
}

.sf-valueadd img {
  width: 100%;
  height: 150px;
  margin-bottom: 14px;
  object-fit: cover;
  border-radius: var(--sf-radius);
}

.sf-valueadd h3 {
  margin-bottom: 5px;
  color: var(--sf-blue);
  font-size: 15px;
}

.sf-valueadd p {
  color: var(--sf-muted);
  font-size: 13px;
}

/* Full-width call to action */
.sf-cta-band {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--sf-blue);
  background: var(--sf-yellow);
}

.sf-cta-band::before {
  position: absolute;
  top: -70px;
  right: 8%;
  width: 240px;
  height: 240px;
  border: 36px solid rgba(255, 255, 255, 0.46);
  content: "";
  transform: rotate(28deg);
}

.sf-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.sf-cta-copy {
  max-width: 760px;
}

.sf-cta-band h2 {
  max-width: 820px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
}

.sf-cta-band p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(0, 71, 157, 0.78);
  font-size: 16px;
}

.sf-cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

/* Page head */
.sf-pagehead {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 86px 0;
  color: var(--sf-blue);
  background: var(--sf-yellow);
}

.sf-pagehead::after {
  position: absolute;
  right: -30px;
  bottom: -90px;
  width: 330px;
  height: 220px;
  border: 34px solid rgba(255, 255, 255, 0.56);
  content: "";
  transform: rotate(-12deg);
}

.sf-pagehead-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 48px;
  align-items: end;
}

.sf-pagehead h1 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.02;
}

.sf-pagehead p {
  max-width: 580px;
  color: rgba(0, 71, 157, 0.76);
  font-size: 16px;
}

/* Site cards */
.sf-site-list {
  display: grid;
  gap: 32px;
}

.sf-site-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--sf-line);
  border-radius: var(--sf-radius);
  background: var(--sf-white);
}

.sf-site-media {
  min-height: 330px;
  background: var(--sf-paper);
}

.sf-site-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-site-body {
  align-self: center;
  padding: 48px;
}

.sf-site-code {
  display: block;
  margin-bottom: 10px;
  color: var(--sf-red);
  font-size: 12px;
  font-weight: 800;
}

.sf-site-card h2 {
  margin-bottom: 20px;
  color: var(--sf-blue);
  font-size: 32px;
  line-height: 1.15;
}

.sf-site-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--sf-muted);
  font-size: 14px;
}

.sf-site-meta b {
  color: var(--sf-blue);
  font-weight: 800;
}

.sf-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.sf-tag {
  padding: 6px 9px;
  color: var(--sf-blue);
  background: var(--sf-paper);
  border: 1px solid var(--sf-line);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}

/* About */
.sf-about-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.sf-about-media img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--sf-radius);
}

.sf-about-copy h2 {
  margin-bottom: 22px;
  color: var(--sf-blue);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.sf-about-copy > p {
  color: var(--sf-muted);
  font-size: 16px;
}

.sf-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.sf-fact {
  padding-top: 16px;
  border-top: 3px solid var(--sf-yellow);
}

.sf-fact:nth-child(2) {
  border-top-color: var(--sf-blue);
}

.sf-fact:nth-child(3) {
  border-top-color: var(--sf-red);
}

.sf-fact span {
  display: block;
  margin-bottom: 7px;
  color: var(--sf-muted);
  font-size: 12px;
  font-weight: 700;
}

.sf-fact strong {
  color: var(--sf-blue);
  font-size: 14px;
}

.sf-qual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sf-qual {
  padding: 28px;
  border: 1px solid var(--sf-line);
  border-top: 4px solid var(--sf-blue);
  border-radius: var(--sf-radius);
  background: var(--sf-white);
}

.sf-qual:nth-child(2) {
  border-top-color: var(--sf-red);
}

.sf-qual h3 {
  margin-bottom: 8px;
  color: var(--sf-blue);
  font-size: 18px;
}

.sf-qual p {
  color: var(--sf-muted);
  font-size: 14px;
}

.sf-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.sf-value {
  padding-top: 22px;
  border-top: 3px solid var(--sf-yellow);
}

.sf-value:nth-child(2) {
  border-top-color: var(--sf-blue);
}

.sf-value:nth-child(3) {
  border-top-color: var(--sf-red);
}

.sf-value h3 {
  margin-bottom: 9px;
  color: var(--sf-blue);
  font-size: 24px;
}

.sf-value p {
  color: var(--sf-muted);
  font-size: 14px;
}

/* Contact */
.sf-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: start;
}

.sf-contact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--sf-line);
}

.sf-contact-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--sf-line);
}

.sf-contact-item span {
  color: var(--sf-red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sf-contact-item strong,
.sf-contact-item a {
  color: var(--sf-blue);
  font-size: 16px;
}

.sf-contact-note {
  margin-top: 20px;
  color: var(--sf-muted);
  font-size: 14px;
}

.sf-map-wrap {
  overflow: hidden;
  border: 1px solid var(--sf-line);
  border-radius: var(--sf-radius);
  background: var(--sf-paper);
}

.sf-map-wrap iframe,
.sf-map-placeholder {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.sf-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--sf-muted);
  text-align: center;
}

.sf-map-placeholder svg {
  width: 44px;
  height: 44px;
  color: var(--sf-blue);
}

/* Footer */
.sf-footer {
  color: var(--sf-white);
  background: var(--sf-navy);
}

.sf-footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 0.9fr 240px;
  gap: 48px;
  padding: 72px 0 48px;
}

.sf-footer-brand h2 {
  margin-bottom: 10px;
  color: var(--sf-yellow);
  font-size: 24px;
}

.sf-footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.sf-footer-domain {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.sf-footer-col h3 {
  margin-bottom: 16px;
  color: var(--sf-yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.sf-footer-links {
  display: grid;
  gap: 10px;
}

.sf-footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.sf-footer-links a:hover {
  color: var(--sf-yellow);
}

.sf-footer-qr-col {
  min-width: 0;
}

.sf-footer-qr {
  width: 168px;
  height: 168px;
  margin: 2px 0 14px;
  overflow: hidden;
  border-radius: var(--sf-radius);
  background: var(--sf-white);
}

.sf-footer-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sf-footer-qr-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  color: var(--sf-blue);
  background: var(--sf-paper);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.sf-footer-qr-col p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.sf-footer-trademark {
  padding: 0 0 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.sf-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.sf-footer-filings {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sf-footer-filings a {
  color: inherit;
}

.sf-footer-filings a:hover {
  color: var(--sf-yellow);
}

.sf-footer-sep {
  opacity: 0.45;
}

.sf-icp-pending {
  color: rgba(255, 255, 255, 0.46);
  font-style: italic;
}

/* Empty states */
.sf-empty {
  padding: 72px 24px;
  color: var(--sf-muted);
  border: 1px dashed var(--sf-line);
  border-radius: var(--sf-radius);
  text-align: center;
}

/* Responsive */
@media (max-width: 1080px) {
  .sf-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .sf-cta-inner,
  .sf-pagehead-inner {
    grid-template-columns: 1fr;
  }

  .sf-cta-actions {
    justify-content: flex-start;
  }

  .sf-about-row,
  .sf-contact-layout {
    grid-template-columns: 1fr;
  }

  .sf-about-media img {
    height: 420px;
  }

  .sf-site-card {
    grid-template-columns: 1fr;
  }

  .sf-site-media {
    min-height: 300px;
  }

  .sf-site-body {
    padding: 34px;
  }
}

@media (max-width: 900px) {
  :root {
    --sf-header: 76px;
  }

  .sf-section {
    padding: 76px 0;
  }

  .sf-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sf-size-grid,
  .sf-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-valueadd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-menu,
  .sf-lang-switch {
    display: none;
  }

  .sf-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .sf-menu-mobile {
    position: fixed;
    z-index: 59;
    top: var(--sf-header);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 20px 24px 32px;
    color: var(--sf-blue);
    background: var(--sf-yellow);
  }

  .sf-menu-mobile.open {
    display: block;
    overflow-y: auto;
  }

  .sf-menu-mobile nav {
    display: grid;
    gap: 4px;
  }

  .sf-menu-mobile .sf-menu-item {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 71, 157, 0.16);
    font-size: 18px;
  }

  .sf-menu-mobile .sf-menu-item::after {
    display: none;
  }

  .sf-menu-mobile .sf-lang-switch {
    display: inline-flex;
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .sf-container {
    width: calc(100% - 32px);
  }

  .sf-hero-inner {
    width: calc(100% - 32px);
    min-height: 690px;
    padding: 88px 0 64px;
  }

  .sf-hero {
    min-height: 690px;
  }

  .sf-hero h1 {
    font-size: 44px;
  }

  .sf-hero-subtitle {
    font-size: 15px;
  }

  .sf-section {
    padding: 64px 0;
  }

  .sf-section-title {
    font-size: 34px;
  }

  .sf-highlights,
  .sf-size-grid,
  .sf-service-grid,
  .sf-valueadd-grid,
  .sf-feature-grid,
  .sf-qual-grid,
  .sf-value-grid,
  .sf-size-media img,
  .sf-service-media img {
    height: 260px;
  }

  .sf-cta-band {
    padding: 68px 0;
  }

  .sf-cta-band h2 {
    font-size: 38px;
  }

  .sf-cta-band::before,
  .sf-pagehead::after {
    display: none;
  }

  .sf-pagehead {
    min-height: 280px;
    padding: 66px 0;
  }

  .sf-pagehead h1 {
    font-size: 44px;
  }

  .sf-site-body {
    padding: 26px 20px;
  }

  .sf-site-card h2 {
    font-size: 27px;
  }

  .sf-about-media img {
    height: 320px;
  }

  .sf-fact-grid {
    grid-template-columns: 1fr;
  }

  .sf-contact-layout {
    gap: 38px;
  }

  .sf-contact-item {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .sf-map-wrap iframe,
  .sf-map-placeholder {
    height: 380px;
  }

  .sf-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 56px;
  }

  .sf-footer-bottom {
    align-items: flex-start;
  }
}

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