:root {
  --bg: #f7f7f5;
  --bg-soft: #eeeeeb;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #c2a86f;
  --border: rgba(15,23,42,.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

/* Header */
.header {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  font-weight: 800;
  letter-spacing: .2em;
}

nav a {
  margin-left: 20px;
  font-size: 14px;
  color: var(--muted);
}

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

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e7d6a3);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.1;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* Sections */
.section {
  padding: 70px 0;
}

.soft-bg {
  background: var(--bg-soft);
}

.section-title {
  margin-bottom: 40px;
  font-size: 26px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: transform .3s ease;
}

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

/* Process */
.process {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
}

.process li {
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* Contact */
.contact-form {
  max-width: 480px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .6s ease;
}

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

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