@font-face {
  font-family: 'dincond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/dincond.woff2') format('woff2');
}
:root {
  --ocean-deep:  #0b3d42;
  --ocean:       #0e7c86;
  --ocean-light: #2bb3ad;
  --sunset:      #ff6f4d;
  --sunset-2:    #ffb648;
  --sand:        #fdf6ea;
  --sand-2:      #f7ecd3;
  --card-bg:     #fffaf0;
  --text-main:   #12363b;
  --text-sec:    #35595c;
  --text-muted:  #71918f;
  --transition:  .25s cubic-bezier(.4, 0, .2, 1);
  --glass:       rgba(255,250,240,.72);
  --glass-border:rgba(255,255,255,.5);
  --shadow-sm:   0 2px 12px rgba(11,61,66,.08);
  --shadow-md:   0 8px 32px rgba(11,61,66,.12), 0 2px 8px rgba(11,61,66,.05);
  --shadow-lg:   0 16px 48px rgba(11,61,66,.16);
  --radius:      22px;
  --radius-sm:   14px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(160deg, var(--sand) 0%, var(--sand-2) 55%, var(--sand) 100%);
  min-height: 100vh;
  color: var(--text-main);
  line-height: 1.65;
  padding: 0;
  overflow-x: hidden;
}

/* ══════════ TOP BANNER ══════════ */
.top-banner {
  position: relative;
  width: 100%;
  height: 72px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--ocean-deep) 0%, var(--ocean) 45%, var(--sunset) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.top-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.14) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.1) 0%, transparent 40%);
  animation: bannerShimmer 8s ease-in-out infinite alternate;
}
@keyframes bannerShimmer {
  0%   { opacity: .6; transform: translateX(-5%); }
  100% { opacity: 1;  transform: translateX(5%); }
}
.top-banner-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .95;
}
.top-banner-inner svg { flex-shrink: 0; }
.wave-divider {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 30px;
  display: block;
}
.wave-divider path { fill: var(--sand); }

/* ══════════ PAGE WRAPPER ══════════ */
.page-wrapper {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px 60px;
  animation: fadeInUp .8s ease-out;
  position: relative;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════ DECORATIVE BACKGROUND ══════════ */
.floating-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: .18;
}
.orb-1 {
  width: 400px; height: 400px;
  background: var(--sunset);
  top: -100px; right: -120px;
  animation: floatOrb 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 350px; height: 350px;
  background: var(--ocean-light);
  bottom: 10%; left: -100px;
  animation: floatOrb 15s ease-in-out infinite alternate-reverse;
}
@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}
.palm-deco {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  color: var(--ocean);
  opacity: .07;
}
.palm-deco svg { display: block; fill: currentColor; }
.palm-deco--tl { top: -30px; left: -70px; transform: rotate(-20deg); }
.palm-deco--br { bottom: -30px; right: -70px; transform: rotate(160deg); color: var(--sunset); }

/* ══════════ HEADER ══════════ */
.page-header {
  text-align: center;
  margin: 40px auto 44px;
  position: relative;
  padding-top: 12px;
}
.page-header::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--sunset-2), var(--sunset));
  border-radius: 2px;
  margin: 24px auto 0;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}
.logo-icon-wrap {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--ocean), var(--sunset));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(11, 61, 66, .28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-icon-wrap:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 28px rgba(11, 61, 66, .35);
}
.logo-icon-wrap img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ocean);
}

.page-header h1 {
  font-size: 30px;
  font-weight: 800;
  color: var(--ocean-deep);
  line-height: 1.3;
  margin-top: 22px;
}
.page-header h1 span {
  display: block;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
}

.effective-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  color: var(--ocean-deep);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 22px;
  border: 1.5px dashed var(--sunset-2);
  box-shadow: var(--shadow-sm);
}
.effective-date svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--sunset); }

/* ══════════ SCROLL TO TOP ══════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  color: var(--ocean);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px) scale(.9);
  pointer-events: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top-btn:hover {
  background: var(--ocean);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 61, 66, .3);
  transform: translateY(-3px) scale(1.05);
}
.scroll-top-btn svg { width: 22px; height: 22px; }

/* ══════════ TOC ══════════ */
.toc {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 30px 34px;
  margin-bottom: 34px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}
