:root {
  --bg: #050b16;
  --dark: #031734;
  --dark-2: #072148;
  --blue: #1574ff;
  --blue-2: #2f98ff;
  --blue-3: #7fd0ff;
  --white: #ffffff;
  --light: #f7f9fc;
  --text-dark: #0d1b34;
  --muted: #5f6f85;
  --line: rgba(84, 142, 255, 0.18);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --max: 1560px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(16, 94, 255, 0.18), transparent 24%),
    radial-gradient(circle at 85% 6%, rgba(65, 190, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #02070f 0%, #071120 100%);
  color: var(--white);
  url('images/background.png') no-repeat center center fixed;
  background-size: cover;
}

a {
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 15, 34, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-logo {
  width: 145px;
  max-height: 64px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-3);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-2), var(--blue-3));
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 28px rgba(21, 116, 255, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  color: var(--text-dark);
  border-color: #c9d7ea;
  background: #fff;
}

.full-btn {
  width: 100%;
}

.nav-cta {
  white-space: nowrap;
}

/* MAIN LAYOUT */

.page-shell {
  padding: 28px 0 42px;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: start;
}

.main-column,
.side-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

/* PANELS */

.content-panel,
.hero-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.white-panel {
  background: var(--white);
  color: var(--text-dark);
  padding: 32px;
}

.dark-panel {
  background: linear-gradient(180deg, var(--dark) 0%, #041a3c 100%);
  color: var(--white);
  padding: 30px;
  border: 1px solid var(--line);
}

.section-kicker {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.section-kicker.light {
  color: var(--blue-3);
}

.content-panel h2 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.1;
}

.content-panel p {
  line-height: 1.65;
}

/* HERO */

.hero-panel {
  background:
    radial-gradient(circle at 75% 20%, rgba(47, 152, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #031734 0%, #082a5b 54%, #031734 100%);
  border: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 46px;
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  display: block;
  color: var(--blue-3);
}

.hero-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(47, 152, 255, 0.28);
  filter: blur(32px);
}

.shield-card {
  position: relative;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18);
}

.shield-outline {
  width: 150px;
  height: 175px;
  border: 4px solid var(--blue-3);
  border-radius: 70px 70px 38px 38px;
  display: grid;
  place-items: center;
}

.lock-wrap {
  position: relative;
  width: 76px;
  height: 80px;
}

.lock-top {
  width: 48px;
  height: 36px;
  border: 7px solid #fff;
  border-bottom: none;
  border-radius: 26px 26px 0 0;
  margin: 0 auto;
}

.lock-body {
  width: 76px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
}

.keyhole {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: 10px;
  height: 18px;
  border-radius: 99px;
  background: var(--blue);
}

/* TRUST STRIP */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: rgba(1, 12, 28, 0.38);
}

.trust-item {
  padding: 22px;
  display: flex;
  gap: 13px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  font-size: 1.6rem;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.trust-item span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* SERVICES */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: #fff;
  color: var(--text-dark);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid #e3ebf5;
  box-shadow: 0 12px 28px rgba(13, 27, 52, 0.08);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* PROCESS */

.process-panel h2 {
  color: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.process-step {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.process-circle {
  width: 70px;
  height: 70px;
  margin-bottom: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  background: linear-gradient(180deg, #0b3c87, #072b64);
}

.process-step h3 {
  margin: 0 0 8px;
  color: #fff;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

/* HOMEPAGE PRICING / PROCESS CARDS */

.pricing-panel {
  overflow: visible;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: #fff;
  color: var(--text-dark);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e3ebf5;
  box-shadow: 0 12px 28px rgba(13, 27, 52, 0.08);
}

.pricing-card.featured {
  border: 2px solid var(--blue);
}

.popular-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.pricing-card h3 {
  margin: 0 0 12px;
}

.price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue);
}

.price-note {
  color: var(--muted);
  margin: 6px 0 18px;
  font-size: 0.94rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--muted);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 3px;
  width: 7px;
  height: 12px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(45deg);
}

/* CTA */

.cta-panel {
  background:
    radial-gradient(circle at 85% 20%, rgba(127, 208, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #031734, #082a5b);
  color: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cta-copy h2 {
  margin: 0 0 12px;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
}

.cta-shield {
  display: grid;
  place-items: center;
}

.mini-shield {
  width: 110px;
  height: 120px;
  border: 3px solid var(--blue-3);
  border-radius: 52px 52px 28px 28px;
  display: grid;
  place-items: center;
}

.mini-lock-top {
  width: 32px;
  height: 24px;
  border: 5px solid #fff;
  border-bottom: none;
  border-radius: 18px 18px 0 0;
}

.mini-lock-body {
  width: 52px;
  height: 36px;
  background: #fff;
  border-radius: 9px;
}

/* FOOTER */

.footer-panel {
  background: #fff;
  color: var(--text-dark);
  padding: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 160px 1fr 220px;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  width: 140px;
  max-height: 70px;
  object-fit: contain;
}

.footer-text {
  color: var(--muted);
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  gap: 5px;
  color: var(--muted);
}

.footer-contact strong {
  color: var(--text-dark);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e3ebf5;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .page-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr 300px;
  }

  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    justify-content: center;
    gap: 16px;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .hero-visual {
    min-height: 240px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .hero-inner {
    padding: 26px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .trust-strip,
  .services-grid,
  .pricing-cards,
  .process-steps,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .white-panel,
  .dark-panel,
  .cta-panel,
  .footer-panel {
    padding: 24px;
  }
}

.founder-grid{
display:grid;
grid-template-columns:300px 1fr;
gap:35px;
align-items:center;
}

.founder-photo{
width:220px;
max-width:100%;
border-radius:18px;
box-shadow:0 16px 35px rgba(0,0,0,.22);
}

.founder-photo-wrap{
text-align:center;
}

.badge-row{
display:flex;
gap:12px;
margin:20px 0;
flex-wrap:wrap;
align-items:center;
}

.cred-badge{
width:75px;
height:auto;
transition:.2s ease;
}

.cred-badge:hover{
transform:scale(1.05);
}
@media(max-width:768px){
.founder-grid{
grid-template-columns:1fr;
}
.founder-photo-wrap{
text-align:center;
}
}
