/* =========================
   PCA Global Ventures – M&A Landing Page
   Single Clean Stylesheet (Inter + Official Palette)
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --navy:#002A5C;
  --blue:#086CC1;
  --grey:#848484;
  --light:#EFF6FF;
  --white:#FFFFFF;

  --border: rgba(0,42,92,.12);
  --shadow: 0 10px 28px rgba(0,42,92,.10);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body{
  background: var(--light);
  color: var(--navy);
  line-height: 1.6;
}

.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   Header
   ========================= */
.header{
  background: var(--white);
  border-bottom: 1px solid rgba(0,42,92,.10);
  padding: 18px 0;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.logo{
  display:flex;
  align-items:center;
  gap: 12px;
}

.logo-icon{
  width: 56px;
  display:flex;
  align-items:center;
}

.logo-icon img{
  width:100%;
  height:auto;
  display:block;
}

.logo-text{
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.coming-soon{
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

/* =========================
   Hero (Light Blue section)
   ========================= */
.hero{
  background: var(--light);
  padding: 52px 0 56px;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items:center;
}

.kicker{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title{
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.hero-desc{
  max-width: 420px;
  font-size: 14px;
  color: rgba(0,42,92,.70);
}

/* =========================
   Form Card (Right side)
   ========================= */
.form-card{
  width: min(420px, 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 18px 14px;
  box-shadow: var(--shadow);
  margin-left: auto;
}

/* Make every form group spacing identical */
.form-group{
  margin-bottom: 14px;
}

/* Labels consistent */
.form-label{
  display:block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,42,92,.70);
  line-height: 1.2;
}

.optional{
  color: var(--grey);
  font-weight: 500;
}

/* Normalize inputs so they don’t look uneven */
.form-input{
  box-sizing: border-box;
  display:block;
  width:100%;
  height: 42px;            /* KEY: uniform height */
  padding: 10px 12px;      /* uniform padding */
  border-radius: 6px;
  border: 1px solid rgba(0,42,92,.14);
  background: #fff;

  font-size: 13px;
  font-weight: 400;
  line-height: 20px;       /* KEY: prevents “jumping” */
  color: var(--navy);

  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder{
  color: rgba(132,132,132,.9);
}

.form-input:focus{
  outline:none;
  border-color: rgba(8,108,193,.55);
  box-shadow: 0 0 0 3px rgba(8,108,193,.12);
}

.submit-btn{
  width:100%;
  height: 42px;            /* match input height */
  border:none;
  border-radius: 6px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 12px;
  color:#fff;
  background: var(--blue);
  cursor:pointer;
}

.submit-btn:hover{
  filter: brightness(0.97);
}

/* Success message */
.success-message{
  display:none;
  margin-top: 12px;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(8,108,193,.10);
  color: var(--navy);
  border: 1px solid rgba(8,108,193,.25);
}
.success-message.show{ display:block; }

/* =========================
   Navy Band
   ========================= */
.navy-band{
  background: var(--navy);
  color: rgba(255,255,255,.88);
  padding: 26px 0;
  text-align:center;
}

.navy-band p{
  max-width: 860px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.65;
}

/* =========================
   Thank You + Features
   ========================= */
.thankyou{
  background: #fff;
  padding: 54px 0 60px;
  text-align:center;
}

.thank-title{
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.thank-sub{
  font-size: 12.5px;
  color: rgba(0,42,92,.70);
  margin-bottom: 30px;
}

/* Feature cards */
.features{
  display:flex;
  justify-content:center;
  gap: 22px;
  flex-wrap: wrap;
}

.feature{
  width: 260px;
  min-height: 118px;
  padding: 16px 16px 14px;
  border-radius: 3px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-align: center;
}

.feature-navy{ background: var(--navy); }
.feature-blue{ background: var(--blue); }

.feature-icon{
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: none !important;
}

.feature-text{
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
  margin: 0;
}

/* =========================
   Footer
   ========================= */
.footer{
  background-color: var(--navy);
  background-image: url(/assets/images/footerbackground.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  padding: 44px 0 22px;
}

.footer-content{
  display:flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 22px;
}

.footer-section{
  flex: 1;
  min-width: 220px;
}

.footer-section h3{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info p{
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 10px;
}

.locations{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-tag{
  background: rgba(255,255,255,.12);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.92);
}

.copyright{
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 16px;
  text-align:center;
  font-size: 14px;
  color: rgba(255,255,255,.72);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px){
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .form-card{
    margin-left: 0;
  }
}
/* FOOTER BRAND (logo + address) */
.footer-brand {
  max-width: 260px;
}

.footer-logo {
  width: 64px;
  height: auto;
  margin-bottom: 14px;
  display: block;
}

.footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}

/* Footer links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.footer-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255,255,255,.22);
}

/* Footer layout spacing */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

/* Mobile stacking */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 28px;
  }
}
/* GF Confirmation styling for M&A landing */
.ma-confirm{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 28px 26px;
  max-width: 520px;
  margin: 18px auto;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.ma-confirm__icon{
  width: 84px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}

.ma-confirm__title{
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
  color: #003366;
  font-weight: 800;
}

.ma-confirm__text{
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #334155;
}

.ma-confirm__close{
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  color: #64748b;
}

.ma-confirm__close:hover{ color:#0b2e5f; }

