:root {
  --navy: #061b4f;
  --navy-deep: #03133d;
  --blue: #0d5bd7;
  --blue-dark: #0746a8;
  --blue-soft: #eaf2ff;
  --gold: #d6a416;
  --gold-bright: #f2bd27;
  --ink: #101828;
  --muted: #536177;
  --line: #dce4ef;
  --surface: #f6f8fc;
  --white: #fff;
  --success: #137a45;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 12px 34px rgba(6, 27, 79, .09);
  --shadow-hover: 0 22px 48px rgba(3, 19, 61, .2);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.18; letter-spacing: -.025em; }
ul { margin-top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(100%, 790px); }
.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .9rem;
  padding: .42rem .74rem;
  border: 1px solid #cfe0ff;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 7px; height: 7px; border-radius: 50%; background: currentColor; content: ""; }
.section-heading { margin-bottom: 2.25rem; }
.section-heading h2 { font-size: clamp(1.85rem, 3vw, 2.7rem); }
.section-heading p { max-width: 720px; margin: .95rem 0 0; color: var(--muted); }
.section-heading.center p { margin-inline: auto; }
.section { padding: 78px 0; }
.section-soft { background: var(--surface); }
.section-dark { color: var(--white); background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark p { color: inherit; }
.section-dark .eyebrow { color: var(--white); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.1); }
.skip-link { position: fixed; top: 8px; left: -9999px; z-index: 9999; padding: .7rem 1rem; color: var(--navy); background: var(--white); border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.topbar { color: var(--white); background: #07337e; font-size: .84rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 1rem; }
.topbar-list { display: flex; align-items: center; gap: 1rem; }
.topbar a { color: var(--white); }
.topbar a:hover, .topbar a:focus-visible { color: var(--gold-bright); }
.topbar-whatsapp { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; background: #168a45; }
.topbar-whatsapp:hover, .topbar-whatsapp:focus-visible { color: var(--navy) !important; border-color: var(--gold-bright); background: var(--gold-bright); transform: translateY(-1px); }
.whatsapp-icon { font-size: .82rem; line-height: 1; transform: rotate(-18deg); }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-inner { display: flex; align-items: center; min-height: 108px; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: auto; height: 90px; max-width: 220px; object-fit: contain; }
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; }
.nav-link, .nav-toggle {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .68rem .65rem;
  border: 0;
  border-radius: 8px;
  color: #111827;
  background: transparent;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}
.nav-toggle::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.nav-link:hover, .nav-link:focus-visible, .nav-link.active, .nav-toggle:hover, .nav-toggle:focus-visible, .nav-toggle.active { color: var(--blue); background: var(--blue-soft); }
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 330px;
  margin: 0;
  padding: .65rem;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}
.submenu.wide { display: grid; grid-template-columns: 1fr 1fr; width: 620px; }
.submenu a { display: block; padding: .67rem .72rem; border-radius: 9px; color: var(--ink); font-size: .88rem; font-weight: 750; line-height: 1.3; }
.submenu a small { display: block; margin-top: .18rem; color: var(--muted); font-size: .74rem; font-weight: 500; }
.submenu a:hover, .submenu a:focus-visible { color: var(--white); background: var(--navy); }
.submenu a:hover small, .submenu a:focus-visible small { color: var(--white); }
.nav-item:hover > .submenu, .nav-item:focus-within > .submenu, .nav-item.open > .submenu { opacity: 1; visibility: visible; transform: none; }
.header-cta { flex: 0 0 auto; }
.menu-button { display: none; width: 44px; height: 42px; padding: 9px; border: 1px solid var(--line); border-radius: 9px; background: var(--white); }
.menu-button span { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--navy); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 45px;
  padding: .67rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  line-height: 1.2;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 10px 24px rgba(13,91,215,.22); }
