/* ===== WEBSITE PAGE ===== */

/* Hero */
.ws-hero {
  position: relative;
  padding-top: 70px;
  overflow: hidden;
}
.ws-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.ws-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: rotate(180deg);
}
.ws-hero .container {
  position: relative; z-index: 1;
}
.ws-hero-inner {
  display: flex; align-items: center; gap: 40px;
  padding: 60px 0 30px;
}
.ws-hero-text {
  flex: 1;
}
.ws-hero-sub {
  font-size: 0.95rem; color: #073380; margin-bottom: 4px; font-weight: 400;
}
.ws-hero-text h1 {
  font-size: 36px; font-weight: 700; color: #073380;
  line-height: 1.15; margin-bottom: 14px;
}
.ws-green {
  color: #E7B900; font-size: 5rem;
  display: block; font-weight: 900;
}
.ws-hero-desc {
  font-size: 0.95rem; color: #073380; line-height: 1.7;
  margin-bottom: 24px; max-width: 420px; font-style: italic;
}
.ws-btn-cta {
  display: inline-block;
  background: #00B84A;
  color: #fff; font-size: 0.95rem; font-weight: 700;
  padding: 13px 32px; border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(0,184,74,0.35);
  transition: all 0.3s;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.ws-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,100,50,0.3);
  background: #009e3e;
}
.ws-hero-img {
  flex: 1.5; text-align: right;
}
.ws-hero-img img {
  width: 100%; max-width: 700px; height: auto;
}

/* Features Bar - inside hero */
.ws-features-bar {
  position: relative;
  margin-top: 0;
  padding: 0;
  background: transparent;
}
.ws-features-list {
  display: flex; justify-content: center; gap: 16px;
  padding: 20px 0;
  position: relative; z-index: 1;
}
.ws-feature-tag {
  flex: 1;
  padding: 12px 20px;
  font-size: 0.82rem; font-weight: 700; color: #3a5a8c;
  text-align: center;
  letter-spacing: 0.5px;
  background: #D9D9D933;
  border: 1.5px solid rgba(58,90,140,0.25);
  border-radius: 30px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);
}

/* Demo Websites */
.ws-demo {
  background: #fff;
  padding: 40px 0 20px;
}
.ws-demo-btn-wrap {
  text-align: center;
  margin-top: 24px;
}
.ws-demo-btn {
  display: inline-block;
  background: linear-gradient(134.25deg, #073380 24.58%, #FE05DD 75.42%);
  color: #fff; font-size: 1.05rem; font-weight: 700;
  padding: 16px 44px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(7,51,128,0.3);
  transition: all 0.3s;
}
.ws-demo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(7,51,128,0.4);
}
.ws-demo-grid-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ws-demo-card-simple {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s;
  display: block;
}
.ws-demo-card-simple:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.ws-demo-card-simple img {
  width: 100%; height: auto; display: block;
}

