/* ============================================================
   full.css — Below-fold LAYOUTS for index.html
   Loaded deferred. Contains ONLY grid/flexbox/spacing.
   Colors, typography, borders, backgrounds are in style.css.
   ============================================================ */

/* === BELOW-FOLD SECTION LAYOUT === */
.sec { position: relative; z-index: 10; padding: 6rem 2rem; }
.si { max-width: 1100px; margin: 0 auto; }

/* === RUJANA GRID === */
.rg { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; margin-top: 2rem; }
.ri { width: 100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rt p { margin-bottom: 1.2rem; }

/* === TEAM GRID === */
.tg { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.tc { padding: 1.8rem; text-align: center; }
.ta { width: 70px; height: 70px; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; }

/* === SERVICE GRID === */
.sg { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.sv { padding: 2.5rem; }
.sv .ico { margin-bottom: 1rem; }
.sv h4 { margin-bottom: .8rem; }

/* === MAGIC GRID === */
.mg { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.mi { padding: 1.5rem 2rem; display: flex; align-items: flex-start; gap: 1rem; }
.mi .ico { flex-shrink: 0; margin-top: .2rem; }
.mi p { margin-top: .3rem; }

/* === VORTEILE GRID === */
.ag { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 2rem; }
.ai { display: flex; gap: 1.2rem; align-items: flex-start; }
.ai .aico { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ai h4 { margin-bottom: .4rem; }

/* === TESTIMONIALS GRID === */
.eg { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 2rem; }
.et { padding: 2rem; }
.et .stars { margin-bottom: 1rem; }
.et blockquote { margin-bottom: 1.2rem; }

/* === PRICING GRID === */
.pg { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 2rem; }
.pc { padding: 3rem 2.5rem; text-align: center; }
.pc.ft { position: relative; }
.pc.ft::before { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: .3rem 1.2rem; }
.pc h3 { margin-bottom: .5rem; }
.pc .price { margin: 1rem 0; }
.pc .features { list-style: none; margin: 1.5rem 0 2rem; }
.pc .features li { padding: .5rem 0; }

/* === FOOTER LAYOUT === */
.fb { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.fl { display: flex; gap: 1.5rem; }

/* === SCROLL REVEAL === */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.rv.v { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .rg { grid-template-columns: 1fr; gap: 2rem; }
  .sec { padding: 4rem 1.5rem; }
  .fb { flex-direction: column; text-align: center; }
}
