:root {
  --blue: #1a56db;
  --blue-dark: #1540b0;
  --blue-light: #e8f0fe;
  --navy: #0d1b3e;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
}

.navbar-brand .brand-name {
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.footer-brand-name {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

.navbar-brand .brand-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  display: block;
  line-height: 1.3;
}

.brand-logo,
.footer-logo {
  max-height: 42px;
  width: auto;
  display: block;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text) !important;
  padding: 7px 14px !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue) !important;
}

.nav-link.active {
  border-bottom: 2px solid var(--blue);
}

.btn-login {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: #fff;
}

.btn-login:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-start {
  background: var(--blue);
  color: #fff !important;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 15px;
  font-weight: 600;
}

.btn-start:hover {
  background: var(--blue-dark);
}

/* HERO */
.hero {
  padding: 14px 0 24px;
  background: #fff;
  overflow: hidden;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
}

.hero h1 span {
  color: var(--blue);
}

.hero p.lead {
  font-size: 16px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 520px;
}

.btn-primary-main {
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary-main:hover {
  background: var(--blue-dark);
  color: #fff;
}

.btn-outline-main {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  border-radius: 6px;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-main:hover {
  background: var(--blue-light);
}

.hero-badges {
  margin-top: 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.hero-badge i {
  color: var(--blue);
  font-size: 16px;
}

/* WORLD MAP SVG AREA */
.hero-map {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-map img {
  width: 100%;
  max-width: 740px;
  height: auto;
  display: block;
  opacity: 0.8;
  filter: brightness(1.05);
}

.hero-map .map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.world-map-wrap {
  position: relative;
  width: 100%;
}

.world-map-wrap svg {
  width: 100%;
  height: auto;
}

.flag-pin {
  position: absolute;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px 6px 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  color: var(--navy);
}

.pin-canada {
  top: 14%;
  left: 24%;
}

.pin-uk {
  top: 18%;
  right: 16%;
}

.pin-usa {
  top: 34%;
  left: 12%;
}

.pin-germany {
  top: 28%;
  right: 16%;
}

.pin-india {
  top: 50%;
  left: 52%;
}

.pin-australia {
  bottom: 16%;
  right: 18%;
}

/* FEATURES STRIP */
.features-strip {
  background: #f8fafc;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--blue);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* SECTION LABELS */
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

/* SERVICES */
.services {
  padding: 64px 0;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow .2s, border-color .2s;
  cursor: pointer;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 4px 20px rgba(26,86,219,.12);
  border-color: var(--blue);
}

.service-card .svc-logo {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 12px;
}

.service-card .svc-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto 8px;
}

.service-card .svc-logo.ece {
  color: #1a56db;
}

.service-card .svc-logo.iqas {
  color: #7c3aed;
}

.service-card .svc-logo.wes {
  border: 2px solid #16a34a;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-size: 15px;
  font-weight: 700;
  color: #16a34a;
}

.service-card h6 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.service-card .svc-sub {
  font-size: 13px;
  color: var(--muted);
}

.more-card {
  background: #f8fafc;
}

.more-card .svc-logo {
  color: var(--muted);
}

.services p.lead {
  font-size: 16px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 100%;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 64px 0;
  background: #f8fafc;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-wrap {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
}

.step-item h6 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.step-item p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.payment-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  padding: 40px 30px;
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
}

.payment-mockup .laptop-bar {
  background: #1a56db;
  border-radius: 8px 8px 0 0;
  height: 28px;
  margin: -40px -30px 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
}

.laptop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}

.payment-mockup .success-badge {
  color: #16a34a;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
}

.payment-mockup .ref-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.payment-mockup .ref-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
}

.payment-mockup .confirm-text {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.success-check {
  width: 52px;
  height: 52px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  color: #16a34a;
  font-size: 22px;
}

.shield-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 64px;
  height: 64px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(26,86,219,.3);
}

/* STATS */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}

.stat-item {
  text-align: center;
}

.stat-item .stat-icon {
  font-size: 28px;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}

.stat-item .stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.stat-item .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* GLOBAL COVERAGE */
.global {
  padding: 64px 0;
}

