/* ===== Variables ===== */
:root {
  --bg-dark: #08080c;
  --bg-card: #111118;
  --bg-card-hover: #181822;
  --bg-elevated: #1c1c28;
  --border: rgba(212, 168, 67, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7820;
  --text: #f0eeeb;
  --text-muted: #8a8794;
  --whatsapp: #22c55e;
  --accent-cyan: #38bdf8;
  --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e8c547 45%, #9a7820 100%);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);
  --glow-gold: 0 0 48px rgba(201, 162, 39, 0.15);
  --radius: 14px;
  --radius-lg: 18px;
  --header-h: 76px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Orbitron', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
  animation: loaderFailsafe 0s ease 4s forwards;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loaderFailsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.loader-inner { text-align: center; }
.loader-logo {
  margin-bottom: 24px;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(212, 168, 67, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 12px;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient-gold);
  animation: loadBar 1.5s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }
.loader-inner p { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-gold);
  color: #08080c;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.4);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 24px;
}
.btn-outline:hover { background: rgba(212, 168, 67, 0.1); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 8px;
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8, 8, 12, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(8, 8, 12, 0.96);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.loader-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text-brand strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}
.logo-text-brand small {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.logo-footer .logo-text-brand strong { font-size: 1.1rem; }

.nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
}
.nav-list > li {
  flex-shrink: 0;
}
.nav-link {
  display: inline-block;
  padding: 8px 11px;
  font-size: 0.84rem;
  color: var(--text-muted);
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.3s, background 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: rgba(212, 168, 67, 0.08);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  flex-shrink: 0;
}
.lang-switch button {
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.25s, background 0.25s;
}
.lang-switch button:hover {
  color: var(--text);
}
.lang-switch button.active {
  color: #08080c;
  background: var(--gradient-gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  z-index: 999;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--text-muted);
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}
.mobile-menu a:hover { background: rgba(212, 168, 67, 0.08); color: var(--gold-light); }
.mobile-wa { color: var(--whatsapp) !important; font-weight: 600; }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 0;
  overflow: hidden;
}
.hero-slider { height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  background-image:
    linear-gradient(90deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.65) 55%, rgba(10, 10, 15, 0.4) 100%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.85) 100%),
    url('../images/hero/slider.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1);
}
.hero-slide.active .hero-bg-img {
  animation: kenburn 8s ease-out forwards;
}
@keyframes kenburn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/decorative/banner-top.png') no-repeat center top / 100% auto;
  opacity: 0.15;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: var(--header-h);
  animation: fadeUp 0.8s ease;
}
.hero-slide:not(.active) .hero-content { animation: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: rgba(212, 168, 67, 0.05);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.3);
  transition: all 0.3s;
  padding: 0;
}
.dot.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.6);
  transform: scale(1.2);
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.hero-arrow:hover { background: rgba(212, 168, 67, 0.2); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* ===== Steps ===== */
.steps {
  padding: 100px 0;
  background:
    url('../images/decorative/service-bg.png') no-repeat center bottom / contain,
    linear-gradient(180deg, var(--bg-dark) 0%, #0e0e16 100%);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(17, 17, 24, 0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s, box-shadow 0.35s;
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.22);
  box-shadow: var(--shadow-card), var(--glow-gold);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.step-card p, .step-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-card ul { margin-top: 8px; }
.step-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.step-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.step-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s;
}
.step-link:hover { color: var(--gold-light); }

/* ===== Marquee ===== */
.trust-badges, .stats {
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(212, 168, 67, 0.03);
}
.marquee { overflow: hidden; }
.marquee-content {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-reverse .marquee-content { animation-direction: reverse; }
.marquee-content span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Services ===== */
.services {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 18px auto 0;
  border-radius: 2px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(17, 17, 24, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 22px 28px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s, box-shadow 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.22);
  box-shadow: var(--shadow-card), var(--glow-gold);
}
.service-card:hover::before,
.service-card:hover::after { opacity: 1; }

.icon-wrap {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.14) 0%, rgba(201, 162, 39, 0.04) 100%);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.service-card:hover .icon-wrap {
  transform: scale(1.06);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.12);
}
.icon-wrap.icon-wrap-cyan {
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.14) 0%, rgba(56, 189, 248, 0.04) 100%);
  border-color: rgba(56, 189, 248, 0.2);
}
.service-card:hover .icon-wrap.icon-wrap-cyan {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.12);
}
.pro-icon {
  width: 24px;
  height: 24px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pro-icon-cyan { stroke: var(--accent-cyan); }

.service-card h4,
.service-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 220px;
}
.badge-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 5px 12px;
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1.2px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.badge-online::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.service-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.3s;
}
.service-link:hover { color: var(--gold-light); }

