/* ── HOME PAGE STYLES ── */

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.5);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,61,99,0.88) 0%, rgba(13,92,143,0.6) 50%, rgba(0,168,107,0.15) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  padding: 100px 24px 180px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.6; transform:scale(1.3); }
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 1.08rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--primary-dark);
  border-top: 3px solid var(--accent);
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.hero-stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* TRUST STRIP */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--light-gray); }
.trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.trust-logos span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-gray);
  padding: 7px 18px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
}

/* ABOUT GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: white;
  padding: 24px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-badge span { font-size: 0.72rem; opacity:0.85; letter-spacing:0.1em; text-transform:uppercase; }
.about-cert-strip {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cert-item {
  flex: 1;
  min-width: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.cert-icon { font-size: 1.1rem; }

.about-highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hi-icon {
  width: 42px; height: 42px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.highlight-item strong { font-size: 0.9rem; font-weight: 700; color: var(--text); display: block; margin-bottom: 3px; }
.highlight-item p { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.product-img { position: relative; height: 260px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-overlay {
  position: absolute;
  top: 16px; left: 16px;
}
.product-body { padding: 32px; }
.product-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--mid-gray);
  margin-bottom: 8px;
}
.product-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.product-tagline { font-size: 0.78rem; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.product-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.product-specs span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  color: var(--dark-gray);
}

/* APPLICATIONS */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.app-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.app-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.app-card-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--light-gray);
  margin-bottom: 18px;
}
.app-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.app-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; }

/* WHY SECTION */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.why-feat { display: flex; gap: 16px; align-items: flex-start; }
.why-feat-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-feat h4 { font-size: 0.92rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.why-feat p { font-size: 0.83rem; color: var(--text-light); line-height: 1.55; }

.why-img-col {
  position: relative;
}
.why-img-col img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-img-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--accent);
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.wib-num { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.wib-text { font-size: 0.72rem; opacity: 0.85; line-height: 1.4; margin-top: 4px; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(0,168,107,0.15) 0%, transparent 60%);
}
.cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-content p { font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-frame img { height: 360px; }
  .why-img-col img { height: 360px; }
  .why-img-badge { left: 16px; }
  .hero-stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 80px 24px 220px; }
  .about-badge { right: 0; bottom: -16px; }
}
@media (max-width: 500px) {
  .app-grid { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
}
