@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #06298E;
  --red: #D13510;
  --amber: #ECA421;
  --yellow: #F4DD00;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --border: rgba(255,255,255,0.08);
  --pad: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.gradient-bar { width: 100%; height: 3px; background: linear-gradient(90deg, #06298E 0%, #D13510 35%, #ECA421 65%, #F4DD00 100%); }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px var(--pad); border-bottom: 0.5px solid rgba(255,255,255,0.08); background: #0a0a0a; position: sticky; top: 0; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-text { font-size: 15px; font-weight: 500; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger { font-size: 14px; color: rgba(255,255,255,0.5); cursor: pointer; display: flex; align-items: center; gap: 5px; transition: color 0.2s; background: none; border: none; font-family: 'Satoshi', sans-serif; padding: 8px 0; white-space: nowrap; }
.nav-dropdown-trigger:hover, .nav-dropdown-trigger.active { color: #fff; }
.nav-dropdown-trigger svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 16px; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(-4px); background: #1a1a1a; border: 0.5px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 8px; min-width: 260px; opacity: 0; pointer-events: none; transition: opacity 0.15s, transform 0.15s; z-index: 200; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 14px; font-size: 13px; color: rgba(255,255,255,0.7); border-radius: 6px; transition: all 0.15s; text-decoration: none; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.dropdown-divider { height: 0.5px; background: rgba(255,255,255,0.08); margin: 6px 0; }
.dropdown-label { font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.25); text-transform: uppercase; padding: 6px 14px 4px; display: block; }

.nav-cta { background: #06298E; color: #fff; padding: 10px 22px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: background 0.2s; text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.nav-cta:hover { background: #0a35b8; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: #fff; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 24px; border-radius: 6px; font-size: 15px; font-weight: 500; font-family: 'Satoshi', sans-serif; cursor: pointer; transition: all 0.2s; border: none; text-decoration: none; }
.btn-primary { background: #06298E; color: #fff; }
.btn-primary:hover { background: #0a35b8; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.btn-light { background: #fff; color: #0a0a0a; }
.btn-light:hover { background: #f0f0f0; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 16px; display: block; }
.divider { height: 0.5px; background: rgba(255,255,255,0.08); width: 100%; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tag { background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 12px; padding: 6px 14px; border-radius: 100px; }

.cta-section { padding: 80px var(--pad); max-width: 1100px; margin: 0 auto; text-align: center; }
.cta-section h2 { font-size: 40px; font-weight: 500; letter-spacing: -0.8px; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.65; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.testimonial-block { background: #111; padding: 64px var(--pad); }
.testimonial-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial-card { border-left: 3px solid #ECA421; padding: 28px 32px; background: rgba(255,255,255,0.03); border-radius: 0 10px 10px 0; }
.testimonial-card p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.testimonial-card cite { font-size: 13px; color: #ECA421; font-style: normal; font-weight: 500; display: block; }
.testimonial-card cite span { color: rgba(255,255,255,0.4); font-weight: 400; }

.cover-list { display: flex; flex-direction: column; gap: 10px; }
.cover-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,0.03); border-radius: 8px; border: 0.5px solid rgba(255,255,255,0.06); }
.cover-item p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.55; margin: 0; }

.svc-card { background: #111; border: 0.5px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; position: sticky; top: 88px; }
.svc-card-top { padding: 32px; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
.svc-card-top p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.65; }
.svc-card-badges { display: flex; gap: 12px; flex-wrap: wrap; padding: 24px 32px; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
.svc-badge { background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 12px 16px; text-align: center; flex: 1; min-width: 80px; }
.svc-badge span { font-size: 10px; letter-spacing: 0.5px; color: rgba(255,255,255,0.3); text-transform: uppercase; display: block; margin-bottom: 6px; }
.svc-badge strong { font-size: 14px; color: #fff; font-weight: 500; }
.svc-card-note { padding: 20px 32px; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
.svc-card-note p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.svc-card-note a { color: #ECA421; }
.svc-card-cta { padding: 24px 32px; display: flex; flex-direction: column; gap: 10px; }

.footer-wrap { border-top: 0.5px solid rgba(255,255,255,0.08); }
.footer { padding: 28px var(--pad); display: flex; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; gap: 16px; }
.footer p { font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-logo { display: flex; align-items: center; gap: 8px; opacity: 0.3; }
.footer-logo span { font-size: 13px; color: #fff; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.25); transition: color 0.2s; text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.5); }

/* TABLET */
@media (max-width: 900px) {
  :root { --pad: 40px; }
  .cta-section h2 { font-size: 32px; }
  .testimonial-inner { grid-template-columns: 1fr; }
  .svc-card { position: static; }
}

/* MOBILE */
@media (max-width: 640px) {
  :root { --pad: 20px; }
  .nav { padding: 14px var(--pad); }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 57px; left: 0; right: 0;
    background: #0a0a0a; padding: 20px;
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    gap: 18px; z-index: 99;
    max-height: calc(100vh - 57px); overflow-y: auto; width: 100%;
  }

  .nav-mobile-open .nav-cta { display: block; margin: 0 20px 20px; text-align: center; }

  .nav-mobile-open .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; pointer-events: all;
    background: rgba(255,255,255,0.04); border: none; border-radius: 8px;
    padding: 4px 0 4px 12px; margin-top: 8px; min-width: unset; width: 100%;
  }

  .nav-mobile-open .nav-dropdown-trigger { width: 100%; justify-content: space-between; }

  .cta-section { padding: 48px var(--pad); }
  .cta-section h2 { font-size: 26px; letter-spacing: -0.3px; }
  .cta-section p { font-size: 15px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { width: 100%; }

  .testimonial-block { padding: 40px var(--pad); }
  .testimonial-card { padding: 20px 18px; }
  .testimonial-card p { font-size: 14px; }

  .footer { padding: 20px var(--pad); flex-direction: column; align-items: flex-start; }

  .btn { font-size: 14px; padding: 11px 20px; }
  .svc-card-top { padding: 24px; }
  .svc-card-badges { padding: 16px 24px; }
  .svc-card-note { padding: 16px 24px; }
  .svc-card-cta { padding: 20px 24px; }
}
