/* ============================================================
   CSS Variables & Reset
   ============================================================ */
:root {
  --p:   #1a56db;
  --pl:  #e8f0fe;
  --a:   #ff6b35;
  --t:   #1a1a2e;
  --tm:  #6b7280;
  --bg:  #fff;
  --ba:  #f8faff;
  --bd:  #0f172a;
  --br:  #e2e8f0;
  --g:   #10b981;
  --r:   12px;
  --sh:  0 4px 24px rgba(26, 86, 219, .08);
  --shl: 0 12px 48px rgba(26, 86, 219, .15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  color: var(--t);
  background: var(--bg);
  line-height: 1.7;
}


/* ============================================================
   Navbar
   ============================================================ */
#nb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--br);
  transition: box-shadow .3s;
}

#nb.sc {
  box-shadow: var(--sh);
}

.ni {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-ic {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--p), #6366f1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.logo-tx {
  font-size: 16px;
  font-weight: 700;
  color: var(--t);
  line-height: 1.2;
}

.logo-tx span {
  color: var(--p);
}

.logo-sb {
  font-size: 11px;
  color: var(--tm);
  font-weight: 400;
}

/* Nav Links */
.nl {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nl a {
  display: block;
  padding: 6px 11px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--tm);
  transition: all .2s;
  white-space: nowrap;
}

.nl a:hover {
  color: var(--p);
  background: var(--pl);
}

/* Nav Right */
.nr {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language Switcher */
.ls {
  position: relative;
}

.lb {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 1px solid var(--br);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: var(--t);
  transition: all .2s;
  white-space: nowrap;
}

.lb:hover {
  border-color: var(--p);
  color: var(--p);
}

.ld {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid var(--br);
  border-radius: 10px;
  box-shadow: var(--shl);
  min-width: 150px;
  overflow: hidden;
  display: none;
  z-index: 999;
}

.ld.op {
  display: block;
}

.ld button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  color: var(--t);
  transition: background .15s;
  text-align: left;
}

.ld button:hover {
  background: var(--pl);
  color: var(--p);
}

.ld button.act {
  color: var(--p);
  font-weight: 600;
}

/* Book Now Button */
.bb {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--a), #e85520);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

.bb:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, .35);
}

/* Hamburger */
.hb {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hb span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Menu */
.mm {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--br);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shl);
}

.mm.op {
  display: block;
}

.mm a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--br);
  text-decoration: none;
  font-size: 15px;
  color: var(--t);
  font-weight: 500;
}

.mm a:last-of-type {
  border-bottom: none;
}


/* ============================================================
   Shared / Utilities
   ============================================================ */
section {
  padding: 80px 24px;
}

.ct {
  max-width: 1200px;
  margin: 0 auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: var(--pl);
  color: var(--p);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.sub {
  font-size: 15px;
  color: var(--tm);
}

.sh {
  margin-bottom: 44px;
}

.sh.c {
  text-align: center;
}

.sh.c .sub {
  margin: 0 auto;
  max-width: 540px;
}

/* Primary Button */
.bp {
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--p), #6366f1);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 86, 219, .35);
}

/* Secondary Button */
.bs {
  padding: 13px 28px;
  background: transparent;
  color: var(--p);
  border: 2px solid var(--p);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bs:hover {
  background: var(--pl);
  transform: translateY(-2px);
}


/* ============================================================
   Hero Section
   ============================================================ */
#home {
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, #f0f4ff, #faf5ff 50%, #fff0f5);
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 86, 219, .06), transparent 70%);
  pointer-events: none;
}

.hi {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(26, 86, 219, .1), rgba(99, 102, 241, .1));
  border: 1px solid rgba(26, 86, 219, .2);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--p);
  margin-bottom: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--g);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}

.ht {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hl {
  background: linear-gradient(135deg, var(--p), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hd {
  font-size: 16px;
  color: var(--tm);
  margin-bottom: 28px;
  line-height: 1.8;
}

.hbtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hstats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  flex-wrap: wrap;
}

.sn {
  font-size: 24px;
  font-weight: 700;
  color: var(--p);
  display: block;
}

.sl {
  font-size: 12px;
  color: var(--tm);
}

/* Hero Visual Card */
.hv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hcard {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shl);
  width: 100%;
  max-width: 360px;
  position: relative;
}

.term {
  background: #0f172a;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #7ee787;
  line-height: 1.8;
  margin-bottom: 18px;
}

.term .pr {
  color: #79c0ff;
}

.blk {
  border-right: 2px solid #7ee787;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { border-color: #7ee787; }
  50%       { border-color: transparent; }
}

.sl2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.si {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--ba);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

.ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.icd { background: #d1fae5; color: var(--g); }

.ica {
  background: #dbeafe;
  color: var(--p);
  animation: spin 1.5s linear infinite;
}

.icw { background: var(--br); color: var(--tm); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Floating Badges */
.fb {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  animation: fl 3s ease-in-out infinite;
  white-space: nowrap;
}

.ftr { top: -14px; right: -18px; color: var(--g); }
.fbl { bottom: -14px; left: -18px; color: var(--a); }

@keyframes fl {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}


/* ============================================================
   Services Section
   ============================================================ */
#sv {
  background: var(--ba);
}

.sg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.sc {
  background: #fff;
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid var(--br);
  transition: all .3s;
  cursor: default;
}

.sc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shl);
  border-color: var(--p);
}

