/* bq.php — static CSS (no Tailwind CDN) */
*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}
html{line-height:1.5;-webkit-text-size-adjust:100%}
body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;color:#1f2937}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:inherit}
ul{margin:0;padding:0;list-style:none}
h2,h3,p{margin:0}
nav{display:block}

:root{
  --aviation-blue:#1E5A8C;
  --aviation-light:#A7C7E7;
  --aviation-accent:#FF9500;
  --aviation-runway:#E8E8E8;
  --aviation-dark:#122E4B;
}

@keyframes planeFly{
  0%{transform:translateX(-100%) translateY(0)}
  100%{transform:translateX(100vw) translateY(-20%)}
}
@keyframes pulseSoft{
  0%,100%{opacity:1}
  50%{opacity:.7}
}

body{
  min-height:100vh;
  background-color:var(--aviation-runway);
  background-image:url('data:image/svg+xml,%3Csvg width="84" height="48" viewBox="0 0 84 48" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h12v6H0V0zm28 8h12v6H28V8zm14-8h12v6H42V0zm14 0h12v6H56V0zm0 8h12v6H56V8zM42 8h12v6H42V8zm0 16h12v6H42v-6zm14-8h12v6H56v-6zm14 0h12v6H70v-6zm0 16h12v6H70v-6zM28 32h12v6H28v-6zM14 16h12v6H14v-6zM0 24h12v6H0v-6zm0 8h12v6H0v-6zm14 0h12v6H14v-6zm14 8h12v6H28v-6zm-14 0h12v6H14v-6zm28 0h12v6H42v-6zm14-8h12v6H56v-6zm0-8h12v6H56v-6zm14 8h12v6H70v-6zm0 8h12v6H70v-6zM14 24h12v6H14v-6zm14-8h12v6H28v-6zM14 8h12v6H14V8zM0 8h12v6H0V8z" fill="%23A7C7E7" fill-opacity="0.1" fill-rule="evenodd"/%3E%3C/svg%3E');
}

.animate-plane-fly{animation:planeFly 20s linear infinite}
.animate-pulse-soft{animation:pulseSoft 4s cubic-bezier(.4,0,.6,1) infinite}

