@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600&family=Fraunces:wght@600;800&display=swap');

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

:root{
  --bg-base:#0d2628;
  --bg-card:#14383a;
  --accent:#f5c842;
  --highlight:#ff8c42;
  --text:#f1f5f3;
  --muted:#88a4a4;
  --border:#1d4549;
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --transition:0.25s ease;
  --font-body:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-display:'Fraunces','Times New Roman',serif;
  --shadow:0 8px 24px rgba(0,0,0,0.35);
}

html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--font-body);
  background:var(--bg-base);
  color:var(--text);
  font-size:16px;
  line-height:1.65;
  padding-bottom:70px;
  min-height:100vh;
  overflow-x:hidden;
}

::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-track{background:var(--bg-base)}
::-webkit-scrollbar-thumb{background:var(--border);border-radius:6px}
::-webkit-scrollbar-thumb:hover{background:var(--accent)}

h1,h2,h3,h4{font-family:var(--font-display);line-height:1.2;color:var(--text);font-weight:700}
h1{font-size:clamp(2rem,6vw,3.4rem);letter-spacing:-0.02em}
h2{font-size:clamp(1.5rem,4vw,2.2rem);margin-bottom:1rem}
h3{font-size:clamp(1.15rem,2.5vw,1.4rem);margin-bottom:0.6rem}
h4{font-size:1.05rem;margin-bottom:0.4rem}
p{margin-bottom:1rem;color:var(--text)}
strong{color:var(--accent);font-weight:700}
a{color:var(--accent);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--highlight)}

.lh7_container{width:100%;max-width:1180px;margin:0 auto;padding:0 18px}

