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

:root {
  --navy-950: #041326;
  --navy-900: #071d3b;
  --navy-800: #0a2a52;
  --blue-700: #0e5794;
  --blue-600: #1474bd;
  --blue-500: #1b8bd6;
  --cyan-500: #17b7bd;
  --cyan-100: #daf6f5;
  --ink: #0b1f3a;
  --muted: #5c6b7c;
  --surface: #f4f8fb;
  --surface-blue: #eef6fb;
  --line: #dce6ee;
  --white: #fff;
  --success: #20b982;
  --shadow-sm: 0 12px 35px rgba(7, 29, 59, .08);
  --shadow-md: 0 24px 70px rgba(7, 29, 59, .13);
  --shadow-lg: 0 38px 100px rgba(7, 29, 59, .19);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Manrope", system-ui, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
p, h1, h2, h3 { margin-top: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-anchor { scroll-margin-top: 94px; }
.skip-link { position: fixed; left: 12px; top: 12px; z-index: 999; padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--navy-950); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; padding: 14px 0; transition: padding .25s ease, background .25s ease, box-shadow .25s ease; }
.site-header.scrolled { padding: 8px 0; background: rgba(255,255,255,.86); box-shadow: 0 10px 35px rgba(7,29,59,.08); backdrop-filter: blur(18px); }
.nav-shell { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 10px 12px 10px 18px; border: 1px solid rgba(220,230,238,.82); border-radius: 21px; background: rgba(255,255,255,.85); box-shadow: 0 14px 40px rgba(7,29,59,.08); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-symbol { width: 42px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(145deg, var(--navy-900), var(--blue-600)); box-shadow: 0 8px 20px rgba(20,116,189,.22); }
.brand-symbol svg { width: 27px; stroke-width: 3.2; }
.brand strong { display: block; font-size: 1.17rem; letter-spacing: .16em; line-height: 1; }
.brand small { display: block; margin-top: 5px; color: var(--muted); font-size: .62rem; letter-spacing: .08em; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a { position: relative; padding: 11px 13px; color: #33455a; font-size: .91rem; font-weight: 600; transition: color .2s ease; }
.main-nav > a:not(.nav-button)::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px; border-radius: 2px; background: var(--blue-600); transform: scaleX(0); transition: transform .2s ease; }
.main-nav > a:hover, .main-nav > a.active { color: var(--navy-900); }
.main-nav > a:hover::after, .main-nav > a.active::after { transform: scaleX(1); }
.main-nav .nav-button { display: inline-flex; align-items: center; gap: 8px; margin-left: 8px; padding: 12px 17px; color: #fff; border-radius: 13px; background: linear-gradient(135deg, var(--navy-900), var(--blue-700)); box-shadow: 0 10px 24px rgba(7,29,59,.2); }
.nav-button svg { width: 18px; fill: currentColor; stroke: none; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; border-radius: 13px; background: var(--surface); cursor: pointer; }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--navy-900); transition: .2s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 800px; display: grid; align-items: center; overflow: hidden; padding: 150px 0 92px; background: linear-gradient(135deg, #fff 0%, #f8fbfd 43%, #edf7fd 100%); }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; left: -360px; bottom: -360px; border-radius: 50%; background: radial-gradient(circle, rgba(25,145,216,.2), rgba(25,145,216,0) 68%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 130px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.98)); pointer-events: none; }
.hero-mesh { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(14,87,148,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(14,87,148,.08) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(circle at 75% 48%, #000 0, transparent 63%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .91fr 1.09fr; gap: 54px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--blue-700); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 29px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--cyan-500), var(--blue-600)); }
.eyebrow.light { color: #cde7f6; }
.eyebrow.light > span { background: linear-gradient(90deg, #4de4df, #79bfff); }
h1 { max-width: 650px; margin-bottom: 25px; color: var(--navy-950); font-family: "Playfair Display", Georgia, serif; font-size: clamp(3.35rem, 5.3vw, 5.15rem); line-height: 1.03; letter-spacing: -.038em; }
.hero-lead { max-width: 610px; margin-bottom: 32px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 21px; border: 1px solid transparent; border-radius: 14px; font-size: .92rem; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--navy-900), var(--blue-700)); box-shadow: 0 14px 30px rgba(7,29,59,.22); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(7,29,59,.28); }
.button-secondary { color: var(--navy-900); border-color: #b9cbd9; background: rgba(255,255,255,.68); }
.button-secondary:hover { background: #fff; box-shadow: var(--shadow-sm); }
.trust-row { display: flex; flex-wrap: wrap; gap: 17px 24px; margin-top: 31px; color: #40536a; font-size: .78rem; font-weight: 650; }
.trust-row > div { display: flex; align-items: center; gap: 7px; }
.trust-row svg { width: 18px; height: 18px; padding: 3px; border-radius: 50%; color: #fff; background: var(--cyan-500); stroke-width: 3; }

.hero-stage { position: relative; min-height: 565px; }
.stage-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(20,116,189,.16); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-a { width: 570px; height: 570px; }
.orbit-b { width: 430px; height: 430px; }
.dashboard-card { position: absolute; left: 7%; right: 4%; top: 12%; z-index: 3; min-height: 420px; padding: 26px; border: 1px solid rgba(255,255,255,.8); border-radius: 30px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-lg); transform: perspective(1200px) rotateY(-7deg) rotateX(2deg); backdrop-filter: blur(18px); }
.dashboard-top { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.dashboard-top small, .metric-grid small, .chart-header small { display: block; color: #8190a0; font-size: .68rem; }
.dashboard-top strong { display: block; margin-top: 3px; font-size: 1.08rem; }
.online-dot { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 20px; color: #087250; background: #e3f8f0; font-size: .65rem; font-weight: 800; }
.online-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(32,185,130,.12); }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin: 20px 0; }
.metric-grid > div { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 11px; padding: 16px; border: 1px solid #e4edf3; border-radius: 17px; background: #fbfdfe; }
.metric-grid .metric-icon { grid-row: 1/3; width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; }
.metric-icon svg { width: 21px; }
.metric-icon.accounting { color: var(--blue-700); background: #e9f3fb; }
.metric-icon.shipping { color: #078f94; background: #e3f7f7; }
.metric-grid strong { font-size: .88rem; }
.chart-panel { padding: 18px 18px 4px; border-radius: 18px; background: linear-gradient(180deg, #f7fbfe, #f1f7fb); }
.chart-header { display: flex; justify-content: space-between; font-size: .78rem; font-weight: 800; }
.chart-svg { width: 100%; margin-top: 10px; overflow: visible; }
.chart-svg .grid-line { stroke: #dce8f0; stroke-width: 1; }
.chart-svg .area { fill: url(#area); stroke: none; }
.chart-svg .line { stroke: var(--blue-600); stroke-width: 4; fill: none; }
.chart-svg .dots circle { fill: #fff; stroke: var(--blue-600); stroke-width: 3; }
.floating-card { position: absolute; z-index: 6; display: flex; align-items: center; gap: 11px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.9); border-radius: 17px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.floating-card small { display: block; color: #7d8b99; font-size: .62rem; }
.floating-card strong { display: block; white-space: nowrap; font-size: .78rem; }
.floating-accounting { left: -1%; top: 4%; animation: floatA 6s ease-in-out infinite; }
.floating-package { right: -2%; bottom: 5%; animation: floatB 7s ease-in-out infinite; }
.float-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(145deg, var(--blue-700), var(--cyan-500)); }
.float-icon svg { width: 21px; }
.mini-package { position: relative; width: 40px; height: 34px; border-radius: 4px; background: linear-gradient(135deg, #d29a55, #b67632); box-shadow: inset -8px -6px 14px rgba(104,57,12,.15); }
.mini-package::before { content: ""; position: absolute; inset: 0 14px auto; height: 34px; background: #e7bc82; }
.mini-package span { position: absolute; left: 6px; right: 6px; bottom: 6px; height: 8px; border-radius: 2px; background: rgba(255,255,255,.65); }
.location-pin { position: absolute; z-index: 5; left: 9%; bottom: 7%; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; color: #fff; background: linear-gradient(145deg, var(--cyan-500), var(--blue-600)); box-shadow: 0 18px 35px rgba(20,116,189,.28); transform: rotate(-5deg); }
.location-pin svg { width: 29px; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(12px)} }

.intro-strip { position: relative; z-index: 2; padding: 28px 0; border-block: 1px solid #e5edf3; background: #fff; }
.intro-strip-grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.intro-strip p { max-width: 730px; margin: 0; color: #5f6d7d; font-size: .92rem; }
.intro-strip p strong { color: var(--navy-900); }
.intro-badges { display: flex; align-items: center; gap: 12px; color: var(--blue-700); font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.intro-badges i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan-500); }

.section-heading { max-width: 650px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2, .about-copy h2, .daria-copy h2, .contact-copy h2 { margin-bottom: 18px; color: var(--navy-950); font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.35rem, 4vw, 3.65rem); line-height: 1.1; letter-spacing: -.025em; }
.section-heading p, .about-copy p { color: var(--muted); }
.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.service-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-art { position: relative; min-height: 278px; overflow: hidden; }
.accounting-art { background: radial-gradient(circle at 20% 20%, rgba(23,183,189,.23), transparent 34%), linear-gradient(145deg, #0b2c54, #0b4e78 62%, #1787ad); }
.shipping-art { background: radial-gradient(circle at 78% 15%, rgba(255,255,255,.38), transparent 25%), linear-gradient(145deg, #eef7fb, #d8edf7); }
.ledger-window { position: absolute; width: 74%; height: 70%; left: 13%; top: 13%; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(255,255,255,.12); box-shadow: 0 25px 55px rgba(0,0,0,.22); transform: perspective(700px) rotateY(7deg) rotateX(2deg); backdrop-filter: blur(9px); }
.ledger-top { display: flex; gap: 5px; padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.14); }
.ledger-top span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.5); }
.ledger-body { height: calc(100% - 30px); display: grid; grid-template-columns: 47px 1fr; }
.ledger-body aside { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 12px 8px; border-right: 1px solid rgba(255,255,255,.13); }
.ledger-body aside b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 8px; color: #0b406a; background: #fff; font-size: .7rem; }
.ledger-body aside i { width: 22px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.25); }
.ledger-content { padding: 16px; }
.ledger-title { width: 38%; height: 9px; border-radius: 5px; background: rgba(255,255,255,.55); }
.ledger-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 14px 0; }
.ledger-stats span { height: 39px; border-radius: 8px; background: rgba(255,255,255,.14); }
.ledger-row { display: flex; align-items: center; justify-content: space-between; margin-top: 9px; padding: 9px; border-radius: 7px; background: rgba(255,255,255,.1); }
.ledger-row span { width: 46%; height: 5px; border-radius: 3px; background: rgba(255,255,255,.34); }
.ledger-row b { width: 18%; height: 5px; border-radius: 3px; background: rgba(94,235,231,.65); }
.art-badge { position: absolute; left: 22px; bottom: 18px; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 12px; color: var(--navy-900); background: rgba(255,255,255,.93); box-shadow: 0 10px 26px rgba(7,29,59,.18); font-size: .69rem; font-weight: 800; }
.art-badge svg { width: 16px; color: var(--blue-600); }
.map-route { position: absolute; inset: 0; }
.map-route::before, .map-route::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(20,116,189,.13); }
.map-route::before { width: 300px; height: 300px; left: -90px; top: 40px; }
.map-route::after { width: 250px; height: 250px; right: -30px; top: -70px; }
.city { position: absolute; z-index: 2; padding: 6px 9px; border-radius: 9px; color: var(--navy-900); background: rgba(255,255,255,.88); box-shadow: 0 8px 20px rgba(7,29,59,.1); font-size: .64rem; font-weight: 800; }
.city-miami { left: 9%; top: 18%; }
.city-honduras { right: 8%; top: 44%; }
.route-line { position: absolute; left: 18%; right: 22%; top: 36%; height: 2px; border-top: 2px dashed rgba(20,116,189,.45); transform: rotate(12deg); }
.plane { position: absolute; z-index: 3; left: 49%; top: 26%; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(145deg, var(--navy-900), var(--blue-600)); transform: rotate(8deg); box-shadow: 0 10px 24px rgba(7,29,59,.25); }
.plane svg { width: 20px; }
.package-box { position: absolute; z-index: 4; width: 178px; height: 125px; left: 50%; bottom: 15px; border-radius: 4px 4px 12px 12px; background: linear-gradient(145deg, #d6a363, #b97936); box-shadow: 0 25px 40px rgba(79,44,11,.24); transform: translateX(-50%); }
.package-box::before { content: ""; position: absolute; inset: -39px 0 auto; height: 44px; clip-path: polygon(0 100%, 22% 0, 78% 0, 100% 100%); background: linear-gradient(145deg,#e1b779,#c68d4d); }
.package-box::after { content: ""; position: absolute; width: 37px; inset: -38px auto 0 50%; background: #e8c38d; transform: translateX(-50%); }
.package-box .tape { position: absolute; z-index: 2; width: 37px; inset: 0 auto 0 50%; background: rgba(241,204,151,.85); transform: translateX(-50%); }
.package-label { position: absolute; z-index: 3; left: 20px; right: 20px; top: 34px; padding: 10px; border-radius: 4px; background: #f8f4ea; }
.package-label strong { display: block; color: var(--navy-900); font-size: .8rem; letter-spacing: .12em; }
.package-label small { display: block; margin-top: 2px; color: #6b5b48; font-size: .48rem; }
.package-label i { display: block; width: 72%; height: 12px; margin-top: 8px; background: repeating-linear-gradient(90deg,#1a1a1a 0 2px,transparent 2px 4px); }
.service-copy { padding: 34px; }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 15px; color: #fff; background: linear-gradient(145deg, var(--navy-900), var(--blue-600)); box-shadow: 0 10px 25px rgba(20,116,189,.21); }
.service-icon svg { width: 25px; }
.shipping-card .service-icon { background: linear-gradient(145deg, #078f94, var(--cyan-500)); }
.service-kicker { display: block; margin-bottom: 6px; color: var(--blue-600); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-copy h3 { margin-bottom: 13px; font-family: "Playfair Display",Georgia,serif; font-size: 2rem; line-height: 1.15; }
.service-copy > p { margin-bottom: 20px; color: var(--muted); font-size: .91rem; }
.check-list { display: grid; gap: 10px; margin: 0 0 24px; padding: 0; list-style: none; color: #3c4e63; font-size: .82rem; }
.check-list li { position: relative; padding-left: 25px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05em; width: 17px; height: 17px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--cyan-500); font-size: .67rem; font-weight: 900; }
.text-button { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-900); font-size: .82rem; font-weight: 800; }
.text-button span { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--navy-900); transition: transform .2s ease; }
.text-button:hover span { transform: translateX(4px); }

.daria-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-950) 0%, #082d56 53%, #0c4873 100%); }
.daria-section::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.1) 1px,transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(90deg,#000,transparent 68%); }
.daria-glow { position: absolute; width: 520px; height: 520px; right: -170px; top: -180px; border-radius: 50%; background: radial-gradient(circle,rgba(50,222,219,.28),rgba(50,222,219,0) 70%); }
.daria-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 76px; align-items: center; }
.daria-browser { overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 27px; background: rgba(255,255,255,.1); box-shadow: 0 35px 80px rgba(0,0,0,.3); transform: perspective(1000px) rotateY(6deg) rotateX(2deg); backdrop-filter: blur(12px); }
.browser-top { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.browser-top > div { display: flex; gap: 6px; }
.browser-top span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); }
.browser-top small { color: rgba(255,255,255,.52); font-size: .61rem; }
.browser-body { min-height: 400px; display: grid; grid-template-columns: 66px 1fr; }
.browser-body aside { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 20px 12px; border-right: 1px solid rgba(255,255,255,.11); }
.daria-mark { width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 12px; border-radius: 12px; color: var(--navy-900); background: linear-gradient(145deg,#77f0eb,#d7ffff); font-weight: 900; }
.browser-body aside span { width: 28px; height: 7px; border-radius: 4px; background: rgba(255,255,255,.18); }
.browser-body aside span.selected { background: #70e9e5; box-shadow: 0 0 0 5px rgba(112,233,229,.1); }
.daria-dashboard { padding: 28px; }
.daria-dashboard-head { display: flex; justify-content: space-between; align-items: center; }
.daria-dashboard-head small, .daria-metrics small, .daria-lower small { display: block; color: rgba(255,255,255,.5); font-size: .62rem; }
.daria-dashboard-head strong { display: block; margin-top: 4px; font-size: 1.03rem; }
.daria-dashboard-head i { width: 35px; height: 35px; border-radius: 50%; background: linear-gradient(145deg,#74ebe6,#1888bd); }
.daria-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 26px 0; }
.daria-metrics span { padding: 15px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.07); }
.daria-metrics b { display: block; margin-top: 3px; font-size: 1.16rem; }
.daria-lower { display: grid; grid-template-columns: 1.3fr .8fr; gap: 12px; }
.daria-chart, .daria-list { min-height: 174px; padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.06); }
.daria-chart > div { height: 116px; display: flex; align-items: end; gap: 8px; padding-top: 18px; }
.daria-chart b { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg,#71ebe6,#1988bd); }
.daria-chart b:nth-child(1){height:36%}.daria-chart b:nth-child(2){height:58%}.daria-chart b:nth-child(3){height:48%}.daria-chart b:nth-child(4){height:78%}.daria-chart b:nth-child(5){height:61%}.daria-chart b:nth-child(6){height:89%}.daria-chart b:nth-child(7){height:73%}
.daria-list span { display: block; height: 22px; margin-top: 12px; border-radius: 7px; background: rgba(255,255,255,.1); }
.concept-badge { position: absolute; left: 28px; bottom: -18px; padding: 10px 14px; border-radius: 12px; color: var(--navy-900); background: #fff; box-shadow: var(--shadow-md); font-size: .7rem; font-weight: 800; }
.coming-badge { display: inline-flex; margin-bottom: 20px; padding: 8px 12px; border: 1px solid rgba(116,235,230,.32); border-radius: 50px; color: #b8fffc; background: rgba(116,235,230,.1); font-size: .69rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.daria-copy h2 { color: #fff; }
.daria-copy > p { color: #c3d7e6; }
.daria-features { display: grid; gap: 11px; margin-top: 28px; }
.daria-features > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.daria-features > div > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #b6fffc; background: rgba(113,235,230,.12); font-size: .68rem; font-weight: 800; }
.daria-features p { margin: 0; color: #c3d7e6; font-size: .81rem; }
.daria-features strong { display: block; margin-bottom: 2px; color: #fff; font-size: .88rem; }
.daria-note { margin-top: 22px; padding-left: 16px; border-left: 2px solid #6be6e1; font-size: .72rem; }

.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 85px; align-items: center; }
.about-copy p { max-width: 580px; }
.about-copy .button { margin-top: 12px; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 17px; }
.values-grid article { min-height: 210px; padding: 27px; border: 1px solid var(--line); border-radius: 21px; background: linear-gradient(145deg,#fff,#f7fafc); box-shadow: 0 12px 32px rgba(7,29,59,.06); transition: transform .2s ease; }
.values-grid article:hover { transform: translateY(-4px); }
.values-grid article > span { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 19px; border-radius: 14px; color: var(--blue-600); background: #e9f4fb; }
.values-grid article:nth-child(2) > span, .values-grid article:nth-child(3) > span { color: #058b90; background: #e2f7f6; }
.values-grid svg { width: 23px; }
.values-grid h3 { margin-bottom: 8px; font-size: 1rem; }
.values-grid p { margin: 0; color: var(--muted); font-size: .78rem; }

.locations-section { background: var(--surface); }
.location-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 21px; }
.location-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.location-visual { position: relative; height: 155px; overflow: hidden; }
.location-visual::before, .location-visual::after { content: ""; position: absolute; }
.location-visual::before { inset: 0; background: linear-gradient(150deg,rgba(255,255,255,.05),rgba(7,29,59,.2)); }
.location-visual::after { width: 230px; height: 110px; left: 50%; bottom: -70px; border: 18px solid rgba(255,255,255,.13); border-radius: 50%; transform: translateX(-50%); }
.location-visual.tocoa { background: linear-gradient(145deg,#167b87,#1db9aa); }
.location-visual.tegus { background: linear-gradient(145deg,#144e83,#3399cf); }
.location-visual.miami { background: linear-gradient(145deg,#143561,#467dc0); }
.location-visual span { position: absolute; z-index: 2; left: 24px; bottom: 21px; width: 49px; height: 49px; display: grid; place-items: center; border-radius: 15px; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.location-visual svg { width: 25px; }
.location-card > div:last-child { padding: 27px; }
.location-card small { display: block; margin-bottom: 6px; color: var(--blue-600); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.location-card h3 { margin-bottom: 10px; font-family: "Playfair Display",Georgia,serif; font-size: 1.55rem; }
.location-card p { min-height: 78px; margin-bottom: 15px; color: var(--muted); font-size: .79rem; }
.location-card a { color: var(--blue-700); font-size: .78rem; font-weight: 800; }

.contact-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg,var(--navy-950),#073561); }
.contact-section::before { content: ""; position: absolute; width: 580px; height: 580px; left: -250px; top: -300px; border-radius: 50%; background: radial-gradient(circle,rgba(23,183,189,.25),transparent 70%); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 84px; align-items: center; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { max-width: 520px; color: #bed2e1; }
.contact-details { display: grid; gap: 12px; margin-top: 32px; }
.contact-details > a { display: flex; align-items: center; gap: 13px; width: fit-content; }
.contact-details > a > span { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; color: #7aeee9; background: rgba(255,255,255,.08); }
.contact-details svg { width: 21px; }
.contact-details small { display: block; color: #8eacc0; font-size: .65rem; }
.contact-details strong { font-size: .88rem; }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a { padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; color: #d6e6f0; font-size: .7rem; font-weight: 700; }
.contact-form { padding: 32px; border: 1px solid rgba(255,255,255,.26); border-radius: 25px; color: var(--ink); background: rgba(255,255,255,.97); box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.form-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 21px; }
.form-heading span { font-family: "Playfair Display",Georgia,serif; font-size: 1.55rem; font-weight: 700; }
.form-heading small { color: #738496; font-size: .65rem; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; color: #33465b; font-size: .71rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d6e2ea; border-radius: 11px; color: var(--ink); background: #fbfdfe; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { height: 47px; padding: 0 13px; }
.contact-form textarea { min-height: 118px; padding: 12px 13px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(27,139,214,.11); }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 10px 0 0; color: #8190a0; font-size: .62rem; text-align: center; }

.site-footer { padding: 70px 0 27px; color: #a9bdcd; background: #03101f; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .9fr 1fr; gap: 42px; }
.brand.dark strong { color: #fff; }
.brand.dark small { color: #8aa4b8; }
.footer-brand p { max-width: 300px; margin-top: 20px; color: #849dad; font-size: .78rem; }
.footer-column { display: grid; align-content: start; gap: 10px; font-size: .72rem; }
.footer-column strong { margin-bottom: 6px; color: #fff; font-size: .78rem; }
.footer-column a:hover { color: #fff; }
.footer-column span { color: #7993a7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #6f8799; font-size: .64rem; }
.whatsapp-float { position: fixed; z-index: 95; right: 22px; bottom: 22px; width: 57px; height: 57px; display: grid; place-items: center; border: 3px solid #fff; border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 15px 32px rgba(37,211,102,.35); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 30px; fill: currentColor; stroke: none; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 30px; max-width: calc(100% - 30px); padding: 11px 16px; border-radius: 12px; color: #fff; background: var(--navy-950); box-shadow: var(--shadow-md); opacity: 0; transform: translate(-50%,120px); transition: .25s ease; font-size: .76rem; text-align: center; }
.toast.show { opacity: 1; transform: translate(-50%,0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .main-nav > a { padding-inline: 9px; font-size: .83rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .dashboard-card { left: 3%; right: 1%; }
  .floating-accounting { left: -3%; }
  .floating-package { right: -3%; }
  .service-copy { padding: 29px; }
  .daria-grid, .about-grid, .contact-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .site-header { padding: 9px 0; }
  .nav-shell { min-height: 62px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 88px 20px auto; display: grid; gap: 3px; padding: 17px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.98); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .22s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a { padding: 12px 13px; }
  .main-nav > a:not(.nav-button)::after { display: none; }
  .main-nav .nav-button { justify-content: center; margin: 7px 0 0; }
  .hero { padding-top: 135px; }
  .hero-grid, .daria-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 740px; text-align: center; margin-inline: auto; }
  h1, .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-stage { width: min(100%,720px); margin-inline: auto; }
  .intro-strip-grid { display: grid; text-align: center; }
  .intro-badges { justify-content: center; }
  .service-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .daria-visual { width: min(100%,720px); margin: 0 auto 25px; }
  .daria-copy { max-width: 720px; margin-inline: auto; }
  .about-copy { text-align: center; }
  .about-copy p { margin-inline: auto; }
  .values-grid { max-width: 720px; margin-inline: auto; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-card:last-child { grid-column: 1/-1; }
  .contact-copy { text-align: center; }
  .contact-copy > p { margin-inline: auto; }
  .contact-details > a { margin-inline: auto; }
  .social-row { justify-content: center; }
  .contact-form { max-width: 680px; width: 100%; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-column:last-child { grid-column: 2; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  .section { padding: 82px 0; }
  .nav-shell { padding: 7px 8px 7px 11px; border-radius: 17px; }
  .brand-symbol { width: 38px; border-radius: 11px; }
  .brand strong { font-size: 1rem; }
  .brand small { display: none; }
  .main-nav { inset: 78px 14px auto; }
  .hero { min-height: auto; padding: 125px 0 70px; }
  h1 { font-size: clamp(2.75rem,13vw,4rem); }
  .hero-lead { font-size: .96rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; justify-content: start; width: fit-content; margin-inline: auto; text-align: left; }
  .hero-stage { min-height: 405px; margin-top: 25px; }
  .orbit-a { width: 390px; height: 390px; }
  .orbit-b { width: 310px; height: 310px; }
  .dashboard-card { left: 0; right: 0; top: 10%; min-height: 330px; padding: 18px; border-radius: 22px; transform: none; }
  .dashboard-top { padding-bottom: 14px; }
  .metric-grid { margin: 14px 0; }
  .metric-grid > div { padding: 11px; }
  .metric-grid .metric-icon { width: 33px; height: 33px; }
  .chart-panel { padding: 13px 13px 0; }
  .chart-svg { height: 105px; }
  .floating-accounting { top: 0; left: -4px; }
  .floating-package { right: -4px; bottom: 0; }
  .floating-card { padding: 10px 12px; }
  .floating-card strong { font-size: .66rem; }
  .float-icon, .mini-package { width: 34px; height: 31px; }
  .location-pin { left: 2%; bottom: 4%; width: 48px; height: 48px; }
  .intro-badges { flex-wrap: wrap; white-space: normal; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .about-copy h2, .daria-copy h2, .contact-copy h2 { font-size: clamp(2.15rem,10vw,3rem); }
  .service-art { min-height: 235px; }
  .ledger-window { width: 82%; left: 9%; }
  .package-box { transform: translateX(-50%) scale(.85); transform-origin: bottom center; }
  .service-copy { padding: 26px 22px; }
  .daria-browser { transform: none; }
  .browser-body { min-height: 310px; grid-template-columns: 50px 1fr; }
  .browser-body aside { padding-inline: 8px; }
  .daria-dashboard { padding: 18px 13px; }
  .daria-metrics { grid-template-columns: 1fr 1fr; }
  .daria-metrics span:last-child { display: none; }
  .daria-lower { grid-template-columns: 1fr; }
  .daria-list { display: none; }
  .concept-badge { left: 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card:last-child { grid-column: auto; }
  .location-card p { min-height: 0; }
  .contact-form { padding: 24px 18px; }
  .form-heading { display: grid; gap: 3px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 22px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .whatsapp-float { width: 54px; height: 54px; right: 15px; bottom: 15px; }
}

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

/* Official Lugeso logo */
.brand-logo { width: 178px; height: 58px; overflow: hidden; display: flex; align-items: center; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.brand-logo-footer { width: 220px; height: 88px; }
.brand-logo-footer img { object-position: left center; }
@media (max-width: 620px) {
  .brand-logo { width: 138px; height: 48px; }
  .brand-logo-footer { width: 185px; height: 72px; }
}


/* Version 2 refinements */
#contabilidad, #paqueteria { scroll-margin-top: 110px; }
.service-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; margin-top: 22px; }
.service-buttons .text-button { margin-top: 0; }
.secondary-link { color: var(--blue-700); }
.secondary-link::before { background: var(--blue-700); }
@media (max-width: 1180px) {
  .main-nav > a { padding-inline: 8px; font-size: .8rem; }
  .main-nav .nav-button { padding-inline: 13px; }
}
@media (max-width: 620px) {
  .service-buttons { align-items: flex-start; flex-direction: column; gap: 13px; }
}


/* Versión 4: identidad corporativa general */
.brand-stage { min-height: 540px; display: grid; place-items: center; }
.brand-stage::before { content: ""; position: absolute; inset: 8% 7%; border-radius: 45% 55% 50% 50%; background: linear-gradient(145deg,rgba(24,161,171,.12),rgba(27,139,214,.10)); transform: rotate(-8deg); }
.brand-glow { position: absolute; border-radius: 50%; filter: blur(4px); }
.brand-glow-a { width: 270px; height: 270px; top: 6%; right: 4%; background: radial-gradient(circle,rgba(23,183,189,.28),transparent 68%); }
.brand-glow-b { width: 320px; height: 320px; left: 2%; bottom: 0; background: radial-gradient(circle,rgba(27,139,214,.20),transparent 70%); }
.brand-orbit { position: absolute; border: 1px solid rgba(20,104,153,.16); border-radius: 50%; }
.brand-orbit-a { width: 410px; height: 410px; }
.brand-orbit-b { width: 520px; height: 260px; transform: rotate(-18deg); }
.brand-emblem { position: relative; z-index: 3; width: min(330px,72%); aspect-ratio: 1; display: grid; place-items: center; padding: 55px; border-radius: 50%; background: rgba(255,255,255,.93); border: 1px solid rgba(15,76,114,.10); box-shadow: 0 35px 90px rgba(7,29,59,.18); }
.brand-emblem img { width: 100%; height: auto; object-fit: contain; }
.brand-emblem span { position: absolute; bottom: 24px; padding: 7px 13px; border-radius: 999px; color: #fff; background: var(--navy-900); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.brand-message-card { position: absolute; z-index: 4; right: 0; bottom: 35px; width: 245px; padding: 19px 21px; border: 1px solid rgba(255,255,255,.75); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.brand-message-card small { color: var(--teal-700); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.brand-message-card strong { display: block; margin: 5px 0 6px; color: var(--navy-950); font-size: .95rem; }
.brand-message-card p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.brand-mini-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 11px 15px; border-radius: 14px; color: var(--navy-950); background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); font-size: .72rem; font-weight: 800; }
.brand-mini-card b { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 10px; color: #fff; background: linear-gradient(135deg,var(--teal-600),var(--blue-600)); font-size: .66rem; }
.mini-card-left { left: 0; top: 110px; }
.mini-card-right { right: 12px; top: 90px; }
.location-grid { grid-template-columns: repeat(2,minmax(0,1fr)); max-width: 900px; }
.contact-details > a { width: 100%; }
@media (max-width: 900px) {
  .brand-stage { min-height: 470px; }
  .brand-message-card { right: 2%; }
  .mini-card-left { left: 2%; }
  .mini-card-right { right: 2%; }
}
@media (max-width: 650px) {
  .brand-stage { min-height: 430px; }
  .brand-emblem { width: 250px; padding: 44px; }
  .brand-message-card { left: 50%; right: auto; bottom: 4px; width: min(250px,86%); transform: translateX(-50%); }
  .brand-mini-card { display: none; }
  .location-grid { grid-template-columns: 1fr; }
}
