:root {
  --blue: #1a1564;
  --blue-hover: #003fa3;
  --blue-soft: #e8f0fc;
  --blue-mid: #b8d0f8;
  --orange: #fd8d3f;
  --orange-hover: #e6731f;
  --orange-soft: #fff2e8;
  --orange-mid: #fcd0aa;
  --text: #1a1a2e;
  --body: #4a5568;
  --muted: #8896aa;
  --light: #f7f9fc;
  --border: #e2e8f2;
  --white: #ffffff;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 30, 80, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg:
    0 16px 48px rgba(0, 30, 80, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}

.page {
  display: none;
}
.page.active {
  display: block;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 30, 80, 0.08);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 35px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  transition: color 0.15s;
  letter-spacing: 0.2px;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-links a.active {
  color: var(--orange);
  border-bottom: 2.5px solid var(--orange);
  padding-bottom: 2px;
}
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-btn-ghost {
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
  padding: 8px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition:
    border-color 0.15s,
    color 0.15s;
}
.nav-btn-ghost:hover {
  border-color: var(--blue-mid);
  color: var(--blue);
}
.nav-btn {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.15s,
    box-shadow 0.15s;
  box-shadow: 0 2px 10px rgba(253, 141, 63, 0.35);
}
.nav-btn:hover {
  background: var(--orange-hover);
}

.hero {
  padding: 120px 40px 80px;
  background: var(--light);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  min-height: calc(100vh - 157px);
  justify-content: center;
  display: flex;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 204, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 204, 0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  margin-bottom: 20px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1.5px solid var(--orange-mid);
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.tag svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}
.hero h1 {
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span {
  color: var(--orange);
}
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--body);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.15s,
    box-shadow 0.15s,
    transform 0.1s;
  box-shadow: 0 3px 14px rgba(253, 141, 63, 0.4);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.btn-secondary:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.phone-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.phone-device {
  width: 248px;
  background: var(--text);
  border-radius: 44px;
  padding: 8px;
  box-shadow:
    0 40px 80px rgba(0, 30, 80, 0.22),
    0 8px 32px rgba(0, 0, 0, 0.12);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.phone-screen {
  border-radius: 37px;
  overflow: hidden;
  background: #001040;
  height: 480px;
  position: relative;
}
.phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
}
.phone-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #001040 0%, #002580 100%);
  display: flex;
  flex-direction: column;
  padding: 46px 14px 14px;
}
.p-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.p-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-logo {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}
.p-logo img {
  width: 100%;
  height: auto;
}
.p-brand {
  color: rgba(255, 255, 255, 0.9);
  font-size: 10.5px;
  font-weight: 700;
}
.p-notif {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}
.p-notif svg {
  width: 11px;
  height: 11px;
  stroke-width: 2;
}
.p-notif::after {
  content: "3";
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--orange);
  color: #fff;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
}
.p-pts-label {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.p-pts-num {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.p-pts-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}
.p-progress-wrap {
  margin-top: 10px;
}
.p-progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 7.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
}
.p-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.p-progress-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--orange), #ffb570);
  border-radius: 4px;
}
.p-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 10px;
}
.p-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  position: relative;
}
.p-tile-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--orange);
  color: #fff;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  font-size: 7.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-tile-icon {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}
.p-tile-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
.p-tile-lbl {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  font-weight: 700;
}
.p-coupon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  padding: 9px 10px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 6px;
}
.p-coupon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}
.p-coupon-title {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}
.p-coupon-meta {
  font-size: 7.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}
.p-navbar {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
}
.p-nav-btn {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.p-nav-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  color: rgba(255, 255, 255, 0.25);
}
.p-nav-btn span {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 600;
}
.p-nav-btn.on svg {
  color: var(--orange);
}
.p-nav-btn.on span {
  color: var(--orange);
}

.phone-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 2;
}
.phone-badge.b1 {
  top: 10%;
  right: -20px;
  animation: float 6s ease-in-out infinite;
  animation-delay: -2s;
}
.phone-badge.b2 {
  bottom: 16%;
  left: -24px;
  animation: float 6s ease-in-out infinite;
  animation-delay: -4s;
}
.badge-icon {
  width: 32px;
  height: 32px;
  background: var(--orange-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.badge-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}
.badge-strong {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text);
  display: block;
}
.badge-small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.metrics {
  background: var(--text);
}
.metrics-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.metric-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metric-item:last-child {
  border-right: none;
}
.metric-num {
  font-size: 35px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.metric-num span {
  color: var(--orange);
}
.metric-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  font-weight: 500;
}
.metric-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}
.metric-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
}

