  :root {
    /* Theme tokens — matched to jamaica-landing.css */
    --jlp-bg: #eef1fa;
    --jlp-shell: #f9fbff;
    --jlp-card: #ffffff;
    --jlp-ink: #1f2533;
    --jlp-muted: #666f85;
    --jlp-line: #e3e8f6;
    --jlp-blue: #1f4fff;
    --jlp-blue-dark: #1f3fb8;
    --jlp-blue-darker: #2142c7;
    --jlp-soft: #f2f5ff;
    --jlp-accent-bg: #eaf0ff;
    --jlp-accent-border: #d8e2ff;
    --jlp-accent-text: #2641b6;
    --jlp-good: #1f9a5f;
    --jlp-bad: #d34b54;
    --jlp-ghost-border: #ccd7f5;
    --jlp-ghost-text: #2e4abf;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: linear-gradient(180deg, #f3f6fd 0%, var(--jlp-bg) 100%);
    color: var(--jlp-ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* === NAVIGATION === */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(249, 251, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--jlp-line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    color: var(--jlp-ink);
    text-decoration: none;
    letter-spacing: -0.01em;
  }
  .logo-highlight {
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--jlp-blue-dark);
    font-weight: 800;
  }
  .logo-title {
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--jlp-ink);
    font-weight: 800;
  }
  .logo-separator {
    margin: 0;
    color: var(--jlp-blue-dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
  }
  .logo-mark {
    width: 18px;
    height: 22px;
    border-radius: 5px;
    background: linear-gradient(165deg, #4c7bff 0%, #2760ff 64%, #1d42cf 100%);
    transform: skewY(-14deg);
    box-shadow: inset -6px 0 0 rgba(255, 255, 255, 0.22);
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-links a {
    color: var(--jlp-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--jlp-blue-dark); }
  .cta-btn {
    background: var(--jlp-blue-dark);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .cta-btn:hover {
    background: var(--jlp-blue);
    transform: translateY(-1px);
  }
  .cta-btn-large {
    padding: 14px 26px;
    font-size: 15px;
  }
  .cta-secondary {
    background: #fff;
    color: var(--jlp-ghost-text);
    border: 1px solid var(--jlp-ghost-border);
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .cta-secondary:hover {
    background: var(--jlp-soft);
    border-color: var(--jlp-blue-dark);
  }

  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--jlp-ink);
  }

  /* === HERO === */
  .hero {
    padding: 56px 0 62px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--jlp-accent-bg) 0%, transparent 60%);
    opacity: 0.7;
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--jlp-accent-bg);
    color: var(--jlp-accent-text);
    border: 1px solid var(--jlp-accent-border);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--jlp-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  h1.hero-title {
    font-weight: 800;
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--jlp-ink);
    margin-bottom: 22px;
  }
  h1.hero-title .accent {
    color: var(--jlp-blue);
  }
  .hero-sub {
    font-size: 18px;
    color: var(--jlp-muted);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.55;
  }
  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }
  .trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--jlp-muted);
  }
  .trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .check {
    color: var(--jlp-good);
    font-weight: 800;
  }

  /* === HERO VISUAL === */
  .hero-visual {
    position: relative;
  }
  .calc-card {
    background: var(--jlp-card);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--jlp-line);
    box-shadow:
      0 4px 6px -1px rgba(28, 42, 92, 0.05),
      0 20px 40px -12px rgba(28, 42, 92, 0.18);
    transform: rotate(-1.5deg);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
  }
  .calc-card:hover { transform: rotate(0deg) scale(1.02); }
  .calc-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--jlp-line);
  }
  .calc-card-head h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--jlp-ink);
  }
  .calc-card-tag {
    font-size: 11px;
    color: var(--jlp-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
  .calc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
  }
  .calc-row.muted { color: var(--jlp-muted); }
  .calc-row.deduct { color: var(--jlp-bad); }
  .calc-row.total {
    border-top: 1px solid var(--jlp-line);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 20px;
    font-weight: 800;
    color: var(--jlp-good);
  }
  .floating-stat {
    position: absolute;
    background: var(--jlp-blue-dark);
    color: #fff;
    padding: 16px 22px;
    border-radius: 14px;
    transform: rotate(3deg);
    z-index: 3;
    box-shadow: 0 10px 30px -10px rgba(31, 63, 184, 0.5);
  }
  .floating-stat-1 {
    top: -20px;
    right: -10px;
  }
  .floating-stat-2 {
    bottom: -50px;
    left: -10px;
    background: #fff;
    color: var(--jlp-blue-dark);
    transform: rotate(-4deg);
    border: 1px solid var(--jlp-line);
  }
  .floating-stat .label {
    font-size: 11px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
    font-weight: 700;
  }
  .floating-stat-2 .label { color: var(--jlp-muted); opacity: 1; }
  .floating-stat .value {
    font-size: 20px;
    font-weight: 800;
  }

  /* === SECTION HEADERS === */
  section { padding: 56px 0; }
  section.legal-hero { padding: 2.5rem 0; }
  .section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--jlp-blue-dark);
    font-weight: 800;
    margin-bottom: 14px;
  }
  h2.section-title {
    font-weight: 800;
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--jlp-ink);
    margin-bottom: 14px;
    max-width: 700px;
  }
  h2.section-title .accent {
    color: var(--jlp-blue);
  }
  .section-sub {
    font-size: 17px;
    color: var(--jlp-muted);
    max-width: 580px;
    margin-bottom: 52px;
    line-height: 1.55;
  }

  /* === PROBLEM SECTION === */
  .problem {
    background: var(--jlp-soft);
    padding-top: 42px;
    padding-bottom: 42px;
  }

  #features {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .problem-card {
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--jlp-line);
    box-shadow: 0 8px 20px rgba(28, 42, 92, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(28, 42, 92, 0.1);
  }
  .problem-num {
    font-weight: 800;
    font-size: 32px;
    color: var(--jlp-blue);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .problem-card h3 {
    font-weight: 700;
    font-size: 19px;
    color: var(--jlp-ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .problem-card p {
    color: var(--jlp-muted);
    font-size: 15px;
    line-height: 1.6;
  }

  /* === FEATURES === */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .feature {
    background: #fff;
    border: 1px solid var(--jlp-line);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 20px rgba(28, 42, 92, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(28, 42, 92, 0.08);
  }
  .feature-icon {
    width: 44px;
    height: 44px;
    background: var(--jlp-accent-bg);
    border: 1px solid var(--jlp-accent-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--jlp-blue-dark);
  }
  .feature h3 {
    font-weight: 700;
    font-size: 18px;
    color: var(--jlp-ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .feature p {
    color: var(--jlp-muted);
    font-size: 14px;
    line-height: 1.6;
  }

  /* === HOW IT WORKS === */
  .how {
    background: linear-gradient(135deg, var(--jlp-blue) 0%, #3b63ff 100%);
    color: #fff;
  }
  .how .section-label { color: #dde6ff; }
  .how h2.section-title { color: #fff; }
  .how h2.section-title .accent { color: #fff; opacity: 0.7; }
  .how .section-sub { color: #dde6ff; }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  }
  .step {
    position: relative;
  }
  .step-num {
    width: 56px;
    height: 56px;
    background: #fff;
    color: var(--jlp-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }
  .step h3 {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .step p {
    color: #dde6ff;
    font-size: 15px;
    line-height: 1.6;
  }

  /* === AUDIENCE === */
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .audience-card {
    text-align: left;
    padding: 24px;
    border: 1px solid var(--jlp-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(28, 42, 92, 0.04);
    transition: transform 0.3s, border-color 0.3s;
  }
  .audience-card:hover {
    transform: translateY(-4px);
    border-color: var(--jlp-blue);
  }
  .audience-icon {
    color: var(--jlp-blue-dark);
    margin-bottom: 14px;
  }
  .audience-card h4 {
    font-weight: 700;
    font-size: 17px;
    color: var(--jlp-ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .audience-card p {
    font-size: 13px;
    color: var(--jlp-muted);
  }

  /* === SAMPLE OUTPUT === */
  .sample {
    background: #f4f7ff;
  }
  .sample-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 24px;
    align-items: center;
  }
  .sample-payslip {
    background: #fff;
    border-radius: 20px;
    padding: 8px;
    border: 1px solid var(--jlp-line);
    box-shadow: 0 20px 40px -12px rgba(28, 42, 92, 0.12);
  }
  .sample-payslip img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
  }

  .sample-sub {
    margin-bottom: 28px;
  }
  .payslip-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--jlp-line);
  }
  .payslip-head h4 {
    font-weight: 700;
    font-size: 17px;
    color: var(--jlp-ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }
  .payslip-head p {
    font-size: 12px;
    color: var(--jlp-muted);
    font-weight: 600;
  }
  .payslip-stamp {
    background: var(--jlp-accent-bg);
    color: var(--jlp-accent-text);
    border: 1px solid var(--jlp-accent-border);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(3deg);
  }
  .payslip-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
  }
  .payslip-line.head {
    color: var(--jlp-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 10px;
    margin-bottom: 4px;
    font-weight: 700;
  }
  .payslip-line .neg { color: var(--jlp-bad); }
  .payslip-line.net {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 2px solid var(--jlp-ink);
    font-size: 20px;
    font-weight: 800;
    color: var(--jlp-good);
  }

  /* === FAQ === */
  .faq-list {
    max-width: 760px;
    margin: 0 auto;
  }
  details {
    border-bottom: 1px solid var(--jlp-line);
    padding: 22px 0;
    cursor: pointer;
  }
  details:first-child { border-top: 1px solid var(--jlp-line); }
  summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 17px;
    color: var(--jlp-ink);
    letter-spacing: -0.01em;
  }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: '+';
    font-size: 24px;
    color: var(--jlp-blue);
    transition: transform 0.3s;
    font-weight: 400;
  }
  details[open] summary::after {
    transform: rotate(45deg);
  }
  details p {
    margin-top: 12px;
    color: var(--jlp-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 640px;
  }

  .faq-title {
    margin: 0 auto 14px;
  }

  .faq-sub {
    margin: 0 auto 52px;
  }

  /* === FINAL CTA === */
  .final-cta-wrap {
    padding-top: 0;
  }

  .final-cta {
    background: linear-gradient(135deg, var(--jlp-blue) 0%, #3b63ff 100%);
    color: #fff;
    text-align: center;
    border-radius: 28px;
    padding: 72px 32px;
    margin: 18px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(31, 63, 184, 0.25);
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fff 0%, transparent 60%);
    opacity: 0.12;
  }
  .final-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fff 0%, transparent 60%);
    opacity: 0.12;
  }
  .final-cta h2 {
    font-weight: 800;
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    position: relative;
    color: #fff;
  }

  .final-cta-emphasis {
    opacity: 0.85;
  }
  .final-cta p {
    font-size: 17px;
    color: #dde6ff;
    margin-bottom: 32px;
    position: relative;
  }
  .final-cta .cta-btn {
    background: #fff;
    color: var(--jlp-blue-darker) !important;
    position: relative;
  }
  .final-cta .cta-btn:hover {
    background: var(--jlp-accent-bg);
  }

  /* === FOOTER === */
  footer {
    padding: 56px 0 36px;
    border-top: 1px solid var(--jlp-line);
    background: var(--jlp-shell);
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
  }
  .footer-brand p {
    color: var(--jlp-muted);
    font-size: 14px;
    margin-top: 14px;
    max-width: 320px;
    line-height: 1.6;
  }
  .footer-col h5 {
    font-weight: 700;
    font-size: 14px;
    color: var(--jlp-ink);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .footer-col a {
    display: block;
    color: var(--jlp-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 0;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--jlp-blue-dark); }
  .footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--jlp-line);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 13px;
    color: var(--jlp-muted);
    gap: 12px;
  }
  .footer-estimates {
    text-align: left;
  }
  .footer-copyright {
    text-align: center;
  }
  .footer-updated {
    text-align: right;
  }

  /* === RESPONSIVE === */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--jlp-shell);
      flex-direction: column;
      padding: 20px 32px;
      gap: 18px;
      border-bottom: 1px solid var(--jlp-line);
      box-shadow: 0 8px 20px rgba(28, 42, 92, 0.05);
    }
    .mobile-toggle { display: block; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero { padding: 44px 0 52px; }
    .problem-grid, .features-grid, .steps, .audience-grid, .sample-grid {
      grid-template-columns: 1fr !important;
    }
    .steps::before { display: none; }
    section { padding: 44px 0; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-bottom {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-estimates,
    .footer-copyright,
    .footer-updated {
      text-align: center;
    }
    .container { padding: 0 20px; }
  }
  @media (max-width: 500px) {
    .footer-inner { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { width: 100%; justify-content: center; }
    .floating-stat-1, .floating-stat-2 { display: none; }
    .final-cta { padding: 56px 24px; border-radius: 20px; }
  }

/* LEGAL PAGES - NEW DESIGN */
.legal-hero {
  background: linear-gradient(135deg, var(--jlp-blue) 0%, #3b63ff 100%);
  padding: 2.5rem 0;
  text-align: center;
}

.legal-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  margin: 0;
}

.legal-content {
  background: #fff;
  padding: 4rem 0 1rem;
}

.legal-content-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.legal-updated-new {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-intro {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.legal-section-new {
  margin-bottom: 3rem;
  padding: 0;
}

.legal-heading-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
}

.legal-text-new {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-list-new {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #4b5563;
  line-height: 1.7;
}

.legal-list-new li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.legal-notice {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  color: #78350f;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 3rem 1rem;
  }
  
  .legal-hero-title {
    font-size: 2rem;
  }
  
  .legal-content {
    padding: 2.5rem 0 4rem;
  }
  
  .legal-heading-new {
    font-size: 1.25rem;
  }
}

/* BLOG COMING SOON */
.blog-content {
  background: #fff;
  padding: 0 0 4rem;
}

.blog-coming-soon {
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.coming-soon-icon {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto 3rem;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.coming-soon-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
  font-family: "Manrope", sans-serif;
}

.coming-soon-text {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.coming-soon-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--jlp-blue-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}

.coming-soon-cta:hover {
  background: var(--jlp-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 79, 255, 0.3);
}

@media (max-width: 768px) {
  .blog-coming-soon {
    padding: 0;
  }
  
  .coming-soon-icon {
    max-width: 500px;
  }
  
  .coming-soon-title {
    font-size: 2rem;
  }
  
  .coming-soon-text {
    font-size: 1rem;
  }
}

/* CONTACT PAGE */
.contact-content {
  background: #fff;
  padding: 4rem 0 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* LEFT SIDE - INFO */
.contact-info {
  padding-right: 2rem;
}

.contact-info-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 1.5rem;
  font-family: "Manrope", sans-serif;
}

.contact-info-text {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-info-items {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.contact-info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-info-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2332;
  margin-bottom: 0.25rem;
}

.contact-info-item-text {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* RIGHT SIDE - FORM */
.contact-form-container {
  background: #f9fafb;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.success-message {
  background: #d1fae5;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-weight: 600;
  border: 1px solid #6ee7b7;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
  transition: all 0.2s;
  background: #fff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--jlp-blue);
  box-shadow: 0 0 0 3px rgba(31, 79, 255, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--jlp-blue-dark);
  color: #fff;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Manrope", sans-serif;
}

.form-submit:hover {
  background: var(--jlp-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 79, 255, 0.3);
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-content {
    padding: 2.5rem 0 4rem;
  }
  
  .contact-info-title {
    font-size: 1.75rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}
