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

    :root {
      --ink: #1a1a18;
      --ink-2: #4a4a46;
      --ink-3: #8a8a84;
      --surface: #f3f7ff;
      --surface-2: #e8f0ff;
      --white: #ffffff;
      --accent: #1f5fbf;
      --accent-light: #e7f0ff;
      --accent-mid: #3b82f6;
      --border: rgba(26, 26, 24, 0.1);
      --font-serif: 'DM Serif Display', serif;
      --font-sans: 'DM Sans', sans-serif;
      --radius: 12px;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-sans);
      background: var(--surface);
      color: var(--ink);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      height: 68px;
      background: rgba(243, 247, 255, 0.68);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(31, 95, 191, 0.16);
      transition: box-shadow var(--transition);
    }

    #nav.scrolled {
      background: rgba(243, 247, 255, 0.84);
      box-shadow: 0 4px 24px rgba(16, 36, 74, 0.12);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      font-family: var(--font-serif);
      font-size: 1.45rem;
      color: #214882;
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .nav-logo img {
      display: block;
      width: 80px;
      height: 80px;
      object-fit: contain;
    }

    .nav-logo span {
      color: var(--accent);
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.88rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      color: #2d4f86;
      text-decoration: none;
      transition: color var(--transition);
    }

    .nav-links a:hover {
      color: #16478f;
    }

    .nav-cta {
      background: var(--accent);
      color: var(--white) !important;
      padding: 9px 22px;
      border-radius: 100px;
      font-weight: 500 !important;
      transition: background var(--transition), transform var(--transition) !important;
    }

    .nav-cta:hover {
      background: #184b96 !important;
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      width: 22px;
      height: 1.5px;
      background: #214882;
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 100px 5vw 80px;
      gap: 60px;
    }

    .hero-text {
      max-width: 560px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-light);
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 28px;
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
    }

    .hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.6rem, 5vw, 4rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--ink);
      margin-bottom: 24px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .hero p {
      font-size: 1.05rem;
      color: var(--ink-2);
      line-height: 1.7;
      max-width: 440px;
      margin-bottom: 40px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      align-items: center;
    }

    .btn-primary {
      display: inline-block;
      background: var(--accent);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 100px;
      font-weight: 500;
      font-size: 0.95rem;
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .btn-primary:hover {
      background: #184b96;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(31, 95, 191, 0.25);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--ink-2);
      font-size: 0.95rem;
      text-decoration: none;
      transition: color var(--transition), gap var(--transition);
    }

    .btn-ghost:hover {
      color: var(--accent);
      gap: 12px;
    }

    .btn-ghost::after {
      content: '→';
    }

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

    .chem-backdrop {
      width: min(440px, 90%);
      aspect-ratio: 4 / 5;
      border-radius: 34px;
      position: relative;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.38), rgba(227, 238, 255, 0.2));
      border: 1px solid rgba(31, 95, 191, 0.25);
      backdrop-filter: blur(16px) saturate(125%);
      -webkit-backdrop-filter: blur(16px) saturate(125%);
      box-shadow: 0 26px 60px rgba(31, 95, 191, 0.16);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .chem-backdrop::before,
    .chem-backdrop::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.45), rgba(198, 220, 255, 0.05));
      pointer-events: none;
    }

    .chem-backdrop::before {
      width: 220px;
      height: 220px;
      top: -70px;
      right: -60px;
    }

    .chem-backdrop::after {
      width: 160px;
      height: 160px;
      bottom: -40px;
      left: -38px;
    }

    .chem-bottle {
      position: relative;
      width: 180px;
      height: 290px;
      z-index: 1;
    }

    .chem-cap {
      width: 78px;
      height: 34px;
      margin: 0 auto;
      border-radius: 12px 12px 8px 8px;
      background: linear-gradient(180deg, #e8f1ff, #cddfff);
      border: 1px solid rgba(31, 95, 191, 0.22);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    }

    .chem-neck {
      width: 56px;
      height: 28px;
      margin: -1px auto 0;
      border-radius: 0 0 12px 12px;
      background: linear-gradient(180deg, rgba(242, 248, 255, 0.95), rgba(214, 228, 252, 0.8));
      border: 1px solid rgba(31, 95, 191, 0.2);
      border-top: none;
    }

    .chem-body {
      width: 180px;
      height: 228px;
      margin-top: -2px;
      border-radius: 28px 28px 34px 34px;
      border: 1px solid rgba(31, 95, 191, 0.24);
      background: linear-gradient(170deg, rgba(255, 255, 255, 0.38), rgba(213, 229, 255, 0.22));
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      overflow: hidden;
      position: relative;
      box-shadow: inset 0 2px 12px rgba(255, 255, 255, 0.45), 0 20px 35px rgba(31, 95, 191, 0.15);
    }

    .chem-liquid {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 56%;
      background: linear-gradient(180deg, rgba(84, 145, 246, 0.56), rgba(31, 95, 191, 0.68));
      border-top: 1px solid rgba(255, 255, 255, 0.38);
    }

    .chem-liquid::before {
      content: '';
      position: absolute;
      top: -9px;
      left: -2%;
      width: 104%;
      height: 20px;
      background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08));
      border-radius: 50%;
    }

    .chem-label {
      position: absolute;
      top: 22%;
      left: 50%;
      transform: translateX(-50%);
      width: 132px;
      text-align: center;
      padding: 12px 10px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.45);
      border: 1px solid rgba(31, 95, 191, 0.2);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .chem-label strong {
      display: block;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      color: #1f5fbf;
    }

    .chem-label small {
      font-size: 0.7rem;
      color: #456da5;
    }

    .chem-bubble {
      position: absolute;
      bottom: -30px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.55);
      animation: floatBubble 8s linear infinite;
    }

    .chem-b1 {
      width: 12px;
      height: 12px;
      left: 20%;
      animation-delay: 0.4s;
    }

    .chem-b2 {
      width: 8px;
      height: 8px;
      left: 48%;
      animation-delay: 2.1s;
    }

    .chem-b3 {
      width: 10px;
      height: 10px;
      left: 70%;
      animation-delay: 4.2s;
    }

    @keyframes floatBubble {
      0% {
        transform: translateY(0);
        opacity: 0;
      }

      15% {
        opacity: 0.8;
      }

      100% {
        transform: translateY(-180px);
        opacity: 0;
      }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      width: 100%;
      max-width: 460px;
    }

    .product-card {
      background: var(--white);
      border-radius: 20px;
      padding: 28px 22px;
      border: 1px solid var(--border);
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .product-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 60%, rgba(42, 110, 78, 0.04));
      pointer-events: none;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .product-card:nth-child(2) {
      margin-top: 28px;
    }

    .product-card:nth-child(3) {
      margin-top: -14px;
    }

    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 16px;
    }

    .card-icon.green {
      background: var(--accent-light);
    }

    .card-icon.blue {
      background: #e4eef8;
    }

    .card-icon.amber {
      background: #fdf2e4;
    }

    .card-icon.pink {
      background: #fce8ee;
    }

    .product-card h4 {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 4px;
    }

    .product-card p {
      font-size: 0.78rem;
      color: var(--ink-3);
    }

    /* ── STATS ── */
    .stats {
      background: var(--ink);
      padding: 60px 5vw;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-num {
      font-family: var(--font-serif);
      font-size: 2.8rem;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-num span {
      color: var(--accent-mid);
    }

    .stat-label {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* ── SECTION COMMON ── */
    section {
      padding: 100px 5vw;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
      display: block;
    }

    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      letter-spacing: -0.02em;
      line-height: 1.12;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--ink-2);
      max-width: 520px;
      line-height: 1.7;
    }

    /* ── PRODUCTS ── */
    #products {
      background: var(--white);
    }

    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
      gap: 24px;
      flex-wrap: wrap;
    }

    .products-tools {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end;
    }

    .products-tools input,
    .products-tools select {
      appearance: none;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--ink);
      padding: 11px 14px;
      border-radius: 12px;
      font-family: var(--font-sans);
      font-size: 0.9rem;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
      min-width: 220px;
    }

    .products-tools select {
      min-width: 190px;
      cursor: pointer;
    }

    .products-tools input:focus,
    .products-tools select:focus {
      border-color: rgba(42, 110, 78, 0.45);
      box-shadow: 0 0 0 4px rgba(42, 110, 78, 0.12);
      background: #f3f2ef;
    }

    .products-count {
      font-size: 0.85rem;
      color: var(--ink-3);
      margin-left: auto;
      padding: 4px 0;
    }

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

    .products-empty {
      grid-column: 1 / -1;
      background: var(--surface);
      border: 1px dashed rgba(26, 26, 24, 0.18);
      border-radius: 20px;
      padding: 28px;
      color: var(--ink-2);
    }

    .products-empty strong {
      color: var(--ink);
      font-weight: 500;
    }

    .prod-card {
      background: var(--surface);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: pointer;
    }

    .prod-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
    }

    .prod-img {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      position: relative;
      overflow: hidden;
    }

    .prod-body {
      padding: 24px;
    }

    .prod-tag {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-light);
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 12px;
      display: inline-block;
    }

    .prod-body h3 {
      font-size: 1.05rem;
      font-weight: 500;
      margin-bottom: 8px;
      color: var(--ink);
    }

    .prod-body p {
      font-size: 0.85rem;
      color: var(--ink-2);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .prod-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .prod-price {
      font-weight: 500;
      font-size: 1.1rem;
      color: var(--ink);
    }

    .prod-btn {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--accent);
      background: var(--accent-light);
      border: none;
      border-radius: 100px;
      padding: 7px 16px;
      cursor: pointer;
      transition: background var(--transition);
    }

    .prod-btn:hover {
      background: #c8e4d8;
    }

    /* ── WHY ── */
    #why {
      background: var(--surface);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 60px;
    }

    .why-features {
      display: grid;
      gap: 32px;
    }

    .feature {
      display: flex;
      gap: 20px;
      padding: 24px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: box-shadow var(--transition);
    }

    .feature:hover {
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      background: var(--accent-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .feature-text h4 {
      font-size: 0.95rem;
      font-weight: 500;
      margin-bottom: 4px;
      color: var(--ink);
    }

    .feature-text p {
      font-size: 0.83rem;
      color: var(--ink-2);
      line-height: 1.6;
    }

    .why-image {
      background: var(--accent-light);
      border-radius: 24px;
      aspect-ratio: 4/5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
      overflow: hidden;
    }

    .why-image::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(42, 110, 78, 0.08);
      top: -80px;
      right: -80px;
    }

    .why-image::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(42, 110, 78, 0.06);
      bottom: -60px;
      left: -60px;
    }

    .why-big-icon {
      font-size: 6rem;
      z-index: 1;
    }

    .why-tagline {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-style: italic;
      color: var(--accent);
      text-align: center;
      max-width: 220px;
      z-index: 1;
    }

    /* ── TESTIMONIALS ── */
    #reviews {
      background: var(--white);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .review-card {
      background: var(--surface);
      border-radius: 20px;
      padding: 32px 28px;
      border: 1px solid var(--border);
    }

    .stars {
      color: #f5a623;
      font-size: 0.9rem;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }

    .review-text {
      font-size: 0.92rem;
      color: var(--ink-2);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }

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

    .reviewer-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .av1 {
      background: #e4f0eb;
    }

    .av2 {
      background: #e4eef8;
    }

    .av3 {
      background: #fdf2e4;
    }

    .reviewer-name {
      font-weight: 500;
      font-size: 0.88rem;
      color: var(--ink);
    }

    .reviewer-role {
      font-size: 0.78rem;
      color: var(--ink-3);
    }

    /* ── CONTACT ── */
    #contact {
      background: var(--ink);
      color: var(--white);
    }

    #contact .section-label {
      color: var(--accent-mid);
    }

    #contact .section-title {
      color: var(--white);
    }

    #contact .section-sub {
      color: rgba(255, 255, 255, 0.6);
      max-width: 480px;
      margin-bottom: 48px;
    }

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

    .contact-form {
      display: grid;
      gap: 16px;
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 0.8rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.04em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 10px;
      padding: 13px 16px;
      color: var(--white);
      font-family: var(--font-sans);
      font-size: 0.9rem;
      transition: border-color var(--transition), background var(--transition);
      outline: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--accent-mid);
      background: rgba(255, 255, 255, 0.08);
    }

    .form-group select option {
      background: #2a2a26;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .btn-submit {
      background: var(--accent);
      color: var(--white);
      border: none;
      padding: 14px 32px;
      border-radius: 100px;
      font-family: var(--font-sans);
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      width: 100%;
      transition: background var(--transition), transform var(--transition);
      margin-top: 4px;
    }

    .btn-submit:hover {
      background: #184b96;
      transform: translateY(-1px);
    }

    .contact-info {
      display: grid;
      gap: 32px;
    }

    .info-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .info-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .info-label {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

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

    /* ── FOOTER ── */
    footer {
      background: #111110;
      padding: 32px 5vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    footer .logo {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.8);
    }

    footer .logo span {
      color: var(--accent-mid);
    }

    footer p {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.3);
    }

    footer nav {
      display: flex;
      gap: 24px;
    }

    footer nav a {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: color var(--transition);
    }

    footer nav a:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

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

    .fade-up {
      opacity: 0;
      animation: fadeUp 0.7s ease forwards;
    }

    .fade-up:nth-child(1) {
      animation-delay: 0.1s;
    }

    .fade-up:nth-child(2) {
      animation-delay: 0.2s;
    }

    .fade-up:nth-child(3) {
      animation-delay: 0.3s;
    }

    .fade-up:nth-child(4) {
      animation-delay: 0.4s;
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        grid-template-columns: 1fr;
        padding-top: 100px;
      }

      .hero-visual {
        display: none;
      }

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

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

      .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .why-image {
        aspect-ratio: 16/9;
      }

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

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

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

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

      .stats {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
    }
