/* =========================
   MODULES (NEW)
========================= */
.pmx-modules{
  padding: 90px 6vw;
  background:
    radial-gradient(900px circle at 18% 20%, rgba(59,183,173,.12), transparent 55%),
    radial-gradient(900px circle at 78% 75%, rgba(45,101,169,.12), transparent 60%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.pmx-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* head */
.pmx-head{
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}
.pmx-kicker{
  display:inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  color: #0b1220;
  background: rgba(45,101,169,.10);
  border: 1px solid rgba(45,101,169,.18);
}
.pmx-title{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  color: #0b1220;
}
.pmx-sub{
  margin: 0 auto;
  max-width: 640px;
  color: rgba(11,18,32,.65);
  line-height: 1.7;
}

/* tabs */
.pmx-tabs{
  margin: 22px auto 18px;
  display:flex;
  gap: 10px;
  justify-content:center;
  flex-wrap: wrap;

  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 20px 60px rgba(2,6,23,.08);
}

.pmx-tab{
  appearance:none;
  border:0;
  cursor:pointer;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(11,18,32,.75);
  background: transparent;
  transition: .25s ease;
}

.pmx-tab:hover{
  background: rgba(56,189,248,.12);
  color: rgba(11,18,32,.92);
}

.pmx-tab.is-active{
  background: linear-gradient(135deg, #2d65a9, #3bb7ad);
  color: #fff;
  box-shadow: 0 14px 40px rgba(59,183,173,.22);
}

/* panels */
.pmx-panels{
  margin-top: 22px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 30px 90px rgba(2,6,23,.08);
}

.pmx-panel{
  display:none;
  animation: pmxFade .28s ease;
}
.pmx-panel.is-active{
  display:block;
}

@keyframes pmxFade{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}

.pmx-panel-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 14px;
  padding: 6px 4px 18px;
}

.pmx-panel-title{
  margin: 0;
  font-size: 18px;
  color:#0b1220;
  font-weight: 750;
}
.pmx-panel-desc{
  margin: 8px 0 0;
  color: rgba(11,18,32,.62);
  max-width: 820px;
  line-height: 1.65;
  font-size: 14px;
}

/* grid screenshots */
.pmx-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.pmx-shot{
  grid-column: span 4;
  border-radius: 16px;
  overflow:hidden;
  position:relative;
  background: #fff;
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
  transform: translateZ(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.pmx-shot img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.pmx-shot::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(500px circle at 50% 0%, rgba(56,189,248,.20), transparent 55%);
  opacity: 0;
  transition: .28s ease;
}

.pmx-shot:hover{
  transform: translateY(-6px);
  border-color: rgba(59,183,173,.35);
  box-shadow: 0 35px 90px rgba(2,6,23,.16);
}
.pmx-shot:hover img{
  transform: scale(1.06);
}
.pmx-shot:hover::after{
  opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .pmx-panels{ padding: 16px; }
  .pmx-shot{ grid-column: span 6; }
  .pmx-shot img{ height: 210px; }
}

@media (max-width: 600px){
  .pmx-modules{ padding: 70px 1rem; }

  .pmx-tabs{
    justify-content:flex-start;
    overflow:auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .pmx-tabs::-webkit-scrollbar{ display:none; }

  .pmx-shot{ grid-column: span 12; }
  .pmx-shot img{ height: 220px; }
}


.hero-ais {
    position: relative;
    /* min-height: 75vh; */
    background: 
  radial-gradient(1200px circle at 80% 20%, rgba(59,183,173,.38), transparent 60%),
    radial-gradient(900px circle at 15% 80%, rgba(45,101,169,.32), transparent 65%),
    linear-gradient(180deg, #0e1620 0%, #121c26 100%);
    overflow: hidden;
    color: #fff;
    padding: 2.9rem 2rem;
}

.hero-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 3;
}

/* TEXT */
.hero-breadcrumb {
  display: inline-flex;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  font-size: .85rem;
  margin-bottom: 20px;
  align-items: center;
}
.hero-breadcrumb span {
  width: 6px;
  height: 6px;
  background: #22d3ee;
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4.3rem);
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(180deg,#7dd3fc,#5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  max-width: 480px;
  margin: 24px 0 36px;
  color: #cbd5e1;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* BUTTONS */
.btn-main {
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg,#4f46e5,#22d3ee);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(34,211,238,.35);
  transition: .35s;
}
.btn-main:hover { transform: translateY(-4px); }

.btn-glass {
  padding: 14px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(6px);
}

/* AI IMAGE */
.hero-visual img {
  width: 100%;
  animation: floatAI 6s ease-in-out infinite;
      border-radius: 10px;
}

@keyframes floatAI {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* PARTICLES */
.ai-particles span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(34,211,238,.5);
  border-radius: 50%;
  animation: particle 8s infinite ease-in-out;
}
.ai-particles span:nth-child(1){ top:20%; left:15% }
.ai-particles span:nth-child(2){ top:60%; left:25% }
.ai-particles span:nth-child(3){ top:30%; right:20% }
.ai-particles span:nth-child(4){ bottom:20%; right:30% }

@keyframes particle {
  0% { transform: translateY(0); opacity:.2 }
  50% { transform: translateY(-30px); opacity:.8 }
  100% { transform: translateY(0); opacity:.2 }
}

/* ===== SECTION ===== */
.ai-about{
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(800px circle at 10% 10%, #e0f7ff, transparent 60%),
    radial-gradient(600px circle at 90% 80%, #eef2ff, transparent 55%),
    linear-gradient(180deg,#f8fafc,#ffffff);
  overflow: hidden;
}

/* ===== INNER ===== */
.ai-about-inner{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===== NOISE ===== */
.ai-noise{
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  z-index:1;
}

/* ===== HEADER ===== */
.ai-about-header{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 80px;
}

.ai-trust-chip{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:8px 18px;
  background:rgba(255,255,255,.75);
  border-radius:999px;
  border:1px solid rgba(15,23,42,.1);
  margin-bottom:22px;
}

.ai-avatars{
  display:flex;
  align-items:center;
}
.ai-avatars img,
.ai-avatars span{
  width:32px;
  height:32px;
  border-radius:50%;
  margin-left:-10px;
  border:2px solid #fff;
}
.ai-avatars span{
  background:linear-gradient(135deg,#38bdf8,#22d3ee);
  color:#020617;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:700;
}

.ai-title{
  font-size:clamp(32px,4vw,52px);
  line-height:1.1;
  color:#020617;
}
.ai-title span{
  background:linear-gradient(90deg,#38bdf8,#22d3ee);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.ai-subtitle{
  margin-top:16px;
  color:#475569;
  max-width:560px;
  margin-inline:auto;
}

/* ===== GRID ===== */
.ai-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* ===== CARD ===== */
.ai-feature-card{
  position:relative;
  padding:28px;
  border-radius:18px;
  background:
    linear-gradient(180deg,rgba(15,23,42,.94),rgba(2,6,23,.94));
  border:1px solid rgba(148,163,184,.15);
  color:#e5e7eb;
  backdrop-filter:blur(14px);
  transition:.45s ease;
  overflow:hidden;
}

/* Glow */
.ai-feature-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:
    radial-gradient(300px circle at var(--mx,50%) var(--my,50%),
    rgba(56,189,248,.6),
    transparent 65%);
  opacity:.25;
  transition:.4s ease;
  pointer-events:none;
}

.ai-feature-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:
    0 20px 60px rgba(15,23,42,.45),
    0 0 40px rgba(56,189,248,.45);
}
.ai-feature-card:hover::before{
  opacity:.9;
}

/* ===== ICON ===== */
.ai-icon{
  width:48px;
  height:48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-size:22px;
  background:linear-gradient(135deg,#38bdf8,#22d3ee);
  color:#020617;
  margin-bottom:14px;
  transition:.35s ease;
}

.ai-feature-card:hover .ai-icon{
  transform:rotate(-8deg) scale(1.12);
  box-shadow:0 0 20px rgba(56,189,248,.7);
}

/* ===== TEXT ===== */
.ai-feature-card h5{
  margin-bottom:6px;
  font-weight:600;
}
.ai-feature-card p{
  font-size:14px;
  color:#94a3b8;
}

/* ===== MOBILE ===== */
@media(max-width:900px){
  .ai-feature-grid{
    grid-template-columns:1fr;
  }
  .ai-feature-card:hover{
    transform:translateY(-6px);
  }
}
.ai-feature-card{
  opacity:0;
  transform: translateY(40px) scale(.96);
}

.ai-feature-card.ai-visible{
  opacity:1;
  transform: translateY(0) scale(1);
}
.hero-ai {

    min-height: 0vh !important;

}