.world-coverage {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.world-coverage .world-image {
  width: 100%;
  max-width: 380px;
}

.world-coverage .world-image img {
  width: 100%;
  height: auto;
  display: block;
}

.world-coverage .world-copy {
  flex: 1;
}

.world-coverage .world-copy p {
  margin-bottom: 24px;
}

.global .section-title {
  font-size: 28px;
}

@media (min-width: 992px) {
  .world-coverage {
    flex-direction: row;
    align-items: center;
  }

  .world-coverage .world-image {
    flex: 0 0 42%;
    max-width: 320px;
  }

  .world-coverage .world-copy {
    flex: 1;
  }
}

.map-placeholder {
  background: #f0f4ff;
  border-radius: 12px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.map-pin-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(26,86,219,.2);
}

/* SECURITY */
.security-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.sec-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
}

.security-item h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}

.security-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.shield-large {
  margin: auto;
  display: block;
  max-width: 100%;
}

.shield-large img {
  width: 100%;
  height: auto;
  display: block;
}

.pricing {
  padding: 64px 0;
}

.pricing .section-title {
  font-size: 28px;
}

.pricing-intro {
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
  margin-bottom: 32px;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(26,86,219,.08);
  border-color: var(--blue);
}

.pricing-card.featured {
  border-color: var(--blue);
}

.pricing-card .card-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--blue);
  font-size: 13px;
  margin-bottom: 14px;
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--navy);
}

.pricing-card .price {
  font-size: 42px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}

.pricing-card .price small {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
}

.pricing-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
  min-height: 64px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 15px;
}

.pricing-card li::before {
  content: '✔';
  color: var(--blue);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 2px;
}

.pricing-card .pricing-cta {
  margin-top: auto;
}

.pricing-card .btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.pricing-card .btn-card.primary {
  background: var(--blue);
  color: #fff;
}