.sec {
  padding: 96px 40px;
}
.sec-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.sec-title {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.sec-sub {
  font-size: 15.5px;
  color: var(--body);
  max-width: 520px;
  line-height: 1.8;
}
.sec-head {
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.2s;
  position: relative;
}
.step-card:hover {
  background: var(--light);
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.step-icon {
  width: 46px;
  height: 46px;
  background: var(--orange-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.step-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-body {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.75;
}

.feat-sec {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feat-cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.feat-cell:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange-mid);
  transform: translateY(-2px);
}
.feat-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}
.feat-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
.feat-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat-body {
  font-size: 13px;
  color: var(--body);
  line-height: 1.7;
}

.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin-bottom: 24px;
}
table.compare {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}

table.compare thead th {
  padding: 16px 22px;
  text-align: left;
  font-size: 14px;

  letter-spacing: 0.5px;
  color: var(--text);
}
table.compare tbody tr {
  border-top: 1px solid var(--border);
}

table.compare td {
  padding: 14px 22px;
}
table.compare td:first-child {
  font-weight: 700;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.bad {
  color: #c0392b;
  gap: 7px;
  display: inline-flex;
  align-items: center;
}
.good {
  color: #1a7a3c;
  gap: 7px;
  display: inline-flex;
  align-items: center;
}
.bad svg,
.good svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.ben-list {
  display: flex;
  flex-direction: column;
}
.ben-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.15s;
}
.ben-row:first-child {
  border-top: 1px solid var(--border);
}
.ben-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
}
.ben-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ben-icon {
  width: 30px;
  height: 30px;
  background: var(--orange-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.ben-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
.ben-body {
  font-size: 14px;
  color: var(--body);
  line-height: 1.82;
}

@media (max-width: 700px) {
  .compare-wrap {
    overflow-x: auto;
    margin-bottom: 18px;
  }
  table.compare {
    min-width: 400px;
    font-size: 12px;
  }
  table.compare thead th,
  table.compare td {
    padding: 10px 8px;
  }
  table.compare td:first-child {
    font-size: 11px;
  }
}

.quote-sec {
  background: var(--blue);
  padding: 64px 40px;
}
.quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.quote-text {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 20px;
}
.quote-text strong {
  font-style: normal;
  font-weight: 800;
  color: #fff;
}
.quote-author {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.quote-line {
  width: 36px;
  height: 2px;
  background: var(--orange);
  margin: 0 auto 16px;
  border-radius: 1px;
}

.cta-sec {
  padding: 96px 40px;
  background: var(--light);
  border-top: 1px solid var(--border);
}
.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-title {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.cta-sub {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  max-width: 500px;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .cta-sec {
    padding: 56px 16px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .cta-btns {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  .cta-title {
    font-size: clamp(20px, 5vw, 28px);
  }
  .cta-sub {
    max-width: 100%;
    margin: 0 auto 16px;
  }
}

.contact-hero {
  padding: 120px 40px 56px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.contact-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.contact-hero h1 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}
.contact-hero p {
  font-size: 16px;
  color: var(--body);
  max-width: 480px;
  line-height: 1.75;
}

.contact-body {
  padding: 48px 40px 96px;
}

.contact-top-row {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.contact-map-block {
  min-height: 400px;
  position: relative;
  background: #e8f0fc;
}
.contact-map-block iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  min-height: 400px;
}

.contact-info-block {
  background: var(--white);
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
}
.contact-info-block h2 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
}
.contact-info-block h2 svg {
  color: var(--orange);
  width: 17px;
  height: 17px;
  stroke-width: 2;
  flex-shrink: 0;
}

.cib-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.cib-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cib-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}
.cib-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
.cib-lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  margin-bottom: 2px;
}
.cib-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
}
.cib-val a {
  color: var(--blue);
}
.cib-val a:hover {
  text-decoration: underline;
}

.contact-team-section {
  max-width: 1180px;
  margin: 0 auto;
}
.contact-team-section h2 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-team-section h2 svg {
  color: var(--orange);
  width: 17px;
  height: 17px;
  stroke-width: 2;
  flex-shrink: 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange-mid);
  transform: translateY(-2px);
}
.team-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.team-avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
}
.team-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.team-role {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}
.team-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 12px;
}
.team-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.team-contact-row:last-child {
  margin-bottom: 0;
}
.team-contact-row svg {
  width: 13px;
  height: 13px;
  stroke-width: 2;
  color: var(--orange);
  flex-shrink: 0;
}
.team-contact-row a {
  font-size: 12px;
  color: var(--body);
  font-weight: 600;
}
.team-contact-row a:hover {
  color: var(--blue);
}

