:root {
  --navy: #061A31;
  --navy-2: #0B2340;
  --navy-3: #183A5F;
  --gold: #C79A38;
  --gold-2: #E0C06E;
  --white: #F8F7F3;
  --paper: #FFFFFF;
  --muted: #667085;
  --line: rgba(6, 26, 49, 0.14);
  --shadow: 0 24px 70px rgba(6, 26, 49, 0.18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--navy); background: var(--white); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link { position:absolute; left:-999px; top:8px; background:var(--gold); color:var(--navy); padding:10px 14px; z-index:100; }
.skip-link:focus { left:8px; }
.site-header { position: sticky; top: 0; z-index: 50; min-height: 92px; padding: 14px clamp(18px, 4vw, 70px); background: rgba(248,247,243,.94); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 24px; transform: translateY(0); transition: transform .35s ease, box-shadow .3s ease, background .3s ease; }
.site-header.is-hidden { transform: translateY(-105%); }
.site-header.is-scrolled { box-shadow: 0 12px 30px rgba(6,26,49,.10); background: rgba(248,247,243,.98); }
.brand-lockup { display:flex; align-items:center; gap: 12px; min-width: 260px; }
.brand-lockup img { width: 70px; height: 70px; object-fit: contain; border-radius: 16px; background: var(--navy); padding: 5px; box-shadow: 0 14px 24px rgba(6,26,49,.12); }
.brand-lockup strong { display:block; font-family: Georgia, serif; font-size: clamp(1.45rem, 2.4vw, 2.1rem); letter-spacing: .18em; line-height: 1; }
.brand-lockup small { display:block; color: var(--gold); font-weight: 900; letter-spacing: .26em; font-size: .74rem; margin-top: 5px; }
.main-nav { display:flex; align-items:center; justify-content:center; gap: clamp(14px, 1.7vw, 28px); margin-left:auto; font-size:.88rem; font-weight:900; text-transform:uppercase; letter-spacing:.03em; }
.main-nav a { position:relative; padding:10px 0; }
.main-nav a::after { content:""; position:absolute; left:0; bottom:2px; width:0; height:2px; background: var(--gold); transition: width .22s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width:100%; }
.header-actions { display:flex; align-items:center; gap:12px; }
.language-switch { display:inline-flex; padding:4px; border:1px solid var(--line); border-radius:999px; background:var(--paper); }
.language-switch button { border:0; background:transparent; cursor:pointer; color:var(--navy); font-weight:900; padding:8px 10px; border-radius:999px; }
.language-switch button.active { background:var(--navy); color:var(--white); }
.header-cta { background: var(--gold); color:var(--navy); font-weight:900; padding:12px 18px; border-radius:999px; box-shadow:0 8px 18px rgba(199,154,56,.25); }
.menu-toggle { display:none; border:0; background:var(--navy); color:var(--white); width:42px; height:42px; border-radius:10px; font-size:1.3rem; margin-left:auto; }
.flash-wrap { padding: 18px clamp(20px,5vw,80px) 0; }
.flash { padding: 14px 18px; border-radius: 14px; background:#EAF6EF; color:#0A5D34; border:1px solid #BFE7CF; font-weight: 700; }
.flash.warning { background:#FFF8E6; color:#715100; border-color:#F3D78A; }
.flash.error { background:#FDECEC; color:#8B1E1E; border-color:#F7B5B5; }
.page-enter { animation: pageIn .7s ease both; }
@keyframes pageIn { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }
.hero { position:relative; overflow:hidden; min-height: calc(100vh - 92px); padding: clamp(54px,7vw,105px) clamp(20px,5vw,80px); color:var(--white); display:grid; grid-template-columns:minmax(0,1.05fr) minmax(300px,.75fr); align-items:center; gap:clamp(30px,6vw,80px); background: linear-gradient(90deg, rgba(6,26,49,.98), rgba(6,26,49,.84) 48%, rgba(6,26,49,.62)), radial-gradient(circle at 75% 45%, rgba(224,192,110,.18), transparent 34%), url('../img/panama-canal-visual.png') center/cover; }
.hero-bg { position:absolute; inset:0; background:radial-gradient(circle at 28% 20%, rgba(224,192,110,.22), transparent 28%); pointer-events:none; }
.hero-content, .hero-visual { position:relative; z-index:1; }
.eyebrow, .section-kicker { margin:0 0 14px; color:var(--gold-2); font-weight:900; letter-spacing:.12em; text-transform:uppercase; font-size:.78rem; }
.hero h1, .section h2, .app-section h2, .contact-section h2 { margin:0; font-family: Georgia, 'Times New Roman', serif; font-size:clamp(3rem,7vw,6.7rem); line-height:.93; letter-spacing:-.04em; }
.hero h1 { max-width: 930px; }
.hero-text { max-width:690px; margin:28px 0 0; font-size:clamp(1.05rem,1.5vw,1.32rem); line-height:1.65; color:rgba(248,247,243,.88); }
.hero-buttons { display:flex; flex-wrap:wrap; gap:16px; margin-top:34px; }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:52px; padding:0 26px; border-radius:10px; font-weight:900; text-transform:uppercase; letter-spacing:.04em; transition:transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); box-shadow: 0 20px 38px rgba(199,154,56,.25); }
.btn-outline { border:1px solid rgba(224,192,110,.8); color:var(--white); }
.proof-row { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); max-width:720px; gap:12px; margin-top:42px; }
.proof-row article { border:1px solid rgba(248,247,243,.14); background:rgba(255,255,255,.06); border-radius:16px; padding:16px; }
.proof-row strong { color:var(--gold-2); font-size:1.4rem; display:block; }
.proof-row span { font-size:.9rem; color:rgba(248,247,243,.78); }
.hero-visual { display:grid; place-items:center; }
.emblem-orbit { width:min(520px,72vw); aspect-ratio:1; display:grid; place-items:center; border-radius:50%; background:radial-gradient(circle, rgba(255,255,255,.13), rgba(255,255,255,.03)); box-shadow: inset 0 0 0 1px rgba(224,192,110,.32), 0 40px 90px rgba(0,0,0,.3); }
.emblem-orbit img { width:82%; filter:drop-shadow(0 26px 30px rgba(0,0,0,.32)); }
.animate-logo { animation: logoEnter .9s cubic-bezier(.22,1,.36,1) both; }
.animate-logo img { animation: logoFloat 5.2s ease-in-out infinite; }
@keyframes logoEnter { from { opacity:0; transform: translateY(20px) scale(.96); } to { opacity:1; transform: translateY(0) scale(1); } }
@keyframes logoFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(1deg); } }
.ops-card { margin-top:-50px; width:min(360px,90%); background:rgba(248,247,243,.96); color:var(--navy); border-radius:18px; padding:18px 20px; box-shadow:var(--shadow); border:1px solid rgba(224,192,110,.3); }
.ops-card p { margin:0 0 6px; color:var(--muted); font-size:.86rem; }
.ops-card strong { display:block; }
.live-dot { display:inline-block; width:10px; height:10px; background:#29C172; border-radius:50%; box-shadow:0 0 0 8px rgba(41,193,114,.14); margin-bottom:12px; }
.color-psychology { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border-bottom:1px solid var(--line); }
.color-psychology article { background:var(--paper); padding:clamp(26px,4vw,48px); }
.color-psychology span, .timeline span, .service-card h3 { color:var(--gold); font-weight:900; }
.color-psychology h3, .timeline h3, .service-card h3, .statement-grid h3, .policy-grid h3 { margin:10px 0 8px; color:var(--navy); font-size:1.05rem; }
.color-psychology p, .statement-grid p, .timeline p, .privacy p { margin:0; color:var(--muted); line-height:1.7; }
.section { padding:clamp(70px,9vw,120px) clamp(20px,5vw,80px); }
.section-heading { max-width:960px; margin-bottom:42px; }
.section-heading.narrow { margin-left:auto; margin-right:auto; text-align:center; }
.section h2, .app-section h2, .contact-section h2 { font-size:clamp(2.2rem,4.7vw,4.5rem); line-height:1; color:var(--navy); }
.section-heading p:not(.section-kicker) { color:var(--muted); font-size:1.08rem; line-height:1.8; }
.split-section { display:grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap:44px; align-items:center; }
.quick-services { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.quick-services a { background: var(--paper); border:1px solid var(--line); border-radius:18px; padding:20px; font-weight:900; box-shadow:0 14px 34px rgba(6,26,49,.06); transition:.25s ease; }
.quick-services a:hover { transform: translateY(-4px); border-color:var(--gold); }
.about-grid { display:grid; grid-template-columns:minmax(0,1.05fr) 420px; gap:36px; align-items:stretch; }
.statement-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.statement-grid article { background:var(--paper); border:1px solid var(--line); border-radius:20px; padding:24px; box-shadow:0 14px 34px rgba(6,26,49,.06); }
.statement-grid article.wide { grid-column:1 / -1; }
.about-card { border-radius:32px; overflow:hidden; color:var(--white); background:radial-gradient(circle at 50% 20%, rgba(224,192,110,.18), transparent 36%), linear-gradient(145deg, var(--navy), var(--navy-2)); padding:38px; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; box-shadow:var(--shadow); }
.about-card img { width:270px; margin-bottom:24px; filter:drop-shadow(0 18px 22px rgba(0,0,0,.35)); }
.about-card h3 { font-family:Georgia,serif; font-size:2rem; margin:0 0 10px; }
.about-card p { margin:0; line-height:1.7; color:rgba(248,247,243,.78); }
.canal-section { display:grid; grid-template-columns:minmax(340px, .95fr) minmax(0,1fr); gap:44px; align-items:center; background:#F4F3EF; }
.canal-image { border-radius:32px; overflow:hidden; box-shadow:var(--shadow); border:1px solid rgba(199,154,56,.28); }
.canal-image img { width:100%; height:100%; object-fit:cover; }
.app-section { margin:0 clamp(20px,5vw,80px) clamp(50px,6vw,80px); border-radius:36px; padding:clamp(52px,7vw,90px); background:linear-gradient(135deg,var(--navy),#020A13); color:var(--white); display:grid; grid-template-columns:minmax(0,1fr) 340px; align-items:center; gap:50px; overflow:hidden; position:relative; }
.app-section::before { content:""; position:absolute; width:420px; height:420px; border-radius:50%; right:-150px; top:-150px; background:rgba(224,192,110,.16); filter:blur(2px); }
.app-content, .phone { position:relative; z-index:1; }
.app-section h2 { color:var(--white); max-width:840px; }
.app-section p { color:rgba(248,247,243,.78); line-height:1.8; font-size:1.05rem; max-width:780px; }
.check-list { list-style:none; padding:0; margin:26px 0 0; display:grid; gap:13px; }
.check-list li { position:relative; padding-left:30px; color:rgba(248,247,243,.88); font-weight:700; }
.check-list li::before { content:"✓"; position:absolute; left:0; color:var(--gold-2); font-weight:900; }
.phone { width:min(340px,100%); background:#071528; border:9px solid #0E2949; border-radius:38px; padding:26px 22px; box-shadow:0 35px 70px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.08); justify-self:center; }
.phone-notch { width:90px; height:6px; background:rgba(255,255,255,.14); border-radius:999px; margin:0 auto 20px; }
.phone img { width:88px; margin:0 auto 10px; }
.phone h3 { text-align:center; margin:0 0 24px; }
.status { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:13px; display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.status span { width:9px; height:9px; border-radius:50%; background:var(--gold-2); flex:0 0 auto; }
.status p { margin:0; font-size:.88rem; line-height:1.4; }
.phone button { width:100%; border:0; border-radius:14px; background:var(--gold); color:var(--navy); font-weight:900; padding:15px; margin-top:16px; }
.animate-float { animation: appFloat 5s ease-in-out infinite; }
@keyframes appFloat { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }
.services-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.service-card { background:var(--paper); border:1px solid var(--line); border-radius:22px; padding:24px; box-shadow:0 14px 34px rgba(6,26,49,.06); transition:transform .24s ease, border-color .24s ease; min-height:150px; }
.service-card:hover { transform:translateY(-5px); border-color:rgba(199,154,56,.7); }
.service-icon { width:42px; height:42px; display:grid; place-items:center; background:#F7F1E6; border-radius:12px; margin-bottom:14px; }
.service-card p { margin:0; color:var(--navy); font-weight:800; line-height:1.35; }
.timeline { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.timeline article { background:var(--paper); border:1px solid var(--line); border-radius:22px; padding:26px; box-shadow:0 14px 34px rgba(6,26,49,.06); }
.contact-section { margin:clamp(30px,5vw,70px) clamp(20px,5vw,80px); border-radius:36px; background:linear-gradient(135deg,var(--navy),var(--navy-2)); color:var(--white); padding:clamp(42px,6vw,70px); display:grid; grid-template-columns:minmax(0,.95fr) minmax(320px,.8fr); gap:42px; align-items:start; }
.contact-section h2 { color:var(--white); }
.contact-section p { color:rgba(248,247,243,.82); line-height:1.8; }
.contact-note { margin-top:26px; background:rgba(255,255,255,.08); border-left:3px solid var(--gold); padding:18px 20px; border-radius:14px; }
.contact-note strong { color:var(--gold-2); }
.contact-direct { margin-top:22px; }
.contact-direct p { margin:6px 0; }
.request-form { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); padding:24px; border-radius:22px; box-shadow:0 20px 50px rgba(0,0,0,.22); }
.request-form label { display:grid; gap:8px; margin-bottom:14px; font-size:.84rem; font-weight:900; color:var(--gold-2); text-transform:uppercase; }
.request-form input, .request-form select, .request-form textarea { width:100%; border:0; border-radius:10px; padding:13px 15px; font:inherit; color:var(--navy); background:var(--white); }
.request-form button { width:100%; border:0; border-radius:10px; padding:15px; background:var(--gold); color:var(--navy); font-weight:900; text-transform:uppercase; cursor:pointer; }
.honeypot { position:absolute; left:-9999px; opacity:0; }
.policy-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:18px; max-width:1120px; margin:0 auto; }
.policy-grid article { background:var(--paper); border:1px solid var(--line); border-radius:20px; padding:24px; box-shadow:0 14px 34px rgba(6,26,49,.06); }
.site-footer { background:var(--navy); color:var(--white); min-height:88px; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:22px clamp(20px,5vw,80px); font-size:.9rem; }
.footer-brand { display:flex; align-items:center; gap:12px; font-weight:900; }
.footer-brand img { width:34px; height:34px; object-fit:contain; border-radius:8px; }
.site-footer p { margin:0; color:rgba(248,247,243,.82); }
.site-footer a:last-child { color:var(--gold-2); font-weight:900; }
.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity:1; transform:translateY(0); }
@media (max-width: 1100px) { .main-nav, .header-actions { display:none; } .menu-toggle { display:block; } .main-nav.open { display:grid; position:absolute; top:100%; left:18px; right:18px; background:var(--paper); border:1px solid var(--line); border-radius:18px; padding:18px; box-shadow:var(--shadow); } .header-actions.open { display:flex; } .hero, .about-grid, .app-section, .contact-section, .canal-section, .split-section { grid-template-columns:1fr; } .services-grid { grid-template-columns:repeat(2,1fr); } .timeline { grid-template-columns:repeat(2,1fr); } }
@media (max-width: 720px) { .site-header { min-height:76px; } .brand-lockup { min-width:0; } .brand-lockup img { width:56px; height:56px; } .brand-lockup strong { font-size:1.1rem; } .brand-lockup small { font-size:.55rem; } .hero { grid-template-columns:1fr; min-height:auto; } .proof-row, .color-psychology, .statement-grid, .services-grid, .timeline, .policy-grid, .quick-services { grid-template-columns:1fr; } .site-footer { flex-direction:column; text-align:center; } }

/* ===== Leviathan v4 refinements: clean PNG logos, Panama imagery and footer contact ===== */
.site-header {
  min-height: 96px;
}
.brand-lockup.clean-logo {
  min-width: 310px;
  background: var(--navy);
  border-radius: 0;
  padding: 10px 16px;
  box-shadow: 0 14px 30px rgba(6,26,49,.10);
}
.brand-lockup.clean-logo img {
  width: 290px;
  height: 78px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.hero {
  background:
    linear-gradient(90deg, rgba(6,26,49,.99), rgba(6,26,49,.88) 46%, rgba(6,26,49,.62)),
    radial-gradient(circle at 78% 46%, rgba(224,192,110,.18), transparent 35%),
    url('../img/panama-canal-ship.png') center/cover;
}
.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(6,26,49,.08), rgba(6,26,49,.28));
  pointer-events:none;
}
.hero-content h1, .hero-content .eyebrow, .hero-content .hero-text, .hero-buttons, .proof-row {
  animation: refinedTextIn .85s cubic-bezier(.22,1,.36,1) both;
}
.hero-content .eyebrow { animation-delay: .04s; }
.hero-content h1 { animation-delay: .12s; }
.hero-content .hero-text { animation-delay: .20s; }
.hero-buttons { animation-delay: .28s; }
.proof-row { animation-delay: .36s; }
@keyframes refinedTextIn {
  from { opacity: 0; transform: translateY(20px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.emblem-orbit img,
.about-card img {
  content: url('../img/logo-official.png');
}
.about-card img { width: 300px; }
.canal-image img {
  min-height: 430px;
}
.app-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.app-section .app-bg {
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(6,26,49,.98), rgba(6,26,49,.82)),
    url('../img/panama-canal-ship.png') center/cover;
  opacity: .55;
  z-index:-2;
}
.app-section::after {
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:310px;
  height:310px;
  border-radius:50%;
  background: rgba(224,192,110,.15);
  z-index:-1;
}
.phone img {
  width: 135px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 18px;
}
.coming-soon-badge {
  display:inline-flex;
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(224,192,110,.16);
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(224,192,110,.38);
}
.contact-direct a,
.footer-contact a {
  text-decoration: none;
  font-weight: 800;
}
.contact-direct a:hover,
.footer-contact a:hover {
  color: var(--gold-2);
}
.site-footer {
  display: block;
  padding: 0;
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(224,192,110,.25);
}
.footer-main {
  display:grid;
  grid-template-columns: minmax(260px, 430px) minmax(220px, 1fr) auto;
  gap: 28px;
  align-items:center;
  padding: 28px clamp(20px,5vw,80px);
}
.footer-brand img {
  width: 330px;
  max-width: 100%;
  height: auto;
}
.footer-contact {
  display:flex;
  flex-wrap:wrap;
  gap: 10px 20px;
  color: rgba(248,247,243,.88);
}
.footer-social {
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-social a {
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(224,192,110,.48);
  color: var(--gold-2);
  font-weight: 900;
  font-size: .82rem;
  transition: .22s ease;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 20px;
  border-top:1px solid rgba(255,255,255,.10);
  padding: 16px clamp(20px,5vw,80px);
  color:rgba(248,247,243,.78);
}
.footer-bottom a { color: var(--gold-2); font-weight: 900; }
.reveal.in-view .canal-image,
.reveal.in-view .phone,
.reveal.in-view .quick-services a,
.reveal.in-view .timeline article,
.reveal.in-view .service-card {
  animation: refinedTextIn .75s cubic-bezier(.22,1,.36,1) both;
}

@media (max-width: 1100px) {
  .brand-lockup.clean-logo { min-width: 240px; }
  .brand-lockup.clean-logo img { width: 230px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-social { justify-content:flex-start; }
}
@media (max-width: 760px) {
  .site-header { min-height: 82px; }
  .brand-lockup.clean-logo { min-width: 190px; padding: 8px 10px; }
  .brand-lockup.clean-logo img { width: 190px; height: 58px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .footer-brand img { width: 260px; }
}

/* V5 refinements: clean PNG logos, service click-through and polished social icons */
.brand-lockup.clean-logo {
  min-width: 320px;
}
.brand-lockup.clean-logo img {
  width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  background: var(--navy);
  padding: 12px 18px;
  box-shadow: 0 14px 24px rgba(6,26,49,.12);
}
.footer-brand img {
  width: 240px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.emblem-orbit {
  overflow: hidden;
}
.emblem-orbit img,
.about-card img {
  border-radius: 50%;
  background: transparent;
}
.about-card img {
  width: 250px;
}
.services-grid a.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-cta {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.services-grid a.service-card:hover .service-cta {
  transform: translateX(4px);
}
.footer-social a {
  background: rgba(224,192,110,.08);
  overflow: hidden;
}
.footer-social a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}
.footer-social a:hover img {
  transform: scale(1.08);
}
@media (max-width: 1100px) {
  .brand-lockup.clean-logo { min-width: 250px; }
  .brand-lockup.clean-logo img { width: 240px; }
}
@media (max-width: 760px) {
  .brand-lockup.clean-logo { min-width: 190px; }
  .brand-lockup.clean-logo img { width: 190px; padding: 10px 12px; }
}

/* V6 refinements requested: rounded header/footer logo, clean round emblem, no ops card */
.brand-lockup.clean-logo {
  min-width: 340px;
}
.brand-lockup.clean-logo img {
  width: 315px;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
  background: transparent;
  padding: 0;
  box-shadow: 0 14px 26px rgba(6,26,49,.14);
}
.footer-brand img {
  width: 260px;
  border-radius: 18px;
  background: transparent;
}
.hero-visual {
  align-self: center;
}
.emblem-orbit {
  background: radial-gradient(circle, rgba(255,255,255,.94), rgba(255,255,255,.74));
  box-shadow: inset 0 0 0 1px rgba(224,192,110,.38), 0 40px 90px rgba(0,0,0,.26);
}
.emblem-orbit img,
.about-card img,
.phone img {
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
}
.phone img {
  width: 96px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.30));
}
.footer-social a {
  border-color: rgba(199,154,56,.75);
  background: rgba(199,154,56,.14);
}
.footer-social a img {
  width: 27px;
  height: 27px;
}
@media (max-width: 1100px) {
  .brand-lockup.clean-logo { min-width: 260px; }
  .brand-lockup.clean-logo img { width: 245px; }
}
@media (max-width: 760px) {
  .brand-lockup.clean-logo { min-width: 200px; }
  .brand-lockup.clean-logo img { width: 200px; }
}

/* V7 logo refinements */
.brand-lockup.clean-logo img {
  width: 315px;
  height: auto;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 22px;
  object-fit: contain;
}
.footer-brand img {
  width: 260px;
  height: auto;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 18px;
  object-fit: contain;
}
.emblem-orbit {
  background: radial-gradient(circle, rgba(255,255,255,.98), rgba(255,255,255,.82)) !important;
}
.emblem-orbit img,
.about-card img,
.phone img {
  background: #ffffff !important;
  border-radius: 50% !important;
  padding: 4px !important;
}
.about-card {
  background: radial-gradient(circle at 50% 20%, rgba(224,192,110,.18), transparent 36%), linear-gradient(145deg, var(--navy), var(--navy-2));
}
@media (max-width: 1100px) {
  .brand-lockup.clean-logo img { width: 245px; }
  .footer-brand img { width: 225px; }
}
@media (max-width: 760px) {
  .brand-lockup.clean-logo img { width: 200px; }
  .footer-brand img { width: 200px; }
}

/* V8: header/footer logo using the exact uploaded image with rounded borders */
.brand-lockup.clean-logo img {
  width: 335px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 22px !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: 0 14px 26px rgba(6,26,49,.12) !important;
}
.footer-brand img {
  width: 260px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 18px !important;
  background: transparent !important;
  padding: 0 !important;
}
@media (max-width: 1100px) {
  .brand-lockup.clean-logo img { width: 255px !important; }
}
@media (max-width: 760px) {
  .brand-lockup.clean-logo img { width: 205px !important; }
}

/* V9: remove blue edges around the header/footer logo card */
.brand-lockup.clean-logo img {
  width: 335px !important;
  height: auto !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 22px !important;
  object-fit: contain !important;
}
.footer-brand img {
  width: 260px !important;
  height: auto !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 18px !important;
  object-fit: contain !important;
}

/* V10 FIX: logo del menú sin borde ni fondo azul */
.brand-lockup.clean-logo {
  min-width: 350px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.brand-lockup.clean-logo img {
  width: 330px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 22px !important;
}
.footer-brand img {
  width: 260px !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 18px !important;
}
@media (max-width: 1100px) {
  .brand-lockup.clean-logo { min-width: 260px !important; }
  .brand-lockup.clean-logo img { width: 250px !important; }
}
@media (max-width: 760px) {
  .brand-lockup.clean-logo { min-width: 210px !important; }
  .brand-lockup.clean-logo img { width: 205px !important; }
}

/* V11: exact round white-background logo, no checkerboard look */
.emblem-orbit {
  background: radial-gradient(circle, rgba(255,255,255,.98), rgba(255,255,255,.86)) !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}
.emblem-orbit img,
.about-card img,
.phone img {
  background: #ffffff !important;
  border-radius: 50% !important;
  padding: 0 !important;
  object-fit: cover !important;
}
.emblem-orbit img {
  width: min(100%, 520px) !important;
}
.about-card img {
  width: 240px !important;
  margin-inline: auto !important;
}
.phone img {
  width: 92px !important;
}

/* V12: round logo with solid white background, no checkerboard look */
.emblem-orbit {
  background: radial-gradient(circle, rgba(255,255,255,1), rgba(255,255,255,.92)) !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}
.emblem-orbit img,
.about-card img,
.phone img {
  background: #ffffff !important;
  border-radius: 50% !important;
  padding: 0 !important;
  object-fit: cover !important;
}

/* V14 FINAL: logo redondo reemplazado por la última imagen subida, sin fondo cuadriculado */
.emblem-orbit {
  background: #ffffff !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}
.emblem-orbit img,
.about-card img,
.phone img {
  content: url('../img/logo-redondo-final-sin-cuadros-v14.png');
  background: #ffffff !important;
  border-radius: 50% !important;
  padding: 0 !important;
  object-fit: cover !important;
}

/* V16: Home image after Practical support section */
.home-ship-image {
  margin: 0 clamp(20px,5vw,80px) clamp(70px,8vw,110px);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(199,154,56,.28);
}
.home-ship-image img {
  width: 100%;
  min-height: 220px;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 760px) {
  .home-ship-image {
    border-radius: 24px;
  }
  .home-ship-image img {
    min-height: 260px;
  }
}

/* V17: smaller, optimized home ship image */
.home-ship-image {
  max-width: min(1100px, calc(100% - clamp(40px,10vw,160px)));
  margin-inline: auto;
}
.home-ship-image img {
  min-height: 240px !important;
  max-height: 400px !important;
}
@media (max-width: 760px) {
  .home-ship-image img {
    min-height: 200px !important;
    max-height: 280px !important;
  }
}

/* V18: polished social icons, mobile/tablet responsiveness and UX refinement */
.footer-social {
  display: flex !important;
  align-items: center;
  gap: 12px !important;
  flex-wrap: wrap;
}
.footer-social a {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(199,154,56,.12) !important;
  border: 1px solid rgba(199,154,56,.65) !important;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease !important;
}
.footer-social a img {
  width: 34px !important;
  height: 34px !important;
  display: block !important;
  object-fit: contain !important;
}
.footer-social a:hover {
  transform: translateY(-3px) !important;
  background: rgba(199,154,56,.25) !important;
  box-shadow: 0 12px 22px rgba(199,154,56,.18) !important;
}
button, a, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 1200px) {
  .site-header {
    gap: 16px;
    padding-inline: clamp(16px, 3vw, 42px);
  }
  .main-nav {
    gap: 16px;
    font-size: .8rem;
  }
  .header-cta {
    padding: 11px 15px;
  }
  .brand-lockup.clean-logo {
    min-width: 280px !important;
  }
  .brand-lockup.clean-logo img {
    width: 270px !important;
  }
}
@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
    flex-wrap: wrap;
  }
  .brand-lockup.clean-logo {
    min-width: auto !important;
  }
  .brand-lockup.clean-logo img {
    width: 230px !important;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
  }
  .main-nav,
  .header-actions {
    width: 100%;
    display: none;
  }
  body.nav-open .main-nav,
  body.nav-open .header-actions {
    display: flex;
  }
  .main-nav {
    order: 3;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 4px;
  }
  .main-nav a {
    padding: 14px 6px;
    border-top: 1px solid rgba(6,26,49,.10);
  }
  .header-actions {
    order: 4;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
  }
  .language-switch {
    width: fit-content;
  }
  .header-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: 56px;
  }
  .hero-text,
  .hero h1,
  .proof-row {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .split-section,
  .about-grid,
  .canal-section,
  .contact-section,
  .app-section {
    grid-template-columns: 1fr !important;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .phone {
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }
  .brand-lockup.clean-logo img {
    width: 205px !important;
  }
  .hero {
    padding: 44px 18px 58px;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.7rem);
  }
  .hero-text {
    font-size: 1rem;
  }
  .proof-row {
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
  .quick-services,
  .services-grid,
  .timeline,
  .policy-grid,
  .statement-grid {
    grid-template-columns: 1fr !important;
  }
  .section,
  .contact-section,
  .app-section {
    padding-inline: 18px !important;
  }
  .section h2,
  .app-section h2,
  .contact-section h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .about-card {
    padding: 30px 22px !important;
  }
  .about-card img {
    width: min(230px, 72vw) !important;
  }
  .emblem-orbit {
    width: min(360px, 82vw) !important;
  }
  .footer-main {
    text-align: center;
    justify-items: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center !important;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .request-form {
    padding: 22px !important;
  }
}

/* V20: footer location and requested social media order */
.footer-contact span {
  color: rgba(248,247,243,.92);
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .footer-contact span {
    white-space: normal;
    text-align: center;
  }
}
