:root {
      --navy: #070e2d;
      --text: #30384f;
      --muted: #687084;
      --green: #008978;
      --green-dark: #006f62;
      --green-light: #e8f6f2;
      --soft: #f4faf8;
      --line: #d7ebe6;
      --orange: #f47b20;
      --red: #e53935;
      --shadow: 0 24px 70px rgba(14, 42, 63, 0.14);
      --radius: 28px;
    }

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

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--navy);
      background: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page {
      width: min(100%, 1600px);
      margin: 0 auto;
      min-height: 100vh;
      background:
        radial-gradient(circle at 76% 34%, rgba(0, 137, 120, 0.10), transparent 26%),
        radial-gradient(circle at 68% 16%, rgba(0, 137, 120, 0.07), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #f5fbf9 100%);
    }

    .navbar {
      height: 82px;
      padding: 0 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 8px 28px rgba(22, 39, 68, 0.07);
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(16px);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 34px;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .logo-mark {
      width: 44px;
      height: 38px;
      position: relative;
      transform: rotate(-45deg);
      background: linear-gradient(135deg, #009f92, #006f62);
      border-radius: 8px 8px 4px 8px;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      width: 44px;
      height: 38px;
      background: inherit;
      border-radius: 50%;
    }

    .logo-mark::before { top: -21px; left: 0; }
    .logo-mark::after { left: 21px; top: 0; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 44px;
      font-weight: 600;
      color: #11172f;
    }

    .nav-links a:first-child {
      color: var(--green-dark);
    }

    .download-top,
    .primary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 28px;
      border-radius: 999px;
      color: #ffffff;
      font-weight: 700;
      background: linear-gradient(135deg, #009a88, #00766a);
      box-shadow: 0 12px 28px rgba(0, 137, 120, 0.25);
      border: none;
      cursor: pointer;
    }

    .hero {
      position: relative;
      padding: 46px 76px 30px;
      min-height: 610px;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 46px;
      align-items: center;
    }

    .hero-copy {
      max-width: 600px;
      z-index: 2;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 18px;
      border-radius: 999px;
      color: var(--green-dark);
      background: var(--green-light);
      font-weight: 700;
      margin-bottom: 24px;
    }

    .badge span {
      font-size: 18px;
    }

    h1 {
      font-size: clamp(3.1rem, 5vw, 5.2rem);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: 0.02em;
      margin-bottom: 18px;
    }

    h1 .green {
      color: var(--green);
      display: block;
    }

    .subtitle {
      max-width: 585px;
      color: var(--text);
      font-size: 20px;
      line-height: 1.55;
      letter-spacing: 0.03em;
      margin-bottom: 28px;
    }

    .features {
      display: grid;
      gap: 18px;
      margin-bottom: 30px;
    }

    .feature {
      display: flex;
      align-items: center;
      gap: 18px;
      color: #30384f;
      font-size: 17px;
      letter-spacing: 0.01em;
    }

    .feature-icon,
    .road-icon {
      width: 43px;
      height: 43px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--green);
      background: var(--green-light);
      font-size: 19px;
      flex: 0 0 auto;
    }

    .cta-row {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .store-btn {
      min-width: 255px;
      min-height: 48px;
      padding: 0 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 700;
    }

    .outline-btn {
      color: var(--green-dark);
      background: #ffffff;
      border: 1.5px solid var(--green);
    }

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

    .phone {
      width: 292px;
      height: 565px;
      border-radius: 45px;
      background: #0c0c0f;
      padding: 12px;
      box-shadow: 0 28px 70px rgba(9, 20, 35, 0.30);
      position: relative;
      z-index: 4;
    }

    .phone::before {
      content: "";
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: 116px;
      height: 27px;
      background: #0c0c0f;
      border-radius: 0 0 16px 16px;
      z-index: 5;
    }

    .screen {
      height: 100%;
      background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
      border-radius: 34px;
      padding: 42px 20px 18px;
      overflow: hidden;
      position: relative;
    }

    .status {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #0b1230;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .app-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 13px;
    }

    .app-head h2 {
      font-size: 22px;
      line-height: 1;
    }

    .search {
      height: 40px;
      border-radius: 12px;
      background: #eef5f7;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      padding: 0 12px;
      font-size: 12px;
      margin-bottom: 14px;
    }

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

    .product {
      min-height: 70px;
      border-radius: 13px;
      background: #ffffff;
      box-shadow: 0 8px 18px rgba(10, 31, 54, 0.06);
      display: grid;
      grid-template-columns: 46px 1fr 22px;
      gap: 10px;
      align-items: center;
      padding: 10px;
    }

    .product-img {
      width: 42px;
      height: 42px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      font-size: 23px;
      background: #e8f4f1;
    }

    .product h3 {
      font-size: 14px;
      margin-bottom: 2px;
    }

    .product p {
      font-size: 12px;
      font-weight: 700;
    }

    .soon { color: var(--orange); }
    .safe { color: #18834c; }
    .expired { color: red; }

    .bottom-nav {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 72px;
      background: rgba(255, 255, 255, 0.92);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: center;
      box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.04);
    }

    .tab {
      display: grid;
      place-items: center;
      gap: 2px;
      font-size: 10px;
      color: #333;
    }

    .tab.active {
      color: var(--green-dark);
      font-weight: 700;
    }

    .floating-bell {
      position: absolute;
      top: 85px;
      right: 110px;
      width: 76px;
      height: 68px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: #ffffff;
      color: var(--green);
      font-size: 32px;
      box-shadow: var(--shadow);
      z-index: 2;
    }

    .calendar {
      position: absolute;
      bottom: 38px;
      left: 28px;
      width: 96px;
      height: 86px;
      background: #ffffff;
      border-radius: 14px;
      box-shadow: var(--shadow);
      overflow: hidden;
      z-index: 2;
    }

    .calendar::before {
      content: "";
      height: 26px;
      display: block;
      background: linear-gradient(135deg, #00a69a, #007d75);
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 7px;
      padding: 12px 14px;
    }

    .calendar-grid span {
      height: 9px;
      border-radius: 2px;
      background: #9ca3aa;
    }

    .grocery {
      position: absolute;
      right: 12px;
      bottom: 26px;
      width: 244px;
      height: 150px;
      z-index: 3;
    }

    .bag {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 168px;
      height: 126px;
      background: linear-gradient(90deg, #d89c55, #efbe7b);
      clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%);
      border-radius: 3px 3px 15px 15px;
    }

    .bag::before {
      content: "";
      position: absolute;
      top: 0;
      left: 72px;
      width: 18px;
      height: 27px;
      border-radius: 0 0 20px 20px;
      background: rgba(147, 84, 38, 0.35);
    }

    .greens,
    .greens::before,
    .greens::after {
      position: absolute;
      content: "";
      bottom: 100px;
      width: 42px;
      height: 66px;
      border-radius: 25px 25px 8px 8px;
      background: #5ca43f;
      transform: rotate(-18deg);
    }

    .greens { left: 16px; }
    .greens::before { left: 42px; bottom: -10px; transform: rotate(20deg); background: #3b8b43; }
    .greens::after { left: 94px; bottom: -4px; transform: rotate(23deg); background: #6aa845; }

    .carrot,
    .orange,
    .tomato {
      position: absolute;
      bottom: 108px;
      border-radius: 50%;
    }

    .carrot { left: 62px; width: 20px; height: 52px; background: #f47a20; transform: rotate(-24deg); }
    .orange { left: 106px; width: 48px; height: 48px; background: #ff9f1a; }
    .tomato { left: 42px; width: 28px; height: 28px; background: #db653d; }

    .medicine {
      position: absolute;
      right: 18px;
      bottom: 0;
      width: 42px;
      height: 68px;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
      border-top: 12px solid #1287c8;
    }

    .medicine::after {
      content: "▭";
      position: absolute;
      top: 22px;
      left: 11px;
      color: var(--green);
      font-size: 20px;
    }

    .about {
      padding: 64px 76px 76px;
      background: rgba(247, 252, 250, 0.95);
      border-radius: 28px 28px 0 0;
    }

    .about-card {
      display: grid;
      grid-template-columns: 1.3fr 0.9fr;
      gap: 34px;
      align-items: stretch;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-content,
    .about-panel {
      background: #ffffff;
      border: 1px solid rgba(0, 137, 120, 0.10);
      border-radius: 28px;
      padding: 38px;
      box-shadow: 0 22px 60px rgba(14, 42, 63, 0.08);
    }

    .about .pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 34px;
      padding: 0 18px;
      border-radius: 999px;
      color: var(--green-dark);
      background: var(--green-light);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .about h2 {
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.15;
      margin-bottom: 18px;
      letter-spacing: 0.01em;
    }

    .about p {
      color: var(--text);
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 28px;
    }

    .about-stats div {
      min-height: 118px;
      padding: 18px;
      border-radius: 20px;
      background: var(--soft);
      border: 1px solid var(--line);
    }

    .about-stats strong {
      display: block;
      color: var(--green-dark);
      font-size: 18px;
      margin-bottom: 8px;
    }

    .about-stats span {
      display: block;
      color: var(--text);
      font-size: 14px;
      line-height: 1.45;
    }

    .about-panel {
      background: linear-gradient(180deg, #ffffff 0%, #f2fbf8 100%);
    }

    .about-panel h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .about-panel ul {
      padding-left: 20px;
      color: var(--text);
      line-height: 1.9;
      font-size: 16px;
    }

    @media (max-width: 1100px) {
      .navbar {
        padding: 0 28px;
      }

      .nav-links {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
        padding: 42px 28px;
      }

      .hero-copy {
        max-width: 100%;
      }

      .visual {
        min-height: 520px;
      }

      .about-card {
        grid-template-columns: 1fr;
      }

      .about-stats {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 680px) {
      .navbar {
        height: auto;
        padding: 18px 20px;
      }

      .logo {
        font-size: 27px;
      }

      .download-top {
        display: none;
      }

      .hero {
        padding: 34px 20px 20px;
      }

      h1 {
        font-size: 3rem;
      }

      .subtitle {
        font-size: 17px;
      }

      .store-btn {
        width: 100%;
      }

      .visual {
        min-height: 485px;
        transform: scale(0.88);
        transform-origin: top center;
      }

      .floating-bell,
      .calendar,
      .grocery {
        transform: scale(0.82);
      }

      .floating-bell {
        right: 25px;
      }

      .calendar {
        left: 0;
      }

      .grocery {
        right: -38px;
      }

      .about {
        padding: 34px 20px 44px;
      }

      .about-content,
      .about-panel {
        padding: 26px;
      }
    }