:root {
  --accent: #e05a0f;
  --bg-dark: #222222;
  --bg-darker: #252525;
  --text-light: #e5e7eb;
  --text-muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

section {
  padding: 120px 0;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
}

p {
  color: var(--text-muted);
  margin-bottom: 25px;
  max-width: 650px;
}

/* HEADER */

header {
  padding: 40px 0;
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.logo-text {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.4px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--text-light);
}

.nav-cta {
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 6px;
}

/* HERO */

.hero {
  padding-top: 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-image {
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  animation: float 8s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  border-radius: 6px;
}

/* BUTTON */

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 90, 15, 0.3);
}

.btn-secondary {
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  color: var(--text-light);
  opacity: 0.8;
}

/* SECTIONS */

.section-divider {
  border-top: 1px solid var(--border);
}

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

.card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-darker);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

.process-grid div h3 {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.process-grid div h3 img {
  position: relative;
  top: -2px;
  margin-right: 0.4em;
}

.investment {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* CTA */

.cta {
  text-align: center;
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 120px 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

input, select, textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  padding: 14px;
  border-radius: 8px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(224, 90, 15, 0.15);
}

textarea {
  resize: vertical;
}

/* FOOTER */

footer {
  border-top: 1px solid var(--border);
  padding: 50px 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

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

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.4rem;
  }
}

