@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --red: #E8001C;
  --red-dark: #C4001A;
  --red-soft: rgba(232,0,28,0.08);
  --black: #0a0a0a;
  --white: #ffffff;
  --gray1: #f5f4f2;
  --gray2: #e6e4e0;
  --gray3: #a0a09a;
  --gray4: #555;
  --font-d: 'Cabinet Grotesk', 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--white); color: var(--black); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* CURSOR */
.cursor { width: 8px; height: 8px; background: var(--red); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(232,0,28,0.4); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: left 0.06s, top 0.06s, width 0.2s, height 0.2s; }
@media (hover: none) { .cursor, .cursor-ring { display: none; } }

/* ===== NAV — BLANCO FIJO ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 96px;
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

/* Nav sobre hero negro (index.html) */
#nav.on-hero {
  background: transparent;
  border-bottom-color: transparent;
}
#nav.on-hero.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom-color: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
}
#nav.on-hero .nav-menu a { color: rgba(255,255,255,0.6); }
#nav.on-hero .nav-menu a:hover,
#nav.on-hero .nav-menu a.active { color: #fff; }
#nav.on-hero .nav-hamburger span { background: #fff; }

/* LOGO — un solo img, sin hover */
.nav-logo { display: flex; align-items: center; }
#navLogo {
  height: 80px;
  display: block;
  transition: none;
}
#navLogo:hover { transform: none !important; }

/* NAV LINKS */
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a { font-size: 13px; color: var(--gray4); font-weight: 500; position: relative; transition: color 0.2s; }
.nav-menu a:hover { color: var(--black); }
.nav-menu a.active { color: var(--black); font-weight: 600; }
.nav-menu a.active::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--red); border-radius:2px; }
.nav-cta { background: var(--red); color: #fff; padding: 10px 22px; border-radius: 6px; font-size: 13px; font-weight: 600; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--red-dark); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--black); display: block; transition: background 0.3s; }
#nav.on-hero .nav-cta { background: var(--red); }

@keyframes logoIn { from{opacity:0;transform:translateX(-16px)} to{opacity:1;transform:translateX(0)} }
#navLogo { animation: logoIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.05s both; }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--black); z-index: 400; flex-direction: column; align-items: center; justify-content: center; gap: 26px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-d); font-size: 32px; font-weight: 800; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.mobile-nav a:hover { color: #fff; }
.mobile-wa { font-size: 16px !important; padding: 14px 36px; border-radius: 8px; color: #fff !important; background: var(--red); }
.mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }

/* ===== HERO — NEGRO PURO + EFECTO VISUAL ===== */
#hero {
  min-height: 100vh; background: var(--black);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 96px;
}
/* Grid decorativo de fondo */
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(232,0,28,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,28,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 20%, transparent 80%);
}
/* Glow rojo difuso */
.hero-glow {
  position: absolute; z-index: 0;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,28,0.15) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; z-index: 0;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,28,0.08) 0%, transparent 70%);
  left: 30%; bottom: 10%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 80px 52px 80px; max-width: 820px; }
.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(56px, 8.5vw, 118px);
  font-weight: 800; line-height: 0.88; letter-spacing: -4px; margin-bottom: 30px;
}
.line-white   { color: #fff; display: block; animation: hFade 0.7s 0.15s both; }
.line-red     { color: var(--red); display: block; animation: hFade 0.7s 0.28s both; }
.line-outline { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.12); display: block; animation: hFade 0.7s 0.42s both; }
@keyframes hFade { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }

.hero-sub { font-size: 18px; color: rgba(255,255,255,0.48); line-height: 1.78; max-width: 520px; margin-bottom: 46px; animation: hFade 0.7s 0.55s both; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: hFade 0.7s 0.66s both; }
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; animation: hFade 0.7s 0.78s both; }
.hero-tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.45); font-size: 11px; padding: 6px 14px; border-radius: 40px; }
.hero-tag.red { background: rgba(232,0,28,0.12); border-color: rgba(232,0,28,0.35); color: rgba(255,255,255,0.7); }

