:root {
  --green: #a6cf51;
  --green-deep: #7aa032;
  --yellow: #fde689;
  --yellow-soft: #fff6cb;
  --ink: #203127;
  --text: #44504a;
  --muted: #6d776f;
  --surface: #fffdf2;
  --surface-strong: #ffffff;
  --line: rgba(32, 49, 39, 0.09);
  --shadow: 0 24px 60px rgba(48, 68, 38, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(166, 207, 81, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(253, 230, 137, 0.45), transparent 26%),
    linear-gradient(180deg, #fffdf6 0%, #fffef9 35%, #fdfcf6 100%);
  line-height: 1.6;
}

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

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

.page-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(166, 207, 81, 0.22);
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--yellow));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 252, 241, 0.72);
  border-bottom: 1px solid rgba(32, 49, 39, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--ink);
}

.brand-logo {
  height: 44px;
  width: auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green) 0%, var(--yellow) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(166, 207, 81, 0.28);
  position: relative;
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 999px;
}

.brand-mark::before {
  width: 22px;
  height: 5px;
  transform: rotate(-32deg);
}

.brand-mark::after {
  width: 16px;
  height: 5px;
  transform: translate(7px, 7px) rotate(-32deg);
}

.brand-copy small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--ink);
}

.nav a {
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
}

section {
  padding: 88px 0;
}

.hero {
  padding-top: 52px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.3rem);
  letter-spacing: -0.05em;
  margin-top: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.hero-copy p,
.section-intro p,
.faq-item p,
.disclaimer,
.footer-copy p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 62ch;
}

.hero-copy p {
  margin: 22px 0 32px;
  font-size: 1.14rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.app-store-icon {
  font-size: 1.5rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border: 1px solid rgba(32, 49, 39, 0.1);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meta-card,
.card,
.feature-panel,
.step,
.story-card,
.faq-item,
.stat-card,
.footer-box {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.meta-card {
  padding: 16px 18px;
}

.meta-card strong,
.stat-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.meta-card span,
.stat-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-image {
  width: 320px;
  max-width: 100%;
  max-height: 650px;
  border-radius: 42px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 6% 12%;
  background:
    linear-gradient(140deg, rgba(166, 207, 81, 0.3), rgba(253, 230, 137, 0.65)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7), transparent 45%);
  border-radius: 42px;
  transform: rotate(-7deg);
  box-shadow: 0 34px 80px rgba(122, 160, 50, 0.18);
}

.lifestyle-card {
  position: absolute;
  left: 0;
  bottom: 52px;
  width: 240px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.lifestyle-art {
  height: 170px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.6), transparent 18%),
    linear-gradient(180deg, #dff0a5 0%, #b9da6b 45%, #8cb64d 100%);
  position: relative;
  overflow: hidden;
}

.lifestyle-art::before {
  content: "";
  position: absolute;
  inset: auto 18px 20px 18px;
  height: 68px;
  border-radius: 50px 50px 18px 18px;
  background: rgba(255, 255, 255, 0.4);
}

.lifestyle-art::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 34px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(253, 230, 137, 0.7);
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.14);
}

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

.phone-stack {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.phone {
  width: 270px;
  padding: 14px;
  border-radius: 38px;
  background: #161a17;
  box-shadow: 0 34px 70px rgba(20, 30, 18, 0.35);
  position: relative;
}

.phone.secondary {
  width: 220px;
  transform: translateY(36px) rotate(9deg);
  opacity: 0.95;
}

.phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 34%;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0f1210;
  z-index: 2;
}

.screen {
  border-radius: 28px;
  background: linear-gradient(180deg, #fbfff0 0%, #fef9de 100%);
  min-height: 550px;
  padding: 28px 20px 20px;
  overflow: hidden;
  position: relative;
}

.screen.secondary-screen {
  min-height: 455px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f1 100%);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.dash-card {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green) 0%, #cde68d 60%, var(--yellow) 100%);
  color: var(--ink);
  margin-bottom: 14px;
}

.dash-card strong {
  display: block;
  font-size: 1.7rem;
  margin-top: 8px;
}

.mini-grid,
.icon-grid,
.screen-row {
  display: grid;
  gap: 12px;
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.mini-panel,
.activity,
.status-pill,
.icon-chip {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(32, 49, 39, 0.08);
}

.mini-panel {
  padding: 14px;
}

.mini-panel strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}