.phone-slider-sec {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.phone-slider-sec .sec-head {
  margin-bottom: 56px;
}

.pslider-outer {
  position: relative;
  padding-bottom: 64px;
  overflow: hidden;
}

.pslider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  align-items: center;
}

.pslide {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.pslide.side {
  opacity: 0.35;
  transform: scale(0.84) translateY(16px);
  pointer-events: none;
}
.pslide.active-slide {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.pslide-phone {
  width: 236px;
  background: #1c1c2e;
  border-radius: 46px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 2px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 48px 96px rgba(0, 30, 80, 0.18),
    0 16px 40px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}
.pslide-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 10;
}
.pslide-phone::before {
  content: "";
  position: absolute;
  right: -3px;
  top: 100px;
  width: 3px;
  height: 60px;
  background: #2a2a3e;
  border-radius: 0 3px 3px 0;
}
.pslide-phone::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 80px;
  width: 3px;
  height: 36px;
  background: #2a2a3e;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 44px 0 #2a2a3e;
}

.pslide-screen {
  border-radius: 39px;
  overflow: hidden;
  height: 454px;
  position: relative;
  background: #f0f2f7;
}
.pslide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 46px 14px 14px;
  overflow: hidden;
}

.pslide-meta {
  text-align: center;
}
.pslide-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.2px;
}
.pslide-caption {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 3px;
}
.pslide.side .pslide-label {
  color: var(--muted);
}
.pslide.side .pslide-caption {
  opacity: 0;
}

.pslider-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}
.pslider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(253, 141, 63, 0.4);
}
.pslider-prev {
  left: 12px;
}
.pslider-next {
  right: 12px;
}

.pslider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pslider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    width 0.25s,
    border-radius 0.25s;
  padding: 0;
}
.pslider-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 4px;
}

.pslider-counter {
  position: absolute;
  bottom: 18px;
  right: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.pslider-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 40px;
  width: fit-content;
}
.pslider-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s;
  white-space: nowrap;
}
.pslider-tab svg {
  flex-shrink: 0;
  transition: stroke 0.18s;
}
.pslider-tab:hover {
  color: var(--text);
}
.pslider-tab.active {
  background: var(--white);
  color: var(--orange);
  box-shadow:
    0 1px 6px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  font-weight: 700;
}
.pslider-tab.active svg {
  stroke: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .hero {
    padding: 100px 20px 64px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .phone-badge {
    display: none;
  }
  .metrics-inner {
    grid-template-columns: 1fr 1fr;
  }
  .metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .metric-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
  .sec {
    padding: 64px 20px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-btns {
    flex-direction: row;
  }

  .contact-top-row {
    grid-template-columns: 1fr;
  }
  .contact-map-block {
    min-height: 260px;
  }
  .contact-map-block iframe {
    min-height: 260px;
  }
  .contact-info-block {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 28px 20px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-hero {
    padding: 100px 20px 48px;
  }
  .contact-body {
    padding: 32px 20px 64px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

footer {
  display: block;
  padding-bottom: 40px;
  background-color: #1b1464;
  color: #fff;
  padding-top: 20px;
}
.footer-colcont {
  text-align: left;
  font-size: 18px;
  max-width: 1640px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.col {
  margin-top: 20px;
}

.col:not(:last-child) {
  margin-right: 15px;
}

.col:nth-child(3) > div.innercol {
  flex-basis: 100%;
}

.footer-colcont p {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kapcs {
  align-self: flex-start;
}

.kapcs p:first-child {
  margin-block-start: 0;
}

.kapcs .ps {
  border-right: 2px solid #fff;
  padding-right: 5px;
  color: #fd8d3f;
}

.logolink,
.pslogo {
  display: block;
}

.pslogo {
  width: 175px;
}

.foomenu {
  display: flex;
  align-self: flex-start;
  flex-wrap: wrap;
}

.footer-colcont .title {
  flex-basis: 100%;
  margin-bottom: 1em;
  font-size: 24px;
  color: #fd8d3f;
}

.innercol {
  flex-basis: 50%;
}

.innercol ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  list-style: none;
}

.innercol ul li:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (max-width: 1700px) {
  .footer-colcont {
    padding: 0 30px;
    width: calc(100% - 60px);
  }
  .logolink {
    margin-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  .pslogo {
    width: 160px;
  }
}

@media screen and (max-width: 540px) {
  .pslogo {
    width: 190px;
  }
  .logolink {
    margin-top: 10px;
  }
  .innercol {
    flex-basis: 100%;
  }
  .innercol:not(:last-child) {
    margin-bottom: 1em;
  }
}