.lh7_btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 22px;border:none;border-radius:999px;
  font-family:var(--font-body);font-weight:600;font-size:15px;
  cursor:pointer;text-align:center;
  transition:transform var(--transition),box-shadow var(--transition),background var(--transition);
  min-height:48px;
}
.lh7_btn-primary{background:var(--highlight);color:#fff}
.lh7_btn-primary:hover{background:#ff7a25;color:#fff;transform:translateY(-1px)}
.lh7_btn-accent{background:var(--accent);color:#0d2628}
.lh7_btn-accent:hover{background:#ffd75a;color:#0d2628;transform:translateY(-1px)}
.lh7_btn-outline{background:transparent;color:var(--text);border:1.5px solid var(--border)}
.lh7_btn-outline:hover{border-color:var(--accent);color:var(--accent)}
.lh7_btn-full{width:100%}
.lh7_btn-lg{padding:16px 28px;font-size:16px;min-height:54px}

.lh7_nav{
  position:sticky;top:0;z-index:50;
  background:rgba(13,38,40,0.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.lh7_nav-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:12px}
.lh7_logo{display:flex;align-items:center}
.lh7_logo img{height:36px;width:auto;display:block}
.lh7_nav-links{display:none}
.lh7_nav-toggle{
  display:flex;align-items:center;justify-content:center;
  width:44px;height:44px;background:transparent;border:1px solid var(--border);
  border-radius:10px;color:var(--text);cursor:pointer;
}
.lh7_nav-toggle span{display:block;width:18px;height:2px;background:currentColor;position:relative}
.lh7_nav-toggle span::before,.lh7_nav-toggle span::after{
  content:"";position:absolute;left:0;width:18px;height:2px;background:currentColor;
}
.lh7_nav-toggle span::before{top:-6px}
.lh7_nav-toggle span::after{top:6px}

.lh7_mobile-nav{
  display:none;flex-direction:column;
  background:var(--bg-card);border-top:1px solid var(--border);
  padding:14px 18px;
}
.lh7_mobile-nav.open{display:flex}
.lh7_mobile-nav a{
  padding:12px 0;color:var(--text);
  border-bottom:1px solid var(--border);font-weight:500;
}
.lh7_mobile-nav a:last-child{border-bottom:none}

.lh7_ticker{
  background:linear-gradient(90deg,var(--bg-card),var(--border));
  overflow:hidden;border-bottom:1px solid var(--border);
  font-size:13px;color:var(--muted);
}
.lh7_ticker-inner{display:flex;gap:42px;padding:10px 0;animation:lh7-scroll 28s linear infinite;white-space:nowrap}
.lh7_ticker-inner span{color:var(--muted)}
.lh7_ticker-inner b{color:var(--accent);font-weight:600}

@keyframes lh7-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.lh7_hero{
  padding:34px 0 26px;
  position:relative;overflow:hidden;
}
.lh7_hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 20% 0%,rgba(245,200,66,0.12),transparent 55%),
             radial-gradient(circle at 80% 100%,rgba(255,140,66,0.10),transparent 50%);
  pointer-events:none;
}
.lh7_hero-grid{display:grid;grid-template-columns:1fr;gap:24px;position:relative}
.lh7_eyebrow{
  display:inline-block;padding:6px 12px;
  background:rgba(245,200,66,0.14);color:var(--accent);
  border-radius:999px;font-size:12px;font-weight:600;
  letter-spacing:0.08em;text-transform:uppercase;margin-bottom:14px;
}
.lh7_hero h1{margin-bottom:14px}
.lh7_hero-lead{font-size:clamp(1rem,2.4vw,1.18rem);color:var(--muted);margin-bottom:22px;max-width:560px}
.lh7_hero-cta{display:flex;flex-direction:column;gap:12px;margin-bottom:18px}
.lh7_hero-meta{display:flex;flex-wrap:wrap;gap:14px;font-size:13px;color:var(--muted);margin-top:6px}
.lh7_hero-meta span{display:inline-flex;align-items:center;gap:6px}
.lh7_hero-meta b{color:var(--accent);font-weight:600}

.lh7_hero-card{
  background:linear-gradient(160deg,var(--bg-card),#0f2c2e);
  border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:24px;box-shadow:var(--shadow);position:relative;
}
.lh7_hero-card-tag{
  position:absolute;top:-10px;right:18px;
  background:var(--highlight);color:#fff;font-size:11px;font-weight:700;
  letter-spacing:0.08em;padding:5px 12px;border-radius:6px;text-transform:uppercase;
}
.lh7_hero-card h3{font-size:1.1rem;margin-bottom:6px;color:var(--muted);font-family:var(--font-body);font-weight:600}
.lh7_hero-card .lh7_amount{
  font-family:var(--font-display);font-size:2.4rem;color:var(--accent);
  font-weight:800;line-height:1.1;margin-bottom:4px;
}
.lh7_hero-card .lh7_amount-sub{color:var(--muted);font-size:0.95rem;margin-bottom:18px}
.lh7_hero-card ul{list-style:none;margin-bottom:20px}
.lh7_hero-card ul li{
  padding:8px 0;border-bottom:1px solid rgba(136,164,164,0.18);
  font-size:14px;display:flex;justify-content:space-between;gap:8px;
}
.lh7_hero-card ul li:last-child{border-bottom:none}
.lh7_hero-card ul li b{color:var(--text);font-weight:600}

.lh7_trust{
  background:var(--bg-card);border-top:1px solid var(--border);border-bottom:1px solid var(--border);
  padding:18px 0;
}
.lh7_trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;text-align:center}
.lh7_trust-item{padding:8px 4px}
.lh7_trust-item .lh7_t-num{font-family:var(--font-display);font-size:1.5rem;color:var(--accent);font-weight:700;display:block}
.lh7_trust-item .lh7_t-lbl{font-size:12px;color:var(--muted);letter-spacing:0.04em}

.lh7_section{padding:42px 0;content-visibility:auto;contain-intrinsic-size:0 500px}
.lh7_section-head{margin-bottom:26px;max-width:720px}
.lh7_section-head .lh7_eyebrow{margin-bottom:10px}

.lh7_grid-2{display:grid;grid-template-columns:1fr;gap:18px}
.lh7_grid-3{display:grid;grid-template-columns:1fr;gap:18px}
.lh7_grid-4{display:grid;grid-template-columns:1fr;gap:14px}

.lh7_card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-md);padding:22px;
  transition:transform var(--transition),border-color var(--transition);
}
.lh7_card:hover{transform:translateY(-2px);border-color:var(--accent)}
.lh7_card .lh7_card-icon{
  width:42px;height:42px;border-radius:10px;
  background:rgba(245,200,66,0.14);color:var(--accent);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:800;font-size:18px;
  margin-bottom:14px;
}
.lh7_card h3{font-family:var(--font-body);font-weight:700;font-size:1.05rem;margin-bottom:8px}
.lh7_card p{color:var(--muted);font-size:0.95rem;margin-bottom:0}

.lh7_table-wrap{
  overflow-x:auto;-webkit-overflow-scrolling:touch;
  border:1px solid var(--border);border-radius:var(--radius-md);
  background:var(--bg-card);
}
.lh7_table{width:100%;border-collapse:collapse;min-width:520px}
.lh7_table th,.lh7_table td{
  padding:13px 14px;text-align:left;font-size:14px;
  border-bottom:1px solid var(--border);
}
.lh7_table th{background:rgba(245,200,66,0.08);color:var(--accent);font-weight:600;font-size:12px;letter-spacing:0.06em;text-transform:uppercase}
.lh7_table tr:last-child td{border-bottom:none}
.lh7_table td b{color:var(--text)}

.lh7_steps{counter-reset:step;display:flex;flex-direction:column;gap:14px}
.lh7_step{
  background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-md);
  padding:20px 20px 20px 64px;position:relative;
}
.lh7_step::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:18px;top:18px;
  width:34px;height:34px;border-radius:50%;
  background:var(--accent);color:#0d2628;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:800;font-size:16px;
}
.lh7_step h4{margin-bottom:6px;font-family:var(--font-body);font-weight:700;font-size:1rem}
.lh7_step p{margin-bottom:0;color:var(--muted);font-size:0.95rem}