.activity {
  padding: 14px;
  margin-bottom: 12px;
}

.activity + .activity {
  margin-bottom: 0;
}

.status-pill {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-pill b {
  color: var(--green-deep);
}

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

.line-item {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(166, 207, 81, 0.9), rgba(253, 230, 137, 0.88));
  margin-bottom: 10px;
}

.line-item.short {
  width: 58%;
}

.line-item.mid {
  width: 76%;
}

.icon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.icon-chip {
  padding: 14px 10px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  max-width: 58ch;
}

.cards-3,
.cards-4,
.steps-grid,
.stories-grid,
.faq-grid,
.stats-grid,
.screen-gallery {
  display: grid;
  gap: 22px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4,
.steps-grid,
.stories-grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.feature-panel,
.step,
.story-card,
.stat-card {
  padding: 26px;
}

.faq-item {
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item:not(:last-child) {
  margin-bottom: 12px;
}

.faq-accordion {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.faq-trigger {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-trigger:hover {
  background: rgba(166, 207, 81, 0.08);
}

.faq-trigger h3 {
  font-size: 1.05rem;
  margin: 0;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text);
  transition: background-color 0.2s ease;
}

.faq-icon::before {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-trigger:hover .faq-icon::before,
.faq-trigger:hover .faq-icon::after {
  background: var(--green);
}

.faq-content {
  padding: 0 26px 22px;
  overflow: hidden;
}

.faq-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.card-art,
.story-avatar,
.shield-art,
.banner-art {
  position: relative;
  overflow: hidden;
}

.card-art {
  height: 180px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: linear-gradient(160deg, #fef5ca 0%, #d7e9a0 50%, #a6cf51 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
}

.card-svg {
  width: 100%;
  height: 100%;
  border-radius: 22px;
}





.feature-panel {
  display: flex;
  gap: 18px;
  align-items: start;
}

.feature-icon,
.step-number {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--yellow), var(--green));
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.security-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(166, 207, 81, 0.15);
  color: #5a9b3d;
  font-size: 1rem;
}

.feature-icon {
  position: relative;
}

.feature-icon::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
}

.feature-icon--rocket::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a2e'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.feature-icon--mobile::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a2e'%3E%3Crect x='5' y='2' width='14' height='20' rx='2' ry='2'/%3E%3Cpath d='M12 18v-6'/%3E%3Ccircle cx='12' cy='20' r='1'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.feature-icon--eye::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a2e'%3E%3Cpath d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.feature-icon--shield::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a2e'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

#contact {
  padding: 60px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(166, 207, 81, 0.08) 20%, rgba(166, 207, 81, 0.12) 50%, rgba(166, 207, 81, 0.08) 80%, rgba(255, 255, 255, 0) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  margin: 12px 0 16px;
}

.contact-info p {
  color: var(--text);
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--yellow), var(--green));
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.contact-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
}

.contact-icon--phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a2e'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-icon--email::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a2e'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-icon--hours::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a2e'%3E%3Cpath d='M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-icon--address::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a1a2e'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(26, 26, 46, 0.6);
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
  color: var(--ink);
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.steps-grid {
  align-items: start;
}

.step {
  position: relative;
}

.step::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 27px;
  width: 24px;
  height: 2px;
  background: rgba(166, 207, 81, 0.4);
}

.step:last-child::after {
  display: none;
}

.experience-grid,
.security-grid,
.final-cta {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 28px;
  align-items: center;
}

.screen-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
}

.feature-phone {
  padding: 14px;
  border-radius: 32px;
  background: #151816;
  box-shadow: 0 24px 50px rgba(20, 30, 18, 0.25);
}

.feature-phone-screen {
  min-height: 420px;
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(180deg, #fffef7 0%, #eef5d3 100%);
}

.screen-header {
  margin-bottom: 24px;
}

.screen-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.screen-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.status-card {
  background: linear-gradient(145deg, var(--yellow), var(--green));
  border-radius: 18px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.status-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.status-badge.approved {
  background: rgba(255, 255, 255, 0.9);
  color: #2a7d3e;
}

.status-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.status-label {
  font-size: 0.8rem;
  color: rgba(26, 26, 46, 0.8);
  margin-bottom: 4px;
}

.status-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-item {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(32, 49, 39, 0.06);
}

.info-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(26, 26, 46, 0.6);
  margin-bottom: 6px;
}

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

.action-button {
  background: var(--ink);
  color: white;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
}

.stats-grid {
  margin-top: 32px;
}

.stat-card {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(166, 207, 81, 0.15);
}

.story-card {
  min-height: 100%;
}

.story-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #fbe08f, #9fcb49);
}

