:root {
  --navy: #071f3d;
  --navy-mid: #0b3159;
  --teal: #147d7e;
  --teal-dark: #0d6467;
  --gold: #c7a24b;
  --gold-light: #e2c878;
  --ink: #102238;
  --muted: #5f6e7d;
  --line: #dfe4e4;
  --ivory: #f6f4ee;
  --soft: #f8f9f7;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(7, 31, 61, .07);
  --shadow-lg: 0 28px 70px rgba(7, 31, 61, .14);
  --container: 1180px;
  --radius-sm: 10px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  line-height: 1.14;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.7rem, 5.3vw, 5.25rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.35rem); }
h3 { font-size: 1.18rem; letter-spacing: -.02em; }
p { margin: 0; color: var(--muted); }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 104px 0; }
.section-pad-sm { padding: 64px 0; }
.section-soft { background: var(--ivory); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; background: var(--white); color: var(--navy); padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid rgba(199, 162, 75, .6); outline-offset: 3px; }

/* Header */
.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(7, 31, 61, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(7, 31, 61, .035);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.brand img { width: 176px; height: 66px; object-fit: contain; object-position: left center; transition: transform .25s ease; }
.brand:hover img { transform: translateY(-1px); }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .93rem; font-weight: 600; color: #2e4052; }
.site-nav > a:not(.btn) { position: relative; padding: 27px 0 26px; }
.site-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 18px; height: 2px; background: var(--gold); transition: right .25s ease; }
.site-nav > a:not(.btn):hover, .site-nav > a.active { color: var(--navy); }
.site-nav > a:not(.btn):hover::after, .site-nav > a.active::after { right: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy); }

/* Buttons */
.btn { position: relative; display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; overflow: hidden; border: 1px solid transparent; border-radius: 8px; font-weight: 700; letter-spacing: -.01em; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn span { display: inline-block; transition: transform .22s ease; }
.btn:hover span { transform: translateX(3px); }
.btn-primary, .btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(199, 162, 75, .2); }
.btn-primary:hover, .btn-gold:hover { background: var(--gold-light); box-shadow: 0 14px 30px rgba(199, 162, 75, .26); }
.btn-secondary { border-color: rgba(255,255,255,.42); color: var(--white); background: rgba(255,255,255,.04); }
.btn-secondary:hover { background: rgba(255,255,255,.1); }
.btn-nav { min-height: 44px; padding-inline: 18px; background: var(--navy); color: var(--white); }
.btn-nav:hover { background: var(--navy-mid); }
.btn-outline { border-color: #aebdbc; color: var(--navy); background: transparent; }
.btn-outline:hover { border-color: var(--teal); background: #f5faf8; }

/* Shared headings */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--gold-light); font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--teal-dark); }
.eyebrow.gold { color: var(--gold-light); }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 17px; }
.section-head p { max-width: 680px; font-size: 1.04rem; }

