/* ═══ 보험플랜온 메인페이지 CSS ═══ */

:root {
  --bg: #F6F7FB;
  --bg-card: #FFFFFF;
  --navy: #0E1B30;
  --navy-50: rgba(14,27,48,0.05);
  --primary: #1B6EF3;
  --primary-light: rgba(27,110,243,0.08);
  --primary-glow: rgba(27,110,243,0.15);
  --mint: #00C9A7;
  --mint-light: rgba(0,201,167,0.08);
  --coral: #FF6259;
  --coral-light: rgba(255,98,89,0.08);
  --amber: #FFB020;
  --amber-light: rgba(255,176,32,0.08);
  --violet: #7C5CFC;
  --violet-light: rgba(124,92,252,0.08);
  --text: #1A2233;
  --text-sub: #5A6B82;
  --text-light: #8C9AB5;
  --border: rgba(14,27,48,0.06);
  --shadow-sm: 0 1px 3px rgba(14,27,48,0.04);
  --shadow-md: 0 4px 20px rgba(14,27,48,0.06);
  --shadow-lg: 0 12px 40px rgba(14,27,48,0.08);
  --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  background: rgba(246,247,251,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy);
}

.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), #4A90F7);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 16px; letter-spacing: -1px;
}

.logo-text {
  font-weight: 800; font-size: 18px; letter-spacing: -0.5px;
}

.logo-text em {
  font-style: normal; color: var(--primary); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 11px; letter-spacing: 1.5px;
  display: block; margin-top: -4px; text-transform: uppercase;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--navy);
  color: white; font-size: 14px; font-weight: 600;
  border: none; border-radius: 10px; cursor: pointer;
  font-family: inherit; transition: all 0.3s;
  text-decoration: none;
}

.nav-cta:hover { background: var(--primary); transform: translateY(-1px); }

/* ═══ HERO ═══ */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 20%, var(--primary-light) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 80% 60%, var(--mint-light) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px 8px 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--text-sub); margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.7s ease both;
}

.hero-chip .dot {
  width: 8px; height: 8px; background: var(--mint);
  border-radius: 50%; animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800; line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  word-break: keep-all;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 .accent { color: var(--primary); }

.hero-desc {
  font-size: clamp(16px, 3vw, 20px);
  color: var(--text-sub); max-width: 520px;
  margin: 0 auto 40px; word-break: keep-all;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  padding: 18px 40px; background: var(--primary);
  color: white; font-size: 17px; font-weight: 700;
  border: none; border-radius: 14px; cursor: pointer;
  font-family: inherit; transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(27,110,243,0.25);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27,110,243,0.3); }

.btn-outline {
  padding: 18px 32px; background: var(--bg-card);
  color: var(--text); font-size: 17px; font-weight: 600;
  border: 1px solid var(--border); border-radius: 14px;
  cursor: pointer; font-family: inherit; transition: all 0.3s;
  text-decoration: none;
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ═══ TRUST BAR ═══ */
.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  font-size: 14px; color: var(--text-light);
}

.trust-item {
  display: flex; align-items: center; gap: 8px;
}

.trust-item strong { color: var(--text); font-weight: 700; }

/* ═══ PRODUCTS ═══ */
.products { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 52px; }

.section-chip {
  display: inline-block; padding: 6px 16px;
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 6px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 12px; word-break: keep-all;
}