.story-avatar::before,
.story-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.62);
}

.story-avatar::before {
  width: 26px;
  height: 26px;
  top: 12px;
  border-radius: 50%;
}

.story-avatar::after {
  width: 42px;
  height: 24px;
  bottom: 10px;
  border-radius: 24px 24px 14px 14px;
}

.quote {
  font-size: 1.08rem;
  color: var(--ink);
  margin: 0 0 18px;
}

.story-name {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.security-panel,
.cta-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.security-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.shield-art {
  min-height: 430px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(160deg, #e7f2b5 0%, #fff4be 45%, #b6d86b 100%);
  box-shadow: var(--shadow);
}

.shield-image {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

.shield-art::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 210px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.7);
  clip-path: polygon(50% 0%, 92% 18%, 92% 56%, 50% 100%, 8% 56%, 8% 18%);
  box-shadow: 0 18px 34px rgba(32, 49, 39, 0.12);
}

.shield-art::after {
  content: "";
  position: absolute;
  width: 66px;
  height: 28px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-38deg);
  border-radius: 999px;
  background: var(--green-deep);
  box-shadow: 28px 22px 0 -7px var(--green-deep);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.final-banner {
  padding: 0 0 96px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 249, 217, 0.86));
}

.banner-art {
  min-height: 350px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff1b4 0%, #e6f0af 54%, #a9cf58 100%);
}

.banner-image {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  border-radius: 28px;
}

.banner-art::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background:
    linear-gradient(180deg, rgba(92, 126, 47, 0) 0%, rgba(92, 126, 47, 0.28) 100%),
    linear-gradient(90deg, #7e9d40 0 8%, transparent 8% 13%, #6b8836 13% 18%, transparent 18% 23%, #7e9d40 23% 31%, transparent 31% 38%, #5f7e2c 38% 48%, transparent 48% 55%, #75943e 55% 63%, transparent 63% 70%, #688734 70% 82%, transparent 82% 88%, #75943e 88% 100%);
  clip-path: polygon(0 70%, 14% 50%, 24% 62%, 37% 38%, 48% 60%, 61% 28%, 74% 54%, 84% 36%, 100% 64%, 100% 100%, 0 100%);
}

.banner-art::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 0;
  width: 150px;
  height: 300px;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(180deg, #151916 0%, #252b27 100%);
  box-shadow: 0 26px 60px rgba(20, 30, 18, 0.28);
}

.skyline-dot,
.professional-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.skyline-dot {
  width: 86px;
  height: 86px;
  top: 38px;
  left: 36px;
}

.professional-shape {
  width: 120px;
  height: 120px;
  right: 120px;
  bottom: 54px;
}

footer {
  padding: 40px 0;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(26, 26, 46, 0.6);
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.12s;
}

.fade-up.delay-2 {
  animation-delay: 0.24s;
}

.fade-up.delay-3 {
  animation-delay: 0.36s;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .experience-grid,
  .security-grid,
  .final-cta,
  .footer-box {
    grid-template-columns: 1fr;
  }

  .cards-4,
  .steps-grid,
  .stories-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual {
    min-height: auto;
    padding: 46px 0 0;
  }

  .lifestyle-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 280px);
    margin: 24px auto 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    position: static;
  }

  .header-inner,
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    padding: 18px 0;
  }

  .nav {
    gap: 14px;
  }

  section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-meta,
  .cards-4,
  .steps-grid,
  .stories-grid,
  .faq-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .phone-stack {
    flex-direction: column;
  }

  .phone,
  .phone.secondary {
    width: min(100%, 300px);
    transform: none;
  }

  .hero-visual::before {
    inset: 10% 0 20%;
  }

  .step::after {
    display: none;
  }

  .security-panel,
  .cta-panel {
    padding: 24px;
  }
}