/* Right side floating numbers */
.hero-stats {
  position: absolute; right: 52px; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 32px;
  animation: hFade 0.7s 0.9s both;
}
.hero-stat-item { text-align: right; border-right: 2px solid var(--red); padding-right: 16px; }
.hero-stat-n { font-family: var(--font-d); font-size: 40px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat-l { font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

.hero-scroll { position: absolute; bottom: 32px; left: 52px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll span { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.18); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--red), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(0);transform-origin:bottom} }

/* INNER PAGE HERO */
.page-hero { background: var(--black); padding: 168px 52px 80px; min-height: 44vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.14; }
.page-hero-over { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.96) 55%, rgba(10,10,10,0.5)); }
.page-hero-content { position: relative; z-index: 1; max-width: 1200px; width: 100%; margin: 0 auto; }
.page-hero .tag { color: var(--red); }
.page-hero h1 { font-family: var(--font-d); font-size: clamp(40px,5.5vw,76px); font-weight: 800; color: #fff; letter-spacing: -2.5px; line-height: 1.0; margin-top: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.42); margin-top: 14px; max-width: 560px; line-height: 1.72; }

/* TICKER */
.ticker { background: var(--red); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; align-items: center; animation: tickAnim 30s linear infinite; }
.ticker-track span { font-family: var(--font-d); font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 2.5px; text-transform: uppercase; padding: 0 26px; }
.ticker-track b { color: rgba(255,255,255,0.35); font-weight: 400; font-size: 16px; }
@keyframes tickAnim { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* BUTTONS */
.btn-red { display: inline-block; background: var(--red); color: #fff; padding: 15px 32px; border-radius: 7px; font-size: 15px; font-weight: 600; border: none; cursor: pointer; font-family: var(--font-b); transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,0,28,0.3); }
.btn-ghost { display: inline-block; background: transparent; color: #fff; padding: 15px 32px; border-radius: 7px; font-size: 15px; border: 1.5px solid rgba(255,255,255,0.2); cursor: pointer; font-family: var(--font-b); transition: border-color 0.2s, background 0.2s; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.btn-ghost-dark { display: inline-block; background: transparent; color: var(--black); padding: 15px 32px; border-radius: 7px; font-size: 15px; border: 1.5px solid var(--gray2); cursor: pointer; font-family: var(--font-b); transition: all 0.2s; }
.btn-ghost-dark:hover { background: var(--black); color: #fff; border-color: var(--black); }

/* LAYOUT */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 52px; }
.section-pad { padding: 110px 0; }
.bg-white { background: var(--white); }
.bg-black { background: var(--black); }
.bg-gray  { background: var(--gray1); }
.tag { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 12px; font-weight: 700; }
.sec-title { font-family: var(--font-d); font-size: clamp(34px,4.2vw,60px); font-weight: 800; letter-spacing: -2.5px; line-height: 1.0; color: var(--black); }
.sec-title.white { color: #fff; }
.sec-sub { font-size: 16px; color: var(--gray4); line-height: 1.82; max-width: 560px; margin-top: 14px; }
.sec-sub.white { color: rgba(255,255,255,0.44); }
.sec-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; }
.link-more { font-size: 14px; color: var(--red); font-weight: 600; transition: opacity 0.2s; white-space: nowrap; }
.link-more:hover { opacity: 0.7; }

/* SERVICE CARDS */
.srv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--gray2); border-radius: 16px; overflow: hidden; }
.srv-card { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #111; cursor: pointer; display: block; }
.srv-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s; }
.srv-card:hover img { transform: scale(1.05); opacity: 0.55; }
/* Overlay: suave, con toque rojo */
.srv-over {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,3,3,0.90) 0%,
    rgba(232,0,28,0.06) 55%,
    transparent 100%
  );
}
.srv-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 20px 24px; }
.srv-num { font-family: var(--font-d); font-size: 10px; letter-spacing: 3px; color: var(--red); margin-bottom: 6px; font-weight: 700; }
.srv-name { font-family: var(--font-d); font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.srv-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; max-height: 0; overflow: hidden; transition: max-height 0.4s, opacity 0.3s; opacity: 0; }
.srv-card:hover .srv-desc { max-height: 60px; opacity: 1; }
.srv-arrow { font-size: 12px; color: var(--red); margin-top: 8px; opacity: 0; transform: translateY(5px); transition: opacity 0.3s, transform 0.3s; display: block; font-weight: 600; }
.srv-card:hover .srv-arrow { opacity: 1; transform: translateY(0); }