/* ===== Why Us ===== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0e0e16 50%, var(--bg-dark) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(17, 17, 24, 0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.why-card:hover {
  border-color: rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.why-icon { display: none; }
.why-card h4 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== ServerFiles ===== */
.serverfiles {
  padding: 100px 0;
}
.serverfiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.sf-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}
.sf-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: var(--shadow);
}
.sf-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
}
.sf-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.sf-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sf-card ul { margin-bottom: 24px; }
.sf-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0 6px 20px;
  position: relative;
}
.sf-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.recommendation {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.recommendation-toggle {
  width: 100%;
  padding: 20px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.recommendation-toggle:hover { background: rgba(212, 168, 67, 0.05); }
.recommendation-toggle span { transition: transform 0.3s; }
.recommendation.open .recommendation-toggle span { transform: rotate(180deg); }
.recommendation-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.recommendation.open .recommendation-content { max-height: 300px; }
.recommendation-content ul {
  padding: 0 28px 24px;
}
.recommendation-content li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.recommendation-content strong { color: var(--gold); }

/* ===== ServerFiles Catalog Page ===== */
.page-main { padding-top: var(--header-h); }
.page-hero {
  padding: 88px 0 56px;
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 12, 0.9) 0%, rgba(8, 8, 12, 0.97) 100%),
    url('../images/hero/slider.jpg');
  background-size: cover;
  background-position: center 30%;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url('../images/decorative/banner-top.png') no-repeat center bottom / 100% auto;
  opacity: 0.2;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.sf-catalog { padding: 80px 0 40px; }
.sf-catalog-alt {
  padding-top: 40px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0e0e16 100%);
}
.sf-category-header {
  text-align: center;
  margin-bottom: 48px;
}
.sf-category-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--gold-light);
  margin-bottom: 12px;
}
.sf-category-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sf-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sf-preview-grid { margin-bottom: 40px; }

.sf-product {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(17, 17, 24, 0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.sf-product:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.22);
  box-shadow: var(--shadow-card), var(--glow-gold);
}

.sf-product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #0e0e16;
}
.sf-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}
.sf-product:hover .sf-product-img img {
  transform: scale(1.06);
}
.sf-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 15, 0.5) 100%);
  pointer-events: none;
}

.sf-product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sf-product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.sf-product-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}
.sf-product-body > p,
.sf-product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.sf-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}
.sf-features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 6px;
}
.sf-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}
.sf-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.sf-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}
.btn-disabled {
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: not-allowed;
  white-space: nowrap;
}
.sf-see-all { text-align: center; }

/* ===== Contact ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0e0e16 100%);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 12px 0 20px;
}
.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.7;
}
.contact-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.contact-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-card {
  position: relative;
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(17, 17, 24, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow-card);
}
.contact-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #08080c;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 32px rgba(201, 162, 39, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.08);
}
.contact-card h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin-bottom: 8px;
}
.contact-card > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.contact-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #25d366;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
  background: #08080d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li,
.footer-col ol li {
  margin-bottom: 10px;
}
.footer-col a,
.footer-col li {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col ol { counter-reset: item; }
.footer-col ol li {
  counter-increment: item;
  padding-left: 24px;
  position: relative;
}
.footer-col ol li::before {
  content: counter(item) '.';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: rgba(18, 18, 26, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--gold-light);
}
.cookie-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 600px;
}
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== Why Us Images ===== */
.why-grid-images { grid-template-columns: repeat(5, 1fr); }
.why-card-img { padding: 0; overflow: hidden; }
.why-card-image {
  height: 160px;
  overflow: hidden;
}
.why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.why-card-img:hover .why-card-image img { transform: scale(1.08); }
.why-card-img h4,
.why-card-img p { padding: 0 24px; }
.why-card-img h4 { padding-top: 20px; margin-bottom: 12px; }
.why-card-img p { padding-bottom: 24px; }

