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

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
  }

  :root {
    --green: #1B5E39;
    --green-dark: #14462b;
    --green-soft: #e8f3ec;
    --white: #ffffff;
    --ink: #1d1b17;
    --muted: #625d52;
    --line: rgba(29, 27, 23, 0.12);
    --shadow: 0 22px 60px rgba(21, 35, 27, 0.12);
    --shadow-soft: 0 16px 40px rgba(21, 35, 27, 0.08);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "DM Sans", system-ui, sans-serif;
    --container: 1180px;
  }

  body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

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

  a {
    color: inherit;
  }

  button,
  input,
  select,
  textarea {
    font: inherit;
  }

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

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid rgba(27, 94, 57, 0.1);
  }

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 76px;
    position: relative;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.03em;
    white-space: nowrap;
  }

  .brand .dot {
    color: var(--green-dark);
  }

  .brand .name {
    margin-left: 0.01em;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(27, 94, 57, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(27, 94, 57, 0.08);
  }

  .nav-toggle svg {
    width: 22px;
    height: 22px;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-menu {
    position: absolute;
    left: 50%;
    width: 100vw;
    top: calc(100% + 1px);
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(27, 94, 57, 0.1);
    box-shadow: 0 16px 38px rgba(20, 33, 25, 0.12);
    padding: 14px 16px 18px;
    display: none;
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu nav {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    text-decoration: none;
    font-weight: 600;
    color: var(--ink);
    background: #f6f4ee;
    border: 1px solid rgba(27, 94, 57, 0.08);
    padding: 14px 16px;
    border-radius: 14px;
  }

  .mobile-menu .menu-cta {
    margin-top: 4px;
    text-align: center;
    background: var(--green);
    border-color: transparent;
    color: white;
  }

  .desktop-nav a,
  .desktop-cta,
  .ghost-link,
  .ghost-btn {
    text-decoration: none;
  }

  .hero {
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 36%),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
      var(--green);
    color: white;
    padding: 34px 0 0;
    overflow: clip;
    position: relative;
  }

  .hero .container {
    display: grid;
    gap: 28px;
    align-items: center;
  }

  .hero-copy {
    padding: 20px 0 0;
    animation: riseIn 0.9s ease both;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #f3fbf6;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .hero h1,
  .section-title,
  .testimonial-quote {
    font-family: var(--font-display);
    letter-spacing: -0.04em;
  }

  .hero h1 {
    margin: 16px 0 16px;
    font-size: clamp(2.8rem, 11vw, 4.9rem);
    line-height: 0.95;
    max-width: 10ch;
  }

  .hero h1 em {
    color: #e6f4eb;
    font-style: italic;
  }

  .hero-subtitle {
    margin: 0;
    max-width: 57ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
  }

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

  .btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 16px 30px rgba(20, 70, 43, 0.24);
  }

  .btn-primary:hover {
    background: var(--green-dark);
  }

  .btn-ghost {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.7);
  }

  .btn-white {
    background: white;
    color: var(--green);
    border-color: rgba(27, 94, 57, 0.12);
    box-shadow: 0 14px 26px rgba(18, 45, 31, 0.08);
  }

  .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.72);
  }

  .hero-note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
  }

  .hero-visual {
    position: relative;
    margin: 0 -16px -24px;
    padding: 0;
    animation: slideFromRight 1s ease both;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    inset: auto 10px 0 10px;
    height: 76%;
    border-radius: 32px 32px 0 0;
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-image {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
    object-position: bottom center;
    border-radius: 26px 26px 0 0;
    box-shadow: 0 20px 50px rgba(5, 18, 11, 0.26);
  }

  .business-strip {
    position: relative;
    background:
      linear-gradient(180deg, #ffffff, #f4faf6) padding-box,
      linear-gradient(90deg, var(--green), #4d8d67, var(--green-dark)) border-box;
    border: 1px solid transparent;
    padding: 14px 0;
    overflow: hidden;
  }

  .business-strip::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, rgba(27, 94, 57, 0.14), transparent);
    transform: translateX(-55%);
    animation: stripShine 7s linear infinite;
    pointer-events: none;
  }

  .business-strip .container {
    position: relative;
    z-index: 1;
  }

  .business-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
  }

  .business-strip-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(27, 94, 57, 0.08);
    color: var(--green);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.72rem;
  }

  .business-strip p {
    margin: 0;
    color: rgba(29, 27, 23, 0.74);
    font-size: 0.8rem;
    line-height: 1.5;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .section {
    padding: 72px 0;
  }

  .section.white {
    background: white;
  }

  .section.green {
    background: var(--green);
    color: white;
  }

  .section-header {
    max-width: 760px;
    margin-bottom: 28px;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .section-tag.white {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-tag.soft {
    background: rgba(27, 94, 57, 0.08);
    color: var(--green-dark);
  }

  .section-title {
    margin: 16px 0 12px;
    font-size: clamp(2rem, 5vw, 3.45rem);
    line-height: 0.98;
    color: inherit;
  }

  .section-subtitle {
    margin: 0;
    max-width: 64ch;
    color: rgba(29, 27, 23, 0.68);
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .section.green .section-subtitle {
    color: rgba(255, 255, 255, 0.82);
  }

  .section-grid {
    display: grid;
    gap: 22px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    background: white;
    border: 1px solid rgba(27, 94, 57, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .card-pad {
    padding: 22px;
  }

  .image-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    background: linear-gradient(180deg, rgba(27, 94, 57, 0.12), rgba(27, 94, 57, 0.03));
  }

  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .card:hover .image-card img {
    transform: scale(1.05);
  }

  .card-mark,
  .report-mark,
  .choice-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
  }

  .card-mark,
  .report-mark {
    text-transform: uppercase;
  }

  .card-title {
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1.1;
    margin: 16px 0 10px;
    color: var(--ink);
  }

  .card-text {
    margin: 0;
    color: rgba(29, 27, 23, 0.72);
    line-height: 1.7;
    font-size: 0.98rem;
  }

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

  .areas-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .areas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 54px rgba(18, 38, 28, 0.12);
  }

  .feature-split {
    background: linear-gradient(180deg, #f7fbf8, #ffffff);
  }

  .split-grid,
  .report-grid,
  .setup-top,
  .offline-grid,
  .contact-layout {
    display: grid;
    gap: 24px;
  }

  .setup-top {
    max-width: 780px;
  }

  .split-visual,
  .offline-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid rgba(27, 94, 57, 0.08);
  }

  .split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .feature-panel {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(27, 94, 57, 0.08);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(27, 94, 57, 0.04), rgba(255, 255, 255, 0.96));
    padding: 22px;
  }

  .feature-panel {
    display: grid;
    gap: 14px;
    align-content: start;
  }

  .feature-mini {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(27, 94, 57, 0.08);
    padding: 18px;
    box-shadow: 0 12px 24px rgba(22, 34, 26, 0.05);
  }

  .feature-mini strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--green);
  }

  .feature-mini p {
    margin: 0;
    color: rgba(29, 27, 23, 0.72);
    line-height: 1.65;
  }

  .split-content,
  .report-copy,
  .setup-copy,
  .offline-copy,
  .contact-copy {
    align-self: center;
  }

  .checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
  }

  .checklist li {
    position: relative;
    padding-left: 32px;
    color: rgba(29, 27, 23, 0.82);
    line-height: 1.65;
  }

  .checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 94, 57, 0.12);
    color: var(--green);
    font-weight: 700;
  }

  .reports {
    background: white;
  }

  .report-panel {
    background: linear-gradient(180deg, #ffffff, #f4faf6);
    border: 1px solid rgba(27, 94, 57, 0.08);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-soft);
  }

  .report-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .report-card {
    background: white;
    border: 1px solid rgba(27, 94, 57, 0.08);
    border-radius: 18px;
    padding: 16px;
    min-height: 126px;
    box-shadow: 0 12px 24px rgba(24, 34, 28, 0.04);
  }

  .report-title {
    margin: 14px 0 8px;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--ink);
  }

  .report-stat {
    margin: 0;
    color: rgba(29, 27, 23, 0.72);
    line-height: 1.55;
    font-size: 0.95rem;
  }

  .report-note {
    margin: 16px 2px 0;
    color: rgba(29, 27, 23, 0.68);
    font-size: 0.95rem;
  }

  .setup {
    background: var(--green);
    color: white;
  }

  .setup .section-subtitle,
  .setup .step-copy {
    color: rgba(255, 255, 255, 0.8);
  }

  .steps-list {
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
  }

  .step-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 18px 18px 18px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
  }

  .step-num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .step-title {
    margin: 0 0 6px;
    font-weight: 700;
    color: white;
  }

  .step-copy {
    margin: 0;
    line-height: 1.65;
    font-size: 0.97rem;
  }

  .offline {
    background: white;
  }

  .offline .section-subtitle {
    color: rgba(29, 27, 23, 0.74);
  }

  .offline-steps {
    display: grid;
    gap: 12px;
    margin-top: 22px;
  }

  .offline-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px;
    background: rgba(27, 94, 57, 0.05);
    border: 1px solid rgba(27, 94, 57, 0.09);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(20, 70, 43, 0.04);
  }

  .offline-step .step-title {
    color: var(--ink);
  }

  .offline-step .step-copy {
    color: rgba(29, 27, 23, 0.72);
  }

  .status-card {
    background: linear-gradient(180deg, #ffffff, #f5faf7);
    border: 1px solid rgba(27, 94, 57, 0.1);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
    align-content: start;
  }

  .status-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
  }

  .status-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(27, 94, 57, 0.12);
  }

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

  .status-row {
    background: white;
    border: 1px solid rgba(27, 94, 57, 0.08);
    border-radius: 16px;
    padding: 14px;
    margin: 0;
  }

  .status-label {
    margin: 0 0 6px;
    color: rgba(29, 27, 23, 0.68);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .status-value {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.4;
    color: var(--ink);
    font-weight: 700;
  }

  .status-tip {
    margin: 2px 0 0;
    color: rgba(29, 27, 23, 0.72);
    line-height: 1.55;
  }

  .testimonial {
    background: white;
  }

  .testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    border: 1px solid rgba(27, 94, 57, 0.12);
    border-radius: 32px;
    padding: 28px 22px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .testimonial-quote {
    position: relative;
    margin: 12px 0 20px;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-style: italic;
    line-height: 1.72;
    color: var(--ink);
  }

  .testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: white;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(27, 94, 57, 0.22);
  }

  .author-name {
    font-weight: 800;
    color: var(--ink);
  }

  .author-role {
    color: rgba(29, 27, 23, 0.66);
    font-size: 0.95rem;
  }

  .contact {
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
      var(--green);
    color: white;
  }

  .contact-layout {
    align-items: start;
  }

  .contact-side {
    display: grid;
    gap: 18px;
    align-content: start;
  }

  .contact-copy {
    max-width: 34rem;
  }

  .contact-choices {
    display: grid;
    gap: 14px;
  }

  .choice-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    border-radius: 24px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

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

  .choice-card.active {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  }

  .choice-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: white;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .choice-title {
    margin: 16px 0 8px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .choice-copy {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
  }

  .choice-cta {
    font-weight: 800;
    color: #f3fbf6;
  }

  .form-card {
    background: white;
    color: var(--ink);
    border-radius: 28px;
    border: 1px solid rgba(27, 94, 57, 0.12);
    box-shadow: var(--shadow);
    padding: 22px;
  }

  .form-heading {
    margin: 0 0 18px;
    font-size: 1rem;
    color: rgba(29, 27, 23, 0.7);
    font-weight: 800;
    text-transform: none;
  }

  .form-note {
    margin: -10px 0 18px;
    color: rgba(29, 27, 23, 0.66);
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .form-grid {
    display: grid;
    gap: 14px;
  }

  .field {
    display: grid;
    gap: 8px;
  }

  .field label {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(29, 27, 23, 0.84);
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(27, 94, 57, 0.14);
    background: #fff;
    color: var(--ink);
    padding: 14px 15px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: rgba(27, 94, 57, 0.55);
    box-shadow: 0 0 0 4px rgba(27, 94, 57, 0.08);
  }

  .field textarea {
    min-height: 118px;
    resize: vertical;
  }

  .intent-toggle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .intent-toggle button {
    border-radius: 16px;
    border: 1px solid rgba(27, 94, 57, 0.12);
    background: #f7f5ef;
    color: var(--ink);
    padding: 13px 16px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  }

  .intent-toggle button.active {
    background: rgba(27, 94, 57, 0.08);
    border-color: rgba(27, 94, 57, 0.55);
    box-shadow: 0 0 0 4px rgba(27, 94, 57, 0.08);
  }

  .submit-btn {
    width: 100%;
    min-height: 54px;
    margin-top: 4px;
    border: 0;
  }

  .direct-contact-title {
    margin: 22px 0 12px;
    color: rgba(29, 27, 23, 0.72);
    font-weight: 700;
    text-align: center;
  }

  .direct-row {
    display: grid;
    gap: 10px;
  }

  .ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    background: transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .contact-btn-icon,
  .footer-link-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
  }

  .contact-btn-icon {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
  }

  .contact-btn-icon svg,
  .footer-link-icon svg {
    width: 15px;
    height: 15px;
  }

  .contact-btn-arrow {
    margin-left: 2px;
  }

  .ghost-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
  }

  .contact-grid {
    margin-top: 26px;
  }

  .footer {
    background: #ffffff;
    color: var(--ink);
    padding: 34px 0 24px;
    border-top: 1px solid rgba(27, 94, 57, 0.12);
  }

  .footer .container {
    display: grid;
    gap: 24px;
  }

  .footer-grid {
    display: grid;
    gap: 24px;
  }

  .footer-brand-block {
    display: grid;
    gap: 12px;
    max-width: 32rem;
  }

  .footer-description {
    margin: 0;
    color: rgba(29, 27, 23, 0.72);
    line-height: 1.7;
  }

  .footer-column {
    display: grid;
    gap: 12px;
  }

  .footer-heading {
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .footer-links {
    display: grid;
    gap: 10px;
  }

  .footer-links a,
  .footer-contact a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
  }

  .footer-links a:hover,
  .footer-contact a:hover {
    color: var(--green);
  }

  .footer .brand .name {
    color: var(--green);
  }

  .footer .brand .dot {
    color: var(--green-dark);
  }

  .footer-contact {
    display: grid;
    gap: 12px;
  }

  .footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .footer-link-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--green-soft);
    border: 1px solid rgba(27, 94, 57, 0.12);
    color: var(--green);
  }

  .footer-link-icon svg {
    width: 15px;
    height: 15px;
  }

  .footer-bottom {
    padding-top: 16px;
    border-top: 1px solid rgba(27, 94, 57, 0.1);
  }

  .footer-note {
    margin: 0;
    color: rgba(29, 27, 23, 0.66);
    font-size: 0.92rem;
  }

  .pop {
    opacity: 0;
    visibility: hidden;
    transform: translateY(38px);
    transition-property: opacity, transform;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
  }

  .pop-left {
    transform: translateX(-44px);
  }

  .pop-right {
    transform: translateX(44px);
  }

  .pop-scale {
    transform: scale(0.93);
  }

  .pop.visible,
  .pop.pop-left.visible,
  .pop.pop-right.visible,
  .pop.pop-scale.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .pop-d1 {
    transition-delay: 0.08s;
  }

  .pop-d2 {
    transition-delay: 0.18s;
  }

  .pop-d3 {
    transition-delay: 0.28s;
  }

  .pop-d4 {
    transition-delay: 0.38s;
  }

  .hero-copy .btn,
  .hero-copy .hero-note,
  .hero-copy .hero-subtitle {
    animation: riseIn 0.95s ease both;
  }

  .hero-copy .hero-subtitle {
    animation-delay: 0.08s;
  }

  .hero-copy .hero-actions {
    animation: riseIn 0.95s ease both;
    animation-delay: 0.16s;
  }

  .hero-copy .hero-note {
    animation-delay: 0.24s;
  }

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

  @keyframes slideFromRight {
    from {
      opacity: 0;
      transform: translateX(28px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes stripShine {
    0% {
      transform: translateX(-55%);
    }
    100% {
      transform: translateX(55%);
    }
  }

  @media (max-width: 520px) {
    .hero h1 {
      font-size: clamp(2.35rem, 11vw, 3.3rem);
    }

    .testimonial-card {
      padding: 22px 16px;
    }

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

  }

  @media (min-width: 841px) {
    .site-header .container {
      gap: 22px;
    }

    .nav-toggle,
    .mobile-menu {
      display: none;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: auto;
      margin-right: 10px;
      font-weight: 600;
    }

    .desktop-nav a {
      color: rgba(29, 27, 23, 0.78);
      transition: color 0.18s ease;
    }

    .desktop-nav a:hover {
      color: var(--green);
    }

    .desktop-cta {
      display: inline-flex;
    }

    .hero {
      padding-top: 48px;
    }

    .hero .container {
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
      gap: 28px;
    }

    .hero-copy {
      padding: 48px 0 72px;
      max-width: 650px;
    }

    .hero-visual {
      margin: 0 -12px -44px 0;
      align-self: center;
    }

    .hero-image {
      width: 100%;
      max-width: 580px;
    }

    .section {
      padding: 98px 0;
    }

    .section-grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      align-items: center;
    }

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

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

    .areas-grid .areas-card:nth-child(4),
    .areas-grid .areas-card:nth-child(5) {
      grid-column: span 1;
    }

    .split-grid {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 28px;
      align-items: start;
    }

    .report-grid {
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 28px;
      align-items: center;
    }

    .setup-top {
      grid-template-columns: minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .offline-grid {
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
      gap: 28px;
      align-items: start;
    }

    .contact-layout {
      grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
      gap: 28px;
    }

    .footer-grid {
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.55fr) minmax(0, 0.9fr);
      align-items: start;
    }

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

    .footer-links {
      justify-items: start;
    }
  }

  @media (min-width: 1080px) {
    .section-grid {
      gap: 30px;
    }

    .split-visual {
      min-height: 540px;
    }
  }



.report-app-note {
  margin-top: 24px;
  padding: 20px;
  border-radius: 18px;
  background: #f6f0ff;
  border: 1px solid rgba(126, 87, 194, 0.18);
}

.report-app-note span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #6f35c4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.report-app-note strong {
  display: block;
  margin-bottom: 8px;
  color: #1d2939;
  font-size: 1.05rem;
  line-height: 1.35;
}

.report-app-note p {
  margin: 0;
  color: #475467;
  line-height: 1.65;
}

.woo-device-graphic {
  margin-top: 24px;
  padding: 24px;
  min-height: 310px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(126, 87, 194, 0.3), transparent 28%),
    linear-gradient(135deg, #2d165c 0%, #4a238a 45%, #101828 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
  position: relative;
}

.phone-mockup {
  width: 185px;
  min-height: 265px;
  padding: 10px;
  border-radius: 28px;
  background: #101828;
  box-shadow: 0 24px 55px rgba(16, 24, 40, 0.35);
  transform: rotate(-4deg);
}

.phone-top {
  width: 54px;
  height: 5px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #344054;
}

.phone-screen {
  min-height: 235px;
  padding: 14px;
  border-radius: 20px;
  background: #ffffff;
}

.woo-mini-brand {
  margin-bottom: 14px;
}

.woo-mini-brand span {
  display: inline-flex;
  margin-bottom: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #7f54b3;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
}

.woo-mini-brand strong {
  display: block;
  color: #101828;
  font-size: 1rem;
}

.woo-alert {
  padding: 11px 12px;
  border-radius: 14px;
  margin-bottom: 9px;
  background: #f9fafb;
  border: 1px solid #eaecf0;
}

.woo-alert span {
  display: block;
  margin-bottom: 3px;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.woo-alert strong {
  display: block;
  color: #101828;
  font-size: 0.9rem;
}

.woo-alert.success {
  border-left: 4px solid #12b76a;
}

.woo-alert.warning {
  border-left: 4px solid #f79009;
}

.woo-alert.info {
  border-left: 4px solid #7f54b3;
}

.watch-mockup {
  width: 116px;
  display: grid;
  justify-items: center;
  transform: rotate(7deg);
}

.watch-strap {
  width: 46px;
  height: 42px;
  background: #101828;
}

.watch-strap.top {
  border-radius: 18px 18px 8px 8px;
}

.watch-strap.bottom {
  border-radius: 8px 8px 18px 18px;
}

.watch-face {
  width: 116px;
  height: 116px;
  border-radius: 34px;
  background: #101828;
  border: 8px solid #344054;
  color: #ffffff;
  display: grid;
  place-items: center;
  align-content: center;
  box-shadow: 0 20px 45px rgba(16, 24, 40, 0.35);
}

.watch-face span {
  color: #b692f6;
  font-size: 0.72rem;
  font-weight: 800;
}

.watch-face strong {
  margin-top: 4px;
  font-size: 1rem;
}

.watch-face p {
  margin: 4px 0 0;
  color: #d0d5dd;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .woo-device-graphic {
    padding: 20px;
    gap: 18px;
  }

  .phone-mockup {
    width: 165px;
  }

  .watch-mockup {
    width: 94px;
  }

  .watch-face {
    width: 94px;
    height: 94px;
    border-radius: 28px;
  }
}
