/* =========================
   AvionAssure Light Theme
   Tokens provided by you:
   BG: #CFE1E9 / #FFFFFF
   Text: #6FA4BE
   Accent: #3F86A8 (from earlier)
   Font: Aether (requires font file to truly match)
   ========================= */

/* OPTIONAL: Load Aether from local files if you add them */
@font-face{
  font-family: "Aether";
  src: url("./Aether.woff2") format("woff2"),
       url("./Aether.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #CFE1E9;
  --bg2: #FFFFFF;

  --text: #6FA4BE;
  --text-strong: #3F86A8;  /* use for headings */
  --border: rgba(63,134,168,0.18);

  --accent: #3F86A8;
  --accent-soft: rgba(63,134,168,0.12);

  --btn: #3F86A8;
  --btnText: #FFFFFF;

  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 12px;

  --shadow: 0 14px 34px rgba(21, 55, 74, 0.10);
}

*{
  box-sizing:border-box;
  font-family: "Aether", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

body{
  margin:0;
  background: transparent;
  color: var(--text);
}

.wrap{
  padding: 16px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

/* Light Avion panel background to blend into Wix */
.wrap::before{
  content:"";
  position:absolute;
  inset:-16px;
  border-radius: 26px;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(63,134,168,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  border: 1px solid rgba(63,134,168,0.14);
  z-index:-2;
}

.header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.logoMark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(16px 16px at 30% 28%, rgba(255,255,255,0.85), rgba(255,255,255,0) 62%),
    linear-gradient(135deg, rgba(63,134,168,1), rgba(63,134,168,0.65));
  border: 1px solid rgba(63,134,168,0.22);
  box-shadow: 0 10px 20px rgba(21, 55, 74, 0.10);
}

h1{
  font-size: 18px;
  margin:0;
  letter-spacing: 0.2px;
  color: var(--text-strong);
}

.sub{
  margin:6px 0 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.35;
}

.pill{
  border: 1px solid rgba(63,134,168,0.20);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-strong);
  font-size: 12px;
  background: rgba(255,255,255,0.65);
}

.card{
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(63,134,168,0.18);
  border-radius: var(--radius-xl);
  padding: 14px;
  box-shadow: var(--shadow);
}

.grid{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size: 12px;
  color: var(--text);
}

input, select{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(63,134,168,0.20);
  color: #2B6D8F;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  outline:none;
}

input:focus, select:focus{
  border-color: rgba(63,134,168,0.45);
  box-shadow: 0 0 0 3px rgba(63,134,168,0.10);
}

.addons{ grid-column: span 2; }

.checks{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.check{
  display:flex;
  align-items:center;
  gap: 6px;
  color: #2B6D8F;
  font-size: 12.5px;
  padding: 6px 10px;
  border: 1px solid rgba(63,134,168,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
}

.actions{
  grid-column: span 2;
  display:flex;
  flex-direction:column;
  gap:8px;
  justify-content:flex-end;
}

button{
  width:100%;
  border:0;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  font-weight: 800;
  cursor:pointer;
  background: var(--btn);
  color: var(--btnText);
  box-shadow: 0 12px 20px rgba(21, 55, 74, 0.14);
}

button:hover{
  filter: brightness(0.98);
}

.status{
  min-height: 16px;
  font-size: 12px;
  color: var(--text);
}

.results{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}

.quote{
  border: 1px solid rgba(63,134,168,0.18);
  border-radius: var(--radius-xl);
  padding: 14px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
}

.qtop{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}

.qname{
  font-weight: 900;
  letter-spacing: 0.15px;
  color: var(--text-strong);
}

.qmeta{
  color: var(--text);
  font-size: 12px;
  margin-top: 6px;
}

.price{
  font-size: 18px;
  font-weight: 950;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(63,134,168,0.22);
  color: var(--text-strong);
  background: rgba(207,225,233,0.70);
}

.badges{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.badge{
  border: 1px solid rgba(63,134,168,0.18);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  color: #2B6D8F;
  background: rgba(207,225,233,0.45);
}

.benefits{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.ben{
  border-top: 1px dashed rgba(63,134,168,0.18);
  padding-top: 8px;
  font-size: 12px;
  color: var(--text);
}

.ben strong{
  color: var(--text-strong);
  font-weight: 900;
}

.buyrow{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
  align-items:center;
}

.buyrow a{
  text-decoration:none;
  color: var(--btnText);
  background: var(--btn);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-weight: 900;
  display:inline-block;
}

.buyrow .small{
  color: var(--text);
  font-size: 12px;
}

.foot{
  margin-top: 10px;
  color: var(--text);
  font-size: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(63,134,168,0.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.65);
}

@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .addons, .actions{ grid-column: span 2; }
  .benefits{ grid-template-columns: 1fr; }
}
