body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0d0d0d;
  color: #f0f0f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

h1, h2, h3 {
  margin-top: 0;
}

/* Header */
.site-header {
  background: linear-gradient(to right, #0d0d0d, #1a1a1a);
  padding: 0.05rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-left, .header-center, .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-left {
  justify-content: flex-start;
}

.header-center {
  justify-content: center;
}

.header-right {
  justify-content: flex-end;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0f0f0;
}

.logo-image {
  height: 100px;
  width: auto;
}

.header-cta, .cta-button {
  background: linear-gradient(135deg, #00ffcc, #0077ff);
  color: #111;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.header-cta:hover, .cta-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: radial-gradient(circle at left, rgba(0,255,204,0.08), transparent 70%);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ccc;
}

/* Services */
.services {
  background: #121212;
  padding: 4rem 2rem;
  text-align: center;
}

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

.service-box, .why-box {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,255,204,0.05);
}

/* Trusted Tools */
.trusted-tools {
  background: #101010;
  padding: 4rem 2rem;
  text-align: center;
}

.trusted-tools h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
  justify-items: center;
}

.logo-grid img {
  max-height: 40px;
  transition: 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.05);
}



/* How It Works, Why Us, FAQ */
.how-it-works, .why-us, .faq {
  background: #0d0d0d;
  padding: 4rem 2rem;
  text-align: center;
}

.how-it-works ol {
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
  line-height: 1.6;
}

.faq-item {
  max-width: 700px;
  margin: 2rem auto;
  text-align: left;
}

.faq-item h4 {
  margin-bottom: 0.5rem;
  color: #00ffcc;
}

/* Contact */
.contact {
  background: #0e0e0e;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  background: #222;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1rem;
  color: #f0f0f0;
}

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

/* Footer */
.footer {
  padding: 2rem;
  text-align: center;
  background: #0d0d0d;
  border-top: 1px solid #222;
  font-size: 0.9rem;
  color: #999;
}