.sic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.sc h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sc p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
}

.stags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

.stags span {
  padding: 2px 9px;
  background: var(--ba);
  border-radius: 20px;
  font-size: 11px;
  color: var(--tm);
}


/* ============================================================
   Pricing Section
   ============================================================ */
#pr {
  background: #fff;
}

.pg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.pc {
  background: var(--ba);
  border-radius: 16px;
  padding: 28px;
  border: 2px solid transparent;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.pc.ft {
  background: linear-gradient(135deg, var(--p), #6366f1);
  color: #fff;
  transform: scale(1.02);
  box-shadow: var(--shl);
}

.pc:not(.ft):hover {
  border-color: var(--p);
  box-shadow: var(--sh);
}

.pbadge {
  position: absolute;
  top: 18px;
  right: -30px;
  background: var(--a);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 38px;
  transform: rotate(45deg);
}

.pc h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pn {
  font-size: 36px;
  font-weight: 800;
  margin: 14px 0 3px;
}

.pn sup {
  font-size: 18px;
  vertical-align: super;
}

.pu {
  font-size: 13px;
  opacity: .7;
  margin-bottom: 20px;
}

.pd {
  font-size: 13px;
  opacity: .8;
  margin-bottom: 20px;
  line-height: 1.7;
}

.fl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.fl li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}

.ck {
  color: var(--g);
  flex-shrink: 0;
  margin-top: 2px;
}

.pc.ft .ck {
  color: #86efac;
}

.pc.ft .fl li {
  color: rgba(255, 255, 255, .9);
}

.bpln {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .2s;
}

.bo {
  background: transparent;
  border: 2px solid var(--p);
  color: var(--p);
}

.bo:hover {
  background: var(--p);
  color: #fff;
}

.bw {
  background: #fff;
  color: var(--p);
}

.bw:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-1px);
}


/* ============================================================
   Process Section
   ============================================================ */
#proc {
  background: var(--ba);
}

.pw {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.pw::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--p), #6366f1, var(--a));
  z-index: 0;
}

.ps {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.pnum {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.ps:hover .pnum {
  border-color: var(--p);
  box-shadow: 0 8px 24px rgba(26, 86, 219, .2);
  transform: scale(1.1);
}

.plbl {
  display: inline-block;
  padding: 2px 10px;
  background: var(--p);
  color: #fff;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

.ps h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ps p {
  font-size: 12px;
  color: var(--tm);
  line-height: 1.7;
}

/* Security Box */
.psec {
  margin-top: 40px;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--br);
}

.psec h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}

.secg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.seci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--ba);
  border-radius: 10px;
}

.seci .io {
  font-size: 20px;
  flex-shrink: 0;
}

.seci .tx {
  font-size: 12px;
  color: var(--tm);
  line-height: 1.6;
}

.seci .tx strong {
  display: block;
  color: var(--t);
  font-size: 13px;
  margin-bottom: 2px;
}


/* ============================================================
   Reviews Section
   ============================================================ */
#rv {
  background: #fff;
}

.rb {
  background: linear-gradient(135deg, var(--p), #6366f1);
  color: #fff;
  border-radius: 14px;
  padding: 36px;
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.rbn .rn { font-size: 60px; font-weight: 800; line-height: 1; }
.rbn .rs { font-size: 18px; margin: 4px 0; }
.rbn .rl { font-size: 13px; opacity: .8; }

.rbr {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
}

.rrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 12px;
}

.rrow .rl2 {
  width: 16px;
  text-align: right;
  opacity: .8;
}

.bt {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, .2);
  border-radius: 3px;
  overflow: hidden;
}

.bf {
  height: 100%;
  background: #fff;
  border-radius: 3px;
}

.rrow .rp {
  width: 30px;
  opacity: .8;
}

.rst .rsn { font-size: 28px; font-weight: 800; margin-bottom: 2px; }
.rst .rsl { font-size: 13px; opacity: .8; }

.rg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

.rc {
  background: var(--ba);
  border-radius: var(--r);
  padding: 22px;
  border: 1px solid var(--br);
  transition: all .3s;
}

.rc:hover {
  box-shadow: var(--sh);
  transform: translateY(-2px);
}

.rh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ru {
  display: flex;
  align-items: center;
  gap: 10px;
}

.av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rname { font-size: 14px; font-weight: 600; }
.rloc  { font-size: 11px; color: var(--tm); }

.str {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}

.rt {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
}

.rtag {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 9px;
  background: var(--pl);
  color: var(--p);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.rdate {
  font-size: 11px;
  color: var(--tm);
  margin-top: 8px;
}


/* ============================================================
   Privacy Section
   ============================================================ */
#pv {
  background: var(--ba);
}

