*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
:root {
--primary:        #294491;
--primary-dark:   #1F3678;
--primary-deep:   #15265A;
--accent:         #62C0E6;
--accent-dark:    #45B0DC;
--accent-soft:    #DCEFF8;
--white:          #FFFFFF;
--ink:            #0F1729;
--text:           #5C6378;
--text-2:         #7A8194;
--text-muted:     #9CA3AF;
--bg-soft:        #F6F7FB;
--bg-blue-soft:   #EDF1FA;
--border:         #E5E8EE;
--border-strong:  #C9CEDA;
--error:          #DC2626;
--font-display:   'Montserrat', system-ui, -apple-system, sans-serif;
--font-body:      'Inter', system-ui, -apple-system, sans-serif;
--container:        1240px;
--container-narrow: 880px;
--gutter:           40px;
--section-y:        96px;
--r-sm:    8px;
--r-md:    14px;
--r-lg:    24px;
--r-xl:    32px;
--r-pill:  999px;
--shadow-sm: 0 1px 3px rgba(15, 23, 41, 0.06);
--shadow-md: 0 8px 24px rgba(15, 23, 41, 0.08);
--shadow-lg: 0 24px 56px rgba(15, 23, 41, 0.12);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
font-family: var(--font-body);
font-size: 16px;
font-weight: 400;
line-height: 1.65;
color: var(--text);
background: var(--white);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 {
font-family: var(--font-display);
color: var(--primary);
line-height: 1.05;
letter-spacing: -0.025em;
font-weight: 800;
}
h1 {
font-size: clamp(2rem, 3.2vw, 2.75rem);
font-weight: 800;
letter-spacing: -0.03em;
line-height: 1.1;
margin-bottom: 1.5rem;
}
h2 {
font-size: clamp(1.875rem, 3vw, 2.75rem);
font-weight: 800;
letter-spacing: -0.025em;
line-height: 1.1;
margin-bottom: 1.25rem;
}
h3 {
font-size: clamp(1.125rem, 1.5vw, 1.375rem);
font-weight: 700;
letter-spacing: -0.015em;
line-height: 1.3;
margin-bottom: 0.625rem;
}
h4 {
font-family: var(--font-display);
font-size: 1rem;
font-weight: 700;
letter-spacing: -0.015em;
line-height: 1.35;
}
p {
margin-bottom: 1rem;
color: var(--text);
font-size: 1.0625rem;
line-height: 1.7;
}
p:last-child { margin-bottom: 0; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-dark); }
strong { font-weight: 600; color: var(--accent); }
.form-message strong { color: inherit; }
.dot { color: var(--accent); display: inline-block; }
.eyebrow {
display: inline-block;
font-family: var(--font-body);
font-size: 0.8125rem;
font-weight: 600;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--primary);
margin-bottom: 1.5rem;
line-height: 1.2;
}
section.dark .eyebrow,
.hero .eyebrow { color: var(--accent); }
.container        { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-y) 0; position: relative; }
section.tight { padding: 80px 0; }
section.dark { background: var(--primary); color: var(--white); }
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: var(--white); }
section.dark p, section.dark li { color: rgba(255, 255, 255, 0.88); }
section.dark a:not(.btn) { color: var(--accent); }
section.soft { background: var(--bg-soft); }
section.pale { background: var(--bg-blue-soft); }
.nav {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-bottom: 1px solid rgba(15, 23, 41, 0.05);
position: sticky;
top: 0;
z-index: 100;
}
.nav-inner {
max-width: var(--container);
margin: 0 auto;
padding: 20px var(--gutter);
display: flex;
align-items: center;
justify-content: space-between;
gap: 32px;
}
.nav-logo {
display: flex;
align-items: center;
flex-shrink: 0;
}
.nav-logo img {
height: 44px;
width: auto;
display: block;
transition: opacity 0.2s ease;
}
.nav-logo:hover img { opacity: 0.85; }
.nav-links {
display: flex;
align-items: center;
gap: 32px;
list-style: none;
}
.nav-links a {
position: relative;
color: var(--primary);
font-weight: 500;
font-size: 0.9375rem;
letter-spacing: -0.01em;
padding: 6px 0;
white-space: nowrap;
transition: color 0.2s ease;
}
.nav-links a::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 2px;
background: var(--accent);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { color: var(--primary-dark); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--primary-dark); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-end { display: flex; align-items: center; gap: 22px; }
.nav-phone {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--primary);
font-weight: 600;
font-size: 0.9375rem;
white-space: nowrap;
font-family: var(--font-display);
letter-spacing: -0.01em;
transition: color 0.2s ease;
}
.nav-phone:hover { color: var(--primary-dark); }
.nav-phone::before {
content: '☎';
color: var(--accent);
font-size: 1.1em;
transform: rotate(-12deg);
}
.nav-toggle {
display: none;
background: none;
border: none;
font-size: 1.4rem;
color: var(--primary);
cursor: pointer;
padding: 8px;
line-height: 1;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 15px 30px;
font-family: var(--font-display);
font-size: 0.9375rem;
font-weight: 600;
letter-spacing: -0.005em;
border-radius: var(--r-pill);
border: 1.5px solid transparent;
cursor: pointer;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
white-space: nowrap;
line-height: 1.2;
}
.btn::after {
content: '→';
font-family: var(--font-body);
font-size: 1.05em;
line-height: 1;
transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover::after { transform: translateX(4px); }
.btn.no-arrow::after { display: none; }
.btn.no-arrow { gap: 0; }
.btn-primary {
background: var(--primary);
color: var(--white);
border-color: var(--primary);
}
.btn-primary:hover {
background: var(--primary-dark);
border-color: var(--primary-dark);
color: var(--white);
box-shadow: 0 8px 20px rgba(41, 68, 145, 0.28);
transform: translateY(-1px);
}
.btn-accent {
background: var(--accent);
color: var(--primary-deep);
border-color: var(--accent);
}
.btn-accent:hover {
background: var(--accent-dark);
border-color: var(--accent-dark);
color: var(--primary-deep);
box-shadow: 0 8px 20px rgba(98, 192, 230, 0.32);
transform: translateY(-1px);
}
.btn-ghost {
background: transparent;
color: var(--white);
border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.5);
color: var(--white);
}
.btn-outline {
background: transparent;
color: var(--primary);
border-color: var(--primary);
}
.btn-outline:hover {
background: var(--primary);
color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; }
.hero {
background: var(--primary);
color: var(--white);
position: relative;
overflow: hidden;
padding: 88px 0 104px;
}
.hero-grid {
max-width: var(--container);
margin: 0 auto;
padding: 0 var(--gutter);
display: grid;
grid-template-columns: 1fr 1.1fr;
gap: 64px;
align-items: center;
position: relative;
z-index: 2;
}
.hero h1 { color: var(--white); }
.hero p {
color: rgba(255, 255, 255, 0.85);
font-size: 1rem;
max-width: 520px;
line-height: 1.65;
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 2rem;
}
.hero-photo {
position: relative;
width: 110%;
margin-right: -10%;
display: flex;
align-items: center;
justify-content: center;
}
.hero-photo img {
width: 100%;
height: auto;
display: block;
max-width: 100%;
}
.split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 96px;
align-items: center;
max-width: var(--container);
margin: 0 auto;
padding: 0 var(--gutter);
}
.split.reverse > :first-child { order: 2; }
.split.reverse > :last-child  { order: 1; }
.split-content { max-width: 540px; }
.split-image {
position: relative;
aspect-ratio: 1;
background: linear-gradient(135deg, var(--bg-blue-soft), #DCE3F5);
border-radius: 50%;
display: grid;
place-items: center;
color: var(--text-muted);
font-family: var(--font-body);
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.16em;
text-transform: uppercase;
text-align: center;
padding: 32px;
overflow: hidden;
}
section.dark .split-image {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
color: rgba(255, 255, 255, 0.35);
}
.split-image.bleed-left  { width: 100%; max-width: 460px; margin-left: 0; }
.split-image.bleed-right { width: 100%; max-width: 460px; margin-left: auto; margin-right: 0; }
@media (max-width: 920px) {
.split { grid-template-columns: 1fr; gap: 48px; }
.split.reverse > :first-child,
.split.reverse > :last-child { order: unset; }
.split-image.bleed-left,
.split-image.bleed-right {
width: 100%;
max-width: 460px;
margin: 0 auto;
  }
.split-content { max-width: 100%; }
}
.content-block { max-width: 760px; }
.content-block.center { margin: 0 auto; text-align: center; }
.content-block.center .eyebrow { display: inline-block; }
ul.clean-list {
list-style: none;
padding: 0;
margin: 1.5rem 0;
}
ul.clean-list li {
position: relative;
padding-left: 26px;
margin-bottom: 0.875rem;
font-size: 1.0625rem;
line-height: 1.7;
}
ul.clean-list li::before {
content: '';
position: absolute;
left: 0;
top: 0.7em;
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--accent);
}
.steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 56px;
margin-top: 4rem;
}
.step-num {
display: inline-block;
font-family: var(--font-display);
font-weight: 800;
font-size: 1.75rem;
color: var(--accent);
letter-spacing: -0.03em;
margin-bottom: 1rem;
line-height: 1;
}
.step h3 {
font-size: 1.0625rem;
font-weight: 700;
margin-bottom: 0.625rem;
}
.step p {
font-size: 0.9375rem;
color: var(--text-2);
line-height: 1.65;
}
section.dark .step p { color: rgba(255, 255, 255, 0.78); }
@media (max-width: 920px) {
.steps { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
.steps { grid-template-columns: 1fr; gap: 32px; }
}
.faq-list { margin-top: 3rem; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
padding: 26px 0;
cursor: pointer;
font-family: var(--font-display);
font-weight: 700;
color: var(--primary);
font-size: 1.0625rem;
letter-spacing: -0.015em;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
list-style: none;
line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
content: '+';
font-family: var(--font-body);
font-size: 1.4rem;
font-weight: 300;
color: var(--primary);
flex-shrink: 0;
width: 28px;
height: 28px;
display: inline-flex;
align-items: center;
justify-content: center;
transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
padding: 0 0 28px;
color: var(--text);
font-size: 1rem;
line-height: 1.75;
max-width: 720px;
}
.form-card {
background: var(--white);
border-radius: var(--r-xl);
padding: 56px 52px;
box-shadow: var(--shadow-md);
border: 1px solid var(--border);
}
.form-section {
padding-bottom: 44px;
margin-bottom: 44px;
border-bottom: 1px solid var(--border);
}
.form-section:last-child {
padding-bottom: 0;
margin-bottom: 0;
border-bottom: none;
}
.form-section-title {
font-family: var(--font-display);
font-size: 1.125rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 0.5rem;
letter-spacing: -0.02em;
line-height: 1.2;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
}
.form-section-desc {
font-size: 0.9375rem;
color: var(--text-2);
margin-bottom: 1.75rem;
line-height: 1.6;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
margin-bottom: 24px;
}
.form-row.cols-1 { grid-template-columns: 1fr; }
.form-row:last-child { margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; margin-bottom: 24px; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
font-family: var(--font-body);
font-size: 0.9375rem;
font-weight: 600;
color: var(--primary);
margin-bottom: 8px;
letter-spacing: -0.01em;
}
.required { color: var(--error); margin-left: 3px; }
.form-help {
font-size: 0.875rem;
color: var(--text-2);
margin-top: 6px;
line-height: 1.55;
}
.form-input,
.form-select,
.form-textarea {
font-family: var(--font-body);
font-size: 1rem;
padding: 14px 16px;
border: 1.5px solid var(--border-strong);
border-radius: var(--r-sm);
background: var(--white);
color: var(--ink);
width: 100%;
max-width: 100%;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(41, 68, 145, 0.12);
}
.form-textarea { resize: vertical; min-height: 110px; }
input[type="date"].form-input,
input[type="date"] {
-webkit-appearance: none;
appearance: none;
min-width: 0;
max-width: 100%;
display: block;
}
.form-group { min-width: 0; }
.option-group {
display: flex;
flex-direction: column;
gap: 10px;
}
.option-group.horizontal {
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
}
.option-card {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 14px 18px;
border: 1.5px solid var(--border-strong);
border-radius: var(--r-md);
cursor: pointer;
transition: all 0.2s ease;
background: var(--white);
flex: 1 1 auto;
min-width: 130px;
}
.option-card:hover { border-color: var(--primary); background: var(--bg-blue-soft); }
.option-card input[type="radio"] {
width: 18px;
height: 18px;
accent-color: var(--primary);
cursor: pointer;
flex-shrink: 0;
}
.option-card:has(input:checked) {
border-color: var(--primary);
background: var(--bg-blue-soft);
}
.option-card:has(input:checked) .option-label {
font-weight: 600;
color: var(--primary);
}
.option-label {
font-size: 0.9375rem;
color: var(--text);
flex: 1;
line-height: 1.4;
}
.form-actions {
display: flex;
gap: 14px;
margin-top: 2.5rem;
flex-wrap: wrap;
}
.info-notice {
background: var(--bg-blue-soft);
border-radius: var(--r-md);
padding: 22px 26px;
margin-bottom: 32px;
}
.info-notice h4 { color: var(--ink); margin-bottom: 8px; font-size: 0.9375rem; }
.info-notice p, .info-notice li {
font-size: 0.9375rem;
color: var(--text);
line-height: 1.6;
}
.info-notice ul { padding-left: 20px; margin: 0; }
.form-message {
position: relative;
padding: 22px 26px;
border-radius: var(--r-md);
margin-bottom: 28px;
display: none;
font-size: 0.9375rem;
line-height: 1.65;
border: 1px solid;
font-family: var(--font-body);
}
.form-message.show { display: block; }
.form-message strong {
color: inherit;
font-weight: 700;
font-family: var(--font-display);
letter-spacing: -0.015em;
font-size: 1.0625rem;
display: inline-block;
margin-right: 4px;
}
.form-message a {
color: inherit;
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
font-weight: 500;
transition: opacity 0.2s ease;
}
.form-message a:hover { opacity: 0.75; }
.form-message.success {
background: var(--accent-soft);
border-color: rgba(41, 68, 145, 0.18);
color: var(--primary-deep);
}
.form-message.error {
background: #FBF1EC;
border-color: #E6CDB7;
color: #5C2914;
}
.calc-wrap {
display: grid;
grid-template-columns: 1fr 400px;
gap: 56px;
align-items: start;
max-width: var(--container);
margin: 0 auto;
padding: 0 var(--gutter);
}
.calc-form {
background: var(--white);
border-radius: var(--r-xl);
padding: 52px 48px;
box-shadow: var(--shadow-md);
border: 1px solid var(--border);
}
.calc-result {
position: sticky;
top: 100px;
background: var(--primary);
color: var(--white);
border-radius: var(--r-xl);
padding: 48px 40px;
box-shadow: var(--shadow-lg);
overflow: hidden;
transition: background 0.3s ease;
}
.result-panel { display: block; }
.calc-result[data-state="in-range"]    .result-out { display: none; }
.calc-result[data-state="out-of-range"] .result-in  { display: none; }
.calc-result[data-state="out-of-range"] {
background: var(--bg-soft);
color: var(--text);
border: 1px solid var(--border);
}
.result-label {
font-family: var(--font-body);
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.18em;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 24px;
}
.calc-result[data-state="out-of-range"] .result-label { color: var(--text-2); }
.result-amount {
font-family: var(--font-display);
font-weight: 800;
font-size: clamp(2.75rem, 4.5vw, 3.5rem);
letter-spacing: -0.04em;
line-height: 0.95;
color: var(--white);
margin-bottom: 12px;
display: flex;
align-items: flex-start;
gap: 4px;
}
.result-amount .amount-cur {
font-size: 0.5em;
font-weight: 700;
color: var(--accent);
margin-top: 0.18em;
letter-spacing: 0;
}
.result-meta {
font-family: var(--font-body);
font-size: 0.9375rem;
color: rgba(255, 255, 255, 0.75);
margin-bottom: 40px;
line-height: 1.55;
}
.result-meta .meta-strong {
color: var(--accent);
font-weight: 600;
}
.result-divider {
border: none;
height: 1px;
background: rgba(255, 255, 255, 0.15);
margin: 0 0 32px;
}
.calc-result[data-state="out-of-range"] .result-divider {
background: var(--border);
}
.result-message {
font-size: 1rem;
color: var(--text);
line-height: 1.65;
margin-bottom: 40px;
}
.result-title {
font-family: var(--font-display);
font-weight: 800;
font-size: 1.25rem;
letter-spacing: -0.02em;
color: var(--primary);
margin-bottom: 12px;
line-height: 1.2;
}
.result-actions {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 32px;
}
.result-disclaimer {
font-family: var(--font-body);
font-size: 0.75rem;
color: rgba(255, 255, 255, 0.55);
line-height: 1.6;
margin: 0;
}
.calc-result[data-state="out-of-range"] .result-disclaimer { color: var(--text-2); }
.range-current {
font-family: var(--font-display);
font-weight: 800;
color: var(--primary);
font-size: 1.375rem;
margin-bottom: 10px;
letter-spacing: -0.025em;
line-height: 1;
}
.range-current .range-unit {
font-family: var(--font-body);
font-weight: 400;
color: var(--text-2);
font-size: 0.875rem;
margin-left: 10px;
letter-spacing: 0;
}
.range-values {
display: flex;
justify-content: space-between;
font-size: 0.8125rem;
color: var(--text-2);
margin-top: 10px;
gap: 12px;
}
input[type="range"] {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 6px;
background: var(--border);
border-radius: var(--r-pill);
outline: none;
cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 24px;
height: 24px;
background: var(--primary);
border-radius: 50%;
cursor: pointer;
border: 3px solid var(--white);
box-shadow: 0 2px 8px rgba(15, 23, 41, 0.18);
transition: transform 0.15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type="range"]::-moz-range-thumb {
width: 24px;
height: 24px;
background: var(--primary);
border-radius: 50%;
cursor: pointer;
border: 3px solid var(--white);
box-shadow: 0 2px 8px rgba(15, 23, 41, 0.18);
}
.footer {
background: var(--primary-deep);
color: rgba(255, 255, 255, 0.7);
padding: 88px 0 36px;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 56px;
max-width: var(--container);
margin: 0 auto;
padding: 0 var(--gutter) 56px;
}
.footer-brand .nav-logo {
display: flex;
align-items: center;
}
.footer-brand img {
height: 52px;
width: auto;
display: block;
filter: brightness(0) invert(1);
}
.footer-tagline {
margin-top: 1.5rem;
font-size: 0.9375rem;
color: rgba(255, 255, 255, 0.55);
max-width: 320px;
line-height: 1.65;
}
.footer-col h4 {
font-family: var(--font-display);
color: var(--white);
font-size: 0.8125rem;
letter-spacing: 0.14em;
text-transform: uppercase;
margin-bottom: 1.25rem;
font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: rgba(255, 255, 255, 0.55); font-size: 0.9375rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding: 28px var(--gutter) 0;
max-width: var(--container);
margin: 0 auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
font-size: 0.8125rem;
color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
color: rgba(255, 255, 255, 0.35);
transition: color 0.2s ease;
}
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 1024px) {
.calc-wrap { grid-template-columns: 1fr; }
.calc-result { position: static; }
.footer-grid { grid-template-columns: 1fr 1fr; }
.hero-grid { grid-template-columns: 1fr; gap: 56px; }
.hero-photo { width: 100%; margin: 0; max-width: 480px; justify-self: center; }
.nav-links { gap: 22px; }
.nav-end { gap: 14px; }
}
@media (max-width: 768px) {
:root { --section-y: 72px; --gutter: 20px; }
section.tight { padding: 56px 0; }
.container, .container-narrow, .nav-inner, .hero-grid, .split, .calc-wrap {
padding-left: 20px;
padding-right: 20px;
}
.hero { padding: 56px 0 72px; }
.hero-grid { gap: 40px; }
.hero p { font-size: 0.9375rem; }
.nav-inner {
padding: 14px 20px;
gap: 12px;
}
.nav-logo img { height: 36px; }
.nav-links { display: none; }
.nav-phone { display: none; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
.nav-links.open {
display: flex;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
align-items: stretch;
padding: 12px 20px 20px;
gap: 0;
box-shadow: var(--shadow-md);
border-bottom: 1px solid var(--border);
list-style: none;
}
.nav-links.open li { width: 100%; }
.nav-links.open a {
display: block;
padding: 14px 4px;
font-size: 1rem;
border-bottom: 1px solid var(--border);
}
.nav-links.open li:last-child a { border-bottom: none; }
.nav-links.open a::after { display: none; }
.nav-end { gap: 8px; }
.nav-end .btn-primary {
padding: 10px 18px;
font-size: 0.8125rem;
}
.nav-end .btn-primary::after { display: none; }
.hero-actions { flex-direction: column; align-items: stretch; }
.hero-actions .btn { width: 100%; }
.form-row { grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
.form-card, .calc-form { padding: 28px 22px; border-radius: var(--r-lg); }
.form-section { padding-bottom: 32px; margin-bottom: 32px; }
.form-section-title { font-size: 1.0625rem; }
.form-group { margin-bottom: 20px; }
.form-input, .form-select, .form-textarea { font-size: 16px; padding: 12px 14px; }
.calc-result { padding: 32px 24px; border-radius: var(--r-lg); }
.option-group.horizontal { flex-direction: column; gap: 8px; }
.option-card { min-width: 0; width: 100%; padding: 12px 16px; }
.range-values { font-size: 0.75rem; }
.range-current { font-size: 1.25rem; }
.footer { padding: 64px 0 28px; }
.footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
.footer-bottom { flex-direction: column; text-align: left; }
.form-actions { flex-direction: column; }
.form-actions .btn { width: 100%; }
.result-actions { gap: 10px; }
.section-status { font-size: 11px; }
}
@media (max-width: 480px) {
:root { --section-y: 56px; --gutter: 16px; }
.container, .container-narrow, .nav-inner, .hero-grid, .split, .calc-wrap {
padding-left: 16px;
padding-right: 16px;
}
.nav-inner { padding: 12px 16px; gap: 8px; }
.nav-logo img { height: 32px; }
.nav-end { gap: 6px; }
.nav-end .btn-primary {
padding: 9px 14px;
font-size: 0.75rem;
}
.nav-toggle { padding: 6px; font-size: 1.25rem; }
.hero { padding: 44px 0 60px; }
.hero-grid { gap: 32px; }
.form-card, .calc-form { padding: 22px 16px; }
.form-section { padding-bottom: 26px; margin-bottom: 26px; }
.form-section-title { font-size: 1rem; }
.form-section-desc { font-size: 0.875rem; }
.calc-result { padding: 26px 20px; }
.result-amount { font-size: 2.5rem; }
.info-notice { padding: 18px 20px; }
.form-message { padding: 18px 20px; }
.btn-lg { padding: 15px 24px; font-size: 0.9375rem; }
}
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.mb-lg { margin-bottom: 3rem; }
.sr-only {
position: absolute;
width: 1px; height: 1px;
padding: 0; margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}
.nav-brands {
display: flex;
align-items: center;
gap: 16px;
flex-shrink: 0;
min-width: 0;
}
.nav-brand-divider {
width: 1px;
height: 32px;
background: var(--border-strong);
flex-shrink: 0;
}
.nav-logo-partner img {
height: 32px;
width: auto;
display: block;
transition: opacity 0.2s ease;
}
.nav-logo-partner:hover img {
opacity: 0.85;
}
.hero-partnership {
display: inline-flex;
align-items: center;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 1.5rem;
font-size: 0.8125rem;
color: rgba(255, 255, 255, 0.72);
font-family: var(--font-body);
letter-spacing: 0.02em;
}
.hero-partner-logo {
height: 22px;
width: auto;
display: inline-block;
flex-shrink: 0;
vertical-align: middle;
}
.footer-brands {
display: flex;
align-items: center;
gap: 22px;
flex-wrap: wrap;
}
.footer-brand-divider {
width: 1px;
height: 44px;
background: rgba(255, 255, 255, 0.2);
flex-shrink: 0;
}
.footer-logo-partner img {
height: 40px;
width: auto;
display: block;
filter: none;
transition: opacity 0.2s ease;
}
.footer-logo-partner:hover img {
opacity: 0.85;
}
@media (max-width: 768px) {
.nav-brands { gap: 10px; }
.nav-brand-divider { height: 26px; }
.nav-logo-partner img { height: 26px; width: auto; }
.hero-partnership { font-size: 0.75rem; gap: 8px; }
.hero-partner-logo { height: 18px; width: auto; }
.footer-brands { gap: 16px; }
.footer-brand-divider { height: 38px; }
.footer-logo-partner img { height: 34px; width: auto; }
}
@media (max-width: 480px) {
.nav-brands { gap: 8px; }
.nav-brand-divider { height: 22px; }
.nav-logo-partner img { height: 22px; width: auto; }
.hero-partnership { font-size: 0.6875rem; gap: 6px; }
.hero-partner-logo { height: 16px; width: auto; }
.footer-logo-partner img { height: 30px; width: auto; }
}
@media (max-width: 380px) {
.nav-inner { gap: 6px; padding: 10px 14px; }
.nav-brands { gap: 6px; }
.nav-logo img { height: 28px; }
.nav-logo-partner img { height: 20px; width: auto; }
.nav-brand-divider { height: 20px; }
.nav-end .btn-primary { padding: 8px 10px; font-size: 0.7rem; }
.nav-toggle { padding: 4px; font-size: 1.15rem; }
}