/* ============================================================
   QUANTIVO GLOBAL HOSTING — MAIN STYLESHEET
   Colors from logo: Teal #1E9FBF / #0E8FB0, Grey #8C9BAB
   ============================================================ */

:root {
  --teal:       #1AA3C4;
  --teal-dark:  #0E7FA0;
  --teal-light: #2EC0E0;
  --grey:       #8C9BAB;
  --grey-light: #B4C0CC;
  --grey-dark:  #5A6874;
  --navy:       #0B1220;
  --navy-mid:   #111D2E;
  --navy-card:  #152030;
  --white:      #FFFFFF;
  --offwhite:   #F3F7FA;
  --text:       #E4EDF5;
  --text-muted: #8A9DB5;
  --border:     rgba(30,163,196,0.18);
  --shadow:     0 8px 40px rgba(0,0,0,0.35);
  --radius:     12px;
  --font-head:  'Exo 2', sans-serif;
  --font-body:  'Source Sans 3', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-light); }

img { max-width: 100%; display: block; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,18,32,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  display: none;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}

.logo-wordmark {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  line-height: 1;
}

.logo-q {
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.65rem;
  line-height: 1;
}

.logo-name {
  color: var(--grey-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1;
}

.logo-tag {
  color: var(--grey);
  font-family: var(--font-head);
  font-size: .52rem;
  letter-spacing: .2em;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-top: .2rem;
  white-space: nowrap;
}

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 0;
  list-style: none;
  justify-content: center;
}

.main-nav a {
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: .5rem 1rem;
  border-radius: 6px;
  transition: all .2s;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-light);
  background: rgba(30,163,196,0.1);
}

.header-cta {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

.btn-login {
  padding: .45rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  color: var(--grey-light);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  transition: all .2s;
}

.btn-login:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: rgba(30,163,196,0.08);
}

.btn-order {
  padding: .45rem 1.2rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 7px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(26,163,196,0.3);
}

.btn-order:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,163,196,0.45);
  color: var(--white);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .42rem .75rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

.lang-switch:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: rgba(30,163,196,0.08);
}

.lang-flag { font-size: .95rem; line-height: 1; }
.lang-label { line-height: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-light);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}

.mobile-menu ul { list-style: none; padding: 1rem 2rem; }
.mobile-menu li { padding: .4rem 0; }
.mobile-menu a {
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
}
.mobile-menu a:hover { color: var(--teal-light); }
.mobile-menu .divider {
  border-top: 1px solid var(--border);
  margin: .5rem 0;
  padding: 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  padding: .75rem 1.8rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 8px;
  transition: all .25s;
  box-shadow: 0 4px 18px rgba(26,163,196,0.32);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,163,196,0.48);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
}

.btn-ghost {
  display: inline-block;
  padding: .75rem 1.8rem;
  border: 2px solid rgba(30,163,196,0.4);
  color: var(--teal-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 8px;
  transition: all .25s;
}

.btn-ghost:hover {
  border-color: var(--teal);
  background: rgba(30,163,196,0.1);
  color: var(--teal-light);
}

.btn-ghost-light {
  display: inline-block;
  padding: .75rem 1.8rem;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 8px;
  transition: all .25s;
}

.btn-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0E4A60 0%, transparent 70%);
  bottom: -100px;
  left: 100px;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,163,196,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,163,196,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  flex: 1;
  animation: fadeUp .8s ease both;
}

.hero-badge {
  display: inline-block;
  padding: .35rem 1rem;
  background: rgba(30,163,196,0.15);
  border: 1px solid rgba(30,163,196,0.3);
  border-radius: 100px;
  color: var(--teal-light);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .05em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.accent { color: var(--teal-light); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal-light);
}

.stat span {
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeRight .9s ease .2s both;
}

.server-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  backdrop-filter: blur(8px);
}

.server-led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4CAF50;
  box-shadow: 0 0 6px #4CAF50;
  margin-bottom: .6rem;
  animation: pulse 2s ease infinite;
}

.server-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: .7rem;
}

.s-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
}

.s-status {
  font-size: .78rem;
  color: #4CAF50;
  font-weight: 600;
}

.server-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 4px;
}

/* ---- SECTIONS ---- */
.section { padding: 6rem 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ---- CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  opacity: 0;
  transition: opacity .3s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,163,196,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .75rem;
}

.card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.card-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--teal);
}

.card-link:hover { color: var(--teal-light); }