.pvg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.pvcard {
  background: #fff;
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid var(--br);
  transition: all .3s;
}

.pvcard:hover {
  box-shadow: var(--sh);
  border-color: var(--p);
}

.pvic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.pvcard h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pvcard p {
  font-size: 13px;
  color: var(--tm);
  line-height: 1.7;
}

.pledge {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  color: #fff;
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  margin-top: 36px;
}

.pledge h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pledge p {
  font-size: 13px;
  opacity: .8;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}


/* ============================================================
   Contact Section
   ============================================================ */
#co {
  background: #fff;
}

.cog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.cms {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cml {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--ba);
  border-radius: 12px;
  border: 1px solid var(--br);
  text-decoration: none;
  color: var(--t);
  transition: all .25s;
}

.cml:hover {
  border-color: var(--p);
  background: var(--pl);
  transform: translateX(4px);
}

.cmic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cmt { font-size: 14px; font-weight: 700; }
.cmd { font-size: 12px; color: var(--tm); }

.cmv {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--p);
  white-space: nowrap;
}

/* Hours Box */
.hbox {
  margin-top: 20px;
  padding: 18px;
  background: var(--ba);
  border-radius: 10px;
  border: 1px solid var(--br);
}

.hbox .htt {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.hbox .hdd {
  font-size: 12px;
  color: var(--tm);
  line-height: 1.8;
}

/* Contact Form */
.cform {
  background: var(--ba);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--br);
}

.cform h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.fg {
  margin-bottom: 16px;
}

.fg label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--t);
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--br);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: var(--t);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, .07);
}

.fg textarea {
  resize: vertical;
  min-height: 90px;
}


/* ============================================================
   Booking Section
   ============================================================ */
#bk {
  background: linear-gradient(135deg, var(--p) 0%, #6366f1 50%, #8b5cf6 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

#bk .tag {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
}

#bk .h2 {
  color: #fff;
}

#bk .sub {
  color: rgba(255, 255, 255, .8);
  max-width: 520px;
  margin: 0 auto 36px;
}

.bkf {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.bkfeat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
}

.bkform {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  padding: 32px;
  max-width: 660px;
  margin: 0 auto;
}

.bkg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bkg .full {
  grid-column: 1 / -1;
}

.bfg2 {
  margin-bottom: 14px;
  text-align: left;
}

.bfg2 label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 5px;
}

.bfg2 input,
.bfg2 select,
.bfg2 textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  outline: none;
  transition: border-color .2s;
}

.bfg2 input::placeholder,
.bfg2 textarea::placeholder {
  color: rgba(255, 255, 255, .4);
}

.bfg2 select option {
  color: var(--t);
  background: #fff;
}

.bfg2 input:focus,
.bfg2 select:focus,
.bfg2 textarea:focus {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .18);
}

.bfg2 textarea {
  resize: vertical;
  min-height: 80px;
}

.bsub {
  width: 100%;
  padding: 14px;
  background: #fff;
  color: var(--p);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: all .2s;
}

.bsub:hover {
  background: rgba(255, 255, 255, .92);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}


/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--bd);
  color: rgba(255, 255, 255, .7);
  padding: 56px 24px 28px;
}

.fi {
  max-width: 1200px;
  margin: 0 auto;
}

.ftop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 28px;
}

.fn {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.fn span {
  color: #818cf8;
}

.fp {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.fsoc {
  display: flex;
  gap: 8px;
}

.fsa {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  transition: all .2s;
}

.fsa:hover {
  background: var(--p);
  color: #fff;
}

.fc2 h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.fc2 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc2 ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  transition: color .2s;
}

.fc2 ul li a:hover {
  color: #fff;
}

.fbot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}

.fbot a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}

.fbot a:hover {
  color: #fff;
}


/* ============================================================
   Toast & Back-to-Top
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--t);
  color: #fff;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shl);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.ok {
  background: var(--g);
}

#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--p);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 17px;
  z-index: 997;
  box-shadow: 0 4px 16px rgba(26, 86, 219, .4);
  transition: all .2s;
}

#btt:hover {
  transform: translateY(-3px);
}

#btt.vis {
  display: flex;
}


/* ============================================================
   Responsive — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .nl  { display: none; }
  .hb  { display: flex; }

  .hi  { grid-template-columns: 1fr; }
  .hv  { display: none; }

  .pw  { grid-template-columns: 1fr 1fr; }
  .pw::before { display: none; }

  .cog  { grid-template-columns: 1fr; }
  .ftop { grid-template-columns: 1fr 1fr; gap: 28px; }
}


/* ============================================================
   Responsive — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  section  { padding: 56px 16px; }
  .hstats  { gap: 18px; }
  .pw      { grid-template-columns: 1fr; }
  .bkg     { grid-template-columns: 1fr; }
  .ftop    { grid-template-columns: 1fr; }
  .rb      { gap: 24px; }
  .fbot    { flex-direction: column; text-align: center; }
}
