:root {
  --blue: #1d3557;
  --blue-dark: #16293f;
  --blue-light: #2a4a7f;
  --accent: #e63946;
  --accent-dark: #c92d3a;
  --dark: #1a1f24;
  --gray: #f4f7fb;
  --text: #2d3436;
  --border: #dce4ef;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.7; background: #fff; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header / Nav */
.lp-nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; background: var(--blue); padding: .7rem 1.25rem; gap: 12px; }
.lp-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.02rem; line-height: 1.2; text-decoration: none; }
.lp-logo img { height: 40px; width: 40px; object-fit: contain; background: #fff; border-radius: 6px; padding: 2px; }
.lp-logo .txt { display: flex; flex-direction: column; }
.lp-logo .acc { color: #a8d0ff; }
.lp-logo small { font-size: .72rem; font-weight: 500; opacity: .8; }
.lp-right { display: flex; align-items: center; gap: 10px; }
.lp-cta { background: var(--accent); color: #fff; padding: .55rem 1rem; border-radius: 8px; font-weight: 700; font-size: .88rem; text-decoration: none; white-space: nowrap; }
.lp-cta:hover { background: var(--accent-dark); text-decoration: none; }
.lp-burger { display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 7px; }
.lp-burger span { width: 24px; height: 2px; background: #fff; display: block; border-radius: 2px; }
.lp-menu { position: absolute; top: 100%; right: 12px; margin-top: 4px; background: #fff; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.22); min-width: 220px; padding: 8px; display: none; z-index: 60; }
.lp-menu.open { display: block; }
.lp-menu a { display: block; padding: 11px 14px; color: var(--dark); text-decoration: none; font-weight: 600; font-size: .95rem; border-radius: 6px; }
.lp-menu a:hover { background: var(--gray); }
@media (max-width: 420px) { .lp-cta { display: none; } }

.breadcrumb { background: var(--gray); padding: .75rem 1.5rem; font-size: .8rem; color: #666; }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 .35rem; }

/* Hero */
.hero { position: relative; height: 440px; overflow: hidden; }
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,25,45,.25), rgba(13,25,45,.78)); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 2.5rem 1.5rem; text-align: center; }
.hero-category { background: var(--accent); color: #fff; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: .3rem .85rem; border-radius: 20px; margin-bottom: .75rem; }
.hero h1 { color: #fff; font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; max-width: 820px; line-height: 1.2; }
.hero-meta { color: rgba(255,255,255,.85); font-size: .95rem; margin-top: .75rem; }
.hero-cta { display: inline-block; margin-top: 1.25rem; background: var(--accent); color: #fff; padding: .85rem 1.75rem; border-radius: 8px; font-weight: 700; font-size: 1rem; }
.hero-cta:hover { background: var(--accent-dark); text-decoration: none; }

.container { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.article-body { padding: 3rem 0; }
.lead { font-size: 1.1rem; margin-bottom: 1.5rem; }

.article-body h2 { font-size: 1.55rem; font-weight: 700; color: var(--blue); margin: 2.5rem 0 1rem; border-left: 4px solid var(--accent); padding-left: .9rem; }
.article-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--blue-light); margin: 1.75rem 0 .6rem; }
.article-body p { margin-bottom: 1.1rem; font-size: 1rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.article-body li { margin-bottom: .5rem; }
.article-body strong { color: var(--dark); }

.cost-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
.cost-table th { background: var(--blue); color: #fff; padding: .75rem 1rem; text-align: left; font-weight: 600; }
.cost-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); }
.cost-table tr:nth-child(even) td { background: var(--gray); }
.cost-table tr:last-child td { border-bottom: none; }
.table-note { font-size: .85rem; color: #666; }

.highlight-box { background: var(--gray); border-left: 4px solid var(--accent); border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem; margin: 2rem 0; }
.highlight-box p { margin: 0; }

.process-list { counter-reset: step; list-style: none; padding-left: 0; }
.process-list li { counter-increment: step; padding: .85rem 1rem .85rem 3rem; margin-bottom: .5rem; background: var(--gray); border-radius: 8px; position: relative; }
.process-list li::before { content: counter(step); position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); background: var(--accent); color: #fff; width: 1.7rem; height: 1.7rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; }

.city-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: .5rem; }
.city-grid li { background: var(--gray); padding: .6rem 1rem; border-radius: 6px; font-size: .95rem; }
.city-grid li::before { content: "📍 "; }
.city-grid li a { color: var(--blue); text-decoration: none; font-weight: 600; }
.city-grid li a:hover { text-decoration: underline; }

.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: .75rem; overflow: hidden; }
.faq-q { background: var(--gray); padding: 1rem 1.25rem; font-weight: 600; color: var(--dark); }
.faq-a { padding: 1rem 1.25rem; font-size: .95rem; }

.cta-box { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); border-radius: 12px; padding: 2.5rem 2rem; text-align: center; margin: 3rem 0; color: #fff; }
.cta-box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; color: #fff; }
.cta-box p { opacity: .9; margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btn { display: inline-block; background: var(--accent); color: #fff; padding: .95rem 2.25rem; border-radius: 8px; font-weight: 700; font-size: 1rem; }
.cta-btn:hover { background: var(--accent-dark); text-decoration: none; }
.cta-sub { margin-top: 1rem; font-size: .9rem; opacity: .85; }
.cta-sub a { color: #fff; font-weight: 600; text-decoration: underline; }

.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; border-radius: 10px; padding: 1.35rem 1.6rem; margin: 2.5rem 0; }
.inline-cta p { margin: 0; font-weight: 600; font-size: 1.05rem; flex: 1; min-width: 220px; }
.inline-cta .cta-btn { white-space: nowrap; }

.related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.related h3 { font-size: 1.15rem; margin-bottom: .75rem; color: var(--dark); }
.related ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.related li a { display: inline-block; background: var(--gray); padding: .5rem 1rem; border-radius: 20px; font-size: .9rem; }
.related li a:hover { background: var(--blue); color: #fff; text-decoration: none; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.service-card h3 { color: var(--blue); margin-bottom: .5rem; font-size: 1.15rem; }
.service-card p { font-size: .95rem; margin-bottom: 1rem; color: #555; }
.service-card a { font-weight: 600; }

.footer { background: var(--blue); color: rgba(255,255,255,.65); text-align: center; padding: 2rem 1rem; font-size: .85rem; }
.footer a { color: rgba(255,255,255,.65); }
.footer a:hover { color: #fff; }

@media (max-width: 600px) {
  .hero { height: 340px; }
  .article-body h2 { font-size: 1.25rem; }
  .cost-table { font-size: .85rem; }
  .cost-table th, .cost-table td { padding: .5rem .6rem; }
}
