:root {
  --navy: #1e3b78;
  --navy-dark: #10244c;
  --navy-light: #2f529b;
  --gold: #f7bb19;
  --gold-dark: #d89700;
  --cream: #fff8e7;
  --pale: #f3f6fd;
  --ink: #17233b;
  --muted: #667085;
  --line: #dfe5f0;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 36, 76, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 105px 0; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--gold); color: var(--navy-dark); padding: 12px 18px; border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.topbar { background: var(--navy-dark); color: #e8edfa; font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar a { color: var(--gold); font-weight: 800; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(30,59,120,.08); backdrop-filter: blur(16px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 205px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: 15px; }
.site-nav a { position: relative; transition: color .2s ease; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 3px;
  background: var(--gold); border-radius: 4px; transition: right .25s ease;
}
.site-nav > a:hover, .site-nav > a.active { color: var(--navy); }
.site-nav > a:hover::after, .site-nav > a.active::after { right: 0; }
.nav-cta { padding: 13px 20px; border-radius: 12px; background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(30,59,120,.18); }
.nav-cta:hover { background: var(--navy-dark); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 28px; height: 3px; margin: 5px 0; background: var(--navy); border-radius: 4px; transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative; overflow: hidden; padding-top: 80px;
  background:
    radial-gradient(circle at 12% 20%, rgba(247,187,25,.14), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(30,59,120,.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}
.hero::after {
  content: ""; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(30,59,120,.08);
  border-radius: 50%; right: -260px; bottom: -260px; box-shadow: 0 0 0 80px rgba(30,59,120,.025), 0 0 0 160px rgba(247,187,25,.025);
}
.hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 42px; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 900; }
.eyebrow span { width: 30px; height: 4px; background: var(--gold); border-radius: 4px; }
.hero h1, .section-heading h2, .about-copy h2, .quote-copy h2, .contact-intro h2, .cta-inner h2 {
  letter-spacing: -.045em; line-height: 1.06; margin: 18px 0 22px; color: var(--navy-dark);
}
.hero h1 { font-size: clamp(44px, 5.8vw, 76px); max-width: 780px; }
.hero h1 em { color: var(--navy); font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 10px; background: var(--gold); border-radius: 50%; opacity: .8; transform: rotate(-1deg); z-index: -1; }
.hero-lead { color: var(--muted); font-size: 18px; max-width: 620px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 13px 24px;
  border: 0; border-radius: 13px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--navy); box-shadow: 0 14px 30px rgba(30,59,120,.22); }
.button-primary:hover { background: var(--navy-dark); box-shadow: 0 18px 36px rgba(30,59,120,.28); }
.button-secondary { color: var(--navy); background: #fff; border: 1px solid var(--line); }
.button-secondary:hover { box-shadow: 0 14px 30px rgba(16,36,76,.10); }
.button-gold { color: var(--navy-dark); background: var(--gold); box-shadow: 0 14px 30px rgba(247,187,25,.26); }
.button-whatsapp { background: #1b9b62; color: #fff; }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.hero-points div { padding-left: 14px; border-left: 3px solid var(--gold); }
.hero-points strong, .hero-points span { display: block; }
.hero-points strong { color: var(--navy-dark); font-size: 15px; }
.hero-points span { color: var(--muted); font-size: 12px; }
.hero-art { position: relative; }
.hero-art > img { width: 100%; filter: drop-shadow(0 24px 38px rgba(16,36,76,.14)); }
.floating-card { position: absolute; padding: 12px 16px; border-radius: 13px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); font-size: 13px; font-weight: 800; color: var(--navy-dark); }
.floating-card span { color: var(--gold-dark); margin-right: 6px; }
.floating-card-one { left: -12px; bottom: 20%; }
.floating-card-two { right: -10px; top: 20%; }

.feature-strip { background: var(--navy); color: white; }
.strip-grid { min-height: 132px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.strip-grid > div { display: flex; align-items: center; gap: 14px; min-height: 62px; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.16); }
.strip-grid > div:first-child { padding-left: 0; }
.strip-grid > div:last-child { border-right: 0; padding-right: 0; }
.strip-icon { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 auto; border-radius: 15px; background: var(--gold); color: var(--navy-dark); font-size: 12px; font-weight: 950; }
.strip-grid p { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.45; }
.strip-grid strong { color: white; font-size: 14px; }

.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 60px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .quote-copy h2, .contact-intro h2, .cta-inner h2 { font-size: clamp(36px, 4.2vw, 54px); }
.section-heading p { color: var(--muted); margin: 0 0 8px; font-size: 17px; }
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.service-card { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-image { background: var(--pale); min-height: 100%; display: grid; place-items: center; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-body { position: relative; padding: 32px 30px; }
.service-number { display: block; color: var(--gold-dark); font-weight: 950; font-size: 13px; margin-bottom: 12px; }
.service-body h3 { color: var(--navy-dark); font-size: 22px; line-height: 1.2; margin: 0 0 12px; }
.service-body p { color: var(--muted); margin: 0 0 18px; font-size: 14px; }
.service-body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; font-size: 13px; color: var(--navy); font-weight: 700; }
.service-body li::before { content: "✓"; color: var(--gold-dark); margin-right: 8px; }

.portfolio { background: var(--navy-dark); color: white; overflow: hidden; position: relative; }
.portfolio::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(247,187,25,.14), transparent 26%), radial-gradient(circle at 12% 80%, rgba(255,255,255,.06), transparent 24%); pointer-events: none; }
.section-heading.light, .portfolio-grid { position: relative; z-index: 1; }
.section-heading.light h2 { color: white; }
.section-heading.light p { color: rgba(255,255,255,.65); }
.eyebrow-light { color: var(--gold); }
.portfolio-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; grid-auto-rows: 260px; gap: 18px; }
.portfolio-item { position: relative; border: 0; padding: 0; border-radius: 22px; overflow: hidden; background: #fff; text-align: left; }
.portfolio-large { grid-row: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.portfolio-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(7,18,40,.88) 100%); }
.portfolio-item:hover img { transform: scale(1.055); }
.portfolio-item > span { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; color: white; }
.portfolio-item small, .portfolio-item strong { display: block; }
.portfolio-item small { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.portfolio-item strong { font-size: 19px; }

.about { background: var(--cream); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.about-visual { position: relative; min-height: 620px; }
.about-image-main { position: absolute; left: 0; top: 0; width: 82%; overflow: hidden; border-radius: 32px; box-shadow: var(--shadow); }
.about-image-main img, .about-image-small img { width: 100%; height: 100%; object-fit: cover; }
.about-image-small { position: absolute; right: 0; bottom: 20px; width: 55%; overflow: hidden; border: 10px solid var(--cream); border-radius: 30px; box-shadow: var(--shadow); }
.experience-badge { position: absolute; left: 3%; bottom: 40px; width: 152px; height: 152px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--gold); color: var(--navy-dark); box-shadow: 0 20px 45px rgba(216,151,0,.25); }
.experience-badge strong, .experience-badge span { display: block; }
.experience-badge strong { font-size: 28px; line-height: 1; }
.experience-badge span { font-size: 13px; margin-top: 6px; }
.about-copy > p { color: var(--muted); font-size: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.values-grid div { padding: 20px; border-radius: 18px; background: rgba(255,255,255,.75); border: 1px solid rgba(30,59,120,.09); }
.values-grid span { color: var(--gold-dark); font-weight: 900; font-size: 12px; }
.values-grid h3 { color: var(--navy-dark); margin: 6px 0 4px; }
.values-grid p { color: var(--muted); font-size: 13px; margin: 0; }

.hosting { background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%); overflow: hidden; }
.hosting-heading { align-items: end; }
.hosting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.hosting-card { position: relative; display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 18px 50px rgba(9,22,47,.08); transition: transform .25s ease, box-shadow .25s ease; }
.hosting-card::before { content: ""; height: 5px; background: #7fb58b; }
.hosting-starter::before { background: #ef3c47; }
.hosting-business::before { background: #28b9b5; }
.hosting-card:hover { transform: translateY(-7px); box-shadow: 0 26px 65px rgba(9,22,47,.14); }
.hosting-featured { transform: translateY(-12px); border-color: rgba(216,151,0,.45); box-shadow: 0 25px 70px rgba(9,22,47,.15); }
.hosting-featured:hover { transform: translateY(-18px); }
.hosting-badge { position: absolute; right: 18px; top: 18px; z-index: 2; padding: 7px 11px; border-radius: 999px; background: var(--gold); color: var(--navy-dark); font-size: 10px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.hosting-card-head { padding: 28px 24px 24px; text-align: center; background: linear-gradient(145deg, var(--navy-dark), var(--navy)); color: white; }
.hosting-plan-label { display: block; font-size: 17px; font-weight: 950; letter-spacing: .045em; text-transform: uppercase; }
.hosting-price { display: flex; justify-content: center; align-items: baseline; gap: 8px; margin: 16px 0 0; }
.hosting-price strong { color: white; font-size: clamp(28px, 3vw, 38px); line-height: 1; }
.hosting-price span { color: var(--gold); font-size: 13px; font-weight: 850; }
.hosting-features { flex: 1; display: grid; gap: 0; margin: 0; padding: 18px 26px 22px; list-style: none; }
.hosting-features li { position: relative; padding: 13px 4px 13px 31px; border-bottom: 1px solid #edf0f5; color: var(--ink); font-size: 14px; }
.hosting-features li:last-child { border-bottom: 0; }
.hosting-features li::before { content: "✓"; position: absolute; left: 3px; top: 12px; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: rgba(30,59,120,.09); color: var(--navy); font-size: 11px; font-weight: 950; }
.hosting-features small { color: var(--muted); font-size: 11px; }
.hosting-order { display: flex; justify-content: center; align-items: center; gap: 11px; margin: 0 24px 24px; padding: 14px 18px; border-radius: 12px; background: var(--navy); color: white; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .045em; transition: background .2s ease, transform .2s ease; }
.hosting-order span { color: var(--gold); font-size: 21px; line-height: 0; transition: transform .2s ease; }
.hosting-order:hover { background: var(--navy-dark); transform: translateY(-2px); }
.hosting-order:hover span { transform: translateX(4px); }
.hosting-featured .hosting-order { background: var(--gold); color: var(--navy-dark); }
.hosting-featured .hosting-order span { color: var(--navy-dark); }
.hosting-featured .hosting-order:hover { background: var(--gold-dark); color: white; }
.hosting-note { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 32px; padding: 18px 24px; border: 1px solid rgba(30,59,120,.10); border-radius: 16px; background: rgba(255,255,255,.8); color: var(--muted); text-align: center; }
.hosting-note strong { color: var(--navy-dark); }
.hosting-note a { color: var(--navy); font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }

.cta-banner { background: linear-gradient(125deg, var(--navy) 0%, var(--navy-dark) 100%); color: white; }
.cta-inner { min-height: 280px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { color: white; margin-bottom: 12px; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.68); }
.cta-inner .button { flex: 0 0 auto; }

.quote { background: var(--pale); }
.quote-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.quote-copy > p { color: var(--muted); font-size: 16px; }
.quote-note { margin-top: 30px; padding: 26px; border-radius: 20px; background: var(--navy); color: white; }
.quote-note strong { color: var(--gold); }
.quote-note ul { margin: 14px 0 0; padding-left: 20px; color: rgba(255,255,255,.75); }
.quote-form { padding: 36px; background: white; border-radius: 28px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.quote-form label { display: grid; gap: 8px; color: var(--navy-dark); font-size: 13px; font-weight: 850; margin-bottom: 18px; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; border: 1px solid var(--line); background: #fbfcff; color: var(--ink); border-radius: 12px; padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(30,59,120,.10); }
.quote-form textarea { resize: vertical; min-height: 135px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--navy); font-weight: 700; font-size: 13px; }

.contact { background: white; }
.contact-card { padding: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; border-radius: 30px; background: var(--navy-dark); color: white; position: relative; overflow: hidden; }
.contact-card::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: var(--gold); opacity: .08; right: -140px; top: -140px; }
.contact-intro, .contact-list { position: relative; z-index: 1; }
.contact-intro h2 { color: white; margin-bottom: 14px; }
.contact-intro p { color: rgba(255,255,255,.68); margin: 0; }
.contact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-list a, .contact-list > div { display: grid; gap: 4px; padding: 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.05); transition: background .2s ease, transform .2s ease; }
.contact-list a:hover { background: rgba(255,255,255,.10); transform: translateY(-2px); }
.contact-list span { color: var(--gold); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 900; }
.contact-list strong { font-size: 14px; overflow-wrap: anywhere; }

.site-footer { background: #09162f; color: rgba(255,255,255,.65); padding: 72px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 52px; }
.footer-brand img { width: 190px; height: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 380px; font-size: 14px; }
.footer-grid h2 { color: white; font-size: 15px; margin: 0 0 18px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.10); margin-top: 54px; padding-top: 24px; font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom strong { color: var(--gold); }

.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 800; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #1b9b62; color: white; font-weight: 950; box-shadow: 0 14px 30px rgba(27,155,98,.32); }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 28px; background: rgba(5,14,31,.88); opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { width: min(920px, 100%); margin: 0; background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.lightbox img { width: 100%; max-height: 72vh; object-fit: contain; background: #f5f7fc; }
.lightbox figcaption { padding: 18px 22px; color: var(--navy-dark); font-weight: 900; }
.lightbox-close { position: fixed; top: 18px; right: 24px; border: 0; color: white; background: transparent; font-size: 44px; line-height: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .16s; }
.reveal-delay-small { transition-delay: .08s; }

@media (max-width: 1020px) {
  .site-nav { gap: 18px; }
  .hero-grid, .about-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-art { max-width: 760px; margin-inline: auto; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 0; }
  .strip-grid > div { border-right: 0; padding: 16px 22px; }
  .strip-grid > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.16); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr 1.1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-large { grid-row: span 1; }
  .hosting-grid { grid-template-columns: repeat(2, 1fr); }
  .hosting-card:last-child { grid-column: 1 / -1; width: min(100%, 520px); justify-self: center; }
  .about-visual { min-height: 690px; max-width: 720px; }
  .quote-copy { max-width: 720px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .section-pad { padding: 78px 0; }
  .topbar { display: none; }
  .header-inner { min-height: 76px; }
  .brand { width: 175px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav { position: fixed; left: 20px; right: 20px; top: 86px; display: grid; gap: 4px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 10px 12px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero { padding-top: 55px; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .portfolio-grid { grid-auto-rows: 240px; }
  .contact-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 65px 0; }
  .hero h1 { font-size: 42px; }
  .hero h1 em { white-space: normal; }
  .hero-actions, .form-actions { display: grid; }
  .hero-points { grid-template-columns: 1fr; gap: 10px; }
  .floating-card { display: none; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid > div, .strip-grid > div:nth-child(odd) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
  .strip-grid > div:last-child { border-bottom: 0; }
  .service-card { grid-template-columns: 1fr; }
  .service-image { min-height: 250px; }
  .services-grid { gap: 18px; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .about-visual { min-height: 500px; }
  .about-image-main { width: 90%; }
  .about-image-small { width: 58%; }
  .experience-badge { width: 116px; height: 116px; bottom: 0; }
  .experience-badge strong { font-size: 22px; }
  .values-grid, .hosting-grid, .form-row, .contact-list { grid-template-columns: 1fr; }
  .hosting-card:last-child { grid-column: auto; width: 100%; }
  .hosting-featured, .hosting-featured:hover { transform: none; }
  .cta-inner { min-height: 340px; padding: 55px 0; align-items: flex-start; flex-direction: column; justify-content: center; gap: 28px; }
  .quote-form { padding: 24px 20px; }
  .contact-card { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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