/* Home hero */
.hero-compact { position: relative; overflow: hidden; background: var(--navy); }
.hero-compact::before { content: ""; position: absolute; width: 520px; height: 520px; top: -330px; right: -150px; border: 1px solid rgba(199,162,75,.22); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; min-height: 640px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 74px; padding: 80px 0 94px; }
.hero-compact h1 { color: var(--white); font-size: clamp(2.7rem, 4.45vw, 5rem); line-height: 1.02; letter-spacing: -.06em; }
.hero-intro { display: block; margin-bottom: 18px; color: #9fc6c5; font-size: .25em; line-height: 1.4; letter-spacing: .1em; text-transform: uppercase; }
.hero-highlight { display: block; color: var(--white); }
.hero-copy > p { max-width: 610px; margin-top: 25px; color: #d7e0e9; font-size: 1.07rem; line-height: 1.76; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-photo-wrap { position: relative; aspect-ratio: 886 / 440; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-photo-wrap::before { content: ""; position: absolute; inset: 16px -16px -16px 16px; z-index: -1; border: 1px solid rgba(199,162,75,.5); border-radius: var(--radius); }
.hero-photo-wrap img { width: 100%; height: 100%; border-radius: var(--radius); object-fit: cover; filter: saturate(.82) contrast(1.04); }

/* Trust strip */
.trust-float-section { position: relative; z-index: 5; background: var(--white); }
.trust-strip { transform: translateY(-34px); display: grid; grid-template-columns: 1.1fr .7fr 1.75fr; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.trust-intro { min-height: 128px; display: flex; align-items: center; gap: 17px; padding: 28px 30px; }
.trust-intro + .trust-intro { border-left: 1px solid var(--line); }
.trust-shield { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid #b9cdcb; border-radius: 50%; color: var(--teal-dark); font-family: "Manrope"; font-size: .72rem; font-weight: 800; }
.trust-intro strong, .trust-intro span { display: block; }
.trust-intro strong { margin-bottom: 4px; color: var(--navy); font-family: "Manrope"; font-size: .98rem; }
.trust-intro span { color: var(--muted); font-size: .81rem; line-height: 1.45; }
.trust-copy { padding: 6px 28px; border-left: 1px solid var(--line); color: var(--muted); font-size: .8rem; line-height: 1.5; }
.software-inline { display: grid; grid-template-columns: repeat(4,1fr); align-items: center; gap: 10px; padding: 18px 24px; border-left: 1px solid var(--line); }
.soft-logo { min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 7px; color: #28384a; filter: grayscale(1); opacity: .72; text-align: center; transition: filter .25s ease, opacity .25s ease, transform .25s ease; }
.soft-logo:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.soft-logo b, .soft-logo span { display: block; }
.soft-logo b { font-family: "Manrope"; font-size: 1.15rem; }
.soft-logo span { font-size: .65rem; font-weight: 700; line-height: 1.1; }
.soft-logo.sql { flex-direction: column; gap: 0; color: #b93734; }
.soft-logo.auto { flex-direction: column; gap: 0; }
.soft-logo.auto i { color: var(--teal); font-style: normal; }
.soft-logo.xero b { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: #25a9ce; color: var(--white); font-size: .83rem; font-weight: 600; }
.soft-logo.qb b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #2d963d; color: var(--white); font-size: .76rem; }
.soft-logo.qb span { color: #25313c; text-align: left; }

/* Home cards */
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.pillar-card::after { content: ""; position: absolute; left: 22px; right: calc(100% - 22px); bottom: 0; height: 2px; background: linear-gradient(90deg,var(--gold),var(--teal)); transition: right .3s ease; }
.pillar-card:hover::after { right: 22px; }
.pillar-card:hover { transform: translateY(-5px); border-color: #c7d2d0; box-shadow: var(--shadow-sm); }
.pillar-icon { height: 160px; overflow: hidden; background: #eef3f0; }
.pillar-icon img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); }
.pillar-card h3 { margin: 24px 22px 10px; }
.pillar-card p { padding: 0 22px 26px; font-size: .91rem; }
.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.service-card-premium { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; min-height: 335px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 26px rgba(7,31,61,.035); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card-premium:hover { transform: translateY(-4px); border-color: #cbd5d3; box-shadow: var(--shadow-sm); }
.service-card-content { display: flex; flex-direction: column; align-items: flex-start; padding: 34px 30px; }
.service-icon { margin-bottom: 42px; color: var(--teal-dark); font-family: "Manrope"; font-size: .78rem; font-weight: 800; letter-spacing: .09em; }
.service-card-content h3 { margin-bottom: 12px; }
.service-card-content p { margin-bottom: 22px; font-size: .91rem; }
.service-card-content a { margin-top: auto; color: var(--teal-dark); font-size: .86rem; font-weight: 800; }
.service-card-content a:hover { color: var(--navy); }
.service-card-media { min-height: 100%; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.03); transition: transform .45s ease; }
.service-card-premium:hover .service-card-media img { transform: scale(1.035); }
.center-cta { margin-top: 34px; text-align: center; }

/* Process */
.process { background: var(--white); }
.journey-timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.journey-line { position: absolute; left: 6%; right: 6%; top: 25px; height: 1px; background: var(--line); }
.journey-card { position: relative; padding: 62px 4px 0; }
.journey-node { position: absolute; top: 0; left: 0; z-index: 2; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid #becbc9; border-radius: 50%; background: var(--white); color: var(--teal-dark); font-family: "Manrope"; font-size: .76rem; font-weight: 800; }
.journey-icon, .journey-stem, .journey-accent { display: none; }
.journey-card h3 { max-width: 210px; margin-bottom: 12px; }
.journey-card p { max-width: 245px; font-size: .9rem; }

/* CTA and footer */
.cta-wrap { background: var(--ivory); }
.cta-banner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; padding: 52px 56px; border-radius: var(--radius); background: var(--navy); }
.cta-banner h2 { max-width: 760px; color: var(--white); font-size: clamp(1.9rem,3vw,3rem); }
.cta-banner p { max-width: 700px; margin-top: 15px; color: #c8d5e0; }
.site-footer { padding: 70px 0 0; background: #06182c; color: #d6e0e8; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr 1.05fr; gap: 52px; padding-bottom: 52px; }
.footer-brand img { width: 150px; height: 96px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 310px; margin-top: 15px; color: #9fb0bf; font-size: .9rem; }
.site-footer h4 { margin: 9px 0 20px; color: var(--white); font-size: .88rem; letter-spacing: .02em; }
.site-footer a, .site-footer span { display: block; margin: 10px 0; color: #aebdca; font-size: .85rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom > div { display: flex; gap: 24px; }
.footer-bottom span, .footer-bottom a { margin: 0; font-size: .78rem; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: linear-gradient(145deg,#198b79,#0d6c60); color: var(--white); box-shadow: 0 14px 30px rgba(7,31,61,.22),0 0 0 5px rgba(20,125,110,.08); font-size: .76rem; font-weight: 800; transition: transform .2s ease,box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(7,31,61,.25),0 0 0 7px rgba(20,125,110,.1); }

/* Inner page hero */
.page-hero { position: relative; overflow: hidden; background: var(--navy); }
.page-hero::before { content: ""; position: absolute; width: 540px; height: 540px; top: -360px; right: -90px; border: 1px solid rgba(199,162,75,.2); border-radius: 50%; }
.page-hero-grid { position: relative; z-index: 1; min-height: 520px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 80px; padding: 74px 0 84px; }
.page-hero h1 { max-width: 700px; color: var(--white); font-size: clamp(2.7rem,4.5vw,4.8rem); }
.page-hero h1 span { color: var(--gold-light); }
.page-hero-grid > div:first-child > p { max-width: 620px; margin-top: 23px; color: #d2dde7; font-size: 1.04rem; }

/* About */
.about-hero-visual { position: relative; display: grid; place-items: center; }
.about-hero-backplate, .about-orbit, .about-brand-glow { display: none; }
.about-brand-card { width: min(100%, 430px); min-height: 310px; display: grid; place-items: center; padding: 34px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.about-brand-card img { width: 260px; max-height: 220px; object-fit: contain; }
.about-brand-card p { color: #b9cacd; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.split-content { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.about-editorial-line { display: block; width: 52px; height: 2px; margin-bottom: 23px; background: var(--gold); }
.about-overview-copy { padding-top: 10px; }
.about-overview-copy p { font-size: 1.05rem; }
.about-overview-copy p + p { margin-top: 18px; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 52px; }
.value-mark { color: var(--teal-dark); font-family: "Manrope"; font-size: .78rem; font-weight: 800; }
.value-metal-icon { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #c6d1cf; border-radius: 50%; color: var(--teal-dark); }
.value-metal-icon::before { font-family: "Manrope"; font-size: .82rem; font-weight: 800; }
.icon-precision::before { content: "✓"; }
.icon-confidentiality::before { content: "◇"; }
.icon-partnership::before { content: "↗"; }
.value-metal-icon span { display: none; }
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: .92rem; }
.about-feature { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 70px; padding: 58px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.about-feature h2 { margin-bottom: 17px; }
.audience-tags { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.audience-tags span { padding: 16px 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--navy); font-size: .88rem; font-weight: 700; text-align: center; }

/* Services */
.services-hero-visual { position: relative; }
.services-hero-orbit { display: none; }
.page-hero-mini-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.service-hero-tile { min-height: 130px; display: flex; align-items: flex-start; gap: 14px; padding: 23px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); background: rgba(255,255,255,.055); }
.service-hero-tile strong, .service-hero-tile span { display: block; }
.service-hero-tile strong { color: var(--white); font-family: "Manrope"; font-size: .92rem; }
.service-hero-tile div > span { margin-top: 5px; color: #aebfce; font-size: .75rem; line-height: 1.45; }
.service-hero-icon { flex: 0 0 30px; color: var(--gold-light); font-family: "Manrope"; font-size: .7rem; font-weight: 800; }
.service-hero-icon::before { content: "01"; }
.service-hero-icon-tax::before { content: "02"; }
.service-hero-icon-admin::before { content: "03"; }
.service-hero-icon-regulatory::before { content: "04"; }
.detail-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.detail-card { position: relative; min-height: 275px; padding: 28px 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .25s ease, box-shadow .25s ease,border-color .25s ease; }
.detail-card::after { content: ""; position: absolute; inset: auto 100% 0 0; height: 2px; background: linear-gradient(90deg,var(--gold),var(--teal)); transition: right .3s ease; }
.detail-card:hover { transform: translateY(-4px); border-color: #cbd5d3; box-shadow: var(--shadow-sm); }
.detail-card:hover::after { right: 0; }
.service-detail-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.service-detail-no { color: var(--teal-dark); font-family: "Manrope"; font-size: .75rem; font-weight: 800; }
.service-detail-metal-icon { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid #c6d2d0; border-radius: 50%; color: var(--teal-dark); font-family: "Manrope"; font-size: .62rem; font-weight: 800; }
.detail-icon-bookkeeping::before { content: "BK"; }
.detail-icon-reporting::before { content: "FR"; }
.detail-icon-tax::before { content: "TX"; }
.detail-icon-catchup::before { content: "CU"; }
.detail-icon-document::before { content: "DC"; }
.detail-icon-banking::before { content: "BN"; }
.detail-icon-regulatory::before { content: "RG"; }
.detail-icon-support::before { content: "SP"; }
.service-detail-metal-icon i { display: none; }
.detail-card h3 { margin-bottom: 12px; }
.detail-card p { font-size: .9rem; }
.faq-strip { background: var(--white); }
.faq-list { max-width: 900px; display: grid; gap: 12px; }
details { border-bottom: 1px solid var(--line); background: var(--white); }
summary { position: relative; cursor: pointer; list-style: none; padding: 21px 48px 21px 0; color: var(--navy); font-family: "Manrope"; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 19px; color: var(--teal-dark); font-size: 1.2rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details[open] summary { color: var(--teal-dark); }
details p { max-width: 780px; padding: 0 48px 22px 0; }

/* Contact */
.contact-hero-visual-v35 { display: grid; place-items: center; }
.contact-hero-orbit { display: none; }
.contact-hero-card { width: min(100%, 420px); padding: 42px; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.contact-hero-card strong, .contact-hero-card span, .contact-hero-card b { display: block; }
.contact-hero-card strong { margin-bottom: 34px; color: var(--gold-light); font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.contact-hero-card span { color: #aec0cf; }
.contact-hero-card b { margin-top: 4px; color: var(--white); font-family: "Manrope"; font-size: 1.55rem; }
.contact-hero-status { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .8rem; }
.contact-hero-status i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #6fc3a6; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 70px; }
.contact-copy h2 { margin: 8px 0 15px; }
.contact-list { display: grid; margin-top: 32px; }
.contact-list > a, .contact-list > div { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); transition: padding-left .22s ease,border-color .22s ease; }
.contact-list > a:hover { padding-left: 5px; border-color: #bdccca; }
.contact-list span:first-child { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #c9d4d2; border-radius: 50%; color: var(--teal-dark); font-size: .78rem; }
.contact-list small, .contact-list strong { display: block; }
.contact-list small { margin-bottom: 2px; color: #778492; font-size: .75rem; }
.contact-list strong { color: var(--navy); font-size: .9rem; line-height: 1.45; }
.quote-form { position: relative; padding: 38px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 22px 60px rgba(7,31,61,.09); }
.quote-form::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg,var(--gold),var(--teal)); }
.form-head { margin-bottom: 28px; }
.form-head h3 { font-size: 1.5rem; }
.form-head p { margin-top: 7px; font-size: .9rem; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
label { display: block; margin-bottom: 16px; color: #304256; font-size: .79rem; font-weight: 700; }
input, select, textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #ccd5d7; border-radius: 8px; outline: none; background: var(--white); color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(20,125,126,.11); }
textarea { min-height: 120px; resize: vertical; }
.hp-field, .form-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.consent input { width: auto; margin-top: 4px; }
.consent span { color: var(--muted); font-size: .8rem; }
.consent a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 2px; }
.btn-submit { width: 100%; border: 0; cursor: pointer; }
.btn-submit:disabled { cursor: wait; opacity: .68; }
.form-status { min-height: 22px; margin-top: 12px; font-size: .85rem; }
.form-status.success { color: #177245; }
.form-status.error { color: #b42318; }
.map-card { margin-top: 72px; display: grid; grid-template-columns: 1.35fr .65fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.map-card iframe { width: 100%; height: 330px; border: 0; filter: grayscale(.18) saturate(.75); }
.map-info { display: flex; flex-direction: column; justify-content: center; padding: 38px; background: var(--navy); }
.map-info h3 { color: var(--white); }
.map-info p { margin: 14px 0 23px; color: #bac9d5; font-size: .9rem; }
.map-info a { color: var(--gold-light); font-size: .86rem; font-weight: 700; }

/* Legal pages */
.legal-main { background: var(--soft); }
.legal-hero { padding: 84px 0 62px; background: var(--navy); }
.legal-hero h1 { color: var(--white); font-size: clamp(2.4rem,4vw,4rem); }
.legal-hero p { max-width: 650px; margin-top: 16px; color: #c7d3de; }
.legal-content { max-width: 850px; margin: 0 auto; padding: 76px 0 100px; }
.legal-content section + section { margin-top: 38px; }
.legal-content h2 { margin-bottom: 12px; font-size: 1.35rem; }
.legal-content p + p { margin-top: 12px; }
.legal-note { padding: 18px 20px; border-left: 3px solid var(--gold); background: var(--ivory); }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.show { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .site-nav { gap: 22px; }
  .hero-grid { gap: 42px; }
  .pillar-grid, .detail-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.25fr .75fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .section-pad { padding: 80px 0; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 82px; display: none; max-height: calc(100vh - 82px); overflow-y: auto; align-items: stretch; flex-direction: column; gap: 4px; padding: 18px 24px 24px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.btn) { padding: 10px 0; }
  .site-nav > a:not(.btn)::after { display: none; }
  .site-nav .btn-nav { margin-top: 8px; }
  .hero-grid, .page-hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 48px; padding: 68px 0 78px; }
  .hero-copy { max-width: 720px; }
  .hero-photo-wrap { width: min(100%, 720px); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-intro { min-height: 104px; }
  .trust-intro + .trust-intro { border-left: 0; border-top: 1px solid var(--line); }
  .trust-copy, .software-inline { border-left: 0; border-top: 1px solid var(--line); }
  .trust-copy { padding: 22px; }
  .software-inline { padding: 20px 22px; }
  .journey-timeline { grid-template-columns: repeat(2,1fr); row-gap: 44px; }
  .journey-line { display: none; }
  .cta-banner { grid-template-columns: 1fr; gap: 28px; padding: 44px; }
  .split-content, .about-feature, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
  .map-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, var(--container)); }
  .section-pad { padding: 68px 0; }
  .section-pad-sm { padding: 46px 0; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 145px; height: 52px; }
  .site-nav { top: 70px; max-height: calc(100vh - 70px); }
  .hero-grid, .page-hero-grid { padding: 54px 0 64px; gap: 38px; }
  .hero-compact h1, .page-hero h1 { font-size: clamp(2.3rem,11vw,3rem); }
  .hero-copy > p, .page-hero-grid > div:first-child > p { font-size: .96rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-photo-wrap::before { inset: 9px -8px -9px 8px; }
  .trust-strip { transform: translateY(-22px); }
  .trust-intro { padding: 22px; }
  .software-inline { grid-template-columns: repeat(2,1fr); }
  .section-head { margin-bottom: 34px; }
  .pillar-grid, .detail-grid, .journey-timeline, .page-hero-mini-grid, .audience-tags { grid-template-columns: 1fr; }
  .pillar-icon { height: 180px; }
  .service-card-premium { grid-template-columns: 1fr; }
  .service-card-content { min-height: 295px; }
  .service-card-media { min-height: 230px; }
  .journey-card { padding-top: 58px; }
  .cta-banner { padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; padding: 22px 0; }
  .footer-bottom > div { gap: 16px; }
  .about-brand-card { min-height: 260px; }
  .about-feature { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 26px 20px; }
  .map-info { padding: 30px 24px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
