:root{
  --blue: #0e2e63;
  --blue2:#0b2550;
  --green:#4fa954;
  --bg:#ffffff;
  --muted:#6b7280;
  --card:#f3f4f6;
  --line:#e5e7eb;
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#111827;
  background:#f7f9fc;
}

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

/* NAV */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__img {
  height: 54px;
  width: 300px;
}

.nav{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}

.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:15px;
  padding-bottom:7px;
}

.nav__menu{
  display:flex;
  gap:10px;
  margin-left:30px;
}

.nav__menu a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav__menu a:hover{
  color:#0e2e63;
}

.nav__menu a:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  margin-right: 4px;
  color: black;
}

/* PAGE HEADER */
.pagebar{
  background: var(--blue);
  color:#fff;
  padding: 22px 0;
}
.pagebar__inner{
  text-align:center;
}
.pagebar h1{
  margin:0;
  font-size: 23px;
  font-weight: 700;
}
.pagebar p{
  margin:4px 0 0;
  font-size: 14px;
  opacity: .9;
  font-weight: 600;
}

/* HERO */
.product-hero{
  padding:40px 0 30px;
  background:#f7f9fc;
}
.product-hero__inner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:34px;
  align-items:center;
}
.product-hero__left h2{
  margin:0 0 14px;
  font-size:46px;
  line-height:1.08;
  font-weight:800;
  color:#111827;
  max-width:560px;
}
.product-hero__left p{
  margin:0 0 22px;
  font-size:16px;
  line-height:1.7;
  color:#374151;
  max-width:560px;
}
.product-hero__right img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:16px;
  display:block;
}
.product-hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* BUTTONS */
.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:none;
  cursor:pointer;
  border-radius:10px;
  font-weight:700;
  padding:0 22px;
  height:44px;
  transition:0.2s ease;
  font-size:15px;
}
.hero-btn--primary{
  background:var(--blue);
  color:#fff;
}
.hero-btn--secondary{
  background:#eaf1fb;
  color:var(--blue);
}
.hero-btn--light{
  background:#fff;
  color: #0e2e63
}
.hero-btn--outline{
  background:rgba(255,255,255,0.18);
  color:#fff;
  border:1px solid rgba(255,255,255,0.35);
}
.hero-btn:hover{
  transform:translateY(-1px);
}

/* COMMON SECTION */
.product-section{
  padding:60px 0;
}
.section-title{
  margin-bottom:28px;
}
.section-title--center{
  text-align:center;
}
.section-title h2{
  margin:0;
  font-size:34px;
  font-weight:800;
  line-height:1.15;
}
.section-title p{
  margin:10px 0 0;
  font-size:16px;
  color:#6b7280;
  line-height:1.6;
}

/* FEATURES */
.features-layout{
  display:grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap:22px;
  align-items:center;
}
.features-col{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.feature-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:22px 18px;
  text-align:center;
  box-shadow:0 8px 20px rgba(15,23,42,0.04);
}
.feature-box h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:800;
  line-height:1.3;
}
.feature-box p{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:#4b5563;
}
.features-image-frame{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:16px;
  box-shadow:0 10px 22px rgba(15,23,42,0.05);
}
.features-image-frame img{
  width:100%;
  display:block;
  border-radius:16px;
  background:#f3f4f6;
}

