:root {
  --ink: #10294d;
  --navy: #0d3f78;
  --blue: #2478d5;
  --blue-soft: #eef7ff;
  --red: #ed4b43;
  --red-dark: #ca302c;
  --green: #6cc96f;
  --green-deep: #338b65;
  --mint: #e4fbf4;
  --line: #dce8f3;
  --paper: #ffffff;
  --muted: #60718d;
  --shadow: 0 18px 45px rgba(24, 64, 108, .12);
  --radius: 22px;
  --sans: Arial, 'Helvetica Neue', Helvetica, 'Noto Sans', 'Liberation Sans', sans-serif;
  --serif: var(--sans);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: var(--sans); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
body, button, input, select, textarea, option { font-family: var(--sans); }
button { cursor: pointer; }
.skip-link { position: absolute; top: -50px; left: 18px; z-index: 100; background: var(--navy); color: #fff; padding: 9px 14px; border-radius: 8px; }
.skip-link:focus { top: 18px; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; }
.section { padding: 92px 0; position: relative; }
.section--tint { background: linear-gradient(180deg, #f8fcff 0%, #f5fbff 100%); }
.section-title { max-width: 710px; margin: 0; color: var(--navy); font-family: var(--serif); font-size: clamp(29px, 3.6vw, 48px); line-height: 1.15; letter-spacing: -.02em; }
.section-title--center { text-align: center; margin-inline: auto; }
.section-lead { max-width: 650px; color: var(--muted); margin: 14px 0 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.section-head--center { display: block; text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 100px; min-height: 47px; padding: 0 21px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; text-decoration: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 20px rgba(237,75,67,.22); }
.btn--primary:hover { background: var(--red-dark); }
.btn--outline { border-color: rgba(13,63,120,.26); color: var(--navy); background: rgba(255,255,255,.72); }
.btn--outline:hover { background: #fff; box-shadow: 0 10px 25px rgba(28,83,137,.12); }
.btn svg { width: 17px; height: 17px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.93); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(189,211,232,.68); }
.header-wrap { min-height: 76px; display: flex; justify-content: space-between; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 56px; width: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 23px; }
.site-nav a { color: #405776; font-size: 13px; font-weight: 750; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus { color: var(--red); }
.menu-toggle { width: 44px; height: 44px; display: none; align-items: center; justify-content: center; background: #f3f8fd; border: 1px solid var(--line); border-radius: 12px; color: var(--navy); }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; display: block; width: 19px; height: 2px; background: currentColor; position: absolute; border-radius: 2px; transition: transform .2s ease; }
.menu-toggle span { position: relative; }
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open::before { transform: rotate(45deg); }
.menu-toggle.is-open::after { transform: rotate(-45deg); }

/* Hero */
.hero { overflow: hidden; background: radial-gradient(circle at 80% 3%, #e1f7ff 0, rgba(225,247,255,0) 39%), linear-gradient(135deg, #fcfeff 0%, #effaff 100%); position: relative; }
.hero::before { content: ''; position: absolute; width: 680px; height: 680px; border-radius: 50%; left: -340px; bottom: -450px; border: 1px solid rgba(65,151,213,.13); box-shadow: 0 0 0 72px rgba(65,151,213,.05), 0 0 0 144px rgba(65,151,213,.035); }
.hero-wrap { min-height: 610px; padding: 76px 0 64px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; position: relative; }
.hero-content { position: relative; z-index: 2; }
.hero-logos { display: flex; align-items: center; gap: 9px; margin-bottom: 26px; }
.logo-pill { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 10px; background: #fff; box-shadow: 0 8px 20px rgba(31,72,112,.11); color: var(--red); font-size: 10px; font-weight: 900; }
.logo-pill--blue { color: var(--navy); }
.hero h1 { max-width: 660px; margin: 12px 0 17px; color: #123c68; font-family: var(--sans); font-size: clamp(36px, 5vw, 60px); line-height: .99; letter-spacing: -.055em; }
.hero h1 span { color: var(--red); display: block; }
.hero-sub { max-width: 510px; margin: 0; color: #385c7d; font-size: clamp(17px, 2vw, 20px); font-weight: 650; }
.hero-copy { max-width: 546px; margin: 18px 0 28px; color: #60718d; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 23px; color: #53738d; font-size: 12.5px; }
.hero-note i { width: 9px; height: 9px; flex: 0 0 9px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(108,201,111,.18); }
.hero-visual { position: relative; z-index: 1; }
.hero-visual::after { content: ''; position: absolute; width: 76%; height: 13%; left: 12%; bottom: 3%; border-radius: 50%; background: rgba(25,80,91,.16); filter: blur(23px); z-index: -1; }
.hero-visual img { width: 100%; filter: drop-shadow(0 24px 18px rgba(47,114,120,.09)); }
.hero-badge { position: absolute; right: -14px; top: 8%; padding: 13px 15px; border-radius: 16px; background: rgba(255,255,255,.88); box-shadow: var(--shadow); font-size: 12px; color: #5b6e88; }
.hero-badge strong { display: block; color: var(--navy); font-size: 14px; }

/* Intro */
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 63px; align-items: center; }
.intro-content p { color: #526985; margin: 13px 0; }
.intro-quote { margin: 28px 0 0; padding: 20px 22px; border-left: 4px solid var(--red); background: linear-gradient(90deg, #fff5f3, rgba(255,255,255,0)); color: var(--red-dark); font-size: 15px; font-weight: 800; }
.intro-photo { position: relative; }
.intro-photo figure { margin: 0; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); background: #eaf5fb; }
.intro-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.intro-frame { position: absolute; width: 48%; height: 50%; border: 2px solid rgba(237,75,67,.55); border-radius: 22px; bottom: -18px; left: -18px; z-index: -1; }
.intro-photo figcaption { position: absolute; right: 16px; bottom: 16px; border-radius: 12px; padding: 8px 12px; background: rgba(14,51,89,.79); color: #fff; font-size: 11px; font-weight: 700; }

/* Benefit */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit { position: relative; text-align: center; padding: 9px 12px 0; }
.benefit + .benefit::before { content: ''; position: absolute; width: 1px; height: 78px; left: -10px; top: 18px; background: #dbe6ef; }
.icon-round { width: 47px; height: 47px; display: grid; place-items: center; margin: 0 auto 13px; border-radius: 50%; color: var(--blue); background: linear-gradient(145deg, #fff, #e3f2ff); box-shadow: 0 8px 18px rgba(33,116,190,.12); }
.icon-round svg { width: 22px; height: 22px; }
.benefit h3 { margin: 0 0 7px; color: var(--navy); font-size: 15px; }
.benefit p { max-width: 230px; margin: 0 auto; color: #667892; font-size: 13px; }

/* Standard */
.standard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.standard { position: relative; padding: 26px 26px 24px; border: 1px solid #e1eaf3; border-top: 3px solid #4d94eb; border-radius: 17px; background: #fff; box-shadow: 0 13px 28px rgba(28,75,122,.08); }
.standard-num { position: absolute; top: 20px; right: 22px; color: #dcecfb; font-size: 37px; font-weight: 900; line-height: 1; }
.standard-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: #edf6ff; color: var(--blue); margin-bottom: 18px; }
.standard-icon svg { width: 20px; height: 20px; }
.standard h3 { position: relative; margin: 0 0 10px; color: var(--navy); font-size: 18px; }
.standard p { position: relative; margin: 0; color: #5c6f89; font-size: 14px; }
.standard ul { position: relative; padding: 0; margin: 14px 0 0; list-style: none; }
.standard li { display: flex; gap: 8px; margin-top: 8px; color: #46637f; font-size: 13.5px; }
.standard li::before { content: '✓'; display: grid; place-items: center; width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px; border-radius: 50%; background: #e7f9ee; color: #339260; font-size: 10px; font-weight: 900; }
.criteria-note { display: flex; gap: 12px; margin-top: 19px; padding: 15px 19px; border-radius: 12px; background: #edf3f8; color: #506880; font-size: 13px; }
.criteria-note strong { color: var(--navy); }

/* Timeline */
.timeline { position: relative; max-width: 940px; margin: 49px auto 0; }
.timeline::before { content: ''; position: absolute; width: 2px; top: 10px; bottom: 10px; left: 50%; background: linear-gradient(var(--blue), #bfe6d5, var(--green)); }
.timeline-item { display: grid; grid-template-columns: 1fr 70px 1fr; min-height: 170px; align-items: center; }
.timeline-item:nth-child(odd) .timeline-card { grid-column: 1; text-align: right; justify-self: end; }
.timeline-item:nth-child(odd) .timeline-date { grid-column: 3; text-align: left; justify-self: start; }
.timeline-item:nth-child(even) .timeline-card { grid-column: 3; justify-self: start; }
.timeline-item:nth-child(even) .timeline-date { grid-column: 1; text-align: right; justify-self: end; }
.timeline-dot { grid-column: 2; grid-row: 1; position: relative; z-index: 1; width: 42px; height: 42px; margin: auto; display: grid; place-items: center; border: 7px solid #fff; border-radius: 50%; color: #fff; background: var(--green); box-shadow: 0 0 0 1px #9ddbb8, 0 7px 14px rgba(35,142,93,.18); }
.timeline-dot svg { width: 16px; height: 16px; }
.timeline-card { width: min(100%, 360px); padding: 22px 23px; border-radius: 15px; background: #fff; box-shadow: 0 14px 34px rgba(26,69,108,.10); }
.timeline-card small { display: block; color: #59a870; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.timeline-card h3 { margin: 4px 0 8px; color: var(--navy); font-size: 17px; }
.timeline-card p { margin: 0; color: #667792; font-size: 13px; }
.timeline-date { color: #7890a8; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }

/* Form Shell & Step Process */
.application-shell { overflow: hidden; border-radius: 26px; background: #fff; box-shadow: 0 18px 48px rgba(28,75,122,.13); }
.application-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 27px 32px; color: #fff; background: linear-gradient(110deg, #0d5ca6, #1881c5 60%, #54c6c0); }
.application-top h3 { margin: 0; font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); }
.application-top p { margin: 3px 0 0; font-size: 13px; opacity: .92; }

/* Progress Stepper */
.application-step { display: flex; gap: 15px; flex: 0 0 auto; align-items: center; }
.step-item { display: flex; align-items: center; gap: 8px; }
.step-num { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; transition: all 0.3s ease; }
.step-item.active .step-num { color: var(--navy); border-color: #fff; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,0.4); }
.step-item.completed .step-num { color: #fff; border-color: var(--green); background: var(--green); }
.step-text { color: rgba(255,255,255,0.7); font-size: 12.5px; font-weight: 700; }
.step-item.active .step-text { color: #fff; }

/* Multi-step Form Content */
.application-form { padding: 34px 32px 38px; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.4s ease-in-out; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-block { padding: 0 0 26px; margin: 0 0 27px; border-bottom: 1px solid var(--line); }
.form-block:last-of-type { margin-bottom: 0; border-bottom: 0; }
.form-block-title { display: flex; align-items: center; gap: 10px; margin: 0 0 19px; color: var(--navy); font-size: 18px; border-bottom: 2px solid var(--blue-soft); padding-bottom: 8px; }
.form-block-title i { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px #fff0ed; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px 16px; }
.form-grid--two { grid-template-columns: repeat(2, 1fr); }
.form-grid .field--wide { grid-column: span 2; }
.form-grid .field--full { grid-column: 1 / -1; }

.field label { display: block; margin-bottom: 7px; color: #4d6380; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.field label em { color: var(--red); font-style: normal; }
.field input, .field select, .field textarea { width: 100%; min-height: 44px; padding: 10px 13px; border: 1px solid #cfe0ec; outline: none; border-radius: 9px; color: var(--ink); background: #fbfdff; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 88px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a9bbca; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #5aa6ed; background: #fff; box-shadow: 0 0 0 4px rgba(55,135,219,.12); }

/* Custom Form elements for details */
.cost-input-group { display: flex; align-items: center; gap: 10px; }
.cost-input-group span { color: var(--muted); font-size: 13px; font-weight: 700; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 20px; padding: 10px 0; }
.checkbox-item { display: flex; align-items: center; gap: 8px; color: #4d6380; font-size: 14px; font-weight: 700; cursor: pointer; }
.checkbox-item input { width: 18px; height: 18px; accent-color: var(--blue); cursor: pointer; }

/* Sub-lists for siblings and education */
.dynamic-list-container { background: #f8fcff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.dynamic-row { display: grid; grid-template-columns: repeat(4, 1fr) 50px; gap: 10px; margin-bottom: 10px; align-items: end; }
.dynamic-row:last-child { margin-bottom: 0; }
.btn-remove-row { background: #ffeded; color: var(--red); border: 1px solid #ffcccc; width: 44px; height: 44px; border-radius: 9px; display: grid; place-items: center; font-size: 18px; transition: all 0.2s; }
.btn-remove-row:hover { background: var(--red); color: #fff; }
.btn-add-row { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 800; color: var(--blue); background: #eef7ff; border: 1px dashed var(--blue); padding: 8px 16px; border-radius: 8px; margin-top: 10px; transition: all 0.2s; }
.btn-add-row:hover { background: var(--blue); color: #fff; }

/* Upload list */
.upload-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.upload-box { min-height: 120px; padding: 20px 15px; border: 1px dashed #9dc5df; border-radius: 12px; background: #f8fcff; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.2s; }
.upload-box:hover { border-color: var(--blue); background: #f0f7ff; }
.upload-box input { display: none; }
.upload-box label { display: flex; flex-direction: column; align-items: center; color: #3872a0; font-size: 12px; font-weight: 800; cursor: pointer; width: 100%; height: 100%; }
.upload-box svg { width: 26px; height: 26px; margin-bottom: 8px; color: var(--blue); }
.file-name-preview { margin-top: 6px; font-size: 11px; color: var(--green-deep); word-break: break-all; max-width: 100%; display: none; }

.form-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; color: #61738c; font-size: 13.5px; line-height: 1.5; }
.form-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--red); cursor: pointer; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; border-top: 1px solid var(--line); padding-top: 24px; }
.form-disclaimer { color: #8192a7; font-size: 12px; max-width: 50%; }

/* Error messages */
.input-error { border-color: var(--red) !important; background-color: #fffaf9 !important; }
.error-message { color: var(--red); font-size: 11.5px; font-weight: 700; margin-top: 4px; display: block; }

/* Lookup Section */
.lookup-card { max-width: 600px; margin: 0 auto; background: #fff; padding: 32px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.lookup-form { display: flex; gap: 10px; margin-top: 20px; }
.lookup-form input { flex: 1; min-height: 48px; border-radius: 100px; padding: 10px 20px; border: 1px solid #cfe0ec; outline: none; }
.lookup-form input:focus { border-color: var(--blue); }
.lookup-result { margin-top: 24px; padding-top: 24px; border-top: 1px dashed var(--line); display: none; }
.status-badge { display: inline-block; padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.status-badge--pending { background: #fff5e6; color: #cc7a00; }
.status-badge--need_info { background: #eef2f7; color: #5a6e85; }
.status-badge--approved { background: #e6faf0; color: #2d8a5e; }
.status-badge--rejected { background: #ffebee; color: #c62828; }

/* Success Page */
.success-card { text-align: center; max-width: 700px; margin: 0 auto; background: #fff; padding: 48px 32px; border-radius: 26px; box-shadow: var(--shadow); border-top: 4px solid var(--green); }
.success-icon { width: 72px; height: 72px; background: #e6faf0; color: var(--green); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 20px; }
.success-icon svg { width: 36px; height: 36px; }
.success-card h2 { color: var(--navy); font-size: 28px; margin: 0 0 10px; }
.success-card p { color: var(--muted); margin: 0 0 24px; }
.code-box { background: var(--blue-soft); border: 1px dashed var(--blue); padding: 15px 24px; border-radius: 12px; font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: 0.05em; display: inline-block; margin-bottom: 28px; }
.action-box { display: flex; flex-direction: column; gap: 12px; align-items: center; }

/* Footer */
.site-footer { overflow: hidden; padding-top: 58px; background: linear-gradient(135deg, #f7fdff 0%, #e4f4ff 50%, #f1fff7 100%); border-top: 1px solid #e4eff6; }
.footer-grid { display: grid; grid-template-columns: 1.1fr .85fr 1.15fr; gap: 44px; align-items: center; padding-bottom: 42px; }
.footer-logo { height: 64px; width: auto; object-fit: contain; }
.footer-copy { margin: 16px 0 0; color: #60748e; font-size: 13px; }
.social-list { display: flex; gap: 9px; margin-top: 16px; }
.social-list a { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: 12px; font-weight: 900; }
.footer-contact h3 { margin: 0 0 10px; color: var(--navy); font-size: 16px; }
.footer-contact p { margin: 4px 0; color: #58708b; font-size: 13px; }
.footer-map { overflow: hidden; border: 5px solid #fff; border-radius: 16px; box-shadow: 0 9px 24px rgba(28,75,122,.12); }
.footer-map iframe { width: 100%; height: 200px; border: 0; display: block; }
.copyright { padding: 15px 20px; text-align: center; color: #7590a5; border-top: 1px solid rgba(175,208,229,.62); font-size: 11px; }

/* Preview View Styling */
.preview-container { background: #fff; border-radius: 20px; border: 1px solid var(--line); padding: 40px; box-shadow: var(--shadow); }
.preview-section { margin-bottom: 30px; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.preview-section:last-child { border-bottom: 0; padding-bottom: 0; }
.preview-section-title { color: var(--navy); font-size: 18px; margin: 0 0 16px; font-weight: 800; border-left: 4px solid var(--blue); padding-left: 10px; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.preview-item { display: flex; flex-direction: column; }
.preview-label { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.preview-value { color: var(--ink); font-size: 14.5px; font-weight: 700; word-break: break-all; }
.preview-value--full { grid-column: 1 / -1; }
.preview-value--wide { grid-column: span 2; }
.preview-avatar { width: 90px; height: 120px; object-fit: cover; border-radius: 6px; border: 2px solid var(--line); }

@media (max-width: 940px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 12px; }
  .hero-wrap { min-height: unset; padding-top: 58px; }
  .intro-grid { gap: 40px; }
  .benefit { padding-inline: 4px; }
  .application-top { padding-inline: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 32px, 560px); }
  .section { padding: 64px 0; }
  .section-head { display: block; margin-bottom: 28px; }
  .section-head .btn { margin-top: 18px; }
  .header-wrap { min-height: 66px; }
  .brand img { height: 48px; }
  .menu-toggle { display: flex; position: relative; }
  .site-nav { position: absolute; inset: calc(100% + 1px) 0 auto; display: none; padding: 11px 16px 18px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: 0 11px 22px rgba(18,56,90,.08); }
  .site-nav.is-open { display: grid; gap: 2px; }
  .site-nav a { display: block; padding: 11px 2px; font-size: 13px; }
  .hero-wrap { grid-template-columns: 1fr; gap: 24px; padding: 54px 0 38px; }
  .hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .hero-visual { order: 2; width: min(100%, 490px); margin-inline: auto; }
  .hero-badge { right: 0; top: 4%; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-photo { margin-top: 5px; }
  .intro-frame { left: -8px; bottom: -10px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .benefit + .benefit::before { display: none; }
  .standard-grid { grid-template-columns: 1fr; gap: 14px; }
  .standard { padding: 23px 20px; }
  .timeline { margin-top: 32px; padding-left: 22px; }
  .timeline::before { left: 20px; }
  .timeline-item { display: block; position: relative; min-height: 0; padding: 0 0 25px 31px; }
  .timeline-dot { position: absolute; top: 22px; left: 0; width: 40px; height: 40px; border-width: 6px; }
  .timeline-card, .timeline-item:nth-child(odd) .timeline-card { width: 100%; text-align: left; }
  .timeline-date, .timeline-item:nth-child(even) .timeline-date { position: static; display: block; margin: 0 0 7px; transform: none; color: var(--green-deep); }
  
  .application-shell { margin-inline: -1px; border-radius: 18px; }
  .application-top { display: block; padding: 23px 19px; }
  .application-step { margin-top: 16px; flex-wrap: wrap; }
  .application-form { padding: 25px 19px 29px; }
  .form-grid, .form-grid--two { grid-template-columns: 1fr; gap: 14px; }
  .form-grid .field--wide { grid-column: auto; }
  .dynamic-row { grid-template-columns: 1fr; gap: 8px; }
  .btn-remove-row { width: 100%; margin-top: 5px; }
  .upload-list { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }
  .form-disclaimer { max-width: 100%; text-align: center; }
  .preview-grid { grid-template-columns: 1fr; }
}
