/* =========================
   PAGE WRAPPER
========================= */
.home-wrap {
    background: #031747;
    color: #ffffff;
  }
  
  /* =========================
     HERO
  ========================= */
  .home-hero {
    background-color: #031747;
    padding: 4.5rem 0 3.5rem 0;
  }
  
  /* Layout: text left, image right */
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
  }
  
  /* Logo + title */
  .hero-title-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .hero-logo {
    width: 72px;
    height: auto;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
  }
  
  .hero-title {
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  /* Subtitle – IMPORTANT: not centered */
  .hero-subtitle {
    color: rgba(255,255,255,.85);
    max-width: 520px;
    margin: 0;
  }
  
  /* =========================
     HERO IMAGE PANEL
  ========================= */
  .hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(181,226,255,.18);
    background: rgba(255,255,255,.06);
    box-shadow: 0 18px 50px rgba(0,0,0,.22);
  
    min-height: 360px;
  }
  
  /* Decorative glow */
  .hero-visual::before,
  .hero-visual::after {
    content: "";
    position: absolute;
    inset: -40%;
    background:
      radial-gradient(circle at 30% 30%, rgba(181,226,255,.20), transparent 55%),
      radial-gradient(circle at 70% 70%, rgba(106,197,254,.18), transparent 55%);
    filter: blur(20px);
    opacity: .9;
    animation: glowFloat 8s ease-in-out infinite;
    pointer-events: none;
  }
  
  .hero-visual::after {
    animation-duration: 10s;
    animation-direction: reverse;
    opacity: .65;
  }
  
  @keyframes glowFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(10px,-10px) scale(1.03); }
  }
  
  /* Hero image */
  .hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Overlay */
  .hero-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      120deg,
      rgba(3,23,71,.78) 0%,
      rgba(3,23,71,.15) 45%,
      rgba(3,23,71,.65) 100%
    );
  }
  
  /* Info chips */
  .hero-chips {
    position: absolute;
    z-index: 3;
    left: 16px;
    bottom: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .hero-chip {
    padding: .4rem .7rem;
    border-radius: 999px;
    background: rgba(3,23,71,.55);
    border: 1px solid rgba(181,226,255,.22);
    color: #b5e2ff;
    font-weight: 600;
    font-size: .95rem;
    backdrop-filter: blur(8px);
  }
  
  /* =========================
     CARDS
  ========================= */
  .soft-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(181,226,255,.18);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(0,0,0,.18);
  }
  
  .soft-card p,
  .soft-card li {
    color: rgba(255,255,255,.86);
  }
  
  .accent {
    color: #b5e2ff;
  }
  
  /* =========================
     BUTTONS
  ========================= */
  .cta-btn {
    background-color: #062b7a;
    border: none;
    color: #ffffff !important;
  }
  
  .cta-btn:hover {
    background-color: #0a3c9e;
  }
  
  .cta-outline {
    background: transparent;
    border: 1px solid rgba(181,226,255,.55);
    color: #b5e2ff !important;
  }
  
  .cta-outline:hover {
    background: rgba(181,226,255,.12);
    border-color: rgba(181,226,255,.8);
  }
  
  /* =========================
     TEXT
  ========================= */
  .fineprint {
    color: rgba(255,255,255,.72);
    font-size: .95rem;
  }
  
  /* =========================
     REVEAL ANIMATIONS
  ========================= */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s ease, transform .7s ease;
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
  
  /* =========================
     TESTIMONIALS
  ========================= */
  .quote {
    position: relative;
    padding-left: 1.25rem;
  }
  
  .quote::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -0.2rem;
    font-size: 2rem;
    color: rgba(181,226,255,.7);
  }
  
  /* =========================
     FAQ ACCORDION
  ========================= */
  .accordion-item {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(181,226,255,.18);
    border-radius: 14px !important;
  }
  
  .accordion-button {
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }
  
  .accordion-button:not(.collapsed) {
    color: #b5e2ff !important;
  }
  
  .accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(181,226,255,.35) !important;
  }
  
  .accordion-body {
    color: rgba(255,255,255,.86);
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  @media (max-width: 991.98px) {
    .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-left {
      text-align: center;
    }
  
    .hero-title-wrap {
      justify-content: center;
    }
  
    .hero-subtitle {
      margin-inline: auto;
    }
  
    .hero-visual {
      min-height: 280px;
    }
  }
  