
@import url('https://fonts.googleapis.com/css2?family=Barlow&family=Barlow+Condensed:wght@400;700;800;900&display=swap');


  :root {
    --ns-yellow: #FFD700;
    --ns-blue: #003082;
    --ns-dark: #0A0E1A;
    --ns-mid: #111827;
    --ns-card: #161D2E;
    --ns-border: rgba(255,215,0,0.15);
    --ns-text: #E8ECF4;
    --ns-muted: #8A94AA;
    --accent: #FFD700;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--ns-dark);
    color: var(--ns-text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  .logged-in .site-header nav {
      top: 32px;
  }

  .site-header nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 48px;
    background: rgba(10,14,26,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ns-border);
  }

  .logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--ns-yellow);
  }
  .logo span { color: #fff; }

  .rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ns-muted);
  }
  .stars { color: var(--ns-yellow); letter-spacing: 1px; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 64px 80px 64px;
    z-index: 2;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,215,0,0.1);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--ns-yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
    width: fit-content;
  }

  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--ns-yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
  }

  h1 em {
    font-style: normal;
    color: var(--ns-yellow);
    display: block;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--ns-muted);
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 420px;
  }

  .salary-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: var(--ns-yellow);
    color: #000;
    padding: 10px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    padding-right: 30px;
  }

  .salary-pill small {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
  }

  /* ── FORM ── */
  .form-card {
    background: var(--ns-card);
    border: 1px solid var(--ns-border);
    padding: 40px;
    max-width: 500px;
  }

  .form-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: #fff;
  }

  .form-card h3 span { color: var(--ns-yellow); }

  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-full { grid-column: 1 / -1; }

  .form-card input,
  .form-card select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 12px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 2px;
  }

  .form-card input::placeholder { color: var(--ns-muted); }
  .form-card input:focus { border-color: var(--ns-yellow); }

  .form-card select {
    appearance: none;
    cursor: pointer;
    color: var(--ns-muted);
  }

  .wpcf7-list-item label,
  .checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
  }

  .checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--ns-yellow);
    flex-shrink: 0;
  }

  .checkbox-row label {
    font-size: 12px;
    color: var(--ns-muted);
    line-height: 1.5;
  }

  .form-card .btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--ns-yellow);
    color: #000;
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 16px;
    transition: background 0.2s, transform 0.15s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  }

  .btn-submit:hover { background: #ffe94d; transform: translateY(-1px); }

  /* ── HERO RIGHT (photo mosaic) ── */
  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-photo-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.7);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--ns-dark) 0%, transparent 30%),
                linear-gradient(to top, var(--ns-dark) 0%, transparent 40%);
  }

  .hero-badge {
    position: absolute;
    bottom: 48px;
    right: 48px;
    background: var(--ns-yellow);
    color: #000;
    padding: 18px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    text-align: center;
    transform: rotate(-3deg);
  }

  .hero-badge .big { font-size: 36px; font-weight: 900; line-height: 1; display: block; }
  .hero-badge .small { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

  /* ── BENEFITS ── */
  .benefits {
    padding: 80px 48px;
    background: var(--ns-mid);
    border-top: 1px solid var(--ns-border);
    border-bottom: 1px solid var(--ns-border);
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ns-yellow);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    margin-bottom: 56px;
  }

  .section-title span { color: var(--ns-yellow); }

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

  .benefit-item {
    background: var(--ns-card);
    padding: 32px 28px;
    border-top: 3px solid transparent;
    transition: border-color 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .benefit-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--ns-yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .benefit-item:hover::before { transform: scaleX(1); }
  .benefit-item:hover { background: #1A2135; }

  .benefit-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
  }

  .benefit-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 8px;
  }

  .benefit-item .value {
    color: var(--ns-yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
  }

  .benefit-item p {
    font-size: 13px;
    color: var(--ns-muted);
    line-height: 1.5;
  }

  /* ── WHY ── */
  .why {
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-images {
    position: relative;
    height: 520px;
  }

  .why-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 70%;
    height: 80%;
    object-fit: cover;
    filter: brightness(0.85);
  }

  .why-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border: 4px solid var(--ns-dark);
    filter: brightness(0.85);
  }

  .why-tag-box {
    position: absolute;
    top: 52%;
    left: 30%;
    transform: translate(-50%, -50%);
    background: var(--ns-yellow);
    color: #000;
    padding: 12px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
  }

  .why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--ns-text);
    line-height: 1.5;
  }

  .why-list li::before {
    content: '→';
    color: var(--ns-yellow);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ── PHOTO STRIP ── */
  .photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 300px;
    overflow: hidden;
  }

  .strip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(20%);
    transition: filter 0.4s, transform 0.4s;
  }

  .strip-img:hover { filter: brightness(0.85); transform: scale(1.03); }

  /* ── PROCESS ── */
  .process {
    padding: 80px 48px;
    background: var(--ns-mid);
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 48px;
    position: relative;
  }

  .step {
    background: var(--ns-card);
    padding: 36px 28px;
    position: relative;
  }

  .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(255,215,0,0.08);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
  }

  .step h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ns-yellow);
    margin-bottom: 8px;
  }

  .step p { font-size: 13px; color: var(--ns-muted); line-height: 1.5; }

  .step-arrow {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--ns-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #000;
    font-weight: 900;
    z-index: 2;
  }

  /* ── REVIEWS ── */
  .reviews {
    padding: 80px 48px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .review-card {
    background: var(--ns-card);
    border: 1px solid var(--ns-border);
    padding: 28px;
    position: relative;
  }

  .review-card::before {
    content: '"';
    position: absolute;
    top: -10px; left: 20px;
    font-size: 60px;
    color: var(--ns-yellow);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.6;
  }

  .review-stars { color: var(--ns-yellow); font-size: 14px; margin-bottom: 12px; }
  .review-text { font-size: 13px; color: var(--ns-muted); line-height: 1.6; margin-bottom: 16px; }
  .review-author { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
  .review-date { font-size: 11px; color: var(--ns-muted); }

  /* ── FAQ ── */
  .faq {
    padding: 80px 48px;
    background: var(--ns-mid);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 48px;
  }

  .faq-item {
    background: var(--ns-card);
    padding: 28px;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: border-color 0.2s;
  }

  .faq-item:hover { border-left-color: var(--ns-yellow); }

  .faq-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-item h4::after {
    content: '+';
    color: var(--ns-yellow);
    font-size: 20px;
    flex-shrink: 0;
  }

  .faq-item p { font-size: 13px; color: var(--ns-muted); line-height: 1.6; }

  /* ── CTA BOTTOM ── */
  .cta-bottom {
    padding: 100px 48px;
    text-align: center;
    background: var(--ns-dark);
    position: relative;
    overflow: hidden;
  }

  .cta-bottom::before {
    content: 'NS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 400px;
    font-weight: 900;
    color: rgba(255,215,0,0.02);
    pointer-events: none;
    letter-spacing: -20px;
  }

  .cta-bottom h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
  }

  .cta-bottom h2 span { color: var(--ns-yellow); }

  .cta-bottom p { color: var(--ns-muted); font-size: 16px; margin-bottom: 40px; position: relative; }

  .btn-cta {
    display: inline-block;
    padding: 18px 48px;
    background: var(--ns-yellow);
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    position: relative;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    padding-left: 36px; padding-right: 36px;
  }

  .btn-cta:hover { background: #ffe94d; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: #060810;
    border-top: 1px solid var(--ns-border);
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--ns-yellow); letter-spacing: 2px; }
  .footer-logo span { color: #fff; }

  .footer-links { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; }
  .footer-links a { color: var(--ns-muted); font-size: 12px; text-decoration: none; transition: color 0.2s; letter-spacing: 1px; text-transform: uppercase; }
  .footer-links a:hover { color: var(--ns-yellow); }

  .footer-copy { color: var(--ns-muted); font-size: 11px; }

  /* ── REQUIREMENTS ── */
  .requirements {
    padding: 80px 48px;
  }

  .req-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    max-width: 700px;
  }

  .req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ns-text);
  }

  .req-dot {
    width: 8px; height: 8px;
    background: var(--ns-yellow);
    flex-shrink: 0;
    transform: rotate(45deg);
  }

  /* Additional CSS */
  .wpcf7-spinner {
      position: absolute;
      top: 24px;
  }

  .form-full p {
      position: relative;
  }

  .wpcf7 form .wpcf7-response-output {
      border-color: var(--ns-yellow);
      padding: 12px 20px;
      font-size: 14px;
      line-height: 1.4;
  }

  .wpcf7 .form-grid {
      grid-template-columns: 12fr;
  }

  .wpcf7 .form-grid > p {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
  }

  .wpcf7 p.form-full {
      grid-column: 1 / -1;
      display: block;
  }

  .wpcf7-not-valid-tip {
      font-size: 10px;
      margin-top: 6px;
  }

  [data-name="boa-user-email"] {
      grid-column: 1 / -1;
  }  

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-left > * {
    animation: fadeUp 0.6s ease both;
  }
  .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-left > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-left > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-left > *:nth-child(5) { animation-delay: 0.5s; }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 50vh; }
    .hero-left { padding: 120px 32px 60px; }
    .benefits-grid, .steps, .reviews-grid, .faq-grid { grid-template-columns: 1fr 1fr; }
    .why { grid-template-columns: 1fr; }
    .why-images { height: 320px; }
    .photo-strip { grid-template-columns: repeat(3, 1fr); }
    .site-header nav { padding: 16px 24px; }
    .benefits, .why, .process, .reviews, .faq, .requirements, .cta-bottom { padding: 60px 24px; }
  }

  @media (max-width: 640px) {
    .benefits-grid, .steps, .reviews-grid, .faq-grid, .form-grid { grid-template-columns: 1fr; }
    h1 { font-size: 44px; }
    .photo-strip { grid-template-columns: 1fr 1fr; }
    footer { flex-direction: column; align-items: flex-start; }
  }