/* ---- MISSION TEASER ---- */
.mission-teaser {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission-flex {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.mission-text { flex: 1; }
.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.mission-text h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.mission-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: .8rem;
}

.mission-visual {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  position: relative;
}

.mission-bubble {
  position: absolute;
  padding: .6rem 1.2rem;
  background: rgba(30,163,196,0.12);
  border: 1px solid rgba(30,163,196,0.3);
  border-radius: 100px;
  color: var(--teal-light);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.b1 { top: 10%;  left: 5%;   animation-delay: 0s; }
.b2 { top: 30%;  right: 0%;  animation-delay: .8s; }
.b3 { bottom: 30%; left: 15%; animation-delay: 1.6s; }
.b4 { bottom: 10%; right: 5%; animation-delay: 2.4s; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #0B3D50 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 5rem 2rem 3rem;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,163,196,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,163,196,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: .75rem;
  position: relative;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* ---- SERVICES PAGE ---- */
.services-full { padding: 5rem 2rem; }

.services-full .cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plans-section {
  padding: 5rem 2rem;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.plan-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all .3s;
  position: relative;
}

.plan-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 30px rgba(26,163,196,0.2);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .9rem;
  border-radius: 100px;
  font-family: var(--font-head);
  letter-spacing: .06em;
}

.plan-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .5rem;
}

.plan-price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-light);
}

.plan-price sup { font-size: 1.2rem; vertical-align: top; margin-top: .5rem; display: inline-block; }
.plan-price sub { font-size: .9rem; color: var(--text-muted); }

.plan-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.plan-features li {
  padding: .4rem 0;
  color: var(--text-muted);
  font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-features li::before {
  content: '✓ ';
  color: var(--teal);
  font-weight: 700;
}

/* ---- ABOUT PAGE ---- */
.about-section { padding: 5rem 2rem; }

.about-flex {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.about-text { flex: 1; }

.about-text h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-sidebar {
  width: 320px;
  flex-shrink: 0;
}

.info-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.info-box h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.info-box p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: .5rem;
}

.info-box a {
  color: var(--teal);
  font-size: .92rem;
}

/* ---- MISSION PAGE ---- */
.mission-section { padding: 5rem 2rem; }

.mission-section h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.mission-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 760px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin: 2.5rem 0;
}

.pillar {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.pillar-icon { font-size: 2rem; margin-bottom: .75rem; }

.pillar h3 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--teal-light);
  margin-bottom: .5rem;
}

.pillar p {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: 5rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.contact-details { display: flex; flex-direction: column; gap: .9rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(30,163,196,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-text span {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .15rem;
}

.contact-item-text a,
.contact-item-text p {
  color: var(--text);
  font-size: .95rem;
  margin: 0;
}

/* ---- CONTACT FORM ---- */
.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-row { margin-bottom: 1.2rem; }

.form-row label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .5rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,163,196,0.12);
}

.form-row textarea { min-height: 120px; resize: vertical; }

.form-success {
  display: none;
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 8px;
  padding: 1rem;
  color: #81C784;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  margin-top: 1rem;
}

/* ---- LEGAL PAGES ---- */
.legal-section { padding: 5rem 2rem; }

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin: 2.5rem 0 .8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type { border-top: none; margin-top: 0; }

.legal-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-date {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem 1.2rem;
  display: inline-block;
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* ---- LANG SWITCH ---- */
.lang-banner {
  background: rgba(30,163,196,0.08);
  border-bottom: 1px solid var(--border);
  padding: .5rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.lang-banner a {
  font-size: .8rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-muted);
}

.lang-banner a.active,
.lang-banner a:hover { color: var(--teal-light); }

/* ---- FOOTER ---- */
.site-footer {
  background: #070E1A;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}

.logo-q-sm { color: var(--teal); }

.footer-tag {
  display: block;
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--grey);
  margin-top: .15rem;
  text-transform: uppercase;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: .5rem;
}

.footer-addr {
  font-size: .82rem !important;
  margin-top: .75rem;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--grey-light);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--teal-light); }

.footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-contact a {
  color: var(--teal);
  font-size: .9rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: .85rem;
}

.footer-lang a { color: var(--teal); font-size: .85rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .5; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding-top: 4rem; min-height: auto; }
  .hero-visual { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .server-card { flex: 1; min-width: 200px; }
  .mission-flex { flex-direction: column; gap: 2.5rem; }
  .mission-visual { width: 100%; height: 160px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .mobile-menu.open { display: block; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .hero-stats { gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-flex { flex-direction: column; }
  .about-sidebar { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
