:root {
  --bg: #f3f5f2;
  --surface: #ffffff;
  --ink: #14201a;
  --ink-soft: #5a6b62;
  --muted: #8a9a91;
  --accent: #1f6b4f;
  --accent-light: #2e8b68;
  --accent-soft: #d8ede3;
  --border: #d5ded7;
  --gold: #c9a227;
  --shadow: 0 24px 60px rgba(20, 32, 26, 0.08);
  --radius: 20px;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: #d8ede3;
  top: -80px;
  right: -60px;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: #e8f0ea;
  bottom: 10%;
  left: -80px;
  animation-delay: -4s;
}

.orb-3 {
  width: 180px;
  height: 180px;
  background: #f0ebe0;
  top: 40%;
  right: 15%;
  animation-delay: -7s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 48px;
  animation: fadeDown 0.8s ease both;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent-soft), #fff);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 72px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

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

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 12px 30px rgba(31, 107, 79, 0.28);
}

.btn-ghost {
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--border);
}

.hero-visual {
  position: relative;
  min-height: 380px;
  animation: fadeUp 1s ease 0.15s both;
}

.phone {
  width: min(100%, 300px);
  margin: 0 auto;
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  background: var(--surface);
  border: 8px solid #0e1a14;
  box-shadow: var(--shadow);
  padding: 18px 14px;
  position: relative;
  overflow: hidden;
}

.phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #0e1a14;
  border-radius: 999px;
}

.phone-screen {
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8faf7 0%, #eef3ef 100%);
  padding: 28px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  animation: pulseCard 4s ease-in-out infinite;
}

.mini-card:nth-child(2) {
  animation-delay: -1.2s;
}

.mini-card:nth-child(3) {
  animation-delay: -2.4s;
}

.mini-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.mini-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.floating-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  animation: bob 5s ease-in-out infinite;
}

.badge-1 {
  top: 12%;
  left: -8%;
}

.badge-2 {
  bottom: 14%;
  right: -6%;
  animation-delay: -2s;
}

.section {
  margin-bottom: 64px;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.section-intro {
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0 0 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(20, 32, 26, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

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

.page-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  animation: fadeUp 0.8s ease both;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 12px;
}

.page-hero p {
  color: var(--ink-soft);
  margin: 0;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.9s ease 0.1s both;
}

.content-card h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--accent);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card li {
  color: var(--ink-soft);
}

.content-card ul {
  padding-left: 1.2rem;
}

.contact-box {
  margin-top: 28px;
  padding: 20px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid #c5dfd0;
}

.footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseCard {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

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

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

  .hero-visual {
    min-height: 320px;
  }

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

  .floating-badge {
    display: none;
  }
}
