:root {
  --ink: #0e1114;
  --navy: #002242;
  --navy-2: #0a3158;
  --navy-3: #123f6b;
  --mist: #f6f6f3;
  --silver: #e9edf0;
  --line: #d9dee2;
  --gold: #c2a266;
  --gold-2: #d8be8b;
  --gold-deep: #9a7d44;
  --text: #22303c;
  --muted: #68747f;
  --white: #ffffff;
  --teal: #2e8fa8;
  --radius: 8px;
  --shadow: 0 14px 40px rgba(0, 20, 40, 0.12);
  --font: "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--mist);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--black {
  background: var(--ink);
  color: var(--white);
}

.section--mist {
  background: var(--mist);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
}

.section--dark .eyebrow,
.section--black .eyebrow {
  color: var(--gold-2);
}

.section--dark .eyebrow::before,
.section--black .eyebrow::before {
  background: var(--gold-2);
}

.h1,
.h2,
.h3 {
  margin: 0;
  line-height: 1.18;
  color: var(--ink);
  font-weight: 700;
}

.section--dark .h2,
.section--dark .h3,
.section--black .h2,
.section--black .h3 {
  color: var(--white);
}

.h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.h2 {
  font-size: clamp(26px, 3.4vw, 40px);
}

.h3 {
  font-size: 21px;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section--dark .lead,
.section--black .lead {
  color: #b9c4cf;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-head .lead {
  margin-top: 12px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.card-body {
  padding: 22px;
}

.card-title {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.3;
}

.card--dark .card-title {
  color: var(--white);
}

.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card--dark .card-text {
  color: #b9c4cf;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--silver);
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 700;
}

.card--dark .tag {
  background: rgba(194, 162, 102, 0.18);
  color: var(--gold-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.btn--gold {
  background: var(--gold);
  color: #14171a;
}

.btn--gold:hover {
  background: var(--gold-2);
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.btn--navy:hover {
  background: var(--navy-2);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--navy);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.btn--wa {
  background: #1fae54;
  color: #fff;
}

.btn--wa:hover {
  background: #178d43;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 700;
}

.link-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(6, 12, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 19px;
  font-weight: 800;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  margin-top: 3px;
  color: #9fb0be;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #cfd8e0;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul li {
  margin: 0;
}

.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch button {
  min-width: 32px;
  height: 26px;
  padding: 0 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #aebbc6;
  font-size: 11px;
  font-weight: 700;
}

.lang-switch button.is-active {
  background: var(--gold);
  color: #14171a;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

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

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 8, 14, 0.88) 0%, rgba(4, 8, 14, 0.42) 55%, rgba(4, 8, 14, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 110px;
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 700;
}

.hero-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #c7d2db;
  font-size: 18px;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  color: var(--gold-2);
  font-size: 22px;
}

.hero-meta span {
  color: #a9b7c3;
  font-size: 12px;
}

/* Brand statement */
.statement {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.statement-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.quote-mark {
  color: var(--gold);
  font-size: 60px;
  line-height: 0.4;
  display: block;
  margin-bottom: 26px;
}

/* Ecosystem */
.eco-card {
  padding: 30px 26px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.eco-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(194, 162, 102, 0.16);
  color: var(--gold-deep);
}

.eco-icon svg {
  width: 26px;
  height: 26px;
}

.eco-card .link-arrow {
  margin-top: auto;
  padding-top: 20px;
}

/* Strength */
.strength-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.strength-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.strength-media img:first-child {
  grid-row: span 2;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

/* Split feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--gold-deep);
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: 44px;
  padding-left: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  padding: 0 0 30px 18px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--mist);
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.process-step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step b {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 15px;
}

.process-step span {
  color: #b9c4cf;
  font-size: 13px;
}

/* Products / devices */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-bar button {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-bar button.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.detail-hero {
  position: relative;
  padding: 150px 0 70px;
  background: var(--navy);
  color: var(--white);
}

.detail-hero h1 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 44px);
}

.detail-hero p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #b9c4cf;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.info-block {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-block h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.info-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.info-block li + li {
  margin-top: 8px;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 90px 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.34;
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  margin: 0 auto;
  max-width: 720px;
}

.cta-band p {
  margin: 16px auto 0;
  max-width: 620px;
  color: #b9c4cf;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

/* Forms */
.form-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(194, 162, 102, 0.5);
  border-color: var(--gold);
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: #e7f4ec;
  color: #1d6b3c;
  font-size: 14px;
  font-weight: 700;
}

.form-success.is-visible {
  display: block;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--gold-deep);
}

.contact-item b {
  display: block;
  font-size: 14px;
}

.contact-item span {
  color: var(--muted);
  font-size: 14px;
}

/* Admin */
.admin-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
}

.admin-bar .btn {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  vertical-align: top;
}

.admin-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
}

.admin-table td .btn {
  min-height: 32px;
  padding: 0 10px;
  font-size: 12px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.admin-tabs button {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.admin-tabs button.is-active {
  background: var(--navy);
  color: var(--white);
}

/* Footer */
.site-footer {
  background: #070c12;
  color: #9fb0be;
  font-size: 13px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 40px;
}

.footer-top h4 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 14px;
}

.footer-top ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-top a:hover {
  color: var(--gold-2);
}

.footer-about {
  max-width: 320px;
  margin: 16px 0 0;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1fae54;
  color: #fff;
  box-shadow: 0 10px 28px rgba(31, 174, 84, 0.4);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.custom-logo-link img {
  max-height: 46px;
  width: auto;
}

.lang-switch ul {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lang-switch ul li a {
  display: inline-flex;
  align-items: center;
  min-width: 32px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  color: #aebbc6;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.lang-switch ul li a:hover,
.lang-switch ul li.current-lang a {
  background: var(--gold);
  color: #14171a;
}

/* Editable page content blocks */
.entry-content > * {
  margin-top: 0;
  margin-bottom: 22px;
}

.entry-content img,
.entry-content .wp-block-image img {
  border-radius: 8px;
  height: auto;
}

.entry-content .wp-block-cover {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
}

.entry-content .wp-block-columns {
  gap: 24px;
  margin-bottom: 26px;
}

.entry-content .wp-block-video video,
.entry-content .wp-block-embed iframe {
  width: 100%;
  border-radius: 8px;
}

.entry-content .alignwide {
  margin-left: auto;
  margin-right: auto;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  line-height: 1.2;
  color: var(--ink);
}

.entry-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.entry-content .wp-block-button__link:hover {
  background: var(--navy-2);
}

/* Full width page layouts */
main .container,
.hero-content,
.statement,
.split,
.strength-grid,
.detail-layout,
.contact-grid,
.entry-content,
.entry-content > *,
.wp-block-group,
.wp-block-columns,
.wp-block-cover,
.wp-block-image,
.wp-block-html,
.wp-block-shortcode,
.alignwide,
.alignfull,
.site-footer .container {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

main .container,
.site-footer .container {
  padding-left: max(20px, 4vw);
  padding-right: max(20px, 4vw);
}

.hero-content {
  padding-left: 6vw;
  padding-right: 6vw;
}

/* Page hero */
.page-hero {
  position: relative;
  padding: 150px 0 72px;
  background: var(--navy);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
  height: 100%;
  background-image: url("../assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4.4vw, 50px);
}

.page-hero p {
  max-width: 640px;
  margin: 16px 0 0;
  color: #b9c4cf;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(6, 12, 20, 0.98);
  padding: 18px 6vw 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: #cfd8e0;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .grid--4,
  .grid--3,
  .grid--2,
  .strength-grid,
  .statement,
  .split,
  .detail-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    display: block;
  }

  .section-head .btn {
    margin-top: 18px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding: 130px 0 70px;
  }

  .hero-meta {
    gap: 18px;
  }

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

  .stat-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .header-actions .btn {
    display: none;
  }
}
