:root{
  --bg: #F7FAFC;
  --surface: #FFFFFF;
  --ink: #0B1220;
  --muted: #4B5565;
  --line: rgba(15, 23, 42, 0.10);
  --brand: #0F4C81;
  --brand-2: #15A3B0;
  --accent: #F59E0B;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1120px;
  --logo-size: 52px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(21,163,176,0.18), transparent 60%),
    radial-gradient(900px 500px at 95% 0%, rgba(245,158,11,0.14), transparent 55%),
    linear-gradient(180deg, var(--bg), #FFFFFF 55%, var(--bg));
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  padding: .75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 999;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(247,250,252,0.70);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
  gap: 1rem;
}
.brand{
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 220px;
}
.logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 18px rgba(15,76,129,0.22);
}
.logo-img{
  width: var(--logo-size);
  height: var(--logo-size);
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 8px 18px rgba(2,6,23,0.10);
}
.footer .logo-img{
  width: 38px;
  height: 38px;
}
.brand h1{
  margin: 0;
  font-size: 1rem;
  letter-spacing: .2px;
}
.brand p{
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
}

.nav{
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  padding: .55rem .8rem;
  border-radius: 999px;
  color: rgba(11, 18, 32, 0.86);
}
.nav a[aria-current="page"]{
  background: rgba(21, 163, 176, 0.10);
  color: var(--brand);
  text-decoration: none;
}
.nav a:hover{
  background: rgba(15, 76, 129, 0.08);
  text-decoration: none;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(2,6,23,0.06);
  font-weight: 600;
}
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(15,76,129,0.25);
}
.btn-primary:hover{ filter: brightness(1.02); }
.btn-secondary:hover{ background: rgba(15, 76, 129, 0.06); }
.btn-ghost{
  background: rgba(255,255,255,0.92);
  color: rgba(11, 18, 32, 0.92);
}
.btn-ghost:hover{
  background: rgba(255,255,255,1);
}
.btn-success{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(15,76,129,0.25);
}
.btn-success:hover{ filter: brightness(1.02); }

.hero{
  padding: 3.2rem 0 2.4rem;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
}
.kicker{
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.75);
  color: rgba(11,18,32,0.78);
  font-size: .9rem;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(245,158,11,0.18);
}
.hero h2{
  margin: .9rem 0 .6rem;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.hero p{
  margin: 0 0 1.2rem;
  color: rgba(11,18,32,0.72);
  font-size: 1.05rem;
  max-width: 58ch;
}
.hero-actions{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust{
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.pill{
  padding: .85rem 1rem;
  border-radius: 999px;
  border:  1px solid var(--line);
  background: rgba(255,255,255,0.75);
  font-size: .95rem;
  color: rgba(11,18,32,0.74);
  text-align: center;
}

.hero-card{
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card .media{
  height: 280px;
  background:
    linear-gradient(135deg, rgba(15,76,129,0.08), rgba(21,163,176,0.12)),
    url("/assets/images/hero.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-card .media::after{
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
}
.hero-card .content{
  padding: 1.2rem 1.2rem 1.25rem;
}
.hero-card h3{
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}
.hero-card p{
  margin: 0;
  color: rgba(11,18,32,0.70);
}

.section{
  padding: 2.2rem 0;
}
.section h2{
  margin: 0 0 .5rem;
  letter-spacing: -0.02em;
}
.section p.lead{
  margin: 0 0 1.2rem;
  color: rgba(11,18,32,0.70);
  max-width: 75ch;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.card{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(2,6,23,0.06);
  padding: 1.2rem;
}
.card-media{
  width: 100%;
  height: 140px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  object-fit: cover;
  display: block;
  margin-bottom: .9rem;
}
.card h3{
  margin: 0 0 .35rem;
  letter-spacing: -0.01em;
}
.card p{
  margin: 0;
  color: rgba(11,18,32,0.72);
}
.icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(21, 163, 176, 0.12);
  border: 1px solid rgba(21, 163, 176, 0.22);
  color: var(--brand);
  margin-bottom: .8rem;
  font-weight: 800;
}
.icon.brand{ background: rgba(15, 76, 129, 0.10); border-color: rgba(15, 76, 129, 0.18); }
.icon.gold{ background: rgba(245, 158, 11, 0.14); border-color: rgba(245, 158, 11, 0.26); color: #8A4B00; }

.cta{
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: linear-gradient(135deg, rgba(15,76,129,0.10), rgba(21,163,176,0.12));
}
.cta p{ margin: 0; color: rgba(11,18,32,0.74); }

.page-hero{
  padding: 2.4rem 0 1.4rem;
}
.page-hero h2{
  margin: 0 0 .5rem;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  letter-spacing: -0.03em;
}
.page-hero p{
  margin: 0;
  color: rgba(11,18,32,0.72);
  max-width: 85ch;
}

form{
  display: grid;
  gap: .9rem;
  margin-top: 1rem;
}
label{
  display: grid;
  gap: .4rem;
  color: rgba(11,18,32,0.82);
  font-weight: 600;
}
input, textarea{
  width: 100%;
  padding: .85rem .9rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255,255,255,0.9);
  font: inherit;
  color: inherit;
}
textarea{ min-height: 140px; resize: vertical; }
input:focus, textarea:focus{
  outline: none;
  border-color: rgba(21,163,176,0.55);
  box-shadow: 0 0 0 4px rgba(21,163,176,0.18);
}
.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.hint{
  color: rgba(11,18,32,0.66);
  font-size: .95rem;
}
.notice{
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.75);
  color: rgba(11,18,32,0.72);
}
.success{
  border-color: rgba(21,163,176,0.35);
  background: rgba(21,163,176,0.08);
}
.error{
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.10);
}

.q-progress{
  display: grid;
  gap: .35rem;
}
.q-progress-bar{
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.q-progress-fill{
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 999px;
  transition: width 180ms ease;
}
.q-progress-text{
  font-size: .95rem;
  color: rgba(11,18,32,0.66);
}
.q-step{
  animation: qFade 140ms ease-out;
}
@keyframes qFade{
  from{ opacity: 0; transform: translateY(4px); }
  to{ opacity: 1; transform: translateY(0); }
}
.q-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: .25rem;
}
.q-actions button[disabled]{
  opacity: .55;
  pointer-events: none;
}
.q-choices{
  display: grid;
  gap: .55rem;
}
.q-choice{
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem .85rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255,255,255,0.85);
  font-weight: 650;
  color: rgba(11,18,32,0.82);
}
.q-choice input{
  width: 18px;
  height: 18px;
}

.footer{
  padding: 2.2rem 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(247,250,252,0.65);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: start;
}
.footer small{
  color: rgba(11,18,32,0.66);
}
.footer a{ color: rgba(11,18,32,0.76); }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
}

.team{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.profile{
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: .9rem;
  align-items: center;
}
.avatar{
  width: 96px;
  height: 96px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(2,6,23,0.10);
}
.profile h3{
  margin: 0 0 .15rem;
}
.profile .role{
  margin: 0 0 .35rem;
  color: rgba(11,18,32,0.62);
  font-size: .95rem;
  font-weight: 700;
}
.profile .bio{
  margin: 0;
  color: rgba(11,18,32,0.72);
}
.profile p{
  margin: 0;
  color: rgba(11,18,32,0.72);
}
@media (max-width: 900px){
  .team{ grid-template-columns: 1fr; }
}

