/* ================= GLOBAL ================= */
:root { --blue-900: #18334d; --blue-100: #D5E7F3; --ink-900: #0e2233; --ink-700: #2b3f52; --white: #ffffff; --shadow: 0 10px 24px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06); --container: 1200px; --cta: #154b75; --radius: 4px; }
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--ink-700); background: #fff; line-height: 1.5; }
a { text-decoration: none; color: inherit; }

/* ===== Alerts and field errors (global) ===== */
.alert { border-radius: var(--radius); padding: 12px 14px; margin: 14px 24px; font-size: 14px; border: 1px solid transparent; }
.alert-success { background: #eef9f1; color: #165a2f; border-color: #cfeedd; }
.alert-error { background: #fff2f2; color: #8a1f1f; border-color: #f5caca; }
.input.has-error, .has-error.input { border-color: #d9534f; outline: 3px solid rgba(217,83,79,.15); }

/* ================ UTIL ================ */
.inner { max-width: var(--container); margin: 0 auto; width: 100%; }

/* ================= INDEX PAGE ================= */
.announce { background: var(--blue-900); color: #eaf3fa; height: 44px; display: flex; align-items: center; }
.announce .inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; display: flex; align-items: center; justify-content: center; text-align: center; font-weight: 600; font-size: 14px; letter-spacing: .02em; }
.header { background: #fff; border-bottom: 1px solid #e6edf3; height: 68px; display: flex; align-items: center; position: relative; z-index: 5; }
.header .inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; display: flex; align-items: center; gap: 24px; justify-content: space-between; }
.logo { font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: #16324a; font-size: 22px; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a.link { font-weight: 600; font-size: 15px; color: #15324a; opacity: .9; }
.nav a.link:hover { opacity: 1; text-decoration: underline; }
.hamburger { display: none; }
.drawer { position: fixed; inset: 0 auto 0 0; width: 280px; max-width: 80%; background: #fff; border-right: 1px solid #e6edf3; transform: translateX(-100%); transition: transform .25s ease; z-index: 1000; padding: 20px; }
.drawer.open { transform: translateX(0); }
.drawer-close { background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer; color: #16324a; }
.drawer-nav { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.drawer-link { font-weight: 700; color: #16324a; }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 999; }
.logo { display: block; width: 240px; height: 40px; background-image: url("/models/images/logo.png"); background-repeat: no-repeat; background-size: contain; background-position: left center; text-indent: -9999px; margin: 12px 0; }
.header .inner { align-items: center; }
.hero { position: relative; overflow: hidden; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); background: var(--blue-100); aspect-ratio: 19/6; min-height: 520px; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center top; background: transparent; }
.hero .inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 54px 24px 0 24px; display: flex; align-items: flex-start; gap: 40px; justify-content: space-between; }
.hero-content { flex: 1 1 auto; max-width: 680px; }
.h1 { margin: 0 0 14px; font-size: 56px; line-height: 1.05; font-weight: 900; color: #122a3f; letter-spacing: -.01em; }
.sub { margin: 0 0 22px; font-size: 20px; color: #334b61; font-weight: 500; }
.bullets { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 12px; }
.bullets li { display: flex; align-items: center; gap: 12px; font-size: 18px; color: #27435a; }
.check { width: 22px; height: 22px; border-radius: var(--radius); border: 2px solid #1f7a40; display: inline-grid; place-items: center; font-size: 14px; color: #1f7a40; font-weight: 800; line-height: 1; }
.form-card { width: 420px; flex: 0 0 420px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; margin-left: auto; }
.form-card h3 { text-align: center; margin: 2px 0; font-size: 18px; font-weight: 800; color: #0f2a42; letter-spacing: .02em; }
.form-card .subh { text-align: center; margin: 0 0 14px; font-size: 14px; color: #5a7287; font-weight: 700; letter-spacing: .06em; }
.input { width: 100%; height: 46px; border: 1px solid #cfdbe6; border-radius: var(--radius); padding: 0 14px; font-size: 15px; color: #0e2233; background: #fff; }
.input:focus { outline: 3px solid #cfe7ff; border-color: #88bfff; }
.stack { display: grid; gap: 12px; margin: 14px 0; }
.cta { width: 100%; height: 48px; border: none; border-radius: var(--radius); background: var(--cta); color: #fff; font-weight: 800; font-size: 16px; letter-spacing: .04em; cursor: pointer; }
.cta:hover { filter: brightness(1.05); }
.form-card .note { text-align: center; font-size: 13px; color: #6a8398; margin-top: 8px; }
.section { max-width: var(--container); margin: 0 auto; padding: 32px 24px 64px; }

/* ================= INFO TOP SEPARATOR ================= */
.info-top-bleed { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); background: var(--blue-100); padding: 32px 0; }
.info-top { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.info-title { margin: 0; font-size: 28px; line-height: 1.25; font-weight: 800; color: #16324a; }
.info-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 16px; border-radius: var(--radius); font-weight: 800; letter-spacing: .02em; font-size: 14px; }
.btn-solid { background: var(--cta); color: #fff; }
.btn-solid:hover { filter: brightness(1.06); }
.btn-outline { background: #fff; color: #16324a; border: 1px solid #9fb8cc; }
.btn-outline:hover { background: #f3f8fb; }

/* ================= GREY BAND + INFO CARDS ================= */
.pre-blog-bleed { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); background: #f4f7fa; padding: 32px 0 40px; }
.pre-blog { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; }
.info-card { border: 1px solid #d7e2ec; background: #fff; border-radius: var(--radius); padding: 18px; }
.info-h { margin: 0 0 6px; font-size: 20px; font-weight: 800; color: #0e2233; }
.info-sub { margin: 0 0 10px; color: #4b6378; font-size: 15px; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.info-list li { color: #2b3f52; font-size: 15px; line-height: 1.45; }
.info-list .tick { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 8px; border-radius: var(--radius); border: 2px solid #2fb769; color: #2fb769; font-weight: 800; font-size: 12px; line-height: 1; vertical-align: middle; }

/* ================= BLOG ================= */
.section h2 { margin: 0 0 16px; color: #10314a; font-size: 20px; letter-spacing: .05em; font-weight: 800; }
.blog-q { margin: 0 0 18px; font-size: 34px; line-height: 1.2; font-weight: 700; color: #2b3f52; text-align: center; max-width: var(--container); padding: 0 24px; margin-left: auto; margin-right: auto; }
@media(max-width:768px){ .blog-q { font-size: 28px; } }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.card { border: 1px solid #d7e2ec; border-radius: var(--radius); background: #fff; overflow: hidden; }
.card-thumb { display: block; width: 100%; aspect-ratio: 16/9; margin: 0; }
.card-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 16px 16px 14px; }
.card h3 { margin: 0 0 6px; color: #0e2233; font-size: 20px; line-height: 1.25; font-weight: 800; }
.card p { margin: 0 0 10px; color: #4b6378; font-size: 15px; }
.card a { font-weight: 700; color: #1f5280; }
.card a:hover { text-decoration: underline; }

/* ================= STEPS ================= */
.steps .steps-q { margin: 12px 0 32px; font-size: 28px; line-height: 1.2; font-weight: 700; color: #2b3f52; text-align: center; max-width: var(--container); padding: 0 24px; margin-left: auto; margin-right: auto; }
.steps h3.steps-q { margin-top: 32px; }
.steps .steps-columns { max-width: var(--container); margin: 0 auto 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.steps .steps-columns .col p { margin: 0; color: #2b3f52; font-size: 18px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card { border: 1px solid #d7e2ec; background: #fff; border-radius: var(--radius); padding: 18px; }
.step-head { display: flex; align-items: center; gap: 14px; margin: 0 0 10px; }
.step-icon { display: block; width: 56px; height: 56px; border-radius: var(--radius); background: #D5E7F3; object-fit: cover; }
.step-h { margin: 0; font-size: 18px; font-weight: 800; color: #0e2233; }
.step-p { margin: 0; font-size: 15px; color: #4b6378; }

/* ================= GUIDE PAGE ================= */
html { scroll-behavior: smooth; }
.guide-article [id] { scroll-margin-top: 30px; }
.guide-breadcrumb { border-bottom: 1px solid #e6edf3; background: #fff; }
.guide-breadcrumb .inner { padding: 10px 24px; display: flex; align-items: center; gap: 6px; color: #4b6378; max-width: var(--container); margin: 0 auto; }
.guide-breadcrumb a { color: #1f5280; }
.guide-breadcrumb .current { color: #2b3f52; }
.guide-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 28px; padding: 22px 24px 40px; }
.guide-content { min-width: 0; }
.guide-sidebar { min-width: 0; }
.guide-sidebar .guide-sidebar-section + .guide-sidebar-section { border-top: 1px solid #e6edf3; margin-top: 20px; padding-top: 20px; }
.guide-sidebar h2 { font-size: 16px; margin: 0 0 10px; border-bottom: 2px solid #9fb8cc; display: inline-block; color: #10314a; }
.guide-sidebar-links { list-style: none; margin: 0; padding: 0; }
.guide-sidebar-links li { margin: 8px 0; }
.guide-sidebar-links a { color: #10314a; }
.guide-sidebar-links a:hover { color: #154b75; }
.guide-hero { line-height: 0; border-radius: 6px; overflow: hidden; }
.guide-hero img { width: 100%; height: auto; display: block; border-radius: 6px; }
.guide-toc { background: #f4f7fa; border: 1px solid #d7e2ec; border-radius: 6px; padding: 14px 16px; margin: 16px 0 20px; }
.guide-toc h2 { margin: 0 0 10px; padding: 0 0 10px; font-size: 16px; color: #10314a; border-bottom: 1px solid #e3e7ea; }
.guide-toc ul { list-style: none; margin: 0; padding: 0; }
.guide-toc li { position: relative; padding-left: 16px; margin: 8px 0; }
.guide-toc li::before { content: ">"; position: absolute; left: 0; top: 0.1em; color: #154b75; font-weight: 700; }
.guide-toc a { color: #1f1f1f; text-decoration: underline; text-underline-offset: 2px; }
.guide-toc a:hover { color: #154b75; text-decoration-thickness: 2px; }
.guide-article { line-height: 1.7; color: #2b3f52; }
.guide-article h1, .guide-article h2, .guide-article h3 { line-height: 1.3; margin-top: 1.6em; margin-bottom: 0.55em; color: #10314a; }
.guide-article h1 { font-size: 28px; }
.guide-article h2 { font-size: 20px; border-bottom: 1px solid #e6edf3; padding-bottom: 0.35em; }
.guide-article h3 { font-size: 17px; color: #16324a; }
.guide-article p { margin: 1em 0; }
.guide-inline-left, .guide-inline-right { max-width: 46%; height: auto; border-radius: 6px; box-shadow: 0 0 6px rgba(0,0,0,.08); }
.guide-inline-left { float: left; margin: 8px 20px 10px 0; }
.guide-inline-right { float: right; margin: 8px 0 10px 20px; }
.guide-clear { clear: both; }
.guide-callout { display: flex; gap: 12px; background: #f7fbff; border: 1px solid #cfe0ed; border-radius: 6px; padding: 12px 14px; margin: 16px 0 18px; }
.guide-callout-bar { width: 6px; border-radius: 4px; background: #154b75; }
.guide-callout-body p { margin: 0; }
.guide-callout a{text-decoration:underline;text-underline-offset:2px;color:#154b75;}
.goform-desktop{display:inline}.goform-mobile{display:none}
.guide-further { margin: 20px 0 12px; }
.guide-further h2 { margin: 0 0 12px; font-size: 1.25rem; font-weight: 700; color: #10314a; }
.guide-further p { margin: 0 0 12px; color: #444; }
.guide-further ul { margin: 0; padding-left: 1.1rem; }
.guide-further li { margin: 10px 0; }
.guide-further li::marker { color: #2fb769; }
.guide-further a { color: #1f1f1f; text-decoration: underline; text-underline-offset: 2px; }
.guide-further a:hover { color: #154b75; text-decoration-thickness: 2px; }
.guides-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.guides-grid .guide-card { border: 1px solid #d7e2ec; background: #fff; border-radius: var(--radius); overflow: hidden; }
.guides-grid .guide-card .thumb { display: block; width: 100%; aspect-ratio: 16/9; }
.guides-grid .guide-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.guides-grid .guide-card .body { padding: 14px; }
.guides-grid .guide-card h3 { margin: 0 0 6px; font-size: 18px; color: #0e2233; font-weight: 800; }
.guides-grid .guide-card p { margin: 0 0 8px; font-size: 15px; color: #4b6378; }
.guides-grid .guide-card a { color: #1f5280; font-weight: 700; }
.guides-grid .guide-card a:hover { text-decoration: underline; }



/* ================= GUIDE SIDEBAR ================= */
.guide-sidebar { min-width: 0; }
.guide-sidebar .guide-sidebar-section + .guide-sidebar-section { border-top: 1px solid #e6edf3; margin-top: 20px; padding-top: 20px; }
.guide-sidebar .sb-panel { background: var(--blue-900); color: #eaf3fa; border: 1px solid #0f2a42; border-radius: 6px; padding: 14px; }
.guide-sidebar .sb-h { margin: 0 0 12px; font-size: 16px; font-weight: 800; color: #ffffff; border-bottom: 2px solid #9fb8cc; display: inline-block; padding-bottom: 4px; }
.guide-sidebar .sb-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.guide-sidebar .sb-item { margin: 0; }
.guide-sidebar .sb-link { display: block; text-decoration: none; }
.guide-sidebar .sb-thumb { display: block; width: 100%; height: auto; border-radius: 6px; object-fit: cover; box-shadow: 0 0 0 2px rgba(255,255,255,.18) inset; margin: 0 0 8px; }
.guide-sidebar .sb-title { margin: 0 0 4px; font-size: 16px; font-weight: 800; color: #ffffff; line-height: 1.25; }
.guide-sidebar .sb-desc { margin: 0; font-size: 13px; color: #cfe0ed; line-height: 1.5; }
.guide-sidebar .sb-link:hover .sb-title { text-decoration: underline; }
.guide-sidebar .sb-form { border: 1px solid #d7e2ec; background: #ffffff; border-radius: 6px; padding: 14px; box-shadow: var(--shadow); }
.guide-sidebar .sb-form-h { margin: 0 0 10px; font-size: 16px; font-weight: 800; color: #0f2a42; border-bottom: 2px solid #9fb8cc; display: inline-block; padding-bottom: 4px; }
.guide-sidebar .sb-form h3 { text-align: center; margin: 2px 0; font-size: 18px; font-weight: 800; color: #0f2a42; letter-spacing: .02em; }
.guide-sidebar .sb-form .subh { text-align: center; margin: 0 0 14px; font-size: 14px; color: #5a7287; font-weight: 700; letter-spacing: .06em; }
.guide-sidebar .sb-form .stack { gap: 12px; }
.guide-sidebar .sb-form .input { height: 46px; font-size: 15px; }
.guide-sidebar .sb-form .cta { height: 48px; font-size: 16px; }
.guide-sidebar .sb-form .note { text-align: center; font-size: 12px; color: #6a8398; margin-top: 8px; }
.guide-sidebar .sb-form .note a{text-decoration:underline;text-underline-offset:2px;color:#154b75;}
.guide-sidebar .form-in-sidebar{margin:0 0 20px;padding:0 0 20px;border-bottom:1px solid #e6edf3;}

/* ================= SHARE BUTTONS ================= */
#share { text-align: center; margin: 36px 0 0; }
#share h2 { margin: 0 0 8px; font-size: 1.25rem; color: #10314a; }
#share p { margin: 0 0 14px; color: #444; }
.share-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 16px auto; }
.share-button { display: inline-block; padding: 10px 16px; font-size: .95rem; font-weight: 500; color: #ffffff; text-decoration: none; border-radius: 4px; transition: opacity .2s ease; }
.share-button:hover { opacity: .85; }
.share-button.facebook { background-color: #1877f2; }
.share-button.x { background-color: #000000; }
.share-button.pinterest { background-color: #bd081c; }
.share-button.reddit { background-color: #ff4500; }
.share-button.whatsapp { background-color: #25d366; }

/* ================= FOOTER ================= */
.site-footer { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); background: #11283c; color: #eaf3fa; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; padding: 28px 24px 20px; }
.ft-col { min-width: 0; }
.ft-brand { font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: 18px; }
.ft-text { margin: 8px 0 0; color: #cfe0ed; font-size: 14px; line-height: 1.5; }
.ft-links { display: flex; flex-direction: column; gap: 8px; }
.ft-links a { color: #eaf3fa; font-weight: 600; font-size: 14px; opacity: .95; }
.ft-links a:hover { text-decoration: underline; }
.ft-meta .ft-line { font-size: 14px; color: #cfe0ed; margin-bottom: 6px; }
.footer-top .ft-links, .footer-top .ft-meta { justify-self: end; text-align: left; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 8px; }
.footer-bottom .inner.note { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 24px 18px; font-size: 13px; color: #cfe0ed; }
.footer-bottom .copy { white-space: nowrap; }
.footer-bottom .footer-note { margin-left: auto; text-align: right; white-space: nowrap; max-width: none; overflow: hidden; text-overflow: ellipsis; line-height: 1.45; }