.pricing-card .btn-card.secondary {
  background: #f8fafc;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}

.pricing-contact {
  margin-top: 30px;
  font-size: 15px;
  color: var(--text);
  text-align: center;
}

.pricing-contact a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

/* FAQ */
.faq {
  padding: 64px 0;
}

.faq .accordion-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-button {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: none;
  box-shadow: none;
  padding: 1.1rem 1.2rem;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: #f8fafc;
}

.faq .accordion-button::after {
  filter: none;
  transition: transform .2s ease;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-body {
  font-size: 14px;
  color: var(--muted);
  padding: 1rem 1.2rem 1.3rem;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #1a56db 0%, #1540b0 100%);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  margin-top: 8px;
}

.btn-white {
  background: #fff;
  color: var(--blue);
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  text-decoration: none;
}

.btn-white:hover {
  background: var(--blue-light);
}

.cta-plane {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  color: rgba(255,255,255,.15);
}

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
}

footer .brand-text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

footer .brand-sub-f {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

footer p.tagline {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
  line-height: 1.6;
}

footer address {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-top: 18px;
  line-height: 1.7;
  font-style: normal;
}

footer h6 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

footer a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

footer a:hover {
  color: #fff;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 28px 0 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin-right: 6px;
  text-decoration: none;
}

.social-icons a:hover {
  border-color: #fff;
  color: #fff;
}

.footer-bottom {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

.footer-cookie-link {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.72);
  padding: 0;
  font-size: 13px;
}

.footer-cookie-link:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
}

.cookie-banner__content {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(13, 27, 62, 0.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(4, 12, 30, 0.32);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.cookie-banner__content a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 6px;
}

.cookie-banner__copy h2 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cookie-banner__copy p:last-child {
  margin-bottom: 0;
  max-width: 760px;
  color: rgba(255,255,255,.8);
}

.cookie-banner__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cookie-banner__manage,
.cookie-banner__reject,
.cookie-banner__accept,
.cookie-panel .btn {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
}

.cookie-banner__manage {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
}

.cookie-banner__manage:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.cookie-banner__reject {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

.cookie-banner__reject:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.cookie-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.cookie-panel__grid {
  display: grid;
  gap: 14px;
}

.cookie-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}

.cookie-toggle strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.cookie-toggle small {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
}

.cookie-toggle input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.cookie-toggle--locked {
  border: 1px solid rgba(255,255,255,.12);
}

.cookie-panel__footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-panel__footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 24px 0 16px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p.lead {
    max-width: 100%;
  }

  .hero-badges {
    gap: 10px;
  }

  .hero-map {
    min-height: 260px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-eyebrow {
    font-size: 12px;
  }

  .nav-link {
    font-size: 14px;
  }

  .btn-login,
  .btn-start,
  .btn-primary-main,
  .btn-outline-main,
  .btn-white {
    font-size: 14px;
    padding: 10px 18px;
  }

  .features-strip {
    padding: 24px 0;
  }

  .service-card {
    padding: 20px 16px;
  }

  .how-it-works,
  .global,
  .testimonials,
  .faq {
    padding: 48px 0;
  }

  .step-item {
    flex-wrap: wrap;
    gap: 12px;
  }

  .cta-banner {
    padding: 32px 22px;
  }

  footer {
    padding: 40px 0 24px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__content {
    padding: 18px;
    border-radius: 16px;
  }

  .cookie-banner__copy h2 {
    font-size: 20px;
  }

  .cookie-banner__actions,
  .cookie-panel__footer {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn,
  .cookie-panel__footer .btn {
    width: 100%;
  }

  .cookie-toggle {
    flex-direction: column;
  }

  .testi-card {
    padding: 22px;
  }

  .stat-item .stat-num {
    font-size: 28px;
  }

  .world-coverage {
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .nav-link {
    padding: 8px 10px !important;
  }

  .hero-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card {
    padding: 18px 14px;
  }

  .section-eyebrow {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

/* Terms and Conditions page redesign */
.terms-page {
  --tc-ink: #0f223d;
  --tc-slate: #4f6278;
  --tc-soft: #e7edf5;
  --tc-line: #d4deea;
  --tc-brand: #0b6d8d;
  --tc-brand-deep: #095870;
  --tc-accent: #f0b429;
  --tc-wash: #f7fafc;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--tc-ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(11, 109, 141, 0.12) 0%, rgba(11, 109, 141, 0) 44%),
    radial-gradient(circle at 95% 18%, rgba(240, 180, 41, 0.15) 0%, rgba(240, 180, 41, 0) 40%),
    linear-gradient(180deg, #f9fcff 0%, #f5f9fc 58%, #f8fbff 100%);
}

.terms-page h1,
.terms-page h2,
.terms-page h3,
.terms-page h4,
.terms-page h5,
.terms-page .brand-name,
.terms-page .logo-text {
  font-family: 'Sora', sans-serif;
}

.terms-page .navbar {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 34, 61, 0.08);
}

.terms-page .nav-link {
  color: var(--tc-ink) !important;
  border-radius: 999px;
  transition: background-color .2s ease, color .2s ease;
}

.terms-page .nav-link:hover,
.terms-page .nav-link.active {
  color: #fff !important;
  background: var(--tc-brand);
  border-bottom: none;
}

.terms-page .btn-login {
  border-color: rgba(15, 34, 61, 0.2);
}

.terms-page .btn-start {
  background: linear-gradient(130deg, var(--tc-brand) 0%, #0a83ac 100%);
}

.terms-page .btn-start:hover {
  background: linear-gradient(130deg, var(--tc-brand-deep) 0%, #086e90 100%);
}

.terms-page .hero {
  max-width: 1220px;
  margin: 32px auto 24px;
  padding: 42px 42px 36px;
  border: 1px solid rgba(15, 34, 61, 0.08);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(120deg, #ffffff 0%, #f4fafe 100%);
  box-shadow: 0 20px 44px rgba(13, 38, 66, 0.1);
  animation: tc-rise .55s ease-out;
}

.terms-page .hero-left .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--tc-brand-deep);
  background: rgba(11, 109, 141, 0.12);
  border: 1px solid rgba(11, 109, 141, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.terms-page .hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--tc-ink);
  margin: 0;
}

.terms-page .hero p {
  font-size: 1.05rem;
  color: var(--tc-slate);
  margin: 14px 0 0;
  max-width: 54ch;
}

.terms-page .hero-illustration {
  width: min(100%, 300px);
  justify-self: end;
  filter: drop-shadow(0 12px 24px rgba(11, 109, 141, 0.2));
}

.terms-page .container {
  max-width: 1220px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: 42px;
}

.terms-page .sidebar {
  position: sticky;
  top: 92px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--tc-line);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(14, 33, 58, 0.07);
}

.terms-page .sidebar h3 {
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--tc-slate);
}

.terms-page .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-page .toc-list li + li {
  margin-top: 7px;
}

.terms-page .toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--tc-slate);
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.terms-page .toc-list a:hover {
  transform: translateX(2px);
  background: var(--tc-wash);
  color: var(--tc-ink);
}

.terms-page .toc-list a.active {
  color: var(--tc-ink);
  background: linear-gradient(90deg, rgba(11, 109, 141, 0.18) 0%, rgba(11, 109, 141, 0.05) 100%);
}

.terms-page .num-circle {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: #eef3f8;
  color: var(--tc-brand-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .86rem;
  font-weight: 700;
}

.terms-page .help-box {
  margin-top: 20px;
  background: linear-gradient(150deg, #f2f9ff 0%, #fff8e6 100%);
  border: 1px solid rgba(11, 109, 141, 0.16);
  border-radius: 16px;
  padding: 16px;
}

.terms-page .help-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.terms-page .help-box h4 {
  font-size: 1.02rem;
  margin: 0;
}

.terms-page .help-box p {
  color: var(--tc-slate);
  margin: 8px 0 14px;
  font-size: .94rem;
}

.terms-page .btn-outline {
  width: 100%;
  border: 1px solid rgba(11, 109, 141, 0.45);
  background: #fff;
  color: var(--tc-brand-deep);
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 12px;
}

.terms-page .content {
  background: #fff;
  border: 1px solid var(--tc-line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(12, 34, 59, 0.08);
  animation: tc-rise .6s ease-out .12s both;
}

.terms-page .section {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--tc-line);
  scroll-margin-top: 120px;
}

.terms-page .section:last-of-type {
  border-bottom: 0;
}

.terms-page .section h2 {
  margin: 0;
  font-size: 1.22rem;
  color: #102947;
}

.terms-page .section p {
  margin: 8px 0 0;
  color: var(--tc-slate);
}

.terms-page .contact-row {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.terms-page .contact-item {
  border: 1px solid var(--tc-line);
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(150deg, #ffffff 0%, #f7fbff 100%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-page .contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #edf4fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-page .contact-item h5 {
  margin: 0;
  font-size: .94rem;
}

.terms-page .contact-item span {
  font-size: .88rem;
  color: var(--tc-slate);
}

.terms-page .last-updated {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--tc-line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--tc-slate);
  font-size: .88rem;
}

.terms-page footer {
  margin-top: 16px;
  background: linear-gradient(170deg, #082237 0%, #0f3553 100%);
  border-top: 4px solid var(--tc-accent);
  padding: 52px 0 28px;
}

.terms-page .footer-top {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.5fr repeat(4, minmax(120px, 1fr));
  padding: 0 12px;
}

.terms-page .logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.terms-page .logo-text span {
  color: var(--tc-accent);
}

.terms-page .footer-brand p,
.terms-page .footer-col a {
  color: rgba(255, 255, 255, 0.75);
}

.terms-page .footer-col h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 10px;
}

.terms-page .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-page .footer-col li + li {
  margin-top: 6px;
}

.terms-page .footer-col a {
  text-decoration: none;
  font-size: .9rem;
}

.terms-page .footer-col a:hover,
.terms-page .footer-col .current {
  color: #fff;
}

.terms-page .socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.terms-page .socials a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.terms-page .footer-bottom {
  max-width: 1220px;
  margin: 26px auto 0;
  padding: 14px 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.terms-page .secure {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes tc-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .terms-page .hero {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    margin-top: 18px;
  }

  .terms-page .hero-illustration {
    justify-self: start;
    width: min(100%, 240px);
  }

  .terms-page .container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .terms-page .sidebar {
    position: static;
  }

  .terms-page .contact-row {
    grid-template-columns: 1fr;
  }

  .terms-page .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .terms-page .hero {
    border-radius: 18px;
  }

  .terms-page .content,
  .terms-page .sidebar {
    border-radius: 16px;
    padding: 18px;
  }

  .terms-page .section {
    grid-template-columns: 1fr;
  }

  .terms-page .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .terms-page .footer-bottom {
    font-size: .84rem;
  }
}