@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
  overflow-x: hidden;
}

/* Background Orbs */
.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: float 12s infinite ease-in-out;
  z-index: 0;
}

.orb-orange {
  background: #ff7a00;
  top: -120px;
  left: -120px;
}

.orb-red {
  background: #ff2a00;
  bottom: -120px;
  right: -120px;
  animation-delay: 4s;
}

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

/* Layout */
.page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* LEFT */
.hero-left {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp 1s ease forwards;
}

.logo {
  width: 140px;
  margin-bottom: 40px;
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 25px;
}

h1 span {
  background: linear-gradient(90deg, #ff7a00, #ff2a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 520px;
  margin-bottom: 35px;
}

.cta {
  padding: 16px 42px;
  background: linear-gradient(90deg, #ff7a00, #ff2a00);
  color: #000;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}

.trust {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.85;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* RIGHT */
.hero-right {
  padding: 80px 60px;
  display: grid;
  gap: 20px;
  align-content: center;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 18px;
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 90, 0, 0.25);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  opacity: 0.8;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  opacity: 0.6;
}

.footer a {
  color: #ff7a00;
  text-decoration: none;
}

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

/* Mobile */
@media (max-width: 900px) {
  .page {
    grid-template-columns: 1fr;
  }

  .hero-left, .hero-right {
    padding: 40px 24px;
  }

  h1 {
    font-size: 38px;
  }
}
