@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@600;700;900&display=swap");
/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
--blue: #07194a;
--blue-mid: #0e2a6e;
--olive: #7a7d1d;
--gold: #c6cb61;
--cream: #f7f5ef;
--white: #ffffff;
--text: #1a1a2e;
--text-muted: #5a5f7a;
--border: rgba(7, 25, 74, 0.1);
--font-display: "Playfair Display", Georgia, serif;
--font-body: "Inter", system-ui, sans-serif;
--radius-sm: 8px;
--radius-md: 14px;
--radius-lg: 22px;
--radius-xl: 32px;
--radius-pill: 999px;
--shadow-soft: 0 2px 12px rgba(7, 25, 74, 0.07);
--shadow-medium: 0 6px 28px rgba(7, 25, 74, 0.11);
--shadow-strong: 0 16px 48px rgba(7, 25, 74, 0.16);
--transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
--container: 1140px;
}
/* ─── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
}
body {
font-family: var(--font-body);
font-size: 16px;
line-height: 1.65;
color: var(--text);
background: var(--white);
-webkit-font-smoothing: antialiased;
}
img {
max-width: 100%;
display: block;
}
a {
color: var(--blue);
text-decoration: underline;
text-underline-offset: 3px;
transition: color var(--transition), opacity var(--transition);
}
a:hover { color: var(--olive); }
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
outline: 3px solid var(--gold);
outline-offset: 3px;
border-radius: 3px;
}
ul, ol { list-style: none; }
/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
width: 100%;
max-width: var(--container);
margin: 0 auto;
padding: 0 24px;
}
.section { padding: 80px 0; }
.section-soft { background: var(--cream); }
/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow {
display: inline-block;
font-size: 11px;
font-weight: 900;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--olive);
margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold); }
.section-title {
font-family: var(--font-display);
font-size: clamp(28px, 3.8vw, 42px);
font-weight: 700;
color: var(--blue);
line-height: 1.12;
margin-bottom: 34px;
max-width: 760px;
}
.section-lead {
color: var(--text-muted);
max-width: 620px;
font-size: 16px;
}
/* ─── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
opacity: 0;
transform: translateY(22px);
transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
opacity: 1;
transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
.reveal {
opacity: 1;
transform: none;
transition: none;
}
}
/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 14px;
font-weight: 800;
padding: 13px 24px;
border-radius: var(--radius-pill);
text-decoration: none;
cursor: pointer;
border: 2px solid transparent;
transition:
background var(--transition),
color var(--transition),
border-color var(--transition),
transform var(--transition),
box-shadow var(--transition);
white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
background: var(--blue);
color: var(--white);
border-color: var(--blue);
}
.btn-primary:hover {
background: var(--olive);
border-color: var(--olive);
color: var(--white);
box-shadow: 0 4px 16px rgba(122, 125, 29, 0.32);
}
.btn-outline {
background: transparent;
color: var(--blue);
border-color: var(--blue);
}
.btn-outline:hover {
background: var(--blue);
color: var(--white);
}
.btn-outline-light {
background: transparent;
color: var(--white);
border-color: rgba(255, 255, 255, 0.52);
}
.btn-outline-light:hover {
background: rgba(255, 255, 255, 0.12);
color: var(--white);
}
.btn-full { width: 100%; }
.cta-main {
background: var(--gold);
border-color: var(--gold);
color: var(--blue);
}
.cta-main:hover {
background: #d7dc73;
border-color: #d7dc73;
color: var(--blue);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 28px;
}
/* ─── TOP BAR ────────────────────────────────────────────────── */
.top-bar {
background: var(--blue);
color: rgba(255, 255, 255, 0.7);
font-size: 12px;
font-weight: 500;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 8px 24px;
flex-wrap: wrap;
}
.top-location { letter-spacing: 0.04em; }
.top-actions {
display: flex;
gap: 8px;
flex-wrap: wrap;
align-items: center;
}
.top-pill {
color: rgba(255, 255, 255, 0.78);
text-decoration: none;
padding: 4px 12px;
border-radius: var(--radius-pill);
border: 1px solid rgba(255, 255, 255, 0.22);
font-size: 11px;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 5px;
transition: background var(--transition), color var(--transition);
}
.top-pill:hover {
background: rgba(255, 255, 255, 0.12);
color: var(--white);
}
.top-pill--cta {
background: var(--olive);
border-color: var(--olive);
color: var(--white);
}
.top-pill--phone {
background: rgba(255, 255, 255, 0.08);
}
/* ─── HEADER ─────────────────────────────────────────────────── */
.site-header {
position: sticky;
top: 0;
z-index: 100;
background: rgba(255, 255, 255, 0.98);
border-bottom: 1px solid var(--border);
box-shadow: var(--shadow-soft);
backdrop-filter: blur(12px);
}
.header-inner {
max-width: var(--container);
margin: 0 auto;
padding: 0 24px;
height: 72px;
display: flex;
align-items: center;
gap: 32px;
position: relative;
}
.brand {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
flex-shrink: 0;
}
.brand-logo {
width: 48px;
height: 48px;
object-fit: contain;
}
.brand-text {
display: flex;
flex-direction: column;
line-height: 1.2;
}
.brand-title {
font-family: var(--font-display);
font-size: 16px;
font-weight: 900;
color: var(--blue);
letter-spacing: 0.06em;
}
.brand-subtitle {
font-size: 10px;
color: var(--text-muted);
letter-spacing: 0.04em;
}
.main-nav {
display: flex;
align-items: center;
gap: 4px;
margin-left: auto;
}
.main-nav a {
font-size: 13px;
font-weight: 700;
color: var(--text-muted);
text-decoration: none;
padding: 7px 12px;
border-radius: var(--radius-sm);
transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
color: var(--blue);
background: var(--cream);
}
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 8px;
margin-left: auto;
}
.hamburger,
.hamburger::before,
.hamburger::after {
display: block;
width: 22px;
height: 2px;
background: var(--blue);
border-radius: 2px;
transition: transform var(--transition), opacity var(--transition);
}
.hamburger {
position: relative;
}
.hamburger::before,
.hamburger::after {
content: "";
position: absolute;
left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
/* ─── HERO ───────────────────────────────────────────────────── */
.hero,
section.hero {
display: block;
min-height: 0;
grid-template-columns: none;
background:
radial-gradient(circle at top left, rgba(122, 125, 29, 0.08), transparent 35%),
linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
padding: 74px 0;
overflow: hidden;
}
.hero-inner {
max-width: var(--container);
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 1fr 0.92fr;
gap: 54px;
align-items: center;
}
.breadcrumb {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 8px;
margin-bottom: 22px;
font-size: 12px;
color: var(--text-muted);
}
.breadcrumb a {
color: var(--blue);
text-decoration: none;
font-weight: 700;
}
.breadcrumb span { color: rgba(7, 25, 74, 0.35); }
.breadcrumb strong {
color: var(--olive);
font-weight: 800;
}
.hero-title {
font-family: var(--font-display);
font-size: clamp(44px, 5.3vw, 72px);
font-weight: 700;
line-height: 1.02;
color: var(--blue);
letter-spacing: -0.03em;
margin-bottom: 24px;
max-width: 720px;
}
.hero-lead {
font-size: 18px;
color: var(--text-muted);
max-width: 650px;
line-height: 1.75;
}
.hero-pills {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 24px;
}
.hero-pills span {
font-size: 11px;
font-weight: 800;
letter-spacing: 0.05em;
color: var(--olive);
background: rgba(122, 125, 29, 0.1);
border: 1px solid rgba(122, 125, 29, 0.24);
padding: 5px 13px;
border-radius: var(--radius-pill);
}
.hero-media {
position: relative;
border-radius: 34px;
overflow: hidden;
box-shadow: var(--shadow-strong);
min-height: 510px;
}
.hero-media img {
width: 100%;
height: 510px;
object-fit: cover;
}
.hero-photo-card {
position: absolute;
left: 26px;
right: 26px;
bottom: 26px;
background: rgba(255, 255, 255, 0.94);
border-left: 4px solid var(--olive);
border-radius: 18px;
padding: 18px 20px;
box-shadow: var(--shadow-medium);
}
.hero-photo-card strong {
display: block;
color: var(--blue);
font-size: 15px;
margin-bottom: 4px;
}
.hero-photo-card span {
color: var(--text-muted);
font-size: 13px;
}
/* ─── FORM SECTION ───────────────────────────────────────────── */
.form-section {
padding: 70px 0;
background: var(--white);
}
.form-layout {
display: grid;
grid-template-columns: 0.95fr 1.05fr;
gap: 48px;
align-items: start;
}
.contact-card {
background: var(--white);
border-radius: var(--radius-xl);
padding: 32px;
box-shadow: var(--shadow-strong);
color: var(--text);
border: 1px solid var(--border);
}
.card-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 16px;
}
.card-icon {
font-size: 22px;
width: 44px;
height: 44px;
background: var(--cream);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.card-title {
font-family: var(--font-display);
font-size: 24px;
font-weight: 700;
color: var(--blue);
}
.form-notice {
font-size: 13px;
color: var(--text-muted);
background: #f0f4ff;
border-left: 3px solid var(--blue-mid);
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
padding: 10px 14px;
margin-bottom: 20px;
line-height: 1.5;
}
.form-card {
display: flex;
flex-direction: column;
gap: 14px;
}
.field-group {
display: flex;
flex-direction: column;
gap: 5px;
}
.field-group label {
font-size: 13px;
font-weight: 700;
color: var(--blue);
}
.label-optional {
font-weight: 400;
color: var(--text-muted);
font-size: 12px;
}
.field-group input,
.field-group select,
.field-group textarea {
font-family: var(--font-body);
font-size: 14px;
color: var(--text);
background: var(--cream);
border: 1.5px solid var(--border);
border-radius: var(--radius-sm);
padding: 11px 14px;
width: 100%;
transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field-group select {
appearance: none;
-webkit-appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a5f7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
padding-right: 36px;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
outline: none;
border-color: var(--blue-mid);
box-shadow: 0 0 0 3px rgba(14, 42, 110, 0.12);
background: var(--white);
}
.field-group input.error,
.field-group select.error,
.field-group textarea.error {
border-color: #b91c1c;
box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}
.field-group textarea {
resize: vertical;
min-height: 100px;
}
.attach-hint {
font-size: 12px;
color: var(--text-muted);
background: var(--cream);
border-radius: var(--radius-sm);
padding: 10px 14px;
line-height: 1.5;
}
.form-message {
font-size: 13px;
font-weight: 600;
min-height: 20px;
border-radius: var(--radius-sm);
}
.form-message:not(:empty) { padding: 10px 14px; }
.form-message.is-error {
color: #b91c1c;
background: #fef2f2;
border: 1px solid #fecaca;
}
.form-message.is-success {
color: #15803d;
background: #f0fdf4;
border: 1px solid #bbf7d0;
}
/* ─── MODAL ──────────────────────────────────────────────────── */
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(7, 25, 74, 0.55);
backdrop-filter: blur(4px);
z-index: 200;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
animation: fadeIn 200ms ease forwards;
}
.modal-overlay[hidden] { display: none; }
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.modal-box {
background: var(--white);
border-radius: var(--radius-xl);
padding: 48px 40px;
max-width: 440px;
width: 100%;
text-align: center;
box-shadow: var(--shadow-strong);
animation: slideUp 240ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes slideUp {
from { transform: translateY(20px); opacity: 0; }
to { transform: none; opacity: 1; }
}
.modal-icon {
font-size: 40px;
margin-bottom: 16px;
}
.modal-title {
font-family: var(--font-display);
font-size: 26px;
font-weight: 700;
color: var(--blue);
margin-bottom: 12px;
}
.modal-body {
font-size: 15px;
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 28px;
}
.modal-box .btn { width: 100%; margin-bottom: 10px; }
.modal-close { margin-bottom: 0; }
/* ─── DOC GRID ───────────────────────────────────────────────── */
.doc-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 16px;
}
.doc-item {
background: var(--white);
border: 1px solid var(--border);
border-left: 4px solid var(--olive);
border-radius: var(--radius-md);
padding: 20px;
display: flex;
flex-direction: column;
gap: 4px;
box-shadow: var(--shadow-soft);
transition: box-shadow var(--transition), transform var(--transition);
}
.doc-item:hover {
box-shadow: var(--shadow-medium);
transform: translateY(-2px);
}
.doc-icon {
font-size: 22px;
margin-bottom: 4px;
}
.doc-item strong {
font-size: 14px;
font-weight: 800;
color: var(--blue);
}
.doc-item span {
font-size: 12px;
color: var(--text-muted);
}
/* ─── COMPARE ────────────────────────────────────────────────── */
.compare-grid {
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 24px;
align-items: center;
}
.compare-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
padding: 32px;
box-shadow: var(--shadow-soft);
}
.compare-card--left { border-top: 4px solid var(--olive); }
.compare-card--right { border-top: 4px solid var(--blue); }
.compare-step {
font-size: 10px;
font-weight: 900;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 10px;
}
.compare-card h3 {
font-family: var(--font-display);
font-size: 22px;
color: var(--blue);
margin-bottom: 12px;
}
.compare-card p {
font-size: 14px;
color: var(--text-muted);
line-height: 1.65;
margin-bottom: 18px;
}
.check-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.check-list li {
font-size: 13px;
color: var(--text);
font-weight: 600;
padding-left: 20px;
position: relative;
}
.check-list li::before {
content: "✓";
position: absolute;
left: 0;
color: var(--olive);
font-weight: 900;
}
.compare-arrow {
font-size: 30px;
color: var(--text-muted);
display: flex;
align-items: center;
justify-content: center;
}
/* ─── HIGHLIGHT ──────────────────────────────────────────────── */
.highlight-block {
background: var(--white);
border: 1px solid var(--border);
border-left: 5px solid var(--olive);
border-radius: var(--radius-xl);
padding: 52px;
box-shadow: var(--shadow-medium);
display: grid;
grid-template-columns: 1fr auto;
gap: 40px;
align-items: center;
}
.highlight-lead {
font-size: 16px;
color: var(--text-muted);
max-width: 590px;
line-height: 1.7;
}
.highlight-badge {
text-align: center;
padding: 28px 24px;
background: var(--cream);
border-radius: var(--radius-lg);
border: 1px solid var(--border);
}
.badge-text {
display: block;
max-width: 180px;
font-family: var(--font-display);
font-size: 26px;
font-weight: 900;
color: var(--olive);
line-height: 1.05;
}
.badge-label {
display: block;
font-size: 11px;
font-weight: 800;
color: var(--text-muted);
letter-spacing: 0.04em;
line-height: 1.5;
margin-top: 8px;
}
/* ─── PROCESS ────────────────────────────────────────────────── */
.process-list {
display: flex;
flex-direction: column;
position: relative;
max-width: 760px;
}
.process-list::before {
content: "";
position: absolute;
left: 24px;
top: 48px;
bottom: 48px;
width: 2px;
background: linear-gradient(to bottom, var(--olive), var(--blue));
}
.process-step {
display: grid;
grid-template-columns: 50px 1fr;
gap: 24px;
padding: 28px 0;
position: relative;
}
.process-step + .process-step { border-top: 1px solid var(--border); }
.process-num {
width: 50px;
height: 50px;
background: var(--blue);
color: var(--white);
border-radius: 50%;
font-family: var(--font-display);
font-size: 20px;
font-weight: 900;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
flex-shrink: 0;
box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(7, 25, 74, 0.15);
}
.process-body h3 {
font-family: var(--font-display);
font-size: 20px;
color: var(--blue);
margin-bottom: 8px;
padding-top: 10px;
}
.process-body p { font-size: 15px; color: var(--text-muted); }
.process-body a { color: var(--olive); font-weight: 700; }
/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 14px;
max-width: 950px;
}
.faq-item {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius-md);
box-shadow: var(--shadow-soft);
overflow: hidden;
}
.faq-item summary {
font-size: 14px;
font-weight: 800;
color: var(--blue);
padding: 18px 20px;
cursor: pointer;
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
content: "+";
font-size: 20px;
color: var(--olive);
display: inline-block;
flex-shrink: 0;
transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
overflow: hidden;
}
.faq-body p {
font-size: 14px;
color: var(--text-muted);
padding: 0 20px 18px;
}
/* ─── CTA ────────────────────────────────────────────────────── */
.cta-block {
background: linear-gradient(135deg, var(--blue) 0%, #0f2d75 100%);
border-radius: var(--radius-xl);
padding: 64px;
color: var(--white);
text-align: center;
}
.cta-title {
font-family: var(--font-display);
font-size: clamp(28px, 3.5vw, 42px);
color: var(--white);
line-height: 1.15;
max-width: 640px;
margin: 0 auto 16px;
}
.cta-lead {
font-size: 16px;
color: rgba(255, 255, 255, 0.78);
max-width: 520px;
margin: 0 auto;
}
.cta-block .hero-actions { justify-content: center; }
/* ─── RELATED ────────────────────────────────────────────────── */
.related-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
gap: 14px;
}
.related-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 22px 18px;
text-decoration: none;
color: var(--blue);
font-size: 14px;
font-weight: 800;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
text-align: center;
box-shadow: var(--shadow-soft);
transition: background var(--transition), color var(--transition), transform var(--transition);
}
.related-card:hover {
background: var(--blue);
color: var(--white);
transform: translateY(-3px);
}
.related-icon { font-size: 24px; }
/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
background: var(--blue);
color: rgba(255, 255, 255, 0.7);
padding: 64px 0 0;
}
.footer-inner {
max-width: var(--container);
margin: 0 auto;
padding: 0 24px 48px;
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
}
.footer-brand {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 16px;
}
.footer-brand img {
width: 48px;
height: 48px;
object-fit: contain;
filter: brightness(0) invert(1);
opacity: 0.85;
}
.footer-title {
font-family: var(--font-display);
font-size: 17px;
color: var(--white);
font-weight: 700;
}
.footer-subtitle {
font-size: 11px;
color: rgba(255, 255, 255, 0.55);
}
.footer-desc,
.footer-col p,
.footer-col a {
font-size: 14px;
color: rgba(255, 255, 255, 0.72);
}
.footer-col h3 {
font-size: 12px;
font-weight: 900;
letter-spacing: 0.08em;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.42);
margin-bottom: 16px;
}
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--gold); }
address { font-style: normal; }
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding: 18px 24px;
text-align: center;
font-size: 12px;
color: rgba(255, 255, 255, 0.35);
}
/* ─── RESPONSIVE: 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
.hero-inner,
.form-layout,
.highlight-block {
grid-template-columns: 1fr;
}
.hero-media { min-height: auto; }
.contact-card {
max-width: 600px;
margin: 0 auto;
width: 100%;
}
.footer-inner {
grid-template-columns: 1fr 1fr;
}
}
/* ─── RESPONSIVE: 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
.section { padding: 56px 0; }
.hero { padding: 54px 0; }
/* Header sticky se mantiene en mobile */
.site-header { position: sticky; }
.menu-toggle { display: flex; }
.main-nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
flex-direction: column;
padding: 16px 24px 24px;
box-shadow: var(--shadow-medium);
border-top: 1px solid var(--border);
}
.main-nav.open { display: flex; }
.main-nav a {
padding: 12px 0;
border-bottom: 1px solid var(--border);
border-radius: 0;
}
.hero-title { font-size: clamp(38px, 10vw, 52px); }
.hero-media img { height: 380px; }
.compare-grid {
grid-template-columns: 1fr;
}
.compare-arrow {
transform: rotate(90deg);
display: flex;
justify-content: flex-start;
padding-left: 0;
}
.faq-grid { grid-template-columns: 1fr; }
.cta-block,
.highlight-block {
padding: 36px 24px;
}
.process-list::before { left: 18px; }
.process-step {
grid-template-columns: 38px 1fr;
gap: 16px;
}
.process-num {
width: 38px;
height: 38px;
font-size: 16px;
}
}
/* ─── RESPONSIVE: 560px ──────────────────────────────────────── */
@media (max-width: 560px) {
.top-location { display: none; }
.hero-actions {
flex-direction: column;
}
.hero-actions .btn { width: 100%; }
.doc-grid { grid-template-columns: 1fr; }
.related-grid { grid-template-columns: 1fr 1fr; }
.footer-inner { grid-template-columns: 1fr; }
.hero-photo-card {
left: 16px;
right: 16px;
bottom: 16px;
}
.modal-box { padding: 32px 20px; }
}
JAVA
