:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --ink: #101112;
  --muted: #4c4f54;
  --accent: #0f766e;
  --accent-dark: #0b5a53;
  --accent-soft: #d8f3ef;
  --sun: #f4b740;
  --shadow: 0 18px 50px rgba(16, 17, 18, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff3db 0%, #f6f3ee 45%, #eef7f6 100%);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  transition: transform 0.2s ease;
  z-index: 2000;
}

.skip-link:focus {
  transform: translateY(50px);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(246, 243, 238, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 17, 18, 0.08);
  z-index: 1500;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

.brand-title {
  font-weight: 600;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 17, 18, 0.16);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--ink);
  background: transparent;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 24px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.checklist li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.mini-trust {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-gif {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow);
  width: min(420px, 100%);
}

.hero-gif img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

.problem,
.process,
.pricing,
.faq {
  padding: 70px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value {
  padding: 70px 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.extras {
  background: var(--accent-soft);
  padding: 28px;
  border-radius: var(--radius-md);
}

.process {
  background: #fdf8ef;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.portfolio {
  padding: 70px 0;
}

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

.portfolio-card {
  background: var(--surface);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-media {
  height: 150px;
  background: linear-gradient(135deg, #f4b740, #0f766e);
  border-radius: 14px;
  overflow: hidden;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px;
  border-radius: 999px;
  font-weight: 600;
}

.portfolio-card:hover,
.card:hover,
.step:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 60px rgba(16, 17, 18, 0.18);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.price-card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}

.price-amount span {
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 6px;
}

.price-amount.premium {
  font-size: 2.4rem;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.price-card ul li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
}

.featured {
  border: 2px solid var(--accent);
  position: relative;
}

.tag {
  position: absolute;
  top: -14px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.pricing-trust {
  text-align: center;
  color: var(--muted);
  margin-bottom: 16px;
}

.center {
  display: flex;
  justify-content: center;
}

.trust {
  padding: 70px 0;
  background: #eff6f5;
}

.testimonials {
  padding: 70px 0;
  background: #f8f4ed;
  overflow: hidden;
}

.carousel {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 45s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  width: 260px;
  display: grid;
  gap: 12px;
}

.testimonial-card h4 {
  font-size: 0.95rem;
  color: var(--muted);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.faq details {
  background: var(--surface);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.final-cta {
  padding: 70px 0;
  background: linear-gradient(120deg, #0f766e, #0b5a53);
  color: #fff;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.footer {
  padding: 40px 0 80px;
  background: #101112;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  z-index: 1400;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 4%;
    background: var(--surface);
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .brand-subtitle {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