.aviation-card{
  background:#fff;border-radius:.75rem;
  box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);
  overflow:hidden;transition:all .3s;
  border:1px solid rgba(167,199,231,.3)
}
.section-title{color:var(--aviation-blue);font-weight:700;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:.01em;margin-bottom:1rem;display:flex;align-items:center}
.policy-section{margin-bottom:2.5rem;scroll-margin-top:7rem}
.policy-section:last-child{margin-bottom:0}
.policy-list>:not([hidden])~:not([hidden]){margin-top:.75rem}
.policy-list{color:#374151}
.policy-list li{display:flex;gap:.75rem;line-height:1.625}
.policy-list li::before{content:'';width:.375rem;height:.375rem;border-radius:9999px;background:var(--aviation-blue);margin-top:.625rem;flex-shrink:0}
.highlight-box{background:rgba(30,90,140,.05);border-left:4px solid var(--aviation-blue);padding:1.25rem;margin-top:1.25rem;margin-bottom:1.25rem;border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}
.cc-card{border-radius:.75rem;padding:1.25rem;border-width:1px;transition:all .3s}
.cc-card:hover{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}
.toc-link{display:block;padding:.5rem .75rem;border-radius:.5rem;font-size:.875rem;line-height:1.25rem;color:#4b5563;transition:color .15s,background-color .15s}
.toc-link:hover{background:rgba(30,90,140,.05);color:var(--aviation-blue)}
.toc-link.active{background:rgba(30,90,140,.1);color:var(--aviation-blue);font-weight:500}

.container{width:100%;margin-left:auto;margin-right:auto}
@media(min-width:640px){.container{max-width:640px}}
@media(min-width:768px){.container{max-width:768px}}
@media(min-width:1024px){.container{max-width:1024px}}
@media(min-width:1280px){.container{max-width:1280px}}

.fixed{position:fixed}
.absolute{position:absolute}
.relative{position:relative}
.inset-0{inset:0}
.top-10{top:2.5rem}
.top-20{top:5rem}
.bottom-5{bottom:1.25rem}
.left-0{left:0}
.left-10{left:2.5rem}
.right-20{right:5rem}
.z-0{z-index:0}
.z-10{z-index:10}
.pointer-events-none{pointer-events:none}
.opacity-10{opacity:.1}
.block{display:block}
.inline-flex{display:inline-flex}
.flex{display:flex}
.grid{display:grid}
.flex-1{flex:1 1 0%}
.flex-col{flex-direction:column}
.flex-wrap{flex-wrap:wrap}
.flex-shrink-0{flex-shrink:0}
.items-start{align-items:flex-start}
.items-center{align-items:center}
.justify-center{justify-content:center}
.gap-3{gap:.75rem}
.gap-4{gap:1rem}
.gap-8{gap:2rem}
.min-w-0{min-width:0}
.w-1\.5{width:.375rem}
.h-1\.5{height:.375rem}
.w-8{width:2rem}
.h-8{height:2rem}
.w-9{width:2.25rem}
.h-9{height:2.25rem}
.w-20{width:5rem}
.h-20{height:5rem}
.w-32{width:8rem}
.h-32{height:8rem}
.w-48{width:12rem}
.h-48{height:12rem}
.max-w-xl{max-width:36rem}
.max-w-3xl{max-width:48rem}
.max-w-5xl{max-width:64rem}
.mx-auto{margin-left:auto;margin-right:auto}
.mr-1{margin-right:.25rem}
.mr-2{margin-right:.5rem}
.mr-3{margin-right:.75rem}
.mt-1{margin-top:.25rem}
.mt-2\.5{margin-top:.625rem}
.mt-4{margin-top:1rem}
.mt-5{margin-top:1.25rem}
.mt-10{margin-top:2.5rem}
.mb-1{margin-bottom:.25rem}
.mb-3{margin-bottom:.75rem}
.mb-4{margin-bottom:1rem}
.mb-6{margin-bottom:1.5rem}
.p-4{padding:1rem}
.p-5{padding:1.25rem}
.p-6{padding:1.5rem}
.px-3{padding-left:.75rem;padding-right:.75rem}
.px-4{padding-left:1rem;padding-right:1rem}
.px-8{padding-left:2rem;padding-right:2rem}
.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}
.py-2{padding-top:.5rem;padding-bottom:.5rem}
.py-3{padding-top:.75rem;padding-bottom:.75rem}
.py-10{padding-top:2.5rem;padding-bottom:2.5rem}
.py-12{padding-top:3rem;padding-bottom:3rem}
.pt-6{padding-top:1.5rem}
.text-center{text-align:center}
.text-xs{font-size:.75rem;line-height:1rem}
.text-sm{font-size:.875rem;line-height:1.25rem}
.text-lg{font-size:1.125rem;line-height:1.75rem}
.text-xl{font-size:1.25rem;line-height:1.75rem}
.text-3xl{font-size:1.875rem;line-height:2.25rem}
.text-4xl{font-size:2.25rem;line-height:2.5rem}
.font-medium{font-weight:500}
.font-semibold{font-weight:600}
.font-bold{font-weight:700}
.font-roboto-condensed{font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:.01em}
.uppercase{text-transform:uppercase}
.tracking-wider{letter-spacing:.05em}
.leading-relaxed{line-height:1.625}
.drop-shadow-md{filter:drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06))}
.overflow-hidden{overflow:hidden}
.rounded-full{border-radius:9999px}
.rounded-lg{border-radius:.5rem}
.rounded-xl{border-radius:.75rem}
.rounded-2xl{border-radius:1rem}
.border{border-width:1px}
.border-t{border-top-width:1px}
.border-gray-100{border-color:#f3f4f6}
.border-gray-200{border-color:#e5e7eb}
.border-emerald-200{border-color:#a7f3d0}
.border-amber-200{border-color:#fde68a}
.border-red-200{border-color:#fecaca}
.border-white\/15{border-color:rgba(255,255,255,.15)}
.border-white\/20{border-color:rgba(255,255,255,.2)}
.border-aviation-blue{border-color:var(--aviation-blue)}
.blur-3xl{filter:blur(64px)}
.backdrop-blur{-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}
.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1)}
.transition-colors{transition:color .15s,background-color .15s,border-color .15s}

.text-white{color:#fff}
.text-white\/90{color:rgba(255,255,255,.9)}
.text-gray-400{color:#9ca3af}
.text-gray-500{color:#6b7280}
.text-gray-600{color:#4b5563}
.text-gray-700{color:#374151}
.text-emerald-600{color:#059669}
.text-emerald-800{color:#065f46}
.text-emerald-700\/80{color:rgba(4,120,87,.8)}
.text-amber-600{color:#d97706}
.text-amber-800{color:#92400e}
.text-amber-700\/80{color:rgba(180,83,9,.8)}
.text-red-600{color:#dc2626}
.text-red-800{color:#991b1b}
.text-aviation-blue{color:var(--aviation-blue)}
.text-aviation-dark{color:var(--aviation-dark)}
.text-aviation-accent{color:var(--aviation-accent)}

.bg-white{background-color:#fff}
.bg-white\/10{background-color:rgba(255,255,255,.1)}
.bg-white\/15{background-color:rgba(255,255,255,.15)}
.bg-gray-50{background-color:#f9fafb}
.bg-emerald-50{background-color:#ecfdf5}
.bg-emerald-100{background-color:#d1fae5}
.bg-amber-50{background-color:#fffbeb}
.bg-amber-100{background-color:#fef3c7}
.bg-red-50{background-color:#fef2f2}
.bg-red-100{background-color:#fee2e2}
.bg-aviation-blue{background-color:var(--aviation-blue)}
.bg-aviation-accent{background-color:var(--aviation-accent)}
.bg-aviation-blue\/5{background-color:rgba(30,90,140,.05)}
.bg-aviation-blue\/10{background-color:rgba(30,90,140,.1)}
.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}
.from-aviation-blue{--tw-gradient-from:#1E5A8C;--tw-gradient-to:rgba(30,90,140,0);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}
.via-aviation-dark{--tw-gradient-to:rgba(18,46,75,0);--tw-gradient-stops:var(--tw-gradient-from),#122E4B,var(--tw-gradient-to)}
.to-aviation-blue{--tw-gradient-to:#1E5A8C}

.hover\:bg-aviation-dark:hover{background-color:var(--aviation-dark)}
.hover\:bg-aviation-blue\/5:hover{background-color:rgba(30,90,140,.05)}
.hover\:text-aviation-dark:hover{color:var(--aviation-dark)}
.hover\:shadow-lg:hover{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1)}

@media(min-width:640px){
  .sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sm\:flex-row{flex-direction:row}
}
@media(min-width:768px){
  .md\:p-10{padding:2.5rem}
  .md\:py-14{padding-top:3.5rem;padding-bottom:3.5rem}
  .md\:py-16{padding-top:4rem;padding-bottom:4rem}
  .md\:text-2xl{font-size:1.5rem;line-height:2rem}
  .md\:text-4xl{font-size:2.25rem;line-height:2.5rem}
}
@media(min-width:1024px){
  .lg\:sticky{position:sticky}
  .lg\:top-24{top:6rem}
  .lg\:w-56{width:14rem}
  .lg\:flex-row{flex-direction:row}
}
