/* /css/style.css */
:root{
  --bg: #0D1D23;
  --bg-2:#08171D;
  --card:#19333D;
  --text:#EAF0FF;
  --muted:#A7BDC6;

  --primary:#10AD77;
  --primary-2:#0E9C6C;
  --accent:#FFAF15;
  --danger:#FF4D4D;

  --border: rgba(255,255,255,.10);
  --shadow: 0 12px 30px rgba(0,0,0,.35);

  --radius: 18px;
  --radius-2: 24px;
  --maxw: 1120px;
}

*{ 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(--text);
  background:
    radial-gradient(900px 500px at 18% 0%, rgba(16,173,119,.14), transparent 70%),
    radial-gradient(800px 520px at 92% 10%, rgba(255,175,21,.10), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height:1.55;
  background-repeat: no-repeat;
  background-size: 1200px 650px, 1500px 650px, 100% 100%;
  background-attachment: fixed;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }
img{ max-width:100%; height:auto; }

.container{
  width:100%;
  max-width:var(--maxw);
  padding:0 18px;
  margin:0 auto;
}

.skip{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:18px; top:18px; width:auto; height:auto;
  padding:10px 12px; border-radius:12px;
  background:var(--card); border:1px solid var(--border);
  z-index:9999;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(120%) blur(10px);
  background: rgba(8,23,29,.80);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}

/* Image logo */
.logo-img{ height:40px; width:auto; display:block; }
.footer-logo{ height:36px; }

/* Desktop nav + actions */
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}

.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  padding:8px 10px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,.04);
}
.nav a.active{
  color:var(--text);
  border-color: rgba(16,173,119,.28);
  background: rgba(16,173,119,.10);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex: 0 0 auto;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
}
.btn-primary{
  background: linear-gradient(135deg, var(--accent), #FFC24D);
  color:#1A1400;
  box-shadow: 0 14px 35px rgba(255,175,21,.18);
}
.btn-primary:hover{ transform: translateY(-1px); }
.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(255,255,255,.06); }

/* Smaller buttons for header */
.btn-sm{
  padding:10px 12px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1;
}

.hero{ padding:38px 0 18px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  align-items:stretch;
}

/* Cards */
.card{
  background: rgba(25,51,61,.80);
  border:1px solid var(--border);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow);
}
.card-pad{ padding:18px; }

.kicker{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(16,173,119,.30);
  background: rgba(16,173,119,.10);
  color: var(--text);
  font-weight:800;
  font-size: 13px;
}
.kicker b{ color:var(--accent); }

h1{
  font-size: 40px;
  line-height:1.08;
  margin:14px 0 10px;
}
p{ margin: 10px 0; color: var(--muted); }

.hero-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.hero-note{
  margin-top: 12px;
  padding:12px 14px;
  border-radius: 16px;
  border:1px dashed rgba(255,255,255,.16);
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  padding: 14px 0 26px;
}
.col-6{ grid-column: span 6; }
.col-4{ grid-column: span 4; }
.col-8{ grid-column: span 8; }
.col-12{ grid-column: span 12; }

.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:10px;
  margin: 2px 0 10px;
}
.section-title h2{
  margin:0;
  font-size: 22px;
  letter-spacing: .2px;
}
.section-title .meta{
  color: var(--muted);
  font-size: 14px;
}

h2{ margin: 0 0 10px; }
h3{ margin: 16px 0 8px; font-size: 16px; }
h4{ margin: 12px 0 6px; font-size: 14px; color: var(--text); opacity:.95; }

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 8px 0; }

/* Badges */
.badges{
  display:flex; flex-wrap:wrap; gap:8px; margin-top: 10px;
}
.badge{
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}
.badge.primary{
  border-color: rgba(16,173,119,.30);
  background: rgba(16,173,119,.10);
  color: var(--text);
}

/* Tables */
.table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius: 16px;
}
.table th, .table td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  color: var(--muted);
}
.table th{
  color: var(--text);
  background: rgba(255,255,255,.03);
  font-size: 13px;
  letter-spacing:.2px;
}
.table tr:last-child td{ border-bottom:none; }

/* Callout */
.callout{
  padding:14px 14px;
  border-radius: 18px;
  border:1px solid rgba(16,173,119,.28);
  background: rgba(16,173,119,.10);
  color: var(--muted);
}
.callout b{ color: var(--text); }

/* Footer */
.footer{
  padding: 28px 0 40px;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.10);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.small{ font-size: 13px; color: var(--muted); }
hr.sep{
  border:none; border-top:1px solid var(--border);
  margin: 14px 0;
}

/* ===== Responsive ===== */

/* Tablets/phones: stack content cards */
@media (max-width: 900px){
  .col-6,.col-4,.col-8{ grid-column: span 12; }
  h1{ font-size: 34px; }
  .footer-grid{ grid-template-columns: 1fr; }
}

/* Phones: single-column hero */
@media (max-width: 600px){
  .hero-grid{ grid-template-columns: 1fr; }
}

/* Phones: header becomes stacked, menu scrolls, buttons full width (MOBILE ONLY) */
@media (max-width: 600px){
  .header-inner{
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    gap:10px;
    padding:12px 0;
  }

  .brand{
    width:100%;
    display:flex;
    justify-content:center;
  }

  .nav-wrap{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:stretch;
  }

  .nav{
    width:100%;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling: touch;
    gap:8px;
    padding-bottom:6px;
    justify-content:flex-start;
  }

  .nav a{
    white-space:nowrap;
    flex:0 0 auto;
  }

  .nav-actions{
    width:100%;
    display:flex;
    gap:10px;
  }

  .nav-actions .btn{
    flex:1 1 0;
    text-align:center;
    white-space:nowrap;
  }

  .btn-sm{ padding:10px 10px; }
}

/* Very small phones */
@media (max-width: 480px){
  .logo-img{ height:34px; }
  h1{ font-size: 30px; line-height: 1.15; }
}
/* FAQ question button */
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  text-align: left;

  color: #ffffff;
  font-size: 16px;
  font-weight: 500;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;
}

/* Hover / focus */
.faq-q:hover {
  color: #45f2af; /* your accent green */
}

.faq-q:focus {
  outline: none;
}

/* Plus / minus icon */
.faq-ic {
  font-size: 20px;
  font-weight: 600;
  color: #45f2af;
  margin-left: 12px;
}

/* Answer block */
.faq-a {
  padding: 0 22px 18px;
  color: #b9c7cc;
  font-size: 14px;
  line-height: 1.6;
}