/* Customize & Wholesale Sections */
.ws-customize { background: #fff; padding: 40px 0; }
.ws-wholesale { background: #f8f9fb; padding: 40px 0; }
.ws-block {
  display: flex; align-items: flex-start; gap: 40px;
}
.ws-block-img {
  flex: 0 0 38%; max-width: 38%;
}
.ws-block-img img {
  width: 100%; height: auto; border-radius: 12px;
}
.ws-block-text {
  flex: 1;
}
.ws-block-title {
  font-size: 1.6rem; font-weight: 800; color: #073380;
  margin-bottom: 24px;
  font-style: italic;
}
.ws-block-item {
  margin-bottom: 14px;
}
.ws-block-item h4 {
  font-size: 0.95rem; font-weight: 800; color: #073380;
  margin-bottom: 4px;
}
.ws-block-item p {
  font-size: 0.88rem; color: #444; line-height: 1.6;
}

/* CTV Network */
/* CTV Network */
.ws-ctv {
  position: relative;
  min-height: 500px;
}
.ws-ctv-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 55%; max-width: 550px;
  z-index: 0;
}
.ws-ctv-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.ws-ctv-item {
  padding: 8px 12px;
  max-width: 280px;
}
.ws-ctv-item--left {
  justify-self: start;
}
.ws-ctv-item--right {
  justify-self: end;
  text-align: right;
}
.ws-ctv-item:nth-child(1) { align-self: start; margin-top: 40px; }
.ws-ctv-item:nth-child(2) { align-self: start; margin-top: 10px; }
.ws-ctv-item:nth-child(3) { align-self: center; }
.ws-ctv-item:nth-child(4) { align-self: center; }
.ws-ctv-item:nth-child(5) { align-self: end; margin-bottom: 40px; }
.ws-ctv-item:nth-child(6) { align-self: end; margin-bottom: 10px; }
.ws-ctv-item h4 {
  font-size: 0.85rem; font-weight: 800; color: #d32f2f;
  margin-bottom: 3px;
  font-style: italic;
}
.ws-ctv-item p {
  font-size: 0.78rem; color: #444; line-height: 1.5;
}

@media (max-width: 768px) {
  .ws-block { flex-direction: column; }
  .ws-block-img { max-width: 100%; }
  .ws-ctv { min-height: auto; }
  .ws-ctv-img { position: static; transform: none; width: 100%; margin-bottom: 20px; }
  .ws-ctv-grid { grid-template-columns: 1fr; min-height: auto; }
  .ws-ctv-item { max-width: 100%; }
  .ws-ctv-item--right { text-align: left; justify-self: start; }
}

/* Why Section */
.ws-why {
  background: #fff; padding: 50px 0;
}
.ws-section-title {
  text-align: center;
  font-size: 2rem; font-weight: 800; color: #0a1931;
  margin-bottom: 30px;
}
.ws-section-title span {
  color: #1a6b3c;
}
.ws-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ws-why-item {
  text-align: center; padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.3s;
}
.ws-why-item:hover {
  background: #f0f7f0;
  transform: translateY(-4px);
}
.ws-why-icon {
  width: 65px; height: 65px; margin: 0 auto 14px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.ws-why-item h3 {
  font-size: 1.05rem; font-weight: 700; color: #0a1931;
  margin-bottom: 8px;
}
.ws-why-item p {
  font-size: 0.9rem; color: #666; line-height: 1.6;
}

/* Detail Section */
.ws-detail {
  background: #f8f9fb; padding: 50px 0;
}
.ws-detail-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 30px; margin-bottom: 30px;
}
.ws-detail-text {
  background: #fff; border-radius: 16px;
  padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ws-detail-text h3 {
  font-size: 1.1rem; font-weight: 800; color: #1a6b3c;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c8e6c9;
}
.ws-detail-text ul li {
  padding: 5px 0 5px 20px; position: relative;
  font-size: 0.92rem; color: #444; line-height: 1.6;
}
.ws-detail-text ul li::before {
  content: '\2713'; position: absolute; left: 0;
  color: #1a6b3c; font-weight: 700;
}

/* CTA */
.ws-cta {
  background: linear-gradient(135deg, #1a6b3c, #0d4a26);
  color: #fff; text-align: center; padding: 40px 0;
}
.ws-cta h2 {
  font-size: 2rem; font-weight: 800; margin-bottom: 12px;
}
.ws-cta p {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}
.ws-cta .ws-btn-cta {
  background: #fff; color: #1a6b3c;
  border: none; font-size: 1.1rem;
  padding: 16px 44px;
}
.ws-cta .ws-btn-cta:hover {
  background: #f0f0f0;
}

/* Responsive */
@media (max-width: 1024px) {
  .ws-features-list { flex-wrap: wrap; }
  .ws-feature-tag { flex: 1 1 45%; }
  .ws-demo-grid-simple { gap: 16px; }
}
@media (max-width: 768px) {
  .ws-hero-inner { flex-direction: column; padding: 20px 0; min-height: auto; }
  .ws-hero-text { max-width: 100%; text-align: center; }
  .ws-hero-text h1 { font-size: 1.8rem; }
  .ws-green { font-size: 2.2rem; }
  .ws-hero-sub { font-size: 0.9rem; }
  .ws-hero-desc { font-size: 1rem; }
  .ws-hero-img img { width: 100%; height: auto; }
  .ws-features-list { flex-wrap: wrap; gap: 10px; padding: 16px 0; }
  .ws-feature-tag { flex: 1 1 45%; font-size: 0.7rem; padding: 10px 12px; }
  .ws-feature-tag::after { display: none; }
  .ws-demo { padding: 16px 0 10px; }
  .ws-demo-grid-simple { grid-template-columns: 1fr; gap: 12px; }
  .ws-demo-btn-wrap { margin-top: 16px; }
  .ws-demo-btn { font-size: 0.9rem; padding: 12px 30px; }
  .ws-demo-grid { grid-template-columns: 1fr; }
  .ws-why-grid { grid-template-columns: 1fr; }
  .ws-detail-block { grid-template-columns: 1fr; }
  .ws-section-title { font-size: 1.5rem; margin-bottom: 20px; }
  .ws-customize, .ws-wholesale { padding: 24px 0; }
  .ws-block-title { font-size: 1.4rem; }
  .ws-block-item h4 { font-size: 0.9rem; }
  .ws-block-item p { font-size: 0.8rem; }
  .ws-cta { padding: 30px 0; }
  .ws-cta h2 { font-size: 1.4rem; }
  .ws-cta p { font-size: 0.9rem; }
  .ws-btn-cta { font-size: 0.9rem; padding: 12px 30px; }
}