/* ===== Projects ===== */
.projects {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0e0e16 100%);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(17, 17, 24, 0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.22);
  box-shadow: var(--shadow-card), var(--glow-gold);
}
.project-preview {
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.project-bg-1 { background: linear-gradient(135deg, #1a1520 0%, #3d2a4d 100%); }
.project-bg-2 { background: linear-gradient(135deg, #101a20 0%, #1f4d5c 100%); }
.project-bg-3 { background: linear-gradient(135deg, #201a10 0%, #4d3a1f 100%); }
.project-favicon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,0,0,0.3);
  padding: 6px;
}
.project-domain {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.project-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-body h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 10px;
}
.project-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.project-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.3s;
}
.project-card:hover .project-link { color: var(--gold-light); }

.contact-phone {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.contact-phone a {
  color: var(--gold-light);
  font-weight: 600;
  transition: color 0.3s;
}
.contact-phone a:hover { color: var(--gold); }
.why-card .icon-wrap { margin: 0 0 20px; }
.contact-phone-sm {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px !important;
}

.contact-phone-sm {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px !important;
}

/* ===== Security Page ===== */
.security-page .page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.security-section { padding: 80px 0 40px; }
.security-section-alt {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0e0e16 100%);
  padding-bottom: 80px;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.security-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(17, 17, 24, 0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.security-card:hover {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.1);
  transform: translateY(-5px);
}
.security-card-header {
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.security-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.14) 0%, rgba(56, 189, 248, 0.04) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 14px;
  font-size: 0;
}
.security-web-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.12) 0%, rgba(56, 189, 248, 0.03) 100%);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 12px;
  font-size: 0;
}
.security-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.security-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-cyan);
}
.security-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-bottom: 16px;
}
.security-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.security-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.security-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d2ff;
  font-weight: 700;
}
.security-info-box {
  background: rgba(0, 210, 255, 0.08);
  border-left: 3px solid #00d2ff;
  padding: 14px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.security-bundle-calc .bundle-item {
  position: relative;
  padding-left: 22px;
}
.security-bundle-calc .bundle-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.85rem;
}
.security-bundle-calc .bundle-total {
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
}

