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

body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fb;
  color: #111;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 8%;
}

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

.headline {
  font-family: 'Sora';
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
}

.highlight {
  color: #ff6a00;
}

.subheadline {
  margin-top: 20px;
  font-size: 20px;
  color: #555;
}

.cta-btn {
  display: inline-block;
  margin-top: 40px;
  background: #ff6a00;
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

/* IMAGE */
.hero-image img {
  width: 600px;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

/* SECTIONS */
.section {
  padding: 120px 8%;
}

.light {
  background: white;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 600px;
  margin: auto;
}

.center {
  text-align: center;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* CARD */
.card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s;
}

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

/* SPLIT */
.split {
  display: flex;
  align-items: center;
  gap: 80px;
}

.image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
}

/* TEXT */
.body-text {
  margin-top: 20px;
  color: #555;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

input, textarea {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

button {
  background: #ff6a00;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* RESPONSIVE */
@media (max-width: 900px) {

.hero {
  flex-direction: column;
  text-align: center;
}

.hero-image img {
  width: 100%;
  margin-top: 40px;
}

.grid {
  grid-template-columns: 1fr;
}

.split {
  flex-direction: column;
}

.headline {
  font-size: 42px;
}

}