.toc h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px 22px;
}
.toc-list li { padding: 0 !important; margin: 0 !important; }
.toc-list li::before { display: none !important; }
.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-sec);
  border-bottom: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.toc-list a:hover {
  background: rgba(14,124,134,.08);
  color: var(--ocean);
  transform: translateX(4px);
}
.toc-list a.active-link {
  background: rgba(14,124,134,.1);
  color: var(--ocean);
  font-weight: 600;
}
.toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(14,124,134,.1);
  color: var(--ocean);
  border-radius: 50%;
  font-size: 11.5px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.toc-list a:hover .toc-num,
.toc-list a.active-link .toc-num {
  background: linear-gradient(135deg, var(--ocean), var(--sunset));
  color: #fff;
}

/* ══════════ CARD ══════════ */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 44px;
  border: 1px solid rgba(11,61,66,.04);
  transition: box-shadow .35s ease;
  position: relative;
  z-index: 1;
}
.card:hover { box-shadow: var(--shadow-md); }

/* ══════════ SECTION ══════════ */
.section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee4cd;
  transition: opacity .4s ease, transform .4s ease;
}
.section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.section.visible { opacity: 1; transform: translateY(0); }

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--ocean), var(--sunset));
  color: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(11, 61, 66, .25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.section-number:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(11, 61, 66, .35);
}
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 18px;
  line-height: 1.35;
}

/* ══════════ CLAUSES ══════════ */
.clause {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.clause--sub {
  margin-left: 30px;
  padding-left: 16px;
  border-left: 2px dashed #e3ddc8;
}
.clause-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 26px;
  padding: 0 6px;
  margin-top: 2px;
  background: rgba(14,124,134,.1);
  color: var(--ocean);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: background .2s ease, color .2s ease;
}
.clause:hover > .clause-num {
  background: var(--ocean);
  color: #fff;
}
.clause-num--sub {
  min-width: 44px;
  background: transparent;
  border: 1.5px dashed #c9d9d6;
  color: var(--text-muted);
}
.clause--sub:hover > .clause-num--sub {
  background: transparent;
  border-color: var(--ocean);
  color: var(--ocean);
}
.ok-block .clause-num {
  background: rgba(47,143,91,.15);
  color: #2f8f5b;
}
.ok-block .clause:hover > .clause-num {
  background: #2f8f5b;
  color: #fff;
}
.clause-text {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text-sec);
  font-size: 14.5px;
  line-height: 1.7;
}
.clause-text strong, .clause-text b {
  color: var(--text-main);
  font-weight: 600;
}
.clause-heading { display: block; margin-bottom: 4px; }
.clause-text p {
  margin: 7px 0 0;
  color: #3f5450;
  font-size: 14px;
  line-height: 1.75;
}
.clause-text p:first-of-type { margin-top: 8px; }

/* ══════════ SUB-LIST ══════════ */
.sub-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 14px 0 16px 0;
}
.sub-list li {
  position: relative !important;
  padding-left: 26px !important;
  margin: 7px 0 9px 0 !important;
  color: #3f5450;
  font-size: 14px;
  line-height: 1.6;
}
.sub-list li::before {
  content: '' !important;
  position: absolute !important;
  left: 4px !important;
  top: 7px;
  width: 10px !important;
  height: 10px !important;
  background: transparent !important;
  border: 2px solid var(--ocean) !important;
  border-radius: 50%;
  box-sizing: border-box;
  transition: background .2s ease, border-color .2s ease;
}
.sub-list li:hover::before {
  background: var(--ocean);
}
.sub-list li strong, .sub-list li b { color: var(--text-main); }