.section-header p {
  font-size: 16px; color: var(--text-sub);
  max-width: 480px; margin: 0 auto;
  word-break: keep-all;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  opacity: 0; transition: opacity 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card:hover::before { opacity: 1; }

.product-card.cancer::before { background: linear-gradient(90deg, var(--coral), #FF8A65); }
.product-card.care::before { background: linear-gradient(90deg, var(--primary), #64B5F6); }
.product-card.child::before { background: linear-gradient(90deg, var(--mint), #81E6D9); }
.product-card.driver::before { background: linear-gradient(90deg, var(--amber), #FFD54F); }
.product-card.dental::before { background: linear-gradient(90deg, var(--violet), #B39DDB); }
.product-card.health::before { background: linear-gradient(90deg, #3949AB, #7986CB); }
.product-card.kids::before { background: linear-gradient(90deg, #2E7D32, #66BB6A); }
.product-card.fire::before { background: linear-gradient(90deg, #E65100, #FF8A65); }
.product-card.analyze::before { background: linear-gradient(90deg, #00897B, #4DB6AC); }

.card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}

.cancer .card-icon { background: var(--coral-light); }
.care .card-icon { background: var(--primary-light); }
.child .card-icon { background: var(--mint-light); }
.driver .card-icon { background: var(--amber-light); }
.dental .card-icon { background: var(--violet-light); }
.life .card-icon { background: rgba(255,107,157,0.08); }

.product-card h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.product-card .desc {
  font-size: 14px; color: var(--text-sub); line-height: 1.7;
  margin-bottom: 20px; word-break: keep-all;
}

.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }

.card-tag {
  padding: 4px 10px; background: var(--navy-50);
  border-radius: 6px; font-size: 12px; font-weight: 600;
  color: var(--text-sub);
}

.card-arrow {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  transition: gap 0.3s;
}

.product-card:hover .card-arrow { gap: 12px; }

.card-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
}

.badge-hot { background: var(--coral-light); color: var(--coral); }
.badge-new { background: var(--primary-light); color: var(--primary); }
.badge-soon { background: var(--navy-50); color: var(--text-light); }

/* ═══ HOW IT WORKS ═══ */
.how { padding: 80px 0; background: var(--navy); color: white; border-radius: 32px; margin: 0 24px; }

.how .section-chip { background: rgba(255,255,255,0.1); color: var(--mint); }
.how .section-header h2 { color: white; }
.how .section-header p { color: rgba(255,255,255,0.5); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; margin-top: 52px;
}

.step {
  text-align: center; padding: 0 12px;
}

.step-num {
  width: 48px; height: 48px; margin: 0 auto 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 20px; color: var(--mint);
}

.step h4 {
  font-size: 17px; font-weight: 700; margin-bottom: 8px;
}

.step p {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.7; word-break: keep-all;
}

/* ═══ BENEFITS ═══ */
.benefits { padding: 80px 0; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.benefit-card .emoji {
  font-size: 36px; margin-bottom: 16px;
}

.benefit-card h4 {
  font-size: 17px; font-weight: 700; margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px; color: var(--text-sub); line-height: 1.7;
  word-break: keep-all;
}

/* ═══ CTA BANNER ═══ */
.cta-banner {
  margin: 0 24px 80px;
  background: linear-gradient(135deg, var(--primary), #4A90F7);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800; margin-bottom: 12px;
  word-break: keep-all; position: relative; z-index: 1;
}

.cta-banner p {
  font-size: 16px; opacity: 0.8; margin-bottom: 32px;
  position: relative; z-index: 1;
  word-break: keep-all;
}

.btn-white {
  display: inline-block;
  padding: 18px 44px;
  background: white; color: var(--primary);
  font-size: 17px; font-weight: 700;
  border: none; border-radius: 14px;
  cursor: pointer; font-family: inherit;
  transition: all 0.3s;
  text-decoration: none;
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ═══ FOOTER ═══ */
/* Footer, Floating - see common.css */

/* ═══ POPUP ═══ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 9999; display: none; align-items: flex-end; justify-content: center;
  backdrop-filter: blur(4px);
}
.popup-overlay.active { display: flex; }

.popup-sheet {
  background: white; border-radius: 20px 20px 0 0;
  width: 100%; max-width: 640px; max-height: 80vh; overflow-y: auto;
  animation: slideUp 0.3s ease;
}
.popup-handle { width: 40px; height: 4px; background: #DDD; border-radius: 2px; margin: 12px auto 0; }
.popup-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px 12px; border-bottom: 1px solid #F0F0F0; }
.popup-header h3 { font-size: 18px; font-weight: 700; }
.popup-close { background: #F0F0F0; border: none; color: #666; font-size: 18px; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; }
.popup-body { padding: 24px; font-size: 14px; color: #666; line-height: 1.8; }
.popup-body h4 { color: #333; font-size: 15px; font-weight: 700; margin: 20px 0 8px; }
.popup-body h4:first-child { margin-top: 0; }
.popup-body table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 13px; }
.popup-body table th, .popup-body table td { padding: 10px 12px; border: 1px solid #F0F0F0; text-align: left; }
.popup-body table th { background: #FAFAFA; font-weight: 700; color: #333; }
.popup-body ul { padding-left: 20px; margin: 8px 0; }
.popup-footer { padding: 16px 24px 28px; border-top: 1px solid #F0F0F0; }
.popup-confirm-btn { width: 100%; padding: 16px; background: var(--primary); color: white; font-weight: 700; font-size: 16px; border: none; border-radius: 12px; cursor: pointer; font-family: inherit; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══ MOBILE ═══ */
@media (max-width: 640px) {
  .nav-inner { height: 56px; }
  .logo-text { font-size: 16px; }
  .logo-text em { font-size: 10px; }
  .hero { padding: 120px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 320px; text-align: center; }
  .trust-inner { gap: 20px; }
  .how { margin: 0 16px; border-radius: 24px; padding: 60px 20px; }
  .cta-banner { margin: 0 16px 60px; padding: 48px 24px; border-radius: 24px; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
/* ═══ CONSULT FORM ═══ */
.consult { padding: 80px 0 60px; }

.consult-box {
  background: var(--navy); border-radius: 28px;
  padding: 48px 32px; position: relative; overflow: hidden;
  color: white;
}

.consult-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--mint), var(--primary));
}

.consult-box::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px; background: rgba(27,110,243,0.06);
  border-radius: 50%; pointer-events: none;
}

.consult-header { text-align: center; margin-bottom: 36px; position: relative; z-index: 1; }
.consult-header h2 { font-size: 26px; font-weight: 800; margin-bottom: 10px; word-break: keep-all; }
.consult-header p { font-size: 15px; color: rgba(255,255,255,0.5); word-break: keep-all; line-height: 1.7; }

.form-area { max-width: 440px; margin: 0 auto; position: relative; z-index: 1; }

.f-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; text-align: left; }
.f-group label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); }
.f-group label span { color: var(--coral); }

.f-group input, .f-group select {
  width: 100%; padding: 16px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
  color: white; font-size: 16px; font-family: inherit; outline: none;
  transition: border-color 0.3s; -webkit-appearance: none;
}
.f-group input::placeholder { color: rgba(255,255,255,0.6); }
.f-group input:focus, .f-group select:focus { border-color: var(--primary); }
.f-group select option { background: var(--navy); color: white; }

.f-phone-row { display: flex; gap: 10px; }
.f-phone-row input { flex: 1; }

.f-verify-btn {
  flex-shrink: 0; padding: 16px 18px;
  background: rgba(27,110,243,0.15); border: 1px solid rgba(27,110,243,0.3);
  border-radius: 12px; color: var(--primary); font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all 0.3s; white-space: nowrap;
}
.f-verify-btn:hover { background: rgba(27,110,243,0.25); }
.f-verify-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.f-verify-btn.sent { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.08); }

.f-code-row { display: flex; gap: 10px; align-items: stretch; }
.f-code-input {
  flex: 1; font-size: 28px !important; letter-spacing: 10px;
  text-align: center; padding: 20px 16px !important; font-weight: 700; min-height: 64px;
}
.f-code-confirm {
  flex-shrink: 0; min-width: 80px; padding: 20px;
  background: rgba(27,110,243,0.15); border: 1px solid rgba(27,110,243,0.3);
  border-radius: 12px; color: var(--primary); font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: inherit;
}
.f-code-confirm:disabled { opacity: 0.4; cursor: not-allowed; }

.f-timer { font-size: 14px; color: var(--coral); margin-top: 6px; }
.f-status { font-size: 14px; margin-top: 6px; }
.f-status.ok { color: var(--mint); }
.f-status.fail { color: var(--coral); }

.f-hidden { display: none !important; }

.f-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 24px; text-align: left; }
.f-check input[type="checkbox"] { margin-top: 4px; accent-color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }
.f-check label { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; word-break: keep-all; }
.f-check a { color: var(--mint); text-decoration: underline; cursor: pointer; }

.f-submit {
  width: 100%; padding: 20px; background: var(--primary);
  color: white; font-size: 18px; font-weight: 700; border: none;
  border-radius: 14px; cursor: pointer; font-family: inherit;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(27,110,243,0.3);
}
.f-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27,110,243,0.4); }
.f-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.f-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.3); text-align: center; }

/* Toast */
.toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(100px);
  padding: 16px 28px; border-radius: 14px; font-weight: 700; font-size: 15px;
  z-index: 1000; transition: transform 0.4s ease; white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Floating CTA - see common.css (base) */

@media (max-width: 640px) {
  .consult-box { padding: 36px 20px; border-radius: 24px; }
  .consult-header h2 { font-size: 22px; }
  .f-phone-row { flex-direction: column; }
  .f-verify-btn { width: 100%; }
  .f-code-input { font-size: 24px !important; letter-spacing: 8px; }
}

/* ═══ Shared form overrides (light theme) ═══ */
.f-group label { color:rgba(255,255,255,0.5); }
.f-group input, .f-group select {
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
  color:white;
}
.f-group input::placeholder { color:rgba(255,255,255,0.6); }
.f-group input:focus, .f-group select:focus { border-color:var(--primary); }
.f-group select option { background:var(--navy); color:white; }
.f-check label { color:rgba(255,255,255,0.45); }
.f-check a { color:var(--mint); }
.f-check input[type="checkbox"] { accent-color:var(--primary); }
.f-submit { background:var(--primary); color:white; box-shadow:0 4px 20px rgba(27,110,243,0.3); border-radius:14px; }
.f-submit:hover { transform:translateY(-2px); box-shadow:0 8px 30px rgba(27,110,243,0.4); }
.f-note { color:rgba(255,255,255,0.3); }

/* Popup light theme */
.popup-sheet { background:white; }
.popup-handle { background:#DDD; }
.popup-header { border-bottom:1px solid #F0F0F0; }
.popup-header h3 { color:var(--text); }
.popup-close { background:#F0F0F0; color:#666; }
.popup-body { color:#666; }
.popup-body h4 { color:#333; }
.popup-body table th, .popup-body table td { border:1px solid #F0F0F0; }
.popup-body table th { background:#FAFAFA; color:#333; }
.popup-body ul li { color:#666; }
.popup-footer { border-top:1px solid #F0F0F0; }
.popup-confirm-btn { background:var(--primary); color:white; }

/* Floating CTA light */
.floating-cta { background:none; }
.float-btn { background:var(--primary); color:white; box-shadow:0 4px 24px rgba(27,110,243,0.3); border-radius:14px; }

/* Toast */
.toast { --toast-ok:var(--mint); --toast-ok-text:var(--navy); --toast-warn:var(--coral); }

/* Nav light theme */
nav { background:rgba(246,247,251,0.85); border-bottom:1px solid var(--border); }
.logo { color:var(--navy); }
.nav-link { color:var(--text-sub); }
.nav-link:hover { background:var(--navy-50); }
.nav-link.active { color:var(--primary); background:var(--primary-light); }
.nav-cta { background:var(--navy); color:white; }
.nav-cta:hover { background:var(--primary); }
.nav-hamburger { color:var(--text); }
@media(max-width:640px) { .nav-menu { background:rgba(246,247,251,0.95); } }
/* Disclaimer light */
/* Disclaimer - see common.css */