/* PORTFOLIO GRID */
.port-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.port-item { position: relative; overflow: hidden; border-radius: 12px; background: #111; aspect-ratio: 4/3; cursor: pointer; transition: transform 0.3s; }
.port-item.tall { grid-row: span 2; aspect-ratio: unset; }
.port-item:hover { transform: translateY(-4px); }
.port-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.72; transition: opacity 0.4s, transform 0.5s; }
.port-item:hover img { opacity: 0.5; transform: scale(1.04); }
.port-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.port-cat   { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; font-weight: 700; }
.port-title { font-family: var(--font-d); font-size: 17px; font-weight: 800; color: #fff; }
.port-sub   { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* CTA BAND */
.cta-band { background: var(--black); padding: 72px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.cta-band-title { font-family: var(--font-d); font-size: clamp(28px,3.5vw,48px); font-weight: 800; color: #fff; letter-spacing: -2px; }
.cta-band-sub { font-size: 16px; color: rgba(255,255,255,0.38); margin-top: 6px; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* SERVICE PAGE BLOCKS */
.srv-page-block { padding: 80px 0; border-bottom: 1px solid var(--gray2); }
.srv-page-block:last-child { border-bottom: none; }
.srv-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.srv-block-grid.reverse { direction: rtl; }
.srv-block-grid.reverse > * { direction: ltr; }
.srv-block-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.srv-block-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.srv-block-img:hover img { transform: scale(1.03); }
.srv-block-content h3 { font-family: var(--font-d); font-size: clamp(26px,3vw,42px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 14px; color: var(--black); line-height: 1.05; }
.srv-block-content p { font-size: 15px; color: var(--gray4); line-height: 1.85; margin-bottom: 28px; }
.srv-sublist { display: flex; flex-direction: column; gap: 12px; }
.srv-subitem { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--black); line-height: 1.5; }
.srv-subitem::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--red); flex-shrink:0; margin-top:6px; }

/* NOSOTROS */
.nos-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.nos-img { position: relative; overflow: hidden; }
.nos-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.nos-img-over { position: absolute; inset: 0; background: linear-gradient(to right, transparent 50%, var(--black) 100%); }
.nos-stats { position: absolute; bottom: 0; left: 0; right: 0; display: grid; grid-template-columns: repeat(3,1fr); background: rgba(10,10,10,0.9); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,0.07); }
.nos-stat { padding: 22px 18px; border-right: 1px solid rgba(255,255,255,0.07); text-align: center; }
.nos-stat:last-child { border-right: none; }
.nos-stat-n { font-family: var(--font-d); font-size: 32px; font-weight: 800; color: var(--red); }
.nos-stat-l { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 4px; }
.nos-content { background: var(--black); padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; }
.nos-content h2 { font-family: var(--font-d); font-size: clamp(28px,3.5vw,46px); font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1.05; margin-bottom: 20px; }
.nos-content p { font-size: 15px; color: rgba(255,255,255,0.44); line-height: 1.85; margin-bottom: 14px; }
.nos-vals { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.nos-val { display: flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 16px 18px; transition: border-color 0.2s; }
.nos-val:hover { border-color: rgba(232,0,28,0.3); }
.nos-val-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 5px; }
.nos-val-title { font-family: var(--font-d); font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.nos-val-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* TESTIMONIOS */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.test-card { background: var(--gray1); border: 1px solid var(--gray2); border-radius: 16px; padding: 30px 26px; transition: transform 0.3s, border-color 0.3s; }
.test-card:hover { transform: translateY(-4px); border-color: rgba(232,0,28,0.25); }
.test-card.feat { background: var(--black); border-color: var(--red); }
.test-stars span { color: var(--red); font-size: 13px; }
.test-q-icon { font-family: Georgia,serif; font-size: 56px; color: var(--red); line-height: 0.6; margin: 14px 0; opacity: 0.35; }
.test-card.feat .test-q-icon { opacity: 0.55; }
.test-quote { font-size: 14px; line-height: 1.78; color: var(--gray4); font-style: italic; margin-bottom: 24px; }
.test-card.feat .test-quote { color: rgba(255,255,255,0.65); }
.test-line { width: 28px; height: 2px; background: var(--red); margin-bottom: 16px; border-radius: 2px; }
.test-author { font-family: var(--font-d); font-size: 14px; font-weight: 800; color: var(--black); }
.test-card.feat .test-author { color: #fff; }
.test-role { font-size: 12px; color: var(--gray3); margin-top: 3px; }

/* HOSTING */
.hosting-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.plan-card { background: #fff; border: 1px solid var(--gray2); border-radius: 16px; padding: 36px 28px; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.plan-card.featured { background: var(--black); border-color: var(--red); }
.plan-badge { position: absolute; top: 22px; right: 22px; background: var(--red); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 40px; }
.plan-name { font-family: var(--font-d); font-size: 24px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
.plan-card.featured .plan-name { color: #fff; }
.plan-tagline { font-size: 13px; color: var(--gray3); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray2); line-height: 1.6; }
.plan-card.featured .plan-tagline { color: rgba(255,255,255,0.4); border-bottom-color: rgba(255,255,255,0.1); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.plan-feats li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--black); }
.plan-card.featured .plan-feats li { color: rgba(255,255,255,0.7); }
.plan-check { width: 16px; height: 16px; border-radius: 50%; background: rgba(232,0,28,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plan-check::after { content:'✓'; font-size:9px; color:var(--red); font-weight:700; }
.plan-btn { width: 100%; padding: 13px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-b); border: 1.5px solid var(--gray2); background: #fff; color: var(--black); transition: all 0.2s; }
.plan-btn:hover { background: var(--black); color: #fff; border-color: var(--black); }
.plan-card.featured .plan-btn { background: var(--red); border-color: var(--red); color: #fff; }
.plan-card.featured .plan-btn:hover { background: var(--red-dark); }

/* CONTACTO */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; margin-top: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(232,0,28,0.07); border: 1px solid rgba(232,0,28,0.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray3); margin-bottom: 4px; font-weight: 600; }
.contact-val { font-size: 15px; color: var(--black); font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--gray4); letter-spacing: 0.5px; }
.form-group input,.form-group select,.form-group textarea { padding: 13px 16px; border: 1.5px solid var(--gray2); border-radius: 8px; font-size: 14px; font-family: var(--font-b); color: var(--black); background: #fff; transition: border-color 0.2s; outline: none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* FOOTER */
.site-footer { background: #050505; border-top: 1px solid rgba(255,255,255,0.05); padding: 60px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.ft-logo { font-family: var(--font-d); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 16px; display: block; }
.ft-logo span { color: var(--red); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.78; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 32px; height: 32px; border-radius: 7px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3); transition: all 0.2s; text-transform: uppercase; }
.footer-social a:hover { border-color: var(--red); color: var(--red); background: rgba(232,0,28,0.08); }
.footer-col-title { font-family: var(--font-d); font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.32); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.2); }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-stats { display: none; }
}
@media (max-width: 1024px) {
  .srv-block-grid { grid-template-columns: 1fr; gap: 36px; }
  .srv-block-grid.reverse { direction: ltr; }
  .nos-split { grid-template-columns: 1fr; }
  .nos-img { height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hosting-plans { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #nav { padding: 0 20px; height: 72px; }
  #navLogo { height: 56px; }
  .nav-menu,.nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 60px 20px 80px; }
  .hero-h1 { letter-spacing: -2.5px; }
  .wrap { padding: 0 20px; }
  .page-hero { padding: 130px 20px 60px; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .port-grid { grid-template-columns: 1fr 1fr; }
  .port-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .test-grid { grid-template-columns: 1fr; }
  .hosting-plans { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
  .nos-content { padding: 48px 24px; }
  .section-pad { padding: 72px 0; }
}
@media (max-width: 480px) {
  .srv-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr; }
}
