/* Secure Link — modernized site styles */

:root {
  --navy-900: #071a33;
  --navy-800: #0b2545;
  --navy-700: #123a6b;
  --blue-600: #1d6fd6;
  --blue-500: #2f86f5;
  --sky-100: #eaf2ff;
  --sky-50: #f5f9ff;
  --amber-500: #f5a524;
  --ink: #10213b;
  --ink-soft: #4b5b76;
  --border: #dfe7f4;
  --white: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-md: 0 16px 40px -20px rgba(7, 26, 51, 0.35);
  --shadow-sm: 0 8px 20px -14px rgba(7, 26, 51, 0.4);
  --container: 1180px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber-500);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 16px;
}

h2.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: 640px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center h2 {
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 620px;
}

.section-head.center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

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

.btn-outline:hover {
  background: var(--sky-100);
}

/* Top bar */
.top-bar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.top-bar-left .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  display: inline-block;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.top-bar-right a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right a:hover {
  color: var(--white);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--amber-500);
  color: var(--navy-900);
}

/* Header / nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 40px;
  width: auto;
}

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

.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-600);
  border-bottom-color: var(--amber-500);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy-900);
  margin: 5px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(circle at 12% 20%, rgba(47, 134, 245, 0.35), transparent 45%), linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 110px 0 90px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero .eyebrow {
  color: #9fc3ff;
}

.hero .eyebrow::before {
  background: var(--amber-500);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 52px);
  max-width: 620px;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-art .ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: scale(1.15);
}

.hero-art img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 6px solid rgba(255, 255, 255, 0.08);
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -10px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  max-width: 230px;
}

.hero-badge .num {
  font-size: 22px;
  color: var(--blue-600);
}

/* Stats strip */
.stats-strip {
  background: var(--sky-50);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  padding: 34px 20px;
  text-align: center;
  border-left: 1px solid var(--border);
}

.stat:first-child {
  border-left: none;
}

.stat .num {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-900);
}

.stat .num span {
  color: var(--blue-600);
}

.stat .label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Feature / why choose us cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--sky-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

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

/* Services */
.services-section {
  background: var(--sky-50);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.service-card .service-body {
  padding: 26px 24px;
}

.service-card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--sky-100);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}

/* About / story */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.about-media {
  position: sticky;
  top: 100px;
}

.about-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--navy-900);
  padding: 34px;
  text-align: center;
}

.about-media .frame img {
  margin: 0 auto;
  max-width: 220px;
  filter: brightness(0) invert(1);
}

.founder-card {
  margin-top: 22px;
  background: var(--sky-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.founder-card h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.founder-card span {
  color: var(--ink-soft);
  font-size: 13.5px;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 18px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.mv-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
}

.mv-card h4 {
  color: var(--amber-500);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.mv-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  margin: 0;
}

/* Process / how it works */
.process-section {
  background: var(--navy-900);
  color: var(--white);
}

.process-section .section-head h2,
.process-section .eyebrow {
  color: var(--white);
}

.process-section .lead {
  color: rgba(255, 255, 255, 0.75);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

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

.process-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--navy-900);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-step h3 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 8px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin: 0;
}

/* Certifications */
.cert-section {
  background: var(--sky-50);
}

.cert-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cert-chip {
  flex: 1 1 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.cert-chip .badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--amber-500);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-chip h4 {
  font-size: 15.5px;
  margin: 0 0 6px;
}

.cert-chip p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
}

.faq-question .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-600);
  color: var(--blue-600);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.faq-item.open .plus {
  transform: rotate(45deg);
  background: var(--blue-600);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  color: var(--ink-soft);
  padding: 0 4px 20px;
  margin: 0;
  font-size: 15px;
}

/* Contact */
.contact-section {
  background: var(--sky-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-line {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-line .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--amber-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
}

.contact-line p,
.contact-line a {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
}

.contact-line strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--amber-500);
  font-size: 13.5px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  margin-bottom: 18px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--sky-50);
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--blue-500);
  outline-offset: 1px;
  background: var(--white);
}

.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--blue-600), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0 24px;
  max-width: calc(var(--container) - 0px);
  margin-left: auto;
  margin-right: auto;
}

.cta-banner h2 {
  color: var(--white);
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  max-width: 560px;
}

/* Footer */
footer.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 34px;
  margin-bottom: 16px;
}

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

footer h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a:hover {
  color: var(--amber-500);
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 90;
  border: none;
  font-size: 18px;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
  }

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

  .about-media {
    position: static;
  }

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

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

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

  .stat:nth-child(3) {
    border-left: none;
  }

  .stat {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 860px) {
  .main-nav,
  .nav-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  body.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

  .stats-strip .container {
    grid-template-columns: 1fr 1fr;
  }

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

  .cta-banner {
    flex-direction: column;
    text-align: center;
    margin: 0 16px;
  }

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

  .top-bar-right {
    gap: 12px;
  }

  .hero-badge {
    position: static;
    margin-top: 18px;
    max-width: none;
  }
}