/* PRICING */
.pricing-section{
  background:#f9fbfd;
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.pricing-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px 24px;
  box-shadow:0 8px 20px rgba(15,23,42,0.04);
}
.pricing-card--featured{
  background: #0e2e63;
  color:#fff;
  border-color:transparent;
}
.pricing-card h3{
  margin:0 0 16px;
  font-size:20px;
  font-weight:800;
}
.pricing-card__price{
  font-size:34px;
  line-height:1.1;
  font-weight:900;
  margin-bottom:18px;
}
.pricing-card__price span{
  font-size:15px;
  font-weight:600;
}
.pricing-card ul{
  margin:0 0 22px;
  padding-left:18px;
}
.pricing-card li{
  margin-bottom:10px;
  font-size:14px;
  line-height:1.55;
}
.pricing-card__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* FAQ */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 6px 16px rgba(15,23,42,0.04);
}
.faq-question{
  width:100%;
  border:none;
  background:none;
  padding:20px 22px;
  font-size:17px;
  font-weight:700;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.faq-question span{
  color: #0e2e63;
  font-size:20px;
  font-weight:800;
  display: inline-block;
}

/* Hide the original text content */
.faq-question span {
  font-size: 0;
}

/* Show + using pseudo-element */
.faq-question span::before {
  font-size: 20px;
  content: "+";
}

/* Change to - when active */
.faq-item.active .faq-question span::before {
  content: "-";
}

.faq-answer{
  display:none;
  padding:0 22px 18px;
}
.faq-answer p{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.7;
}
.faq-item.active .faq-answer{
  display:block;
}

/* CONTACT */
.contact-section{
  padding-top:50px;
}
.product-contact-grid{
  display:grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap:22px;
  align-items:start;
}
.product-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  box-shadow:0 8px 20px rgba(15,23,42,0.04);
}
.product-form__row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.product-field{
  margin-bottom:18px;
}
.product-field label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:700;
}
.product-field label span{
  color:#ef4444;
}
.product-field input,
.product-field select,
.product-field textarea{
  width:100%;
  border:1px solid #dfe3ea;
  border-radius:12px;
  background:#fff;
  padding:14px 14px;
  font-size:14px;
  outline:none;
  font-family:inherit;
}
.product-field textarea{
  min-height:170px;
  resize:vertical;
}
.product-submit{
  min-width:130px;
}
.product-form__status{
  margin-top:12px;
  color:var(--green);
  font-weight:700;
  font-size:14px;
}
.product-contact-side{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.product-contact-info,
.product-map{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 8px 20px rgba(15,23,42,0.04);
}
.product-contact-info{
  padding:22px;
}
.product-contact-info h3{
  margin:0 0 16px;
  font-size:22px;
  font-weight:800;
}
.product-contact-info p{
  margin:0 0 12px;
  font-size:14px;
  line-height:1.6;
  color:#374151;
}
.product-map{
  overflow:hidden;
  min-height:280px;
}
.product-map iframe{
  width:100%;
  min-height:280px;
  height:100%;
  border:0;
}

/* FOOTER */
.footer{
  background: #0e2e63;
  color: #fff;
  padding: 40px 0 0;
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}
.footer__title{
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
}
.footer__text{
  margin: 0;
  max-width: 280px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.footer__col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__link{
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}
.footer__link:hover{
  color: #ffffff;
}
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
}
.footer__bottom-inner{
  display: flex;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .product-hero__inner,
  .features-layout,
  .pricing-grid,
  .product-contact-grid{
    grid-template-columns:1fr;
  }

  .product-form__row{
    grid-template-columns:1fr;
  }

  .product-hero__left h2{
    font-size:34px;
  }

  .section-title h2{
    font-size:28px;
  }
}

@media (max-width: 650px){
  .nav__menu{ flex-wrap: wrap; justify-content:flex-end; }
}

/* CTA */
.cta{
  padding: 38px 0;
}
.cta__inner{
  background: var(--blue);
  color:#fff;
  border-radius: 26px;
  padding: 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.cta__text h3{ margin:0 0 6px; }
.cta__text p{ margin:0; opacity:.9; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:700;
  border: 2px solid transparent;
}

.btn--light{
  background:#fff;
  color: var(--blue);
}

/* Add this to pos-product.css - DON'T let images stretch */
.product-hero__right img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.features-image-frame img {
  max-width: 100%;
  width: auto;
  height: auto;
}  

/* MAKE PRODUCT CARDS FULLY CLICKABLE */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card-link:hover .product-card {
  transform: translateY(-5px);
  transition: transform 0.2s ease;
}

.product-card {
  transition: transform 0.2s ease;
  cursor: pointer;
}