.security-web-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.security-web-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(17, 17, 24, 0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.security-web-card:hover {
  border-color: rgba(201, 162, 39, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.security-web-card h4 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.security-web-card ul { list-style: none; }
.security-web-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.5;
}
.security-web-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.security-bundles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.security-bundle {
  background: linear-gradient(145deg, #1a1a2e, var(--bg-card));
  border: 1px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  position: relative;
}
.security-bundle-alt {
  border-color: rgba(255, 71, 87, 0.3);
  background: linear-gradient(145deg, #1e1520, var(--bg-card));
}
.security-bundle-badge {
  display: inline-block;
  background: #00d2ff;
  color: #0a0a0f;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.security-badge-red { background: #ff4757; color: #fff; }
.security-bundle h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}
.security-bundle > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.security-bundle-calc {
  text-align: left;
  background: rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.security-bundle-calc p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.security-discount { color: #2ecc71 !important; font-weight: 600; }
.security-final-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 20px;
}

/* ===== Servicii Page ===== */
.servicii-catalog { padding: 80px 0; }
.servicii-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.serviciu-card {
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(17, 17, 24, 0.5) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.serviciu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.22);
  box-shadow: var(--shadow-card), var(--glow-gold);
}
.serviciu-img {
  height: 200px;
  overflow: hidden;
  background: #0e0e16;
}
.serviciu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.serviciu-img-brand {
  background: #0e0e16;
  display: flex;
  align-items: center;
  justify-content: center;
}
.serviciu-img-brand img {
  object-fit: contain;
  padding: 24px;
  max-height: 100%;
}
.serviciu-card:hover .serviciu-img img { transform: scale(1.05); }
.serviciu-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.serviciu-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.serviciu-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* ===== Proiect de la Zero ===== */
.project-page {
  padding: 60px 0 100px;
  background: linear-gradient(180deg, #0e0e16 0%, var(--bg-dark) 100%);
}
.project-container { max-width: 900px; }
.project-header {
  text-align: center;
  margin-bottom: 48px;
}
.project-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--gold-light);
  margin-bottom: 16px;
}
.project-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.helper-box {
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 40px;
  overflow: hidden;
}
.helper-toggle {
  width: 100%;
  padding: 20px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.helper-toggle span { transition: transform 0.3s; }
.helper-box.open .helper-toggle span { transform: rotate(180deg); }
.helper-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.helper-box.open .helper-content { max-height: 400px; }
.helper-content ul { padding: 0 28px 24px; }
.helper-content li {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.helper-content strong { color: var(--gold); display: block; margin-bottom: 4px; }
.helper-content a { color: var(--gold-light); }

.popular-choice {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 48px;
}
.popular-choice-img {
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
}
.popular-choice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-choice-body h3 {
  color: #2ecc71;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.popular-choice-body p { color: var(--text-muted); margin-bottom: 8px; }
.popular-name {
  font-family: var(--font-display);
  font-size: 1.2rem !important;
  color: var(--text) !important;
  font-weight: 700;
  margin: 16px 0 !important;
}

.project-steps-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 40px;
}
.project-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.project-step:hover {
  border-color: rgba(212, 168, 67, 0.35);
  transform: translateX(4px);
}
.project-step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.project-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-step-header h3 {
  font-size: 1.3rem;
  color: var(--gold-light);
}
.project-step p,
.project-step li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.project-step ul {
  margin: 12px 0;
  padding-left: 20px;
}
.project-step li { margin-bottom: 8px; list-style: disc; }
.step-highlight {
  background: rgba(212, 168, 67, 0.08);
  border-left: 3px solid var(--gold);
  padding: 16px;
  margin: 16px 0;
  border-radius: 6px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.project-step .btn { margin-top: 16px; }

.final-cta {
  background: var(--gradient-gold);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  margin-top: 48px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #0a0a0f;
  margin-bottom: 12px;
}
.final-cta > p {
  color: rgba(10, 10, 15, 0.8);
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.final-cta-info {
  margin-top: 24px;
  color: rgba(10, 10, 15, 0.75);
  font-size: 0.95rem;
}
.final-cta-info p { margin-bottom: 4px; }

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1280px) {
  .header-inner { gap: 12px; }
  .nav-link { padding: 8px 8px; font-size: 0.8rem; }
  .header .btn-whatsapp { padding: 8px 14px; font-size: 0.8rem; }
}

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .serverfiles-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .sf-products-grid { grid-template-columns: repeat(2, 1fr); }
  .servicii-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-images { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr; }
  .security-web-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav, .header .btn-whatsapp { display: none; }
  .lang-switch { margin-left: auto; }
  .menu-toggle { display: flex; }
  .logo-text-brand strong { font-size: 0.85rem; }
  .logo-text-brand small { font-size: 0.6rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-arrow { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .sf-products-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .servicii-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .why-grid-images { grid-template-columns: 1fr; }
  .popular-choice { grid-template-columns: 1fr; }
  .project-step-header { flex-direction: column; text-align: center; }
  .projects-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .security-web-grid { grid-template-columns: 1fr; }
  .security-bundles { grid-template-columns: 1fr; }
}