.lh7_callout{
  background:linear-gradient(135deg,rgba(245,200,66,0.10),rgba(255,140,66,0.06));
  border:1px solid var(--accent);border-radius:var(--radius-md);
  padding:18px 20px;margin:18px 0;
}
.lh7_callout p{margin-bottom:0;font-size:0.96rem}
.lh7_callout strong{color:var(--accent)}

.lh7_pros-cons{display:grid;grid-template-columns:1fr;gap:14px}
.lh7_pros,.lh7_cons{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-md);padding:20px}
.lh7_pros h4,.lh7_cons h4{margin-bottom:12px;font-family:var(--font-body);font-weight:700}
.lh7_pros h4{color:#7fd99c}
.lh7_cons h4{color:#ff9b9b}
.lh7_pros ul,.lh7_cons ul{list-style:none}
.lh7_pros li,.lh7_cons li{padding:6px 0 6px 22px;position:relative;font-size:14px;color:var(--text)}
.lh7_pros li::before{content:"✓";position:absolute;left:0;color:#7fd99c;font-weight:700}
.lh7_cons li::before{content:"−";position:absolute;left:0;color:#ff9b9b;font-weight:700}

.lh7_faq{display:flex;flex-direction:column;gap:10px}
.lh7_faq-item{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-md);overflow:hidden;
}
.lh7_faq-btn{
  width:100%;text-align:left;background:transparent;border:none;color:var(--text);
  padding:18px 50px 18px 18px;font-family:var(--font-body);font-weight:600;font-size:15px;
  cursor:pointer;position:relative;line-height:1.4;
  min-height:54px;
}
.lh7_faq-btn::after{
  content:"+";position:absolute;right:18px;top:50%;transform:translateY(-50%);
  color:var(--accent);font-size:22px;font-weight:300;transition:transform var(--transition);
}
.lh7_faq-item.open .lh7_faq-btn::after{transform:translateY(-50%) rotate(45deg)}
.lh7_faq-answer{
  max-height:0;overflow:hidden;transition:max-height 0.3s ease;
  padding:0 18px;color:var(--muted);font-size:0.95rem;
}
.lh7_faq-item.open .lh7_faq-answer{max-height:500px;padding:0 18px 18px}

.lh7_cta-band{
  background:linear-gradient(135deg,var(--bg-card),#0f2e30);
  border:1px solid var(--accent);border-radius:var(--radius-lg);
  padding:30px 22px;text-align:center;margin:30px 0;
}
.lh7_cta-band h2{font-family:var(--font-display);margin-bottom:10px}
.lh7_cta-band p{color:var(--muted);margin-bottom:20px;max-width:520px;margin-left:auto;margin-right:auto}

.lh7_author{
  display:grid;grid-template-columns:1fr;gap:16px;
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-md);padding:22px;align-items:center;
}
.lh7_author-avatar{
  width:72px;height:72px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--highlight));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-weight:800;font-size:1.6rem;color:#0d2628;
  margin:0 auto;
}
.lh7_author-info h4{font-family:var(--font-body);font-weight:700;margin-bottom:4px;text-align:center}
.lh7_author-role{color:var(--accent);font-size:13px;font-weight:600;margin-bottom:8px;text-align:center;display:block}
.lh7_author-bio{color:var(--muted);font-size:0.92rem;text-align:center}

.lh7_footer{
  background:#0a1f21;border-top:1px solid var(--border);
  padding:36px 0 24px;margin-top:40px;
}
.lh7_footer-grid{display:grid;grid-template-columns:1fr;gap:24px;margin-bottom:24px}
.lh7_footer h4{font-family:var(--font-body);font-weight:700;font-size:0.9rem;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:12px;color:var(--accent)}
.lh7_footer ul{list-style:none}
.lh7_footer li{padding:5px 0}
.lh7_footer li a{color:var(--muted);font-size:14px}
.lh7_footer li a:hover{color:var(--accent)}
.lh7_footer-bottom{
  border-top:1px solid var(--border);padding-top:18px;
  display:flex;flex-direction:column;gap:10px;
  font-size:12px;color:var(--muted);text-align:center;
}
.lh7_footer-logos{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;align-items:center}
.lh7_footer-logos span{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:6px;padding:5px 10px;font-size:11px;color:var(--muted);font-weight:600;
}

.lh7_sticky-cta{
  position:fixed;left:0;right:0;bottom:0;z-index:40;
  background:rgba(13,38,40,0.97);backdrop-filter:blur(8px);
  border-top:1px solid var(--accent);
  padding:10px 14px;display:flex;align-items:center;justify-content:space-between;gap:10px;
  box-shadow:0 -6px 18px rgba(0,0,0,0.35);
}
.lh7_sticky-cta-text{font-size:12px;color:var(--muted);line-height:1.3;flex:1}
.lh7_sticky-cta-text b{display:block;color:var(--text);font-size:13px}
.lh7_sticky-cta .lh7_btn{padding:10px 16px;font-size:13px;min-height:42px}

.lh7_legal{padding:30px 0;max-width:780px;margin:0 auto}
.lh7_legal h2{margin-top:28px;margin-bottom:10px;font-size:1.4rem}
.lh7_legal h3{margin-top:18px;margin-bottom:8px;font-size:1.1rem;color:var(--accent);font-family:var(--font-body)}
.lh7_legal p,.lh7_legal li{font-size:0.95rem;color:var(--text);line-height:1.7}
.lh7_legal ul{padding-left:20px;margin-bottom:14px}
.lh7_legal li{margin-bottom:6px}

.lh7_breadcrumb{padding:12px 0;font-size:13px;color:var(--muted)}
.lh7_breadcrumb a{color:var(--muted)}
.lh7_breadcrumb a:hover{color:var(--accent)}

.lh7_animate{opacity:0;transform:translateY(14px);transition:opacity 0.6s ease,transform 0.6s ease}
.lh7_animate.lh7_visible{opacity:1;transform:translateY(0)}

@media (min-width:480px){
  .lh7_container{padding:0 24px}
  .lh7_hero-cta{flex-direction:row}
  .lh7_hero-cta .lh7_btn{flex:1}
  .lh7_trust-grid{grid-template-columns:repeat(4,1fr)}
  .lh7_pros-cons{grid-template-columns:1fr 1fr}
  .lh7_grid-2{grid-template-columns:1fr 1fr}
  .lh7_grid-4{grid-template-columns:1fr 1fr}
  .lh7_author{grid-template-columns:90px 1fr;text-align:left}
  .lh7_author-info h4,.lh7_author-role,.lh7_author-bio{text-align:left}
  .lh7_author-avatar{margin:0}
}

@media (min-width:768px){
  body{padding-bottom:0}
  .lh7_sticky-cta{display:none}
  .lh7_nav-toggle{display:none}
  .lh7_nav-links{display:flex;align-items:center;gap:22px}
  .lh7_nav-links a{color:var(--text);font-weight:500;font-size:14px}
  .lh7_nav-links a:hover{color:var(--accent)}
  .lh7_nav-cta{margin-left:8px}
  .lh7_grid-3{grid-template-columns:repeat(3,1fr)}
  .lh7_section{padding:60px 0}
  .lh7_cta-band{padding:42px}
}

@media (min-width:1024px){
  .lh7_hero{padding:60px 0 48px}
  .lh7_hero-grid{grid-template-columns:1fr 400px;gap:40px;align-items:center}
  .lh7_grid-4{grid-template-columns:repeat(4,1fr)}
}
