﻿/* ======================================================
   DARK MODE — FIXED (FORCED BY BRAND DECISION)
====================================================== */

:root {
  --bg-main: radial-gradient(circle at 20% 10%, #0a1f3c, #020b19 60%, #01060f);
  --text-main: #e6edf3;
  --card-bg: rgba(255,255,255,0.03);
  --accent: #2b6cff;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  min-height: 100vh;
  color: var(--text-main);
  background: var(--bg-main);
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 1100px;
  padding: 80px 24px 60px;
  text-align: center;
}

/* ===== HERO ===== */
.tagline-small {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-sub {
  opacity: 0.6;
  margin-bottom: 40px;
}

/* ======================================================
   LOGO COMPONENT
====================================================== */

.logo-img {
  width: 120px;
  height: auto;
  margin: 30px auto 10px;
  display: block;
  filter: drop-shadow(0 0 0 rgba(43,108,255,0));
  animation: logoGlow 4s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 0 rgba(43,108,255,0)); }
  50% { filter: drop-shadow(0 0 20px rgba(43,108,255,0.45)); }
  100% { filter: drop-shadow(0 0 0 rgba(43,108,255,0)); }
}

.brand {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 50px;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 60px 0 40px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

/* ===== SERVICES ===== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.service {
  opacity: 0.8;
  transition: 0.3s;
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
}

.service:hover {
  opacity: 1;
  transform: translateY(-6px);
}

.service-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.service-desc {
  font-size: 14px;
  opacity: 0.6;
}

/* ===== WHY ===== */
.why {
  max-width: 520px;
  margin: 0 auto 70px;
}

.why h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.why p {
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ===== BENEFITS ===== */
.benefits {
  margin-top: 40px;
  opacity: 0.85;
}

.benefits p {
  margin-bottom: 12px;
  font-weight: 500;
}

.benefits ul {
  list-style: none;
  margin-top: 16px;
}

.benefits li {
  margin: 8px 0;
  font-size: 14px;
  opacity: 0.7;
}

.benefits li::before {
  content: "✔ ";
  color: var(--accent);
  font-weight: bold;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 100px;
  opacity: 0.5;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 600px) {
  footer {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
}

/* ===== ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
