body, html {
      margin: 0;
      padding: 0;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      scroll-behavior: smooth;
      background: #481c6c;
    }
    /* Atkomentuoti prieš starta 
    img {
      pointer-events: none;
      -webkit-user-drag: none;
    }

    body {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    } */

    ::-webkit-scrollbar {
      width: 12px;
      background: #100414;
    }

    ::-webkit-scrollbar-thumb {
      background: #481c6c;
      border-radius: 6px;
      border: 2px solid #100414;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #100414;
    }

    ::-webkit-scrollbar-track {
      background: #100414;
      border-radius: 6px;
    }

    /* Firefox scrollbar */
    * {
      scrollbar-width: thin;
      scrollbar-color: #481c6c #100414;
    }

    header {
      height: 95vh;
      position: relative;
      overflow: hidden;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      z-index: 1;
    }
    
    header::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: url('/iliustracijos/fonas.png') center/cover no-repeat;
      filter: brightness(0.5) contrast(1.5) sepia(1) hue-rotate(-45deg) saturate(3.5); /* Tonacija artimesnė #100414 */
      z-index: -2;
    }
    
    header::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      backdrop-filter: blur(5px);
      background: linear-gradient(to bottom, rgba(16,4,20, 0.5) 40%, #481c6c);
      z-index: -1;
    }

    header h1 {
      font-size: 3rem;
      margin-top: 30vh;
      margin-left: 15vh;
      text-align: left;
      color: white;
    }
    header h4 {
      font-size: 1rem;
      margin-top: -2vh;
      margin-left: 15vh;
      text-align: left;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.712);
    }

    .card-wrapper {
      position: relative;
      width: 350px; /* arba responsive % */
      height: auto;
      margin-top: 30%;
      margin-right: 25%;
    }
    
    .card-image {
      width: 100%;
      display: block;
    }
    
    .led-dot {
      position: absolute;
      top: 42.8%; /* reguliuok priklausomai nuo kur tiksliai turi būti */
      left: 56.2%;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background-color: #481c6c;
      box-shadow: 0 0 17px #481c6c;
      animation: blink 1.3s infinite;
    }
    
    @keyframes blink {
      0%, 100% { opacity: 1; box-shadow: 0 0 12px #100414; }
      50% { opacity: 0.2; box-shadow: 0 0 4px #481c6c; }
    }
    
.policy-button {
  background: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 0.5rem;
  transition: background-color 0.3s, transform 0.3s;
}

#policyModalText{
  text-align: left;
}

#kontaktai {
  background-color: #100414;
}

.sekcija {
  padding-top: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  background-color: #100414;
  color: white;
}

h2.sekcija {
  margin: 0 0 24px; /* larger gap under headings */
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .sekcija {
    padding-top: 1rem;
    margin-bottom: 0;
    text-align: left;
    margin-left: 0; /* remove left offset */
  padding-left: 8px; /* reduce compression on phones */
  padding-right: 8px;
  }
  h2.sekcija { margin-bottom: 20px; }
}

section{
  color: white;
  padding-top: 1px;
  padding-bottom: 1px;
  background-color: #100414;
}

section h1{
  font-size:3rem;
  text-align: left;
}

section p{
  font-size:1.25rem;
  max-width:600px;
  text-align: left;
}

section.sekcija{
  min-height: 100vh;
}

.glow-section {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
  background-color: #100414;
  color: white;
  overflow: hidden;
}

/* Gradient "burbulai" */
.glow-section::before,
.glow-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(120px);
  z-index: 0;
}

/* Mėlynas švytėjimas viršuje dešinėje */
.glow-section::before {
  width: 500px;
  height: 500px;
  background: #481c6c;
  right: -150px;
}

/* Violetinis švytėjimas apačioje kairėje */
.glow-section::after {
  width: 400px;
  height: 400px;
  background: #481c6c;
  bottom: -100px;
  left: -100px;
}

/* Turinys virš visko */
.glow-section > * {
  position: relative;
  z-index: 1;
}

