:root {
  --bg: #f8f6f1;
  --surface: #fffdf8;
  --ink: #1c1f24;
  --muted: #4a5160;
  --brand: #0b8f7a;
  --brand-dark: #0a6d5d;
  --accent: #f5a623;
  --line: #e8e2d5;
  --shadow: 0 12px 30px rgba(28, 31, 36, 0.08);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff5dd 0%, transparent 35%),
              radial-gradient(circle at 85% 15%, #d8f5ef 0%, transparent 42%),
              var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.01em;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
}

.bg-shape-1 {
  width: 280px;
  height: 280px;
  background: #8de0d2;
  top: -60px;
  right: -90px;
}

.bg-shape-2 {
  width: 260px;
  height: 260px;
  background: #ffd18a;
  bottom: -80px;
  left: -70px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(248, 246, 241, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.35rem 0.7rem;
  font: inherit;
  color: var(--ink);
}

nav {
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  padding: 6.5rem 0 3.8rem;
  animation: rise 700ms ease both;
}

.kicker {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
}

h1 {
  margin: 1rem 0 0.6rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 18ch;
}

.hero-copy {
  max-width: 62ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.15rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.btn-email {
  background: #ea4335;
  color: #fff;
}

.btn-email:hover {
  background: #d73a2d;
}

.btn-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

.btn-instagram:hover {
  filter: brightness(0.94);
}

.btn-facebook {
  background: #1877f2;
  color: #fff;
}

.btn-facebook:hover {
  background: #0f67dc;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-strip {
  margin-top: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.8);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.75rem;
}

.trust-strip p {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.section {
  padding: 3.2rem 0;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.section-intro {
  margin: -0.4rem 0 1rem;
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0.25rem 0 0.35rem;
}

.featured {
  border-color: #b8dacb;
  background: linear-gradient(140deg, #fffdf8 0%, #eef9f4 100%);
}

.case-study {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(140deg, #fffdf8 0%, #f5fbf9 100%);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.case-thumb {
  height: 160px;
  border-radius: 12px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-left: 0;
  margin-right: 0;
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
}

.case-thumb.missing-image {
  background: linear-gradient(145deg, #dfe6ed, #b9c5d3);
}

.case-thumb figcaption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.65rem;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(18, 24, 37, 0.35);
  padding: 0.25rem 0.45rem;
  border-radius: 8px;
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
}

.case-label {
  margin: 0;
  color: var(--brand-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.case-study-head h3 {
  margin: 0.4rem 0;
}

.case-meta {
  color: var(--muted);
  margin: 0;
}

.case-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.case-grid h4 {
  margin: 0 0 0.35rem;
}

.case-grid p,
.case-grid li {
  color: var(--muted);
}

.case-grid ul {
  margin: 0;
  padding-left: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.85rem 0.95rem;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.integrations {
  padding-top: 2.2rem;
}

.contact-actions {
  justify-content: center;
}

.contact-note {
  margin-top: 1rem;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.step p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.contact {
  text-align: center;
  padding-bottom: 4.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 500ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  nav {
    display: none;
    position: absolute;
    top: 68px;
    right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    padding: 0.8rem;
    box-shadow: var(--shadow);
  }

  nav.open {
    display: flex;
  }

  .hero {
    padding-top: 5rem;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .contact-actions .btn {
    width: 100%;
    text-align: center;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-thumb {
    height: 140px;
  }
}
