@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #333333;
  --navy: #000000;
  --navy-2: #202020;
  --gold: #bfa55b;
  --gold-light: #d7c47d;
  --cream: #e7ded0;
  --paper: #ffffff;
  --muted: #617087;
  --line: #dce3eb;
  --shadow: 0 22px 60px rgba(0, 29, 75, .12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: .74rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3, h4 { margin: 0; font-family: 'Poppins', Arial, sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 640px; }
.section { padding: 110px 0; }
.section--cream { background: var(--cream); }
.newsletter-section { padding: 72px 0; }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 52px; }
.section-heading h2 { max-width: 680px; margin-top: 15px; }
.section-heading .lead { max-width: 390px; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,227,235,.8); backdrop-filter: blur(14px);
}
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.brand img { width: 158px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .92rem; font-weight: 600; }
.nav-links a { color: #526277; transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 13px; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); font-size: 1.6rem; cursor: pointer; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 22px; border: 1px solid transparent;
  border-radius: 9px; font-size: .82rem; font-weight: 700; letter-spacing: .01em;
  cursor: pointer; box-shadow: 0 5px 12px rgba(0,0,0,.08);
  transition: transform .2s ease, background .2s ease, color .2s ease,
    border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 9px 18px rgba(0,0,0,.14); }
.button:focus-visible { outline: 3px solid rgba(191,165,91,.45); outline-offset: 3px; }
.button span { transition: transform .2s ease; }
.button:hover span { transform: translate(2px, -2px); }
.button svg { width: 18px; height: 18px; stroke-width: 2.4; }
.button--gold { background: var(--gold); color: white; border-color: var(--gold); }
.button--gold:hover { background: #d0b766; border-color: #d0b766; }
.button--outline { background: transparent; border-color: var(--gold); color: white; }
.button--outline:hover { background: var(--gold); color: white; border-color: var(--gold); }
.button--navy { background: var(--navy); color: white; border-color: var(--gold); }
.button--navy:hover { background: var(--navy-2); border-color: var(--gold-light); }
.button--light { background: white; color: var(--navy); border-color: white; }
.button--light:hover { background: var(--cream); border-color: var(--cream); }

.hero { position: relative; overflow: hidden; background: #000; color: white; }
.hero::before, .hero::after { content: ''; position: absolute; pointer-events: none; display: none; }
.hero::before { width: 560px; height: 560px; right: -150px; top: -110px; border: 1px solid rgba(197,167,93,.22); border-radius: 50%; box-shadow: 0 0 0 45px rgba(197,167,93,.05), 0 0 0 90px rgba(197,167,93,.04), 0 0 0 135px rgba(197,167,93,.025); }
.hero::after { width: 1px; height: 90%; right: 22%; top: 5%; background: linear-gradient(transparent, rgba(197,167,93,.65), transparent); transform: rotate(28deg); }
.hero-inner { min-height: clamp(560px, calc(100svh - 82px), 834px); display: grid; grid-template-columns: minmax(0, 920px); align-items: center; justify-content: center; position: relative; z-index: 1; }
.hero-copy { width: 100%; padding: 70px 0; text-align: center; }
.hero h1 { max-width: 920px; margin: 0 auto 28px; font-size: clamp(2.6rem, 4.2vw, 60px); line-height: 1.1; font-weight: 700; letter-spacing: normal; }
.hero-highlight { display: inline; padding: 0; color: var(--gold); background: transparent; }
.hero-white { display: inline; color: #fff; }
.hero h1 span { color: inherit; }
.hero-highlight { color: var(--gold) !important; }
.hero-white { color: #fff !important; }
.hero-copy .lead { color: #fff; max-width: 860px; margin: 0 auto; font-size: 20px; line-height: normal; }
.hero-copy .lead strong { font-weight: 700; }
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; margin-top: 36px; }
.hero-buttons .button { width: 306px; min-height: 55px; border-width: 2px; font-size: 16px; font-weight: 700; }
.hero-visual { display: none; }
.hero-card { width: min(430px, 90%); aspect-ratio: 1 / 1.12; position: relative; background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.22); border-radius: 34px; transform: rotate(5deg); box-shadow: 25px 35px 70px rgba(0,0,0,.23); overflow: hidden; }
.hero-card::before { content: ''; position: absolute; inset: 12%; border: 1px solid rgba(197,167,93,.62); border-radius: 50%; box-shadow: 0 0 0 36px rgba(197,167,93,.06), 0 0 0 72px rgba(197,167,93,.04); }
.hero-card::after { content: 'ACERTA'; position: absolute; right: 24px; bottom: 22px; color: rgba(255,255,255,.12); font-family: Manrope, sans-serif; font-size: 3rem; font-weight: 800; letter-spacing: -.08em; }
.route-line { position: absolute; width: 62%; height: 62%; border: 2px solid var(--gold); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(38deg); }
.route-line::after { content: '→'; position: absolute; right: -14px; top: 5px; color: var(--gold); font-size: 2.3rem; }
.hero-stamp { width: 150px; height: 150px; display: grid; place-items: center; position: absolute; left: 4%; bottom: 8%; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-light); text-align: center; font-size: .7rem; font-weight: 800; letter-spacing: .1em; transform: rotate(-13deg); }
.hero-stamp strong { display: block; font-size: 2.6rem; line-height: 1; letter-spacing: -.08em; }

.trust-bar { padding: 42px 0 32px; background: var(--cream); border-bottom: 1px solid rgba(0,0,0,.05); }
.trust-bar + .section { padding-top: 58px; }
.trust-inner { display: grid; justify-items: center; gap: 20px; }
.trust-inner p { display: inline-flex; align-items: center; gap: 16px; margin: 0; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .2em; line-height: 1.4; text-align: center; text-transform: uppercase; }
.trust-inner p::before, .trust-inner p::after { content: ''; width: 38px; height: 1px; background: rgba(191,165,91,.65); }
.trust-logos { --logo-gap: clamp(20px, 3vw, 42px); width: 100%; overflow: hidden; padding: 14px 0; }
.trust-logo-track { width: max-content; display: flex; align-items: center; gap: var(--logo-gap); animation: logo-carousel 28s linear infinite; }
.trust-logo-group { display: flex; align-items: center; gap: var(--logo-gap); flex: 0 0 auto; }
.trust-logos img { width: clamp(110px, 12vw, 160px); height: 58px; flex: 0 0 auto; object-fit: cover; object-position: center; }
.trust-logos:hover .trust-logo-track, .trust-logos:focus-within .trust-logo-track { animation-play-state: paused; }
@keyframes logo-carousel { from { transform: translateX(0); } to { transform: translateX(calc(-50% - (var(--logo-gap) / 2))); } }
@media (prefers-reduced-motion: reduce) { .trust-logo-track { animation: none; } }

.problem-grid, .service-grid, .benefit-grid, .article-grid { display: grid; gap: 20px; }
.problem-grid { grid-template-columns: repeat(3, 1fr); }
.problem-card { padding: 30px; min-height: 230px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.problem-icon, .service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: #eef2f7; color: var(--navy); font-size: 1.45rem; margin-bottom: 27px; }
.problem-icon svg, .service-icon svg { width: 29px; height: 29px; stroke-width: 2.2; }
.service-list-card .service-icon { background: rgba(191,165,91,.12); color: var(--gold); }
.service-icon svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.problem-card h3 { margin-bottom: 12px; }
.problem-card p { color: var(--muted); font-size: .95rem; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.split--reverse { grid-template-columns: 1.1fr .9fr; }
.split-copy h2 { margin: 16px 0 22px; }
.split-copy .lead { margin-bottom: 28px; }
.metric-row { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 42px; }
.metric strong { display: block; color: var(--navy); font-family: 'Poppins', sans-serif; font-size: 2.7rem; letter-spacing: -.07em; }
.metric span { display: block; color: var(--muted); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.visual-panel { min-height: 500px; position: relative; display: grid; place-items: center; border-radius: 4px; overflow: hidden; background: var(--navy); }
.visual-panel::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.1), rgba(0,0,0,.35)); }
.visual-panel::after { content: '15+'; position: relative; color: var(--gold-light); font-family: 'Poppins', sans-serif; font-size: clamp(6rem, 13vw, 10rem); font-weight: 700; letter-spacing: -.1em; }
.visual-panel--cert { background: var(--cream) url('assets/wix-3613dd_6ff6613d7390423691a34fdd2f87cb39~mv2.png') center / auto 123% no-repeat; }
.visual-panel--cert::before { display: none; }
.visual-panel--cert::after, .visual-panel--ship::after, .visual-panel--inspection::after { content: ''; }
.visual-panel--ship { background: var(--navy) url('assets/wix-3613dd_90f06621d94b480591caada4414c9d7d~mv2.png') center / cover no-repeat; }
.visual-panel--inspection { background: var(--navy) url('assets/wix-3613dd_ab0a6c92519a403bb0a3961509a3774e~mv2.png') center / cover no-repeat; }
.inspection-risk-section { background: var(--navy); color: white; }
.inspection-risk-section .section-heading { margin-bottom: 42px; }
.inspection-risk-section .lead { color: rgba(255,255,255,.72); }
.risk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.risk-card { min-height: 210px; padding: 26px 24px; border: 1px solid rgba(191,165,91,.4); border-radius: 14px; background: rgba(255,255,255,.05); }
.risk-number { color: var(--gold-light); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.risk-card h3 { margin: 32px 0 12px; color: white; font-size: 1.08rem; }
.risk-card p { color: rgba(255,255,255,.68); font-size: .88rem; line-height: 1.5; }
.risk-button { margin-top: 32px; }

.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-rows { display: grid; gap: 26px; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 330px; align-items: stretch; overflow: hidden; background: white; border-radius: 4px; }
.service-row--reverse .service-row-copy { order: 2; }
.service-row--reverse img { order: 1; }
.service-row-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 62px); }
.service-row-copy h3 { margin: 16px 0 13px; font-size: clamp(1.4rem, 3vw, 2.25rem); font-weight: 600; }
.service-row-copy p { max-width: 500px; color: var(--muted); font-size: .96rem; }
.service-row-copy .text-link { margin-top: 25px; color: var(--navy); }
.service-row img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.service-card { display: flex; flex-direction: column; min-height: 330px; padding: 30px; border-radius: var(--radius); background: var(--cream); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:nth-child(2) { background: var(--navy); color: white; }
.service-card:nth-child(2) .service-icon { background: rgba(255,255,255,.12); color: var(--gold-light); }
.service-card p { color: var(--muted); font-size: .95rem; margin-top: 16px; }
.service-card:nth-child(2) p { color: rgba(255,255,255,.72); }
.service-card .text-link { margin-top: auto; padding-top: 30px; color: var(--gold); font-size: .85rem; font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 6px; }
.text-link svg { width: 16px; height: 16px; stroke-width: 2.4; }

.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.benefits-section { background: var(--navy); color: white; }
.benefits-section .lead { color: rgba(255,255,255,.72); }
.benefits-section .benefit strong { color: white; }
.benefits-section .benefit p { color: rgba(255,255,255,.68); }
.benefit { padding-top: 20px; border-top: 2px solid var(--gold); }
.benefit strong { display: block; margin-bottom: 10px; font-family: Manrope, sans-serif; font-size: 1.05rem; }
.benefit p { color: var(--muted); font-size: .88rem; }
.operation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.operation-card { min-height: 190px; padding: 26px 24px; border: 1px solid rgba(191,165,91,.2); border-radius: 14px; background: white; box-shadow: 0 8px 22px rgba(0,0,0,.04); }
.operation-number { display: block; color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.operation-card h3 { margin: 24px 0 10px; font-size: 1.1rem; }
.operation-card p { color: var(--muted); font-size: .88rem; line-height: 1.5; }

.cta { background: var(--gold); color: var(--navy); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 35px; padding: 75px 0; }
.cta h2 { max-width: 690px; }

.page-hero { min-height: clamp(500px, calc(100svh - 82px), 700px); display: flex; align-items: center; padding: 90px 0; color: white; background: var(--navy); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; width: 520px; height: 520px; right: -170px; top: -260px; border: 1px solid rgba(197,167,93,.45); border-radius: 50%; box-shadow: 0 0 0 45px rgba(197,167,93,.07), 0 0 0 90px rgba(197,167,93,.04); }
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { max-width: 1040px; margin: 17px auto 22px; font-size: clamp(2.5rem, 5vw, 5rem); }
.page-hero-accent { display: block; color: var(--gold); }
.page-hero .lead { max-width: 920px; margin: 0 auto; color: rgba(255,255,255,.74); }
.page-hero .button { width: min(100%, 390px); min-height: 55px; margin-top: 30px; border-width: 2px; font-size: 16px; font-weight: 700; white-space: nowrap; }
.page-hero--ship { min-height: clamp(560px, calc(100svh - 82px), 760px); background-image: linear-gradient(rgba(0,0,0,.64), rgba(0,0,0,.72)), url('assets/inspection-hero.png'); background-position: center; background-size: cover; }
.page-hero--inspection { background-image: linear-gradient(rgba(0,0,0,.64), rgba(0,0,0,.72)), url('assets/inspection-hero.jpg'); background-position: center; background-size: cover; }
.page-hero--contact { min-height: 0; padding: 54px 0 58px; }
.page-hero--contact h1 { max-width: 820px; font-size: clamp(2.1rem, 4vw, 3.7rem); }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-list-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.service-list-card h3 { margin: 20px 0 11px; }
.service-list-card p { color: var(--muted); }
.partner-section .section-heading { margin-bottom: 38px; }
.partner-title-accent { color: var(--gold); }
.partner-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.partner-logo { min-height: 142px; display: grid; place-items: center; padding: 12px; border: 1px solid rgba(191,165,91,.24); border-radius: 10px; background: #faf8f3; transition: transform .2s ease, box-shadow .2s ease; }
.partner-logo:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.partner-logo img { width: 100%; height: 116px; object-fit: contain; object-position: center; }
.check-list { padding: 0; margin: 28px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 11px; color: var(--muted); font-size: .95rem; }
.check-list li::before { content: '✓'; flex: 0 0 auto; color: var(--gold); font-weight: 900; }

.article-grid { grid-template-columns: repeat(3, 1fr); }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.article-card img { width: 100%; aspect-ratio: 1.4; object-fit: cover; background: var(--navy); }
.article-body { padding: 25px; }
.article-meta { color: var(--gold); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-body h3 { margin: 11px 0 12px; font-size: 1.22rem; }
.article-body p { color: var(--muted); font-size: .9rem; }
.article-body .text-link { display: inline-block; margin-top: 18px; color: var(--navy); font-size: .83rem; font-weight: 800; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.contact-info h2 { margin: 17px 0 20px; }
.contact-title-line { white-space: nowrap; }
.contact-details { display: grid; gap: 20px; margin-top: 35px; }
.contact-detail { display: flex; gap: 14px; align-items: start; }
.contact-detail strong { display: block; font-family: Manrope, sans-serif; font-size: .9rem; }
.contact-detail span { color: var(--muted); font-size: .94rem; }
.contact-form { min-width: 0; padding: 38px; border-radius: 24px; background: var(--cream); scroll-margin-top: 100px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; color: var(--muted); font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; color: var(--ink); background: white; outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(197,167,93,.17); }
.form-note { max-width: 100%; color: var(--muted); font-size: .78rem; line-height: 1.5; margin-top: 16px; overflow-wrap: anywhere; }
.form-status { display: none; margin-top: 16px; padding: 12px 14px; border-radius: 10px; color: var(--navy); background: #e3f1e7; font-size: .86rem; }
.form-status.is-visible { display: block; }

.post { max-width: 850px; margin: 0 auto; }
.post-header { padding: 90px 0 50px; text-align: center; }
.post-header h1 { margin: 18px auto 20px; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.post-cover { width: 100%; max-height: 660px; object-fit: cover; border-radius: 24px; }
.post-content { padding: 50px 0 100px; }
.post-content p { color: #40536c; font-size: 1.08rem; margin-bottom: 22px; }
.post-content h2 { font-size: 2rem; margin: 45px 0 15px; }
.post-content ul { margin: 8px 0 24px; padding-left: 24px; color: #40536c; font-size: 1.02rem; }
.post-content li { margin: 8px 0; padding-left: 4px; }
.post-faq details { border-top: 1px solid var(--line); padding: 16px 0; }
.post-faq details:last-child { border-bottom: 1px solid var(--line); }
.post-faq summary { cursor: pointer; color: var(--ink); font-weight: 700; }
.post-faq details p { margin: 12px 0 0; font-size: .98rem; }
.post-sources ul { font-size: .92rem; }
.post-sources a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; overflow-wrap: anywhere; }
.post-content > .button:last-child { margin-top: 30px; }

.site-footer { background: var(--ink); color: white; padding: 75px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 70px; padding-bottom: 65px; }
.footer-brand img { width: 170px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 310px; color: rgba(255,255,255,.62); margin-top: 20px; font-size: .9rem; }
.footer-col h4 { margin-bottom: 18px; color: var(--gold-light); font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.7); font-size: .9rem; margin: 9px 0; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.45); font-size: .75rem; }
.footer-copyright { display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 0 5px; }
.footer-copyright-mark { white-space: nowrap; }
.footer-credit { display: inline-flex; align-items: center; gap: 3px; color: rgba(255,255,255,.62); transition: color .2s ease, opacity .2s ease; }
.footer-credit:hover { color: white; opacity: .92; }
.footer-credit img { width: 58px; height: 27px; margin-left: -10px; object-fit: contain; filter: brightness(0) invert(1); }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: #27bd68; color: white; font-size: 1.55rem; box-shadow: 0 10px 25px rgba(0,0,0,.2); }
.floating-whatsapp svg { width: 25px; height: 25px; stroke-width: 2.2; }
.floating-whatsapp .fa-whatsapp { font-size: 27px; line-height: 1; }

@media (max-width: 900px) {
  .nav-links { position: absolute; inset: 82px 0 auto; display: none; padding: 18px 20px 25px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.is-open { display: grid; }
  .nav-actions .button--outline { display: none; }
  .menu-toggle { display: block; }
  .hero-inner, .split, .split--reverse, .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .hero-inner { min-height: max(560px, calc(100svh - 82px)); }
  .hero-copy { padding: 90px 0 20px; }
  .hero-visual { min-height: 420px; }
  .split { gap: 45px; }
  .visual-panel { min-height: 360px; }
  .problem-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .operation-grid { grid-template-columns: repeat(2, 1fr); }
  .risk-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { gap: 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 78px 0; }
  .newsletter-section { padding: 56px 0; }
  .nav { height: 70px; }
  .nav-links { inset: 70px 0 auto; }
  .brand img { width: 140px; }
  .nav-actions .button--gold { min-height: 42px; padding: 0 14px; font-size: .76rem; }
  .hero-copy { padding-top: 70px; }
  .hero-inner { min-height: max(520px, calc(100svh - 70px)); }
  .hero h1 { font-size: 2.25rem; }
  .hero-copy .lead { font-size: .9rem; }
  .hero-visual { min-height: 330px; }
  .hero-card { width: 270px; }
  .hero-stamp { width: 110px; height: 110px; font-size: .57rem; }
  .hero-stamp strong { font-size: 2rem; }
  .trust-inner, .cta-inner, .section-heading { display: block; }
  .trust-inner { text-align: center; }
  .trust-inner p { justify-content: center; width: 100%; }
  .trust-bar + .section { padding-top: 45px; }
  .trust-bar { padding: 30px 0 24px; }
  .trust-inner { gap: 16px; }
  .trust-logos { padding: 10px 5px 14px; }
  .trust-logos img { width: 145px; height: 58px; }
  .section-heading .lead { margin-top: 20px; }
  .problem-grid, .service-grid, .service-list, .article-grid, .benefit-grid, .form-grid { grid-template-columns: 1fr; }
  .operation-grid { grid-template-columns: 1fr; }
  .inspection-risk-section .section-heading { margin-bottom: 32px; }
  .risk-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .partner-logo { min-height: 118px; padding: 8px; }
  .partner-logo img { height: 96px; }
  .service-row { grid-template-columns: 1fr; }
  .service-row--reverse .service-row-copy, .service-row--reverse img { order: initial; }
  .service-row img { min-height: 230px; max-height: 300px; }
  .field--full { grid-column: auto; }
  .metric-row { gap: 22px; }
  .cta-inner .button { margin-top: 25px; }
  .page-hero { min-height: max(500px, calc(100svh - 70px)); padding: 75px 0; }
  .page-hero--ship { min-height: max(560px, calc(100svh - 70px)); }
  .page-hero--contact { min-height: 0; padding: 42px 0 46px; }
  .page-hero--contact h1 { font-size: 2rem; }
  .page-hero .button { width: 100%; max-width: 390px; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom > .footer-copyright { margin-top: 0; }
  .footer-bottom > .footer-credit { margin-top: 0; }
  .footer-credit > span { display: inline; margin-top: 0; }
}