.button-primary:hover, .button-primary:focus-visible { color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.button-gold { color: var(--navy); background: var(--gold-bright); }
.button-gold:hover, .button-gold:focus-visible { color: var(--white); background: var(--blue); }
.button-outline { color: var(--blue); border-color: var(--blue); background: transparent; }
.button-outline:hover, .button-outline:focus-visible { color: var(--white); background: var(--navy); border-color: var(--navy); }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover, .button-light:focus-visible { color: var(--white); background: var(--blue); }
.button-whatsapp { color: var(--white); background: #168a45; box-shadow: 0 10px 24px rgba(22,138,69,.24); }
.button-whatsapp:hover, .button-whatsapp:focus-visible { color: var(--navy); background: var(--gold-bright); }
.button-small { min-height: 38px; padding: .5rem .78rem; font-size: .87rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.35rem; }
.text-link { display: inline-flex; align-items: center; gap: .38rem; color: var(--blue); font-weight: 800; }
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover, .text-link:focus-visible { color: var(--navy); }
.text-link:hover::after, .text-link:focus-visible::after { transform: translateX(4px); }

.hero, .page-hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(130deg, var(--navy-deep), #07398e); }
.hero::before, .page-hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(255,255,255,.13), transparent 26%), radial-gradient(circle at 15% 88%, rgba(13,91,215,.3), transparent 32%); content: ""; }
.hero::after, .page-hero::after { position: absolute; right: -8%; bottom: -48%; width: 56%; height: 95%; border-radius: 50%; background: rgba(255,255,255,.06); content: ""; }
.hero .container, .page-hero .container { position: relative; z-index: 1; }
.hero { padding: 82px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 3rem; }
.hero h1, .page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.2rem); }
.hero-copy { max-width: 670px; margin-top: 1.2rem; color: rgba(255,255,255,.89); font-size: 1.08rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: .7rem 1.2rem; margin-top: 1.35rem; color: rgba(255,255,255,.92); font-size: .87rem; font-weight: 700; }
.hero-note span::before { margin-right: .4rem; color: var(--gold-bright); content: "✓"; }
.hero-visual { padding: 1.4rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: rgba(255,255,255,.08); box-shadow: 0 28px 60px rgba(0,0,0,.18); }
.hero-visual img { width: 100%; max-height: 390px; object-fit: contain; animation: float 6s ease-in-out infinite; }
.page-hero { padding: 66px 0; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr .6fr; align-items: center; gap: 3rem; }
.page-hero h1 { font-size: clamp(2.25rem, 4.4vw, 3.65rem); }
.page-hero p { max-width: 720px; margin: 1rem 0 0; color: rgba(255,255,255,.87); font-size: 1.05rem; }
.page-hero img { width: 100%; max-height: 235px; object-fit: contain; filter: drop-shadow(0 18px 25px rgba(0,0,0,.2)); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: .85rem; color: rgba(255,255,255,.76); font-size: .82rem; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span::before { margin-right: .45rem; content: "/"; }

.hero-slider { position: relative; height: clamp(590px, 55vw, 660px); min-height: 590px; overflow: hidden; color: var(--white); background: var(--navy-deep); isolation: isolate; }
.hero-slider:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: -3px; }
.hero-slide { position: absolute; inset: 0; z-index: 0; opacity: 0; visibility: hidden; background: var(--navy-deep); transition: opacity .7s ease, visibility .7s ease; }
.hero-slide.is-active { z-index: 2; opacity: 1; visibility: visible; }
.hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transform: scale(1.055); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(2,14,48,.94) 0%, rgba(3,23,70,.86) 42%, rgba(3,23,70,.28) 72%, rgba(2,14,48,.45) 100%), linear-gradient(0deg, rgba(1,11,35,.48), transparent 48%); }
.hero-slide:nth-child(3) .hero-overlay, .hero-slide:nth-child(5) .hero-overlay { background: linear-gradient(90deg, rgba(2,14,48,.95) 0%, rgba(15,25,70,.84) 45%, rgba(11,25,72,.3) 72%, rgba(2,14,48,.52) 100%); }
.hero-layer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.06fr) minmax(360px,.94fr); align-items: stretch; height: 100%; gap: 1.5rem; }
.hero-slide-copy { z-index: 3; align-self: center; max-width: 720px; padding: 56px 0 78px; transform-origin: left center; }
.hero-slide .eyebrow { opacity: 0; color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(3,19,61,.56); backdrop-filter: blur(8px); }
.hero-title { min-height: 1.18em; max-width: 760px; opacity: 0; color: var(--white); font-size: clamp(2.55rem, 5vw, 4.35rem); text-wrap: balance; }
.hero-title.is-typing::after { margin-left: .12rem; color: var(--gold-bright); content: "|"; animation: cursorBlink .7s steps(1) infinite; }
.hero-subtitle { max-width: 650px; margin: 1.15rem 0 0; opacity: 0; color: rgba(255,255,255,.91); font-size: clamp(1rem, 1.7vw, 1.18rem); text-wrap: balance; }
.hero-actions { opacity: 0; }
.hero-character-layer { position: relative; z-index: 2; min-width: 0; height: 100%; overflow: hidden; }
.hero-character { position: absolute; bottom: -31%; left: 50%; width: auto; max-width: 118%; height: 132%; max-height: 870px; object-fit: contain; object-position: center top; opacity: 0; translate: -50% 0; filter: drop-shadow(0 24px 24px rgba(0,0,0,.34)); }
.hero-slide.is-active .hero-background { animation: heroBackgroundIn 1.05s cubic-bezier(.22,.72,.2,1) both; }
.hero-slide.effect-zoom.is-active .hero-background { animation-name: heroBackgroundZoom; }
.hero-slide.effect-swipe.is-active .hero-background { animation-name: heroBackgroundPan; }
.hero-slide.effect-flip.is-active .hero-background { animation-name: heroBackgroundLift; }
.hero-slide.effect-blur.is-active .hero-background { animation-name: heroBackgroundFocus; }
.hero-slide.effect-scale.is-active .hero-background { animation-name: heroBackgroundScale; }
.hero-slide.effect-drift.is-active .hero-background { animation-name: heroBackgroundDrift; }
.hero-slide.is-active .eyebrow { animation: heroEyebrow .48s .62s both; }
.hero-slide.is-active .hero-title { animation: heroTitleRise .62s .88s both; }
.hero-slide.effect-zoom.is-active .hero-title { animation-name: heroTitleZoom; }
.hero-slide.effect-swipe.is-active .hero-title { animation-name: heroTitleClip; }
.hero-slide.effect-flip.is-active .hero-title { animation-name: heroTitleFlip; }
.hero-slide.effect-blur.is-active .hero-title { animation-name: heroTitleFocus; }
.hero-slide.effect-scale.is-active .hero-title { animation-name: heroTitleStretch; }
.hero-slide.effect-drift.is-active .hero-title { animation-name: heroTitleDrift; }
.hero-slide.is-active .hero-subtitle { animation: heroSubtitleIn .5s 1.26s both; }
.hero-slide.is-active .hero-actions { animation: heroButtonsIn .52s 1.52s both; }
.hero-slide.effect-rise.is-active .hero-character { animation: characterRise .72s .38s cubic-bezier(.2,.75,.25,1) both; }
.hero-slide.effect-zoom.is-active .hero-character { animation: characterZoom .72s .4s cubic-bezier(.2,.75,.25,1) both; }
.hero-slide.effect-swipe.is-active .hero-character { animation: characterSwipe .78s .38s cubic-bezier(.2,.75,.25,1) both; }
.hero-slide.effect-flip.is-active .hero-character { animation: characterFlip .78s .38s cubic-bezier(.2,.75,.25,1) both; }
.hero-slide.effect-blur.is-active .hero-character { animation: characterFocus .78s .38s cubic-bezier(.2,.75,.25,1) both; }
.hero-slide.effect-scale.is-active .hero-character { animation: characterScale .75s .4s cubic-bezier(.2,.75,.25,1) both; }
.hero-slide.effect-drift.is-active .hero-character { animation: characterDrift .8s .38s cubic-bezier(.2,.75,.25,1) both; }
.hero-control { position: absolute; top: 50%; z-index: 6; display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--white); background: rgba(3,19,61,.4); transform: translateY(-50%); font-size: 1.8rem; line-height: 1; }
.hero-control:hover, .hero-control:focus-visible { color: var(--navy); background: var(--gold-bright); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-pause { position: absolute; right: 28px; bottom: 22px; z-index: 6; padding: .35rem .6rem; border: 1px solid rgba(255,255,255,.25); border-radius: 6px; color: var(--white); background: rgba(3,19,61,.45); font-size: .76rem; font-weight: 800; }
.hero-pause:hover { color: var(--navy); background: var(--gold-bright); }
.hero-dots { position: absolute; bottom: 26px; left: 50%; z-index: 6; display: flex; gap: .5rem; transform: translateX(-50%); }
.hero-dots button { width: 10px; height: 10px; padding: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: transparent; }
.hero-dots button[aria-selected="true"] { width: 28px; border-radius: 999px; border-color: var(--gold-bright); background: var(--gold-bright); }
.hero-progress { position: absolute; inset: auto 0 0; z-index: 6; height: 3px; background: rgba(255,255,255,.12); }
.hero-progress span { display: block; width: 0; height: 100%; background: var(--gold-bright); }
.hero-slider.is-running .hero-progress span { animation: heroProgress 5s linear both; }

.domain-search { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: .55rem; max-width: 720px; margin-top: 1.25rem; }
.domain-search input { min-width: 0; min-height: 50px; padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.3); border-radius: 9px; color: var(--ink); background: var(--white); }
.domain-search input:focus { outline: 3px solid rgba(242,189,39,.25); border-color: var(--gold-bright); }
.domain-result { display: none; grid-column: 1 / -1; padding: .75rem .9rem; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; color: var(--white); background: rgba(3,19,61,.35); font-size: .9rem; }
.domain-result.show { display: block; }
.domain-result a { color: var(--gold-bright); font-weight: 800; }
.domain-result.success { border-color: rgba(67,214,145,.55); background: rgba(15,111,75,.58); }
.domain-result.unavailable, .domain-result.error { border-color: rgba(255,138,138,.55); background: rgba(132,25,38,.58); }
.domain-search button:disabled { cursor: wait; opacity: .68; }
.split-content .domain-search { grid-template-columns: minmax(0,1fr); }
.split-content .domain-search input { border-color: var(--line); }
.split-content .domain-result { color: var(--ink); border-color: var(--line); background: var(--blue-soft); }
.split-content .domain-result.success { color: #075a3c; border-color: #9bd8bd; background: #e9fbf2; }
.split-content .domain-result.unavailable, .split-content .domain-result.error { color: #8b1e2d; border-color: #f0b5bd; background: #fff0f2; }
.split-content .domain-result a { color: var(--blue); }

.trust-strip { position: relative; z-index: 4; padding-top: 24px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.trust-item { padding: 1.25rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.25rem; }
.trust-item span { color: var(--muted); font-size: .82rem; }

.mosaic { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-template-areas: "lead web web" "lead software software" "mini1 mini2 mini3"; gap: 1.1rem; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.card-hover:hover, .card-hover:focus-within { color: var(--white); background: var(--navy); border-color: var(--navy); transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-hover:hover h3, .card-hover:hover h4, .card-hover:hover p, .card-hover:hover li, .card-hover:focus-within h3, .card-hover:focus-within p { color: var(--white); }
.card-hover:hover .text-link, .card-hover:focus-within .text-link { color: var(--gold-bright); }
.mosaic-card { position: relative; overflow: hidden; padding: 1.4rem; }
.mosaic-card h3 { margin-bottom: .65rem; font-size: 1.35rem; }
.mosaic-card p { color: var(--muted); font-size: .94rem; }
.mosaic-lead { grid-area: lead; padding: 1.55rem; }
.mosaic-lead h3 { font-size: 1.75rem; }
.mosaic-lead img { max-height: 225px; margin: 1rem auto 0; object-fit: contain; }
.mosaic-web { grid-area: web; }
.mosaic-software { grid-area: software; }
.mosaic-wide { display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; min-height: 205px; }
.mosaic-wide img { max-height: 160px; margin-left: auto; object-fit: contain; }
.mosaic-mini:nth-child(4) { grid-area: mini1; }
.mosaic-mini:nth-child(5) { grid-area: mini2; }
.mosaic-mini:nth-child(6) { grid-area: mini3; }
.icon-tile { display: grid; width: 66px; height: 66px; margin-bottom: 1rem; place-items: center; border-radius: 14px; background: var(--blue-soft); transition: background .2s ease; }
.icon-tile img { width: 52px; height: 52px; object-fit: contain; }
.card-hover:hover .icon-tile { background: var(--white); }
.badge { display: inline-flex; padding: .35rem .65rem; border-radius: 999px; color: var(--blue); background: var(--blue-soft); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.card-hover:hover .badge { color: var(--navy); background: var(--white); }

.cards-2, .cards-3, .cards-4 { display: grid; gap: 1.15rem; }
.cards-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.service-card { display: flex; flex-direction: column; min-height: 100%; padding: 1.25rem; }
.service-card .visual { display: grid; min-height: 145px; margin-bottom: 1rem; padding: .7rem; place-items: center; border-radius: 12px; background: #f1f6ff; }
.service-card .visual img { max-height: 128px; object-fit: contain; }
.service-card h3 { margin-bottom: .55rem; font-size: 1.17rem; }
.service-card p { color: var(--muted); font-size: .91rem; }
.service-card .text-link { margin-top: auto; }
.card-hover:hover .visual { background: var(--white); }
.image-card .visual, .compact-hosting-grid .visual { min-height: 0; height: 165px; padding: .85rem; overflow: hidden; background: #eaf2ff; }
.image-card .visual img, .compact-hosting-grid .visual img { width: 100%; height: 100%; max-height: none; object-fit: contain; transition: transform .5s cubic-bezier(.2,.75,.25,1), filter .3s ease; }
.image-card:hover .visual img, .image-card:focus-within .visual img, .compact-hosting-grid .card:hover .visual img, .compact-hosting-grid .card:focus-within .visual img { transform: scale(1.055); filter: saturate(1.12); }
.home-service-grid .service-card { min-height: 405px; }
.home-service-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.home-service-grid .visual { height: 180px; }
.compact-hosting-grid .service-card { min-height: 390px; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3.5rem; }
.split.reverse .split-visual { order: 2; }
.split-visual { position: relative; padding: 1.35rem; border-radius: var(--radius-lg); background: var(--blue-soft); }
.split-visual img { width: 100%; max-height: 390px; object-fit: contain; }
.split-content h2 { margin-bottom: 1rem; font-size: clamp(1.85rem, 3vw, 2.65rem); }
.split-content p { color: var(--muted); }
.ready-week { background: linear-gradient(135deg, #f4f7fb, #edf4ff); }
.ready-week-visual { display: grid; min-height: 390px; padding: 2rem; place-items: center; overflow: hidden; box-shadow: var(--shadow); }
.ready-week-visual img { max-height: 370px; aspect-ratio: 4 / 3; object-fit: contain; }
.ready-week .split-content h2 span { color: var(--blue); }
.ready-week .button { margin-top: 1.4rem; }
.ready-note { margin-top: 1rem; font-size: .82rem; }
.check-list { display: grid; gap: .65rem; margin: 1.25rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.65rem; color: var(--ink); }
.check-list li::before { position: absolute; left: 0; color: var(--blue); font-weight: 900; content: "✓"; }
.number-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: steps; }
.number-card { position: relative; padding: 1.35rem; counter-increment: steps; }
.number-card::before { display: grid; width: 42px; height: 42px; margin-bottom: 1rem; place-items: center; border-radius: 11px; color: var(--white); background: var(--blue); font-weight: 900; content: counter(steps, decimal-leading-zero); }
.number-card h3 { margin-bottom: .5rem; font-size: 1.08rem; }
.number-card p { color: var(--muted); font-size: .89rem; }
.number-card:hover::before { color: var(--navy); background: var(--gold-bright); }

.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1rem; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 1.35rem; }
.plan-card.plan-popular { border: 2px solid var(--blue); box-shadow: var(--shadow-hover); }
.plan-badge { position: absolute; top: -13px; right: 16px; padding: .32rem .62rem; border-radius: 999px; color: var(--navy); background: var(--gold-bright); font-size: .72rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.plan-icon { display: grid; width: 92px; height: 72px; margin-bottom: .95rem; padding: .35rem; place-items: center; border-radius: 12px; background: var(--blue-soft); transition: background .22s ease, transform .22s ease; }
.plan-icon img { width: 100%; height: 100%; object-fit: contain; }
.plan-card:hover .plan-icon, .plan-card:focus-within .plan-icon { background: var(--white); transform: scale(1.04); }
.plan-type { margin: 0 0 .4rem; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.plan-card h3 { font-size: 1.35rem; }
.plan-summary { min-height: 3.1em; margin-top: .6rem; color: var(--muted); font-size: .87rem; }
.plan-price-block { margin: .75rem 0 .25rem; padding: .8rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-original { display: flex; align-items: center; gap: .55rem; min-height: 25px; color: var(--muted); font-size: .86rem; }
.discount-badge { padding: .25rem .48rem; border-radius: 999px; color: #087143; background: #dff7e9; font-size: .7rem; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.plan-price { margin-top: .2rem; color: var(--navy); font-size: clamp(1.85rem, 3vw, 2.5rem); font-weight: 900; letter-spacing: -.04em; }
.plan-price small { margin-left: .22rem; font-size: .9rem; font-weight: 700; letter-spacing: 0; }
.plan-term { margin: -.2rem 0 0; color: var(--muted); font-size: .75rem; }
.plan-card small { color: var(--muted); }
.renewal { margin: .55rem 0; color: var(--muted); font-size: .8rem; }
.plan-card .check-list { margin-bottom: 1.3rem; }
.plan-card .button { width: 100%; margin-top: auto; border-radius: 999px; color: var(--white); background: #2e3a4d; }
.plan-card:hover .plan-type, .plan-card:hover .plan-summary, .plan-card:hover .renewal, .plan-card:hover .plan-term, .plan-card:hover small, .plan-card:hover .plan-original { color: var(--white); }
.plan-card:hover .plan-price { color: var(--gold-bright); }
.plan-card:hover .button-outline { color: var(--navy); border-color: var(--white); background: var(--white); }
.platform-package-tabs { margin-top: 1.7rem; }
.platform-tab-buttons { display: flex; justify-content: center; gap: .65rem; margin-bottom: 1.5rem; }
.platform-tab { min-width: 180px; padding: .78rem 1.2rem; border: 2px solid var(--navy); border-radius: 999px; color: var(--navy); background: var(--white); font: inherit; font-weight: 850; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
.platform-tab:hover, .platform-tab:focus-visible { color: var(--white); background: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(13,91,215,.18); }
.platform-tab[aria-selected="true"] { color: var(--navy); border-color: var(--gold); background: var(--gold-bright); box-shadow: 0 10px 24px rgba(245,191,25,.2); }
.platform-panel[hidden] { display: none; }
.platform-panel:not([hidden]) { animation: platformPanelIn .3s ease both; }
.hosting-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.hosting-detail-card { display: grid; grid-template-columns: 106px 1fr; align-items: center; gap: 1rem; min-height: 170px; padding: 1.15rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.hosting-detail-card img { width: 106px; height: 88px; object-fit: contain; }
.hosting-detail-card h3 { margin-bottom: .35rem; font-size: 1.06rem; }
.hosting-detail-card p { margin: 0; color: var(--muted); font-size: .85rem; }
.hosting-detail-card:hover h3, .hosting-detail-card:hover p { color: var(--white); }
.catalog-notice { max-width: 900px; margin: 1.25rem auto 0; padding: .8rem 1rem; border-left: 4px solid var(--gold); border-radius: 8px; color: #3f4b5e; background: #fff8df; font-size: .82rem; }
.home-package-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.home-package-card { position: relative; display: flex; flex-direction: column; min-height: 100%; padding: 1.35rem; overflow: hidden; }
.package-recommended { position: absolute; top: 0; right: 0; padding: .42rem .72rem; border-radius: 0 0 0 11px; color: var(--navy); background: var(--gold-bright); font-size: .7rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.package-icon { display: grid; width: 96px; height: 78px; margin-bottom: 1rem; padding: .4rem; place-items: center; border-radius: 13px; background: var(--blue-soft); transition: background .22s ease, transform .22s ease; }
.package-icon img { width: 100%; height: 100%; object-fit: contain; }
.home-package-card:hover .package-icon, .home-package-card:focus-within .package-icon { background: var(--white); transform: scale(1.05); }
.home-package-card .package-art { position: static; width: 100%; height: 155px; margin: 0 0 1rem; padding: .45rem; border-radius: 12px; background: #eaf2ff; transition: transform .35s ease, background .35s ease; }
.home-package-card .package-art img { width: 100%; height: 100%; object-fit: contain; }
.home-package-card:hover .package-art, .home-package-card:focus-within .package-art { background: var(--white); transform: translateY(-3px); }
.home-package-card .package-art + h3 { padding-right: 0; }
.home-package-card h3 { padding-right: 4.6rem; font-size: 1.25rem; }
.package-price { margin-top: .55rem; color: var(--navy); font-size: 2rem; font-weight: 900; letter-spacing: -.035em; }
.package-price small { margin-left: .2rem; color: var(--muted); font-size: .78rem; font-weight: 650; letter-spacing: 0; }
.home-package-card .check-list { margin: 1rem 0 1.25rem; }
.home-package-card .check-list li { font-size: .88rem; }
.home-package-card .button { width: 100%; margin-top: auto; }
.home-package-card:hover .package-price, .home-package-card:focus-within .package-price { color: var(--gold-bright); }
.home-package-card:hover .package-price small, .home-package-card:focus-within .package-price small { color: var(--white); }
.home-package-card:hover .button-outline, .home-package-card:focus-within .button-outline { color: var(--navy); border-color: var(--white); background: var(--white); }

.technical-development { background: linear-gradient(180deg, #f4f8ff, #fff); }
.tech-topic { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(310px,.88fr); align-items: center; gap: clamp(1.5rem,4vw,3.5rem); margin-top: 2rem; padding: clamp(1.35rem,3vw,2.4rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.tech-topic.reverse { grid-template-columns: minmax(310px,.88fr) minmax(0,1.12fr); }
.tech-topic.reverse .tech-topic-copy { order: 2; }
.tech-topic h3 { margin-bottom: .85rem; font-size: clamp(1.45rem,2.4vw,2rem); }
.tech-topic p { color: var(--muted); }
.tech-topic img { width: 100%; max-height: 360px; object-fit: contain; border-radius: 16px; background: #eaf2ff; transition: transform .45s cubic-bezier(.2,.75,.25,1), filter .35s ease; }
.tech-topic:hover img { transform: scale(1.035); filter: saturate(1.08); }
.home-hosting-category h3 { padding-right: 0; }
.home-hosting-category .check-list { flex-grow: 1; }
.featured-domain-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 1rem; }
.featured-domain-card { display: flex; flex-direction: column; min-height: 345px; padding: 1.15rem; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.featured-domain-card.featured { color: var(--white); border-color: var(--navy); background: var(--navy); }
.featured-domain-card.featured h3, .featured-domain-card.featured p, .featured-domain-card.featured dt, .featured-domain-card.featured dd, .featured-domain-card.featured small { color: var(--white); }
.domain-card-icon { display: grid; width: 48px; height: 48px; margin-bottom: 1rem; place-items: center; border-radius: 12px; color: var(--blue); background: var(--blue-soft); font-size: 1.5rem; font-weight: 900; }
.featured-domain-card p { min-height: 2.4em; margin: 0; color: var(--muted); font-size: .75rem; }
.featured-domain-card h3 { margin-top: .25rem; font-size: 1.35rem; }
.domain-card-price { margin: .3rem 0 .8rem; color: var(--navy); font-size: 1.75rem; font-weight: 900; }
.domain-card-price small { display: block; color: var(--muted); font-size: .68rem; font-weight: 700; }
.featured-domain-card dl { margin: 0 0 1rem; padding-top: .75rem; border-top: 1px solid rgba(128,146,177,.25); }
.featured-domain-card dl div { display: flex; justify-content: space-between; gap: .4rem; margin-top: .45rem; font-size: .72rem; }
.featured-domain-card dd { margin: 0; font-weight: 850; text-align: right; }
.featured-domain-card .button { width: 100%; margin-top: auto; padding-inline: .45rem; font-size: .76rem; }
.featured-domain-card.featured .button { color: var(--navy); border-color: var(--white); background: var(--white); }
.domain-pricing-details { margin-top: 3rem; }
.domain-filter { display: grid; grid-template-columns: auto minmax(220px, 420px); justify-content: end; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.domain-filter label { font-size: .86rem; font-weight: 800; }
.domain-filter input { padding: .67rem .8rem; border: 1px solid var(--line); border-radius: 8px; }
.table-shell { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.domain-table { width: 100%; border-collapse: collapse; background: var(--white); }
.domain-table th, .domain-table td { padding: .78rem 1rem; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.domain-table thead th { color: var(--white); background: var(--navy); font-size: .82rem; letter-spacing: .03em; }
.domain-table tbody th { color: var(--blue); font-size: 1rem; }
.domain-table tbody tr:hover { color: var(--white); background: var(--navy); }
.domain-table tbody tr:hover th { color: var(--gold-bright); }
.domain-table tr.is-hidden { display: none; }

.stats-panel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-radius: var(--radius); background: rgba(255,255,255,.16); overflow: hidden; }
.stat { padding: 1.55rem 1rem; text-align: center; background: rgba(255,255,255,.07); }
.stat strong { display: block; color: var(--white); font-size: 1.55rem; }
.stat span { color: rgba(255,255,255,.75); font-size: .82rem; }

.faq-list { display: grid; gap: .75rem; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--white); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1rem 1.1rem; border: 0; color: var(--ink); background: transparent; text-align: left; font-weight: 800; }
.faq-question::after { color: var(--blue); font-size: 1.25rem; content: "+"; }
.faq-question:hover { color: var(--white); background: var(--navy); }
.faq-question:hover::after { color: var(--gold-bright); }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 1.1rem 1rem; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p:last-child { margin-bottom: 0; }

.cta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: 2rem; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(125deg, var(--navy), var(--blue)); box-shadow: var(--shadow-hover); }
.cta h2 { color: var(--white); font-size: clamp(1.65rem, 3vw, 2.35rem); }
.cta p { max-width: 690px; margin: .7rem 0 0; color: rgba(255,255,255,.84); }
.cta-actions { display: flex; gap: .65rem; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 2.2rem; }
.prose h2 { margin: 2rem 0 .9rem; font-size: 1.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.5rem 0 .6rem; font-size: 1.25rem; }
.prose p { color: #39465a; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.inline-topic-visuals { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.4rem 0; }
.inline-topic-visual { display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: .8rem; min-height: 122px; margin: 0; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--blue-soft); }
.inline-topic-visual img { width: 112px; height: 88px; object-fit: contain; }
.inline-topic-visual figcaption { color: var(--navy); font-weight: 850; }
.sidebar { position: sticky; top: 105px; display: grid; gap: 1rem; }
.sidebar-card { padding: 1.2rem; }
.sidebar-card h2, .sidebar-card h3 { margin-bottom: .8rem; font-size: 1.08rem; }
.sidebar-links { display: grid; gap: .35rem; margin: 0; padding: 0; list-style: none; }
.sidebar-links a { display: block; padding: .55rem .65rem; border-radius: 8px; color: var(--muted); font-size: .88rem; font-weight: 700; }
.sidebar-links a:hover, .sidebar-links a.active { color: var(--white); background: var(--navy); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.5rem; }
.contact-panel, .form-panel { padding: 1.5rem; }
.contact-panel { color: var(--white); background: linear-gradient(145deg, var(--navy), #083886); }
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-panel p { color: rgba(255,255,255,.8); }
.contact-list { display: grid; gap: .8rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.contact-list a, .contact-list span { display: block; padding: .75rem; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.08); }
.contact-list a:hover { color: var(--navy); background: var(--gold-bright); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .86rem; font-weight: 800; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: .75rem .8rem; border: 1px solid #cdd7e5; border-radius: 8px; color: var(--ink); background: var(--white); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: 3px solid rgba(13,91,215,.13); border-color: var(--blue); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-status { display: none; margin: 1rem 0 0; padding: .75rem; border-radius: 8px; color: #0b6137; background: #e8f8ef; font-weight: 700; }
.form-status.show { display: block; }
.form-status.error { color: #9c2525; background: #fff0f0; }
.form-note { color: var(--muted); font-size: .78rem; }
.captcha-box { position: relative; padding: 1rem; border: 1px solid #cfe0ff; border-radius: 10px; background: var(--blue-soft); }
.captcha-box input { max-width: 170px; }
.captcha-refresh { justify-self: start; padding: .35rem .55rem; border: 0; border-radius: 6px; color: var(--blue); background: transparent; font-size: .78rem; font-weight: 800; }
.captcha-refresh:hover { color: var(--white); background: var(--navy); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; }

.site-footer { padding: 62px 0 20px; color: var(--white); background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(4, minmax(0,1fr)); gap: 1.5rem; }
.footer-brand img { width: auto; height: 102px; max-width: 230px; padding: 5px; border-radius: 7px; background: var(--white); object-fit: contain; }
.footer-brand p { max-width: 340px; margin-top: 1rem; color: rgba(255,255,255,.72); font-size: .88rem; }
.site-footer h2 { margin-bottom: 1rem; color: var(--white); font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: rgba(255,255,255,.78); font-size: .88rem; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold-bright); }
.socials { display: flex; gap: .5rem; margin-top: 1rem; }
.socials a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: var(--white); font-size: .78rem; font-weight: 900; }
.socials a:hover { color: var(--navy); border-color: var(--gold-bright); background: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.3rem; padding-top: 1.15rem; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.68); font-size: .8rem; }
.back-top { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: none; width: 43px; height: 43px; border: 0; border-radius: 50%; color: var(--white); background: var(--blue); box-shadow: var(--shadow); font-size: 1.1rem; }
.back-top.show { display: block; }
.back-top:hover { color: var(--navy); background: var(--gold-bright); }
.whatsapp-float { position: fixed; right: 20px; bottom: 74px; z-index: 910; display: flex; align-items: center; gap: .45rem; padding: .48rem .72rem .48rem .48rem; border-radius: 999px; color: var(--white); background: #168a45; box-shadow: 0 16px 35px rgba(0,0,0,.2); font-size: .82rem; }
.whatsapp-float span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #168a45; background: var(--white); font-size: .68rem; font-weight: 900; }
.whatsapp-float:hover, .whatsapp-float:focus-visible { color: var(--navy); background: var(--gold-bright); transform: translateY(-2px); }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.notice { padding: .85rem 1rem; border-left: 4px solid var(--blue); border-radius: 8px; color: #26364d; background: var(--blue-soft); }
.legal-meta { margin-bottom: 1.2rem; color: var(--muted); font-size: .85rem; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes cursorBlink { 50% { opacity: 0; } }
@keyframes heroProgress { from { width: 0; } to { width: 100%; } }
@keyframes heroBackgroundIn { from { opacity: 0; transform: scale(1.075); } to { opacity: 1; transform: scale(1); } }
@keyframes heroBackgroundZoom { from { opacity: 0; transform: scale(1.13); } to { opacity: 1; transform: scale(1.015); } }
@keyframes heroBackgroundPan { from { opacity: 0; transform: scale(1.06) translateX(2.5%); } to { opacity: 1; transform: scale(1); } }
@keyframes heroBackgroundLift { from { opacity: 0; transform: scale(1.055) translateY(2.5%); } to { opacity: 1; transform: scale(1); } }
@keyframes heroBackgroundFocus { from { opacity: 0; filter: blur(10px); transform: scale(1.06); } to { opacity: 1; filter: blur(0); transform: scale(1); } }
@keyframes heroBackgroundScale { from { opacity: 0; transform: scaleX(1.06) scaleY(1.02); } to { opacity: 1; transform: none; } }
@keyframes heroBackgroundDrift { from { opacity: 0; transform: scale(1.05) translateX(-2%); } to { opacity: 1; transform: scale(1); } }
@keyframes heroEyebrow { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes heroTitleRise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
@keyframes heroTitleZoom { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: none; } }
@keyframes heroTitleClip { from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-18px); } to { opacity: 1; clip-path: inset(0); transform: none; } }
@keyframes heroTitleFlip { from { opacity: 0; transform: perspective(900px) rotateX(18deg) translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes heroTitleFocus { from { opacity: 0; filter: blur(12px); transform: translateY(14px); } to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes heroTitleStretch { from { opacity: 0; transform: scaleX(.75); transform-origin: left; } to { opacity: 1; transform: none; } }
@keyframes heroTitleDrift { from { opacity: 0; transform: translateX(-34px); } to { opacity: 1; transform: none; } }
@keyframes heroSubtitleIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes heroButtonsIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
@keyframes characterRise { from { opacity: 0; transform: translateY(55px); } to { opacity: 1; transform: none; } }
@keyframes characterZoom { from { opacity: 0; transform: scale(.82); } to { opacity: 1; transform: none; } }
@keyframes characterSwipe { from { opacity: 0; transform: translateX(85px); } to { opacity: 1; transform: none; } }
@keyframes characterFlip { from { opacity: 0; transform: perspective(900px) rotateY(-16deg) translateX(40px); } to { opacity: 1; transform: none; } }
@keyframes characterFocus { from { opacity: 0; filter: blur(14px) drop-shadow(0 24px 24px rgba(0,0,0,.34)); transform: translateY(24px); } to { opacity: 1; filter: blur(0) drop-shadow(0 24px 24px rgba(0,0,0,.34)); transform: none; } }
@keyframes characterScale { from { opacity: 0; transform: scale(.74) translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes characterDrift { from { opacity: 0; transform: translateX(65px) translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes platformPanelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide.is-active .hero-background, .hero-slide.is-active .hero-character, .hero-slide.is-active .eyebrow, .hero-slide.is-active .hero-title, .hero-slide.is-active .hero-subtitle, .hero-slide.is-active .hero-actions { opacity: 1; transform: none; filter: none; }
  .hero-progress { display: none; }
}
@media (max-width: 1100px) {
  .header-cta { display: none; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-areas: "lead lead" "web web" "software software" "mini1 mini2" "mini3 mini3"; }
  .cards-4, .number-list, .plan-grid, .hosting-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .home-package-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .featured-domain-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .topbar .topbar-message { display: none; }
  .header-inner { min-height: 86px; }
  .brand img { width: auto; height: 70px; max-width: 190px; }
  .menu-button { display: block; margin-left: auto; }
  .site-nav { position: fixed; inset: 124px 0 0; display: none; margin: 0; padding: 1rem 20px 2rem; background: var(--white); overflow-y: auto; }
  .site-nav.open { display: block; }
  .nav-list { display: block; }
  .nav-link, .nav-toggle { justify-content: space-between; width: 100%; padding: .82rem; font-size: .96rem; }
  .submenu, .submenu.wide { position: static; display: none; width: auto; margin: .2rem 0 .5rem .75rem; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-item.open > .submenu { display: grid; grid-template-columns: 1fr; }
  .hero-grid, .page-hero-grid, .split, .content-layout, .contact-grid, .tech-topic, .tech-topic.reverse { grid-template-columns: 1fr; }
  .tech-topic.reverse .tech-topic-copy { order: 0; }
  .hero { padding-top: 62px; }
  .page-hero img { max-height: 190px; }
  .split.reverse .split-visual { order: 0; }
  .sidebar { position: static; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
  .hero-slider { height: 700px; min-height: 700px; }
  .hero-layer-grid { grid-template-columns: minmax(0,1.15fr) minmax(275px,.85fr); gap: .5rem; }
  .hero-slide-copy { padding: 48px 0 78px; }
  .hero-title { font-size: clamp(2.4rem, 5.7vw, 3.6rem); }
  .hero-character { bottom: -32%; height: 132%; max-height: 870px; }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { min-height: 34px; justify-content: center; }
  .topbar-list span:first-child { display: none; }
  .site-nav { inset-block-start: 120px; }
  .section { padding: 58px 0; }
  .hero { padding: 50px 0; }
  .hero h1, .page-hero h1 { font-size: 2.25rem; }
  .page-hero { padding: 48px 0; }
  .page-hero-grid { gap: 1.8rem; }
  .trust-strip { margin-top: 0; }
  .trust-grid, .stats-panel { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item { border-bottom: 1px solid var(--line); }
  .mosaic { grid-template-columns: 1fr; grid-template-areas: "lead" "web" "software" "mini1" "mini2" "mini3"; }
  .mosaic-wide { grid-template-columns: 1fr; }
  .mosaic-wide img { max-height: 145px; margin: 1rem auto 0; }
  .cards-2, .cards-3, .cards-4, .number-list, .plan-grid, .hosting-detail-grid, .inline-topic-visuals { grid-template-columns: 1fr; }
  .home-package-grid, .featured-domain-grid { grid-template-columns: 1fr; }
  .platform-tab-buttons { display: grid; grid-template-columns: 1fr 1fr; }
  .platform-tab { min-width: 0; padding-inline: .65rem; }
  .hosting-detail-card, .inline-topic-visual { grid-template-columns: 92px 1fr; }
  .hosting-detail-card img, .inline-topic-visual img { width: 92px; height: 78px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .cta { grid-template-columns: 1fr; padding: 1.4rem; }
  .cta-actions { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: .35rem; }
  .hero-slider { height: 790px; min-height: 790px; }
  .hero-layer-grid { grid-template-columns: 1fr; grid-template-rows: minmax(0,1fr) 285px; gap: 0; }
  .hero-slide-copy { align-self: end; max-width: none; padding: 46px 8px 12px; }
  .hero-slide h1, .hero-slide h2 { font-size: 2.15rem; }
  .hero-subtitle { margin-top: .75rem; font-size: .98rem; }
  .hero-actions { margin-top: .9rem; }
  .hero-actions .button { flex: 1 1 160px; min-height: 43px; padding-inline: .7rem; font-size: .88rem; }
  .hero-character-layer { height: 285px; overflow: hidden; }
  .hero-character { bottom: -34%; width: auto; max-width: 122%; height: 146%; max-height: none; object-position: center top; }
  .hero-overlay { background: linear-gradient(180deg, rgba(2,14,48,.92) 0%, rgba(3,23,70,.8) 58%, rgba(2,14,48,.58) 100%); }
  .hero-control { top: auto; bottom: 18px; width: 38px; height: 38px; transform: none; }
  .hero-prev { left: 14px; }
  .hero-next { right: 14px; }
  .hero-pause { right: 58px; bottom: 22px; }
  .domain-search { grid-template-columns: 1fr; }
  .domain-result { grid-column: auto; }
  .domain-filter { grid-template-columns: 1fr; justify-content: stretch; }
  .whatsapp-float strong { display: none; }
  .whatsapp-float { padding: .45rem; }
}

/* ── Contact visibility (audit §7: address & phone) ───────────── */
.topbar-phone a { font-weight: 700; }
.topbar-phone::after { margin: 0 .15rem 0 .85rem; opacity: .45; content: "|"; }
.footer-address {
  margin: .85rem 0 1rem;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  font-style: normal;
  line-height: 1.7;
}
.footer-address a { color: rgba(255,255,255,.92); }
.footer-address a:hover, .footer-address a:focus-visible { color: var(--gold-bright); }
@media (max-width: 820px) {
  .topbar-phone::after { display: none; }
  .topbar-phone { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   v11 DESIGN UPGRADE
   ══════════════════════════════════════════════════════════════ */

/* ── Sidebar: wider, elevated, modern (Screenshot 1) ─────────── */
.content-layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 2.6rem; }
.sidebar-card {
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(13,91,215,.10);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(6,27,79,.10), 0 2px 6px rgba(6,27,79,.05);
  transition: box-shadow .3s ease, transform .3s ease;
}
.sidebar-card:hover { box-shadow: 0 18px 46px rgba(6,27,79,.15); transform: translateY(-2px); }
.sidebar-card h2, .sidebar-card h3 {
  position: relative;
  margin-bottom: 1.1rem;
  padding-bottom: .7rem;
  font-size: 1.14rem;
  letter-spacing: -.01em;
}
.sidebar-card h2::after, .sidebar-card h3::after {
  position: absolute; bottom: 0; left: 0;
  width: 42px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-bright), var(--blue));
  content: "";
}
.sidebar-links { gap: .18rem; }
.sidebar-links a {
  display: flex; align-items: center; gap: .55rem;
  padding: .72rem .8rem;
  border-radius: 11px;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 650;
  line-height: 1.35;
  transition: background .22s ease, color .22s ease, padding-left .22s ease;
}
.sidebar-links a::before {
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(13,91,215,.28);
  transition: background .22s ease, transform .22s ease;
  content: "";
}
.sidebar-links a:hover { padding-left: 1.05rem; color: var(--blue); background: var(--blue-soft); }
.sidebar-links a:hover::before { background: var(--blue); }
.sidebar-links a.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
  box-shadow: 0 6px 18px rgba(13,91,215,.32);
}
.sidebar-links a.active::before { background: var(--gold-bright); transform: scale(1.35); }

/* ── Package cards: modern, clear hierarchy (Screenshots 2,3,5) ── */
.home-package-card, .plan-card {
  padding: 0 0 1.5rem;
  border: 1px solid rgba(13,91,215,.11);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(6,27,79,.09);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.home-package-card:hover, .plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13,91,215,.3);
  box-shadow: 0 22px 52px rgba(6,27,79,.17);
}

/* Title bar sits at the very top, above the image (Screenshot 5) */
.pkg-head {
  padding: 1.15rem 1.35rem 1rem;
  border-bottom: 1px solid rgba(13,91,215,.09);
  background: linear-gradient(135deg, rgba(234,242,255,.85), rgba(255,255,255,0));
}
.pkg-head h3 { margin: 0; color: var(--navy-deep); font-size: 1.24rem; letter-spacing: -.015em; }
.pkg-head .pkg-tagline { margin: .3rem 0 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.home-package-card .package-art, .plan-card .plan-icon { margin: 1.1rem 1.35rem .35rem; }
.home-package-card > *:not(.pkg-head):not(.package-art):not(.plan-icon),
.plan-card > *:not(.pkg-head):not(.package-art):not(.plan-icon) { margin-inline: 1.35rem; }

/* Price block */
.pkg-price {
  margin: .5rem 1.35rem 1rem;
  padding: .95rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-soft), rgba(234,242,255,.4));
}
.pkg-price .amount { display: block; color: var(--navy-deep); font-size: 2.05rem; font-weight: 850; line-height: 1; letter-spacing: -.03em; }
.pkg-price .period { color: var(--muted); font-size: .82rem; font-weight: 700; }
.pkg-price .renew { display: block; margin-top: .35rem; color: var(--muted); font-size: .76rem; }

/* Feature list */
.home-package-card .check-list, .plan-card .check-list { gap: .5rem; margin-bottom: 1.25rem; }
.home-package-card .check-list li, .plan-card .check-list li { font-size: .86rem; line-height: 1.45; }

/* Featured / recommended plan */
.home-package-card.featured, .plan-card.plan-popular {
  border: 2px solid var(--blue);
  box-shadow: 0 18px 46px rgba(13,91,215,.22);
}
.home-package-card.featured .pkg-head, .plan-card.plan-popular .pkg-head {
  border-bottom-color: rgba(255,255,255,.2);
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
}
.home-package-card.featured .pkg-head h3,
.plan-card.plan-popular .pkg-head h3 { color: var(--white); }
.home-package-card.featured .pkg-head .pkg-tagline,
.plan-card.plan-popular .pkg-head .pkg-tagline { color: rgba(255,255,255,.82); }
.pkg-badge {
  display: inline-block;
  margin-bottom: .5rem;
  padding: .26rem .62rem;
  border-radius: 999px;
  color: var(--navy-deep);
  background: var(--gold-bright);
  font-size: .68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.home-package-card .button, .plan-card .button { width: calc(100% - 2.7rem); }

/* ── Service tiles: mixed-size grid (Screenshot 3) ───────────── */
.service-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.service-tile {
  display: flex; flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(13,91,215,.11);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(6,27,79,.08);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(13,91,215,.3);
  box-shadow: 0 20px 48px rgba(6,27,79,.16);
}
.service-tile .tile-art {
  display: grid; place-items: center;
  height: 128px;
  margin-bottom: 1.05rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-soft), rgba(234,242,255,.35));
}
.service-tile .tile-art img { width: 100%; height: 100%; padding: .55rem; object-fit: contain; }
.service-tile h3 { margin: 0 0 .5rem; font-size: 1.12rem; letter-spacing: -.012em; }
.service-tile p { flex: 1; margin: 0 0 1rem; color: var(--muted); font-size: .88rem; line-height: 1.62; }
.service-tile .text-link { align-self: flex-start; }
.service-tile.tile-wide { grid-column: span 2; }
.service-tile.tile-wide .tile-art { height: 172px; }
.service-tile.tile-wide h3 { font-size: 1.3rem; }

/* ── Read-more collapsible (point 5) ─────────────────────────── */
.readmore { position: relative; }
.readmore-body { overflow: hidden; transition: max-height .45s ease; }
.readmore:not(.is-open) .readmore-body { max-height: 190px; }
.readmore:not(.is-open) .readmore-body::after {
  position: absolute; right: 0; bottom: 2.6rem; left: 0;
  height: 78px;
  background: linear-gradient(180deg, transparent, var(--white) 88%);
  pointer-events: none;
  content: "";
}
.section-soft .readmore:not(.is-open) .readmore-body::after {
  background: linear-gradient(180deg, transparent, #f5f8fe 88%);
}
.readmore.is-open .readmore-body { max-height: 4000px; }
.readmore-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .9rem;
  padding: .58rem 1.1rem;
  border: 1px solid rgba(13,91,215,.28);
  border-radius: 999px;
  color: var(--blue);
  background: var(--white);
  font-size: .86rem;
  font-weight: 750;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.readmore-toggle:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.readmore-toggle::after { font-size: .78rem; transition: transform .3s ease; content: "▼"; }
.readmore.is-open .readmore-toggle::after { transform: rotate(180deg); }

/* ── Footer: organised columns (point 6) ─────────────────────── */
.footer-grid { gap: 2.4rem 2rem; }
.site-footer h2 {
  position: relative;
  margin-bottom: 1.1rem;
  padding-bottom: .6rem;
  color: var(--white);
  font-size: .96rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.site-footer h2::after {
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; border-radius: 2px;
  background: var(--gold-bright);
  content: "";
}
.footer-links { gap: .1rem; }
.footer-links a {
  display: block;
  padding: .3rem 0;
  color: rgba(255,255,255,.72);
  font-size: .87rem;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-links a:hover { padding-left: .4rem; color: var(--gold-bright); }
.footer-brand img {
  padding: .7rem .95rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .service-mosaic { grid-template-columns: repeat(2, 1fr); }
  .service-tile.tile-wide { grid-column: span 2; }
}
@media (max-width: 700px) {
  .service-mosaic { grid-template-columns: 1fr; }
  .service-tile.tile-wide { grid-column: span 1; }
  .content-layout { grid-template-columns: 1fr; }
  .pkg-price .amount { font-size: 1.8rem; }
}

/* ══════════════════════════════════════════════════════════════
   v12 — TYPOGRAPHY, SPACING, MOTION, FOOTER
   ══════════════════════════════════════════════════════════════ */

/* ── Content rhythm: consistent padding & spacing (Screenshot 3) ── */
.prose > h2 {
  margin: 2.9rem 0 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(13,91,215,.12);
  font-size: clamp(1.42rem, 2.4vw, 1.78rem);
  line-height: 1.28;
  letter-spacing: -.02em;
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose > h3 {
  margin: 2rem 0 .7rem;
  color: var(--navy-deep);
  font-size: 1.16rem;
  letter-spacing: -.012em;
}
.prose > p { margin: 0 0 1.05rem; font-size: 1rem; line-height: 1.78; }
.prose > p:last-child { margin-bottom: 0; }
.prose > ul.check-list { gap: .72rem; margin: 1.2rem 0 1.8rem; }
.prose > ul.check-list li { font-size: .97rem; line-height: 1.68; }
.prose .cards-2 { gap: 1.1rem; margin: 1.5rem 0 2rem; }
.prose > h2 + p, .prose > h3 + p { margin-top: .2rem; }

/* Lead paragraph directly under an h2 */
.prose > h2 + p:first-of-type { color: var(--navy); font-size: 1.05rem; }

/* ── Tech stack card (Screenshot 2) ─────────────────────────── */
.tech-stack-card .tech-group { margin-bottom: 1.05rem; }
.tech-stack-card .tech-group:last-child { margin-bottom: 0; }
.tech-label {
  display: block;
  margin-bottom: .5rem;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.tech-pills { display: flex; flex-wrap: wrap; gap: .38rem; }
.tech-pills span {
  padding: .32rem .68rem;
  border: 1px solid rgba(13,91,215,.16);
  border-radius: 8px;
  color: var(--navy);
  background: var(--blue-soft);
  font-size: .76rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.tech-pills span:hover { color: var(--white); background: var(--blue); transform: translateY(-2px); }

/* ── WhatsApp in topbar (replaces phone number) ─────────────── */
.topbar-phone a { display: inline-flex; align-items: center; gap: .35rem; }
.wa-ico { width: 15px; height: 15px; fill: #25d366; }

/* ── Menu hover & submenu motion ────────────────────────────── */
.nav-link, .nav-toggle { position: relative; transition: color .22s ease; }
.nav-link::after, .nav-toggle::after {
  position: absolute; bottom: .1rem; left: 50%;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--gold-bright);
  transform: translateX(-50%);
  transition: width .28s cubic-bezier(.4,0,.2,1);
  content: "";
}
.nav-link:hover::after, .nav-toggle:hover::after,
.nav-link.active::after, .nav-toggle.active::after { width: 62%; }
.nav-toggle::after { bottom: -.05rem; }

.submenu {
  transform: translateY(-8px) scale(.985);
  opacity: 0;
  transition: opacity .26s ease, transform .26s cubic-bezier(.4,0,.2,1), visibility .26s;
}
.nav-item:hover > .submenu,
.nav-item:focus-within > .submenu,
.submenu.is-open { transform: translateY(0) scale(1); opacity: 1; }
.submenu li a {
  position: relative;
  transition: background .2s ease, color .2s ease, padding-left .24s ease;
}
.submenu li a:hover, .submenu li a:focus-visible {
  padding-left: 1.15rem;
  color: var(--blue);
  background: var(--blue-soft);
}
.submenu li a::before {
  position: absolute; top: 50%; left: .5rem;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .22s ease;
  content: "";
}
.submenu li a:hover::before { opacity: 1; }

/* ── Buttons & cards: richer hover ──────────────────────────── */
.button { transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(6,27,79,.2); }
.button:active { transform: translateY(0); }
.text-link { transition: gap .22s ease, color .2s ease; }
.text-link:hover { gap: .55rem; }

/* ── Scroll reveal (load on scroll) ─────────────────────────── */
.reveal, .anim {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.72,.2,1), transform .7s cubic-bezier(.22,.72,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible, .anim.is-visible { opacity: 1; transform: none; }
.anim-delay-1 { transition-delay: .07s; }
.anim-delay-2 { transition-delay: .14s; }
.anim-delay-3 { transition-delay: .21s; }
.anim-delay-4 { transition-delay: .28s; }

/* Section entry */
.section > .container { animation: sectionIn .55s ease both; }
@keyframes sectionIn { from { opacity: .4; } to { opacity: 1; } }

/* Page load fade */
body { animation: pageIn .4s ease both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .anim { opacity: 1 !important; transform: none !important; transition: none !important; }
  body, .section > .container { animation: none !important; }
}

/* ── Lazy image fade-in ─────────────────────────────────────── */
img[loading="lazy"] { opacity: 0; transition: opacity .5s ease; }
img[loading="lazy"].img-loaded, img[loading="lazy"][data-noanim] { opacity: 1; }

/* ── FOOTER: compact, modern, organised ─────────────────────── */
.site-footer { padding-top: 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2rem 1.6rem;
  padding-bottom: 2rem;
}
.footer-brand p {
  max-width: 280px;
  margin: .9rem 0 .8rem;
  color: rgba(255,255,255,.68);
  font-size: .85rem;
  line-height: 1.65;
}
.footer-brand img { width: 132px; padding: .55rem .8rem; }
.site-footer h2 { margin-bottom: .85rem; font-size: .82rem; }
.footer-links a { padding: .26rem 0; font-size: .845rem; }
.footer-address { margin: .7rem 0 .85rem; font-size: .82rem; line-height: 1.65; }
.socials a {
  display: grid; width: 32px; height: 32px; place-items: center;
  border-radius: 9px;
  background: rgba(255,255,255,.09);
  transition: background .22s ease, transform .22s ease;
}
.socials a:hover { background: var(--gold-bright); transform: translateY(-2px); }
.footer-bottom {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
}

@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.2rem; }
  .prose > h2 { margin-top: 2.2rem; padding-top: 1.2rem; }
}

/* ── Service tile art: contain, no overflow (Screenshot 6) ──── */
.service-tile .tile-art { position: relative; overflow: hidden; }
.service-tile .tile-art img { padding: 1rem; object-fit: contain; }
.service-tile.tile-wide .tile-art img { padding: 1.4rem; }

/* Hosting category cards: fixed image area */
.home-package-card .package-art { display: grid; height: 150px; place-items: center; overflow: hidden; }
.home-package-card .package-art img { width: 100%; height: 100%; padding: .8rem; object-fit: contain; }

/* ── Why-us cards: even height, better padding (Screenshot 6) ── */
.section-dark .cards-2 { gap: 1.15rem; }
.section-dark .cards-2 .card {
  display: flex; flex-direction: column;
  padding: 1.5rem 1.45rem;
  border-radius: 16px;
}
.section-dark .cards-2 .card h3 { margin: 0 0 .6rem; font-size: 1.08rem; line-height: 1.35; }
.section-dark .cards-2 .card p { margin: 0; font-size: .9rem; line-height: 1.7; }

/* ── Package card layout fix: image contained, price below ──── */
.home-package-card, .plan-card { display: flex; flex-direction: column; }
.home-package-card .package-art, .plan-card .plan-icon {
  display: grid;
  height: 150px;
  margin: 1rem 1.35rem .25rem;
  padding: .6rem;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-soft), rgba(234,242,255,.45));
  overflow: hidden;
}
.home-package-card .package-art img, .plan-card .plan-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.home-package-card .pkg-price, .plan-card .plan-price-block { position: relative; z-index: 1; }
.home-package-card .check-list, .plan-card .check-list { flex: 1; }
.home-package-card .button, .plan-card .button { margin-top: auto; }

/* ── Dark section cards (why-us) ────────────────────────────── */
.section-dark .cards-2 .card {
  border: 1px solid rgba(255,255,255,.13);
  color: var(--white);
  background: rgba(255,255,255,.07);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.section-dark .cards-2 .card:hover {
  border-color: rgba(214,164,22,.45);
  background: rgba(255,255,255,.11);
  transform: translateY(-3px);
}
.section-dark .cards-2 .card h3 { color: var(--white); }
.section-dark .cards-2 .card p { color: rgba(255,255,255,.8); }
.section-dark .stats-panel { margin: 2rem 0 2.4rem; }

/* ── Service tile: guarantee no text/image overlap ──────────── */
.service-tile { position: relative; overflow: hidden; }
.service-tile .tile-art { flex: none; }
.service-tile h3, .service-tile p, .service-tile .text-link { position: relative; z-index: 1; }

/* ── Copy deterrents (headings, nav, cards not selectable) ──── */
.site-header, .site-footer, .hero-slider, .nav-list,
.section-heading, .service-tile h3, .home-package-card,
.plan-card, .card h3 {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
/* Body prose stays selectable so real readers can quote/read */
.prose, .faq-answer, input, textarea { -webkit-user-select: text; user-select: text; }
img { -webkit-user-drag: none; user-drag: none; pointer-events: auto; }

/* ══════════════════════════════════════════════════════════════
   v14 — Clean topbar, organised mega-menu
   ══════════════════════════════════════════════════════════════ */

/* ── Topbar: single WhatsApp, no duplicate phone icon ───────── */
.topbar-list { display: flex; align-items: center; gap: 1.3rem; }
.topbar-wa { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; }
.topbar-wa .wa-ico { width: 16px; height: 16px; fill: #25d366; }
.topbar-wa:hover { color: var(--gold-bright); }
.topbar-mail { opacity: .92; }
.topbar-mail:hover { color: var(--gold-bright); }
@media (max-width: 640px) {
  .topbar-message { display: none; }
  .topbar-list { width: 100%; justify-content: center; gap: 1rem; }
}

/* ── Services mega-menu (3 organised columns) ───────────────── */
.megamenu {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: .3rem 1.6rem;
  min-width: 560px;
  padding: 1.3rem 1.5rem;
}
.megamenu-col { display: flex; flex-direction: column; }
.megamenu-title {
  margin-bottom: .55rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid rgba(13,91,215,.14);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.megamenu a {
  position: relative;
  padding: .42rem .5rem .42rem .65rem;
  border-radius: 8px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
.megamenu a::before {
  position: absolute; top: 50%; left: .3rem;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease;
  content: "";
}
.megamenu a:hover { padding-left: .95rem; color: var(--blue); background: var(--blue-soft); }
.megamenu a:hover::before { opacity: 1; }
.megamenu-all { margin-top: .35rem; color: var(--blue); font-weight: 800; }

/* Position the mega-menu under its toggle */
.nav-item { position: relative; }
.megamenu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(.985);
  z-index: 60;
  border: 1px solid rgba(13,91,215,.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(6,27,79,.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s ease, transform .26s cubic-bezier(.4,0,.2,1), visibility .26s;
}
.nav-item:hover > .megamenu,
.nav-item:focus-within > .megamenu,
.megamenu.is-open {
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

/* Mobile: mega-menu collapses to a single column list */
@media (max-width: 960px) {
  .megamenu {
    position: static;
    transform: none;
    min-width: 0;
    grid-template-columns: 1fr;
    box-shadow: none;
    border: 0;
    padding: .4rem 0 .4rem 1rem;
    opacity: 1;
    visibility: visible;
  }
  .megamenu-col { margin-bottom: .6rem; }
}

/* ── Footer logo: white-outlined PNG, no box needed ─────────── */
.footer-brand img {
  width: 150px;
  height: auto;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  object-fit: contain;
}

/* ── Safety net: logos & chrome images never hidden by lazy fade ── */
.site-header img,
.site-footer img,
img[src*="logo"] {
  opacity: 1 !important;
}

/* ══════════════════════════════════════════════════════════════
   v18 — Hosting card images centered (Screenshot 5)
   ══════════════════════════════════════════════════════════════ */
.home-package-card .package-art,
.home-package-card .plan-icon,
.plan-card .plan-icon,
.plan-card .package-art {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.home-package-card .package-art img,
.home-package-card .plan-icon img,
.plan-card .plan-icon img,
.plan-card .package-art img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

/* Footer address: keep on one clean block, Afghanistan included */
.footer-address { line-height: 1.7; }
