:root {
  --ocean: #06263d;
  --ocean-deep: #031925;
  --blue: #0b5372;
  --aqua: #49b9c6;
  --brass: #d7aa62;
  --foam: #f4f8f8;
  --white: #ffffff;
  --ink: #102b3a;
  --muted: #617581;
  --line: #d9e4e7;
  --display: 'Manrope', Arial, sans-serif;
  --sans: 'DM Sans', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; overflow-x: clip; }
body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.7; font-size: 16px; overflow-x: clip; }
img { max-width: 100%; display: block; }
a, button, input, textarea { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.container.narrow { max-width: 820px; }
.section { padding: 112px 0; }
.center { text-align: center; }
h1, h2, h3 { font-family: var(--display); line-height: 1.12; letter-spacing: -0.035em; }
h2 { font-size: clamp(2.15rem, 4vw, 3.5rem); margin-bottom: 24px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
p + p { margin-top: 18px; }
.eyebrow { color: var(--blue); font-family: var(--display); font-size: .73rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; }
.lede { color: var(--muted); max-width: 650px; margin: 0 auto; font-size: 1.05rem; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 24px; border: 1px solid transparent; border-radius: 999px; font-family: var(--display); font-size: .85rem; font-weight: 800; letter-spacing: .035em; text-decoration: none; cursor: pointer; transition: transform .2s, background .2s, border-color .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-solid { color: var(--ocean-deep); background: var(--brass); }
.btn-solid:hover { background: #e5bd7c; }
.btn-outline { color: var(--ocean); border-color: var(--ocean); background: transparent; }
.btn-outline:hover { color: var(--white); background: var(--ocean); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(3,25,37,.2); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.text-link { color: var(--blue); font-family: var(--display); font-size: .86rem; font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--ocean); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(3,25,37,.92); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(16px); }
.site-header .container { width: min(1400px, calc(100% - 64px)); }
.header-inner { height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 13px; margin-right: auto; color: var(--white); text-decoration: none; }
.brand-wave { width: 58px; height: 28px; overflow: hidden; flex: 0 0 auto; }
.brand-wave img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.brand-name { font-family: var(--display); font-size: .88rem; font-weight: 700; letter-spacing: .105em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: #c7d8de; font-family: var(--display); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; transition: color .2s; }
.site-nav a:hover { color: var(--white); }
.header-cta { min-height: 42px; padding: 8px 19px; color: var(--brass); border-color: rgba(215,170,98,.7); }
.header-cta:hover { color: var(--ocean-deep); background: var(--brass); border-color: var(--brass); }
.nav-toggle { display: none; width: 42px; height: 38px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 6px auto; background: var(--white); }
.renewal-banner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 6px 20px; color: var(--ocean); background: #ebe3d7; border-top: 1px solid #d9ccba; border-bottom: 1px solid #d9ccba; font-family: var(--display); font-size: .72rem; font-weight: 700; letter-spacing: .045em; text-align: center; }
.renewal-banner::before { content: ''; width: 5px; height: 5px; flex: 0 0 auto; background: #b6823f; border-radius: 50%; }

.hero { position: relative; min-height: calc(100vh - 112px); min-height: calc(100svh - 112px); display: flex; align-items: center; overflow: hidden; background: var(--ocean-deep); }
.hero-media { position: absolute; inset: 0; background: url('images/hero.jpg') 58% center / cover no-repeat; transform: scale(1.02); animation: heroDrift 18s ease-in-out infinite alternate; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,25,37,.96) 0%, rgba(3,25,37,.83) 37%, rgba(3,25,37,.2) 72%), linear-gradient(0deg, rgba(3,25,37,.7), transparent 45%); }
@keyframes heroDrift { to { transform: scale(1.08); } }
.hero-content { position: relative; z-index: 1; color: var(--white); padding-top: 88px; padding-bottom: 62px; }
.hero-content > * { opacity: 0; animation: fadeUp .75s ease-out forwards; }
.hero-content > *:nth-child(2) { animation-delay: .1s; }
.hero-content > *:nth-child(3) { animation-delay: .2s; }
.hero-content > *:nth-child(4) { animation-delay: .3s; }
.hero-content > *:nth-child(5) { animation-delay: .4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero .eyebrow { color: var(--brass); }
.hero h1 { max-width: 780px; color: var(--white); font-size: clamp(3.4rem, 8vw, 7rem); font-weight: 700; letter-spacing: -.065em; }
.hero-sub { max-width: 610px; margin-top: 24px; color: #ccdade; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; gap: 0; margin-top: 72px; border-top: 1px solid rgba(255,255,255,.18); max-width: 760px; }
.hero-proof span { padding: 18px 34px 0 0; margin-right: 34px; color: #9eb3bc; font-size: .78rem; border-right: 1px solid rgba(255,255,255,.14); }
.hero-proof span:last-child { border: 0; }
.hero-proof strong { display: block; color: var(--white); font-family: var(--display); font-size: 1.15rem; }

.clients { padding: 66px 0 70px; background: var(--foam); border-bottom: 1px solid var(--line); }
.clients .eyebrow { display: flex; align-items: center; justify-content: center; gap: 22px; margin-bottom: 44px; }
.clients .eyebrow::before, .clients .eyebrow::after { content: ''; width: 64px; height: 1px; background: var(--line); }
.client-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; column-gap: clamp(44px, 7.5vw, 104px); row-gap: 32px; }
.client-logo { display: flex; align-items: center; justify-content: center; height: 84px; }
.client-logo img { height: 50px; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.client-logo.logo-sm img { height: 32px; }
.client-logo.logo-md img { height: 62px; }
.client-logo.logo-tall img { height: 84px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.split-text > p:not(.eyebrow) { color: var(--muted); }
.split-media { position: relative; }
.split-media::before { content: ''; position: absolute; width: 74%; height: 74%; top: -20px; right: -20px; border: 1px solid var(--aqua); z-index: 0; }
.split-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 25px 70px rgba(6,38,61,.16); }
.about { background: var(--white); }

.values { padding: 74px 0; background: var(--ocean); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.value-card { padding: 8px 52px; border-left: 1px solid rgba(255,255,255,.15); }
.value-card:first-child { padding-left: 0; border: 0; }
.value-card h3 { color: var(--white); }
.value-card h3::before { content: '0' counter(card); counter-increment: card; display: block; margin-bottom: 20px; color: var(--brass); font-size: .72rem; letter-spacing: .16em; }
.value-grid { counter-reset: card; }
.value-card p { color: #adc0c8; font-size: .94rem; }

.products { background: var(--foam); }
.spotlight { max-width: 1040px; margin: 0 auto; }
.spotlight-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 52px; }
.spotlight-intro p, .spotlight-feature p, .card p { color: var(--muted); }
.spotlight-media img, .feature-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 22px 60px rgba(6,38,61,.16); }
.spotlight-feature { display: grid; grid-template-columns: .82fr 1.18fr; gap: 46px; align-items: center; margin-top: 42px; padding: 42px; background: var(--ocean); color: var(--white); }
.spotlight-feature h3 { color: var(--white); font-size: 1.55rem; }
.spotlight-feature p { color: #b9cbd2; margin-bottom: 24px; }
.spotlight-feature .btn-outline { color: var(--brass); border-color: var(--brass); }
.spotlight-feature .btn-outline:hover { color: var(--ocean); background: var(--brass); }
.offerings-title { margin-top: 108px; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 960px; margin: 44px auto 0; }
.card { display: flex; flex-direction: column; gap: 16px; padding: 24px; background: var(--white); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(6,38,61,.12); }
.card-media { height: 250px; display: flex; align-items: center; justify-content: center; padding: 24px; background: #fff; border-bottom: 1px solid var(--line); }
.card-media img { max-height: 100%; width: auto; object-fit: contain; }
.card h3 { font-size: 1.12rem; }
.card h3 span { color: var(--aqua); }
.card p { flex: 1; font-size: .92rem; }

.services { position: relative; overflow: hidden; background: var(--white); }
.services::after { content: 'SPM'; position: absolute; right: -30px; bottom: -95px; color: var(--foam); font-family: var(--display); font-size: clamp(10rem, 25vw, 24rem); font-weight: 800; line-height: 1; letter-spacing: -.08em; z-index: 0; }
.services .container { position: relative; z-index: 1; }
.service-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 42px; }
.service-list li { position: relative; padding: 18px 18px 18px 48px; color: var(--ink); background: var(--foam); border-left: 2px solid var(--aqua); font-family: var(--display); font-size: .92rem; font-weight: 700; }
.service-list li::before { content: '→'; position: absolute; left: 19px; color: var(--blue); }

.contact { color: var(--white); background: var(--ocean-deep); }
.contact-split { grid-template-columns: 1.08fr .92fr; align-items: start; }
.contact h2, .contact h3 { color: var(--white); }
.contact .eyebrow { color: var(--brass); }
.contact .split-text > p:not(.eyebrow) { color: #aabdc5; }
.contact-form { display: grid; gap: 17px; max-width: 530px; margin-top: 34px; }
.contact-form label { display: grid; gap: 7px; color: #bed0d7; font-family: var(--display); font-size: .8rem; font-weight: 700; }
.req { color: var(--brass); }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--white); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.23); border-radius: 0; font: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--aqua); outline-offset: 1px; border-color: transparent; }
.contact-form .btn { justify-self: start; min-width: 130px; }
.contact-form .btn:disabled { opacity: .65; cursor: wait; transform: none; }
.form-error { max-width: 470px; color: #ffb3aa; font-size: .88rem; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--white); font-weight: 700; text-decoration: none; }
.whatsapp-link:hover { color: var(--brass); }
.contact-info { padding: 44px; color: var(--ink); background: var(--white); border-top: 4px solid var(--brass); box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.contact-info h3 { color: var(--ink); }
.contact-info address { margin-top: 12px; color: var(--muted); font-style: normal; }
.contact-info a { color: var(--blue); font-weight: 600; text-decoration: none; }
.hours-title { margin-top: 34px; }
.hours { width: 100%; margin-top: 8px; border-collapse: collapse; }
.hours td { padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: .9rem; }
.hours td:last-child { color: var(--ink); text-align: right; font-weight: 600; }

.site-footer { padding: 38px 0; color: #829ca7; background: #02141f; border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; font-size: .82rem; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: var(--brass); transition: color .2s; }
.footer-socials a:hover { color: var(--white); }

body.modal-open { overflow: hidden; }
.success-modal[hidden] { display: none; }
.success-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.success-modal__backdrop { position: absolute; inset: 0; background: rgba(2,20,31,.82); backdrop-filter: blur(7px); }
.success-modal__panel { position: relative; width: min(100%, 520px); padding: 52px 46px 46px; text-align: center; background: var(--white); border-top: 4px solid var(--brass); box-shadow: 0 30px 90px rgba(0,0,0,.38); }
.success-modal__mark { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 22px; color: var(--white); background: var(--blue); border-radius: 50%; font-family: var(--display); font-size: 1.4rem; font-weight: 800; }
.success-modal .eyebrow { margin-bottom: 10px; }
.success-modal h2 { margin-bottom: 16px; font-size: clamp(2rem, 5vw, 2.8rem); }
.success-modal p:not(.eyebrow) { color: var(--muted); }
.success-modal .btn { margin-top: 30px; }

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .site-header .container { width: min(100% - 36px, 1180px); }
  .split, .contact-split, .spotlight-intro, .spotlight-feature { grid-template-columns: 1fr; gap: 38px; }
  .split-media { order: -1; }
  .card-grid, .value-grid { grid-template-columns: 1fr; }
  .clients { padding: 48px 0 52px; }
  .clients .eyebrow { margin-bottom: 32px; }
  .client-logos { column-gap: 40px; row-gap: 26px; }
  .client-logo { height: 64px; }
  .client-logo img { height: 38px; }
  .client-logo.logo-sm img { height: 26px; }
  .client-logo.logo-md img { height: 48px; }
  .client-logo.logo-tall img { height: 64px; }
  .value-card, .value-card:first-child { padding: 28px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .value-card:first-child { border-top: 0; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 112px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 24px 22px; background: var(--ocean-deep); border-bottom: 1px solid rgba(255,255,255,.12); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-proof { flex-wrap: wrap; }
  .hero-proof span { min-width: 42%; margin-bottom: 16px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 36px, 1180px); }
  .brand { gap: 8px; }
  .brand-wave { width: 46px; height: 22px; }
  .brand-name { font-size: .68rem; letter-spacing: .065em; }
  .renewal-banner { gap: 7px; padding-inline: 12px; font-size: .66rem; letter-spacing: .02em; }
  .eyebrow { font-size: .66rem; letter-spacing: .14em; }
  .hero { min-height: 620px; }
  .hero h1 { font-size: clamp(2.7rem, 12.5vw, 4rem); }
  .hero-sub { margin-top: 18px; }
  .hero-actions { margin-top: 28px; }
  .hero-content { padding-top: 56px; }
  .hero-proof { margin-top: 44px; }
  .hero-proof span { min-width: 42%; padding: 12px 12px 0 0; margin-right: 12px; border-right: 0; margin-bottom: 10px; }
  .section { padding: 64px 0; }
  .offerings-title { margin-top: 72px; }
  .card-grid { gap: 18px; margin-top: 32px; }
  .card-media { height: 180px; padding: 16px; }
  .service-list { grid-template-columns: 1fr; }
  .spotlight-feature, .contact-info { padding: 28px 24px; }
  .card { padding: 20px; }
  .success-modal__panel { padding: 40px 24px 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media, .hero-content > * { animation: none; opacity: 1; }
  .card, .btn { transition: none; }
}