.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.waves {
  position: relative;
  width: 100%;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 200px;
  max-height: 250px;
}
/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}


    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: transparent;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 2rem;
      padding-top: 1.5rem;
      z-index: 1000;
      transition: background-color 1s;
    }

    nav.scrolled {
      background-color: rgba(16,4,20, 0.8);
      color: white;
    }

    .nav-logo {
      font-weight: bold;
      font-size: 2rem;
      margin-left: 5%;
    }
    nav a{
      color: white;
    }
    nav.scrolled a {
      color: white;
    }
    .nav-links {
      margin-right: 5%;
      display: flex;
      gap: 5rem;
    }
    
    .nav-links a {
      text-decoration: none;
      transition: 0.5s;
    }
    nav a:hover {
      color: white;
      background-color: rgba(0, 0, 0, 0.4);
      padding: 0.5rem 1rem;
      border-radius: 4px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    nav.scrolled a:hover {
      color: white;
      background-color: rgba(255, 255, 255, 0.4);
      padding: 0.5rem 1rem;
      border-radius: 4px;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);

    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background: white;
      margin: 4px 0;
    }
    
    .new-card{
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;    max-width: 350px;
      box-sizing: border-box;
      margin-left: auto;
      margin-right: auto;
      width: 100%;
      margin: 0 10px;
      cursor: pointer;
      transition: 1s;
      position: relative; z-index: 1;
    }

    .new-card img {
      height: auto;
      max-width: 80%;
      transition: transform 1s;
    }

    .card-background {
      position: absolute;
      top: 45%; left: 45%;
      transform: translate(-50%, -50%);
      width: 100%; height: 110%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.25) 50%, transparent 80%);
      filter: blur(10px);
      z-index: 0;
      pointer-events: none;
    }

    .new-card:hover{
      transform: translateY(-15px) scale(1.05);
      z-index: 2;
      text-shadow:1px 4px 20px #481c6c, 1px 4px 20px #481c6c;
    }

    .new-card:hover img {
      transform: translateY(-15px) scale(1.05);
    }

    .new-card-text{
      margin-top: 5px;
      color: white;
      transition: 1s;
      font-size: 1.3rem;
      font-weight: 400;
    }
    #kaina{
      font-size: 1rem;
      font-weight: 200;
      margin-left: 40%;
    }

    @keyframes spotify-glow {
      0% { opacity: 0.4; }
      100% { opacity: 1; filter: blur(18px);}
    }

    .card-text{
      background-color: rgba(0,0,0,0.4);
      padding: 0.5rem;
      border-radius: 4px;
      text-align: center;
      width: 100%;
      font-size: 1.2rem;
      box-sizing: border-box;
    }

    .card-options {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto 32px; /* add more space after each cards grid */
      padding: 0 2rem;
      
      background: #100414;
    }

    .card-option {
      flex: 1 1 300px;
      max-width: 350px;
      min-width: 250px;
      box-sizing: border-box;
      width: 100%;
      min-height: 25rem;
      background-size: cover;
      background-position: center;
      border: 2px solid #ccc;
      border-radius: 8px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
      padding: 1rem;
      color: white;
      font-weight: bold;
      text-shadow: 1px 1px 2px black;
      background-blend-mode: darken;
      background-color: rgba(0,0,0,0.1);
    }

  /* Spacing driven by heading margin only */
  h2.sekcija + .card-options { margin-top: 0; }

    /* Responsive for tablets */
    @media (max-width: 1024px) {
      .card-options {
        margin-top: 0;
        padding: 0 1rem;
  gap: 1.5rem;
  margin-bottom: 28px; /* spacing after grid on tablets */
      }
      .card-option {
        min-width: 105%;
      }
    }

    /* Responsive for mobile */
    @media (max-width: 768px) {
      .card-options {
        flex-direction: column;
        align-items: center;
  margin-top: 0;
  padding: 0 8px; /* reduce side padding on phones */
        gap: 1rem;
  padding-bottom: 0;
  margin-bottom: 24px; /* spacing after grid on phones */
      }
      .card-option {
        min-width: 8%;
      }
      .new-card {
        max-width: 90%;
        margin-top: 0.5rem;
      }
      .card-wrapper{
        margin-top: auto;
      margin-right: auto;
      }
    }

    .card-option:hover {
      border-color: rgba(32,14,1, 0.8);
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      header h1 {
      font-size: 1.7rem;
      margin-top: 15vh;
      margin-left: 2.3vh;
      text-align: left;
      color: white;
    }
      header h4 {
        font-size: 1.1rem;
        margin-top: -1vh;
        margin-left: 2.3vh;
        text-align: left;
        font-weight: 300;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.75);
        flex-direction: column;
        padding: 1rem 0;
        animation: slideDown 0.3s ease forwards;
      }
      .nav-links a {
        margin-right: 3vh;
        text-align: right;
      }
      .nav-links.active {
        display: flex;
      }
      
      .hamburger {
        display: flex;
        margin-right: 5vh;
      }
    }

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

    .modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1001;
    }

    #modalInput{
      width: 100%;
      padding: 0.5rem;
      margin-top: 0.5rem;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .modal-content {
      background: #481c6c;
      color: white;
      box-shadow: 0 10px 25px rgba(72,28,108, 0.7);
      padding: 2rem;
      border-radius: 8px;
      max-width: 500px;
      width: 90%;
      position: relative;
    }
    .modal-content h3 {
      font-weight: 600;
      color: #fafafa;
    }
    .modal-close {
      color: #fafafa;
      position: absolute;
      top: 18px;
      right: 15px;
      font-size: 1.2rem;
      background: transparent;
      border: none;
      cursor: pointer;
    }
    .modal-close:hover {
      color: white;
    }

    @media (max-width: 600px) {
      .modal-content {
        max-width: 95vw;
        width: 98vw;
        padding: 1rem;
        font-size: 0.95rem;
      }
    }

    label {
      display: block;
      margin-top: 1rem;
    }

    #quantityButtons {
      display: flex;
      gap: 1rem;
    }

    #quantityButtons button {
      padding: 0.7rem 1.5rem;
      font-size: 1.3rem;
      border: none;
      border-radius: 6px;
      background: rgba(16,4,20, 0.5);
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(72,28,108,0.18);
      transition: 0.5s;
      outline: none;
    }

    #quantityButtons button:hover {
      box-shadow: 0 4px 16px #481c6c, 0 1.5px 8px #100414;
      transform: scale(1.08);
    }

    #quantityButtons button.active {
      background: #100414;
      color: #e0cfff;
      transform: scale(0.96);
      box-shadow: 0 1px 4px #481c6c;
    }

    .toCart {
      margin-top: 1rem;
      padding: 0.75rem 1.5rem;
      background: rgba(16,4,20, 0.5);
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.7s;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    .toCart:hover {
      background: #100414;
      box-shadow: 0 0 10px rgba(16,4,20, 0.5);
    }
    .toCart:disabled {
      background: rgba(16,4,20, 0.3);
      cursor: not-allowed;
    }
    .toCart:disabled:hover {
      background: rgba(16,4,20, 0.3);
      box-shadow: none;
    }
    .toCart:disabled:active {
      transform: scale(0.97);
      background: linear-gradient(90deg, #481c6c 0%, #100414 100%);
      animation: loading-btn 0.7s linear infinite alternate;
      }

      @keyframes loading-btn {
        0% {
          filter: brightness(1) blur(0px);
          box-shadow: 0 0 0px #481c6c;
        }
        100% {
          filter: brightness(1.2) blur(1px);
          box-shadow: 0 0 12px #481c6c;
        }
    }

    #floatingCartBtn {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 9999;
      background: linear-gradient(90deg, #481c6c 0%, #100414 100%);
      box-shadow: 0 0 18px 4px #481c6c, 0 0 32px 8px #100414;
      color: #fff;
      border: none;
      border-radius: 32px;
      padding: 14px 28px 14px 22px;
      font-size: 1.1em;
      font-family: inherit;
      box-shadow: 0 4px 16px rgba(0,0,0,0.18);
      cursor: pointer;
      display: none;
      align-items: center;
      gap: 10px;
      transition: 0.7s;
    }
    #floatingCartBtn:hover {
      background: linear-gradient(90deg, #481c6c 0%, #100414 100%);
      box-shadow: 0 0 24px 8px #481c6c, 0 0 40px 16px #100414;
      animation: floatingCartBtnGlow 2s linear infinite alternate;
    }
    @media (max-width: 600px) {
      #floatingCartBtn {
        right: 12px;
        bottom: 12px;
        padding: 12px 20px 12px 16px;
        font-size: 1em;
      }
    }

    #pirkti {
      margin-top: 1rem;
      padding: 0.75rem 1.5rem;
      background: rgba(72,28,108, 1);
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.7s;
      display: none;
      margin-left: auto;
      margin-right: auto;
    }
    #pirkti:hover {
      background: #481c6cac;
      box-shadow: 0 0 10px rgba(72,28,108, 0.5);
    }
    #pirkti:disabled {
      background: rgba(72,28,108, 0.3);
      cursor: not-allowed;
    }
    #pirkti:disabled:hover {
      background: rgba(72,28,108, 0.3);
      box-shadow: none;
    }
    #pirkti:disabled:active {
      transform: scale(0.97);
      background: linear-gradient(90deg, #481c6c 0%, #100414 100%);
      animation: loading-btn 0.7s linear infinite alternate;
      }

      @keyframes loading-btn {
        0% {
          filter: brightness(1) blur(0px);
          box-shadow: 0 0 0px #481c6c;
        }
        100% {
          filter: brightness(1.2) blur(1px);
          box-shadow: 0 0 12px #481c6c;
        }
    }

    #cartPreview {
      background: linear-gradient(270deg, #481c6c, #100414, #481c6c, #100414);
      background-size: 400% 400%;
      animation: cartPreviewBgAnim 25s ease-in-out infinite;
      color: #fff;
      margin-top: 2rem;
      padding: 1.5rem 1.2rem;
      border: 1.5px solid #481c6c;
      border-radius: 14px;
      box-shadow: 0 4px 24px 0 rgba(72,28,108,0.18), 0 1.5px 8px 0 #100414;
      font-size: 1.1rem;
      transition: box-shadow 0.4s;
      position: relative;
      overflow: hidden;
  flex: 1 1 420px; /* flexible width to avoid overflow */
  max-width: 560px;
  width: 100%;
  margin-left: 0;
    }
    @keyframes cartPreviewBgAnim {
      0% {
      background-position: 0% 50%;
      }
      50% {
      background-position: 100% 50%;
      }
      100% {
      background-position: 0% 50%;
      }
    }
    #cartPreview::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 90px; height: 90px;
      background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 80%);
      z-index: 0;
      pointer-events: none;
    }
    #cartPreview strong, #cartPreview b {
      color: #e0cfff;
      font-weight: 600;
    }
    #cartPreview #cartItems {
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 0.5rem 0;
      list-style: none;
    }
    #cartPreview #cartItems:last-child {
      border-bottom: none;
    }
    #cartPreview .cart-total {
      margin-top: 1rem;
      font-size: 1.15rem;
      color: #e0cfff;
      font-weight: 500;
    }

    .krepBendras {
      display: flex;
      align-items: flex-start;
      gap: 2rem;
      flex-wrap: wrap; /* allow wrapping to prevent horizontal overflow */
      width: 100%;
      box-sizing: border-box;
    }

    .cart-text {
      color: white;
      margin-top: 2.2vh;
      flex: 1 1 320px;
      max-width: 560px;
    }

    #cartPreview {
      position: relative;
    }
    @media (max-width: 768px) {
      #cartPreview {
  width: calc(100% - 50px); /* stretch wide on phones */
  max-width: none;          /* remove desktop cap on mobile */
  margin: 1.5rem 6px 0;     /* very small side gaps */
  align-self: stretch;      /* ignore parent align-items: center */
      }
      .cart-text {
  width: auto;
  margin: 1rem 8px 0;
        text-align: left;
        padding-right: 0;
      }
      .krepBendras {
        flex-direction: column;
        align-items: center;
      }
      .cart-text {
        margin-top: 1rem;
        margin-left: 0;
        position: static;
        flex: none;
      }
    }

    /* Desktop: shift cart right by ~1/3 of the screen */
    @media (min-width: 1025px) {
      #cartPreview {
  flex: 0 0 560px;       /* keep a fixed, non-compressed width */
  width: 560px;
        margin-left: 33vw;    /* move away from the left edge ~1/3 viewport */
      }
    }

    footer {
      background: #100414; /*linear-gradient(to bottom, #100414 0%, #481c6c 40%);   */ 
      padding: 2rem;
      text-align: center;
      font-size: 0.9rem;
      color: #aeaeae;
      text-decoration: none;
      margin-top: 0;
    }
    footer .footer{
      margin-bottom: -100%;
      padding-bottom: -100%;
    }
    footer a {
      color: #aeaeae;
      text-decoration: none;
      transition: color 0.3s;
    }
    footer a:hover {
      color: #fafafa;
      text-decoration: underline;
    }

    .footer-links a {
      color: #aeaeae;
      margin: 0 0.5rem;
      text-decoration: none;
    }
    .footer-links a:hover {
      color: #fafafa;
      text-decoration: underline;
    }

    .footer-links i {
      margin-right: 5px;
    }

    .after-add-buttons {
      margin-top: 1rem;
      display: none;
    }

    /* === Home (index) sections === */
    .home-section {
      background: #100414;
      color: #fff;
      padding: 3rem 1.25rem;
    }
    .home-title {
      text-align: center;
      font-size: 2rem;
      margin: 0 0 0.4rem;
    }
    .home-subtitle {
      text-align: center;
      opacity: 0.9;
      max-width: 850px;
      margin: 0 auto 1.5rem;
    }

    /* Features grid */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      max-width: 1100px;
      margin: 1rem auto 0;
    }
    .feature-card {
      background: rgba(0,0,0,0.35);
      border: 1px solid #481c6c;
      border-radius: 14px;
      padding: 1.25rem;
      box-shadow: 0 6px 24px rgba(72,28,108,0.18), 0 2px 8px #100414;
    }
    .feature-card i {
      font-size: 1.5rem;
      color: #e0cfff;
      margin-bottom: 0.4rem;
      display: inline-block;
    }
    .feature-card h3 {
      margin: 0 0 0.25rem;
      font-weight: 600;
    }
    .feature-card p {
      margin: 0;
      opacity: 0.95;
    }

    /* Alternuojančios eilutės su vaizdu ir tekstu */
    .alt-row {
      max-width: 1150px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      padding: 1rem 0.5rem;
    }
    .alt-row.reverse { flex-direction: row-reverse; }
    .alt-col { flex: 1 1 420px; min-width: 280px; }
    .alt-col.img img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 14px;
      box-shadow: 0 6px 24px rgba(72,28,108,0.25), 0 2px 8px #100414;
    }
    .alt-col.text h2 { margin: 0 0 0.5rem; }
    .alt-col.text p { margin: 0; max-width: 60ch; opacity: 0.95; }

    /* DUK */
    .home-faq .faq-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 1100px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }
    .home-faq .faq-list li {
      background: rgba(0,0,0,0.35);
      border: 1px solid #481c6c;
      border-radius: 12px;
      padding: 1rem 1.25rem;
    }

    /* CTA */
    .home-cta {
      text-align: center;
      background: linear-gradient(90deg, rgba(72,28,108,0.35), rgba(16,4,20,0.35));
      border-top: 1px solid rgba(72,28,108,0.25);
      border-bottom: 1px solid rgba(72,28,108,0.25);
    }
    .home-cta h2 { margin: 0 0 0.3rem; }
    .home-cta p { margin: 0; opacity: 0.95; }
    .home-cta-btn {
      display: inline-block;
      margin-top: 0.9rem;
      padding: 0.8rem 1.5rem;
      background: linear-gradient(90deg, #481c6c 0%, #100414 100%);
      color: #fff;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(72,28,108,0.28), 0 2px 8px #100414;
      transition: 0.3s;
    }
    .home-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(72,28,108,0.34), 0 2px 12px #100414;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .home-faq .faq-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 768px) {
      .home-section { padding: 2rem 0.75rem; }
      .home-title { font-size: 1.6rem; }
      .feature-grid { grid-template-columns: 1fr; }
      .home-faq .faq-list { grid-template-columns: 1fr; }
      .alt-col { flex: 1 1 100%; }
      .alt-col.text p { max-width: none; }
    }