/* ══════════ HIGHLIGHT BOX ══════════ */
.highlight-box {
  background: linear-gradient(135deg, #fff6e0, #ffedc7);
  border-left: 4px solid var(--sunset-2);
  padding: 16px 20px;
  border-radius: 0 14px 14px 0;
  margin: 16px 0;
  font-size: 14px;
  color: #6b4a1f;
  line-height: 1.65;
  box-shadow: 0 2px 8px rgba(255,182,72,.1);
}
.highlight-box code {
  background: rgba(255, 182, 72, .18);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', monospace;
  color: #a15c00;
}

/* ══════════ INLINE SP ══════════ */
.sp {
  background: linear-gradient(135deg, #fff6e0, #ffedc7) !important;
  padding: 10px 15px !important;
  border-radius: 10px !important;
  display: inline-block !important;
  margin-bottom: 20px !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  color: #6b4a1f !important;
  border: 1px solid #ffe0a3 !important;
}

/* ══════════ WARNING TEXT (inline) ══════════ */
.warn-text {
  color: #d1481f;
  font-weight: 700;
}

/* ══════════ FIELD LABEL ══════════ */
.field-label {
  display: block;
  margin: 18px 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ocean-deep);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ══════════ LINKS ══════════ */
a {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid rgba(14,124,134,.2);
  transition: border-color .2s ease, color .2s ease;
}
a:hover { color: var(--sunset); border-bottom-color: var(--sunset); }

/* ══════════ PRICE CARDS ══════════ */
.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}
.price-card {
  flex: 0 1 200px;
  background: linear-gradient(135deg, #f0faf8, #e3f4f0);
  border: 1.5px dashed var(--ocean-light);
  border-radius: 16px;
  padding: 20px 22px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,124,134,.05), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(11, 61, 66, .12);
}
.price-card:hover::after { opacity: 1; }
.price-card .price {
  font-size: 30px;
  font-weight: 800;
  color: var(--ocean);
  position: relative;
  z-index: 1;
}
.price-card .price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ══════════ OK BLOCK ══════════ */
.ok-block {
  background: linear-gradient(135deg, #eaf7ef, #f2faf0);
  padding: 30px 30px;
  border-left: 4px solid #2f8f5b;
  margin-top: 36px;
  border-radius: 0 18px 18px 0;
  box-shadow: 0 2px 12px rgba(47,143,91,.1);
}
.ok-block h4 {
  margin-top: 0 !important;
  color: #23713f;
  font-size: 19px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ok-block ul { margin: 14px 0 0 0 !important; }
.ok-block .clause-text { color: #295b3c; }

/* ══════════ SCROLLBAR ══════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--ocean-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ocean); }

/* ══════════ PRINT ══════════ */
@media print {
  body { background: #fff; padding: 0; }
  .card { box-shadow: none; border: 1px solid #ddd; break-inside: avoid; }
  .toc { display: none; }
  .top-banner, .scroll-top-btn, .floating-orb, .palm-deco { display: none !important; }
  .page-wrapper { padding: 0; }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 768px) {
  .page-wrapper { padding: 0 14px 40px; }
  .card { padding: 26px 20px; border-radius: 16px; }
  .page-header { margin-top: 24px; }
  .page-header h1 { font-size: 22px; }
  .section-title { font-size: 18px; }
  .toc-list { grid-template-columns: 1fr; }
  .clause-text { font-size: 14px; }
  .clause--sub { margin-left: 16px; padding-left: 12px; }
  .scroll-top-btn { bottom: 20px; right: 20px; width: 44px; height: 44px; }
  .top-banner { height: 56px; }
  .top-banner-inner { font-size: 11px; letter-spacing: 1.5px; }
}

@media (max-width: 480px) {
  .page-header h1 { font-size: 19px; }
  .logo-icon-wrap { width: 44px; height: 44px; border-radius: 12px; }
  .logo-text { font-size: 13px; letter-spacing: 2.5px; }
  .toc { padding: 20px 18px; }
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 18px;
	border-radius: 999px;
	font-size: .92rem;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: all var(--transition);
	cursor: pointer;
	min-height: 44px;
	background: linear-gradient(135deg, var(--sunset), var(--sunset-2));
	color: #fff;
}
.btn-primary:hover {
	filter: brightness(1.06);
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(255, 111, 77, .3);
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

span.h1{font-size:40px; font-family:dincond;line-height:35px;}
span.h1 b{font-size:60px; font-family:dincond;line-height:45px;text-transform:uppercase;}
div.w100{width:100